/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0F0F1A;
  --amber: #F5A623;
  --amber-light: rgba(245, 166, 35, 0.12);
  --surface: #F7F6F1;
  --surface-dark: #EDECEA;
  --muted: #6B6A7A;
  --rule: rgba(255,255,255,0.08);
  --linkedin: #0A66C2;
  --twitter: #000000;
  --newsletter: #7C3AED;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--ink);
  color: #E8E6DF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(12px);
  background: rgba(15,15,26,0.85);
}
.nav-inner { display: flex; align-items: center; gap: 1rem; width: 100%; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.nav-tagline {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding-left: 1rem;
  border-left: 1px solid var(--rule);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  padding: 9rem 3rem 5rem;
  display: flex;
  align-items: center;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-headline {
  color: #F5F3EC;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.hero-lede {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 480px;
  font-weight: 300;
}

/* === CONTENT FLOW WIDGET === */
.content-flow-widget {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.source-block {
  background: var(--amber-light);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.source-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.5rem;
}
.source-text {
  font-size: 0.82rem;
  color: #C4B89A;
  font-style: italic;
  line-height: 1.55;
}
.flow-arrow {
  display: flex;
  justify-content: center;
  color: var(--amber);
}
.distribution-blocks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.dist-card {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid transparent;
}
.dist-linkedin { background: rgba(10,102,194,0.1); border-color: rgba(10,102,194,0.2); }
.dist-twitter { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.dist-newsletter { background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.2); }
.dist-icon {
  font-size: 0.6rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.dist-linkedin .dist-icon { background: var(--linkedin); color: white; }
.dist-twitter .dist-icon { background: #1a1a1a; color: white; }
.dist-newsletter .dist-icon { background: var(--newsletter); color: white; }
.dist-platform {
  font-size: 0.72rem;
  font-weight: 600;
  color: #C4B89A;
  min-width: 80px;
}
.dist-format {
  font-size: 0.65rem;
  color: var(--muted);
  margin-left: auto;
}
.dist-preview {
  font-size: 0.7rem;
  color: #8A8878;
  margin-top: 0.25rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === MANIFESTO === */
.manifesto {
  padding: 6rem 3rem;
  background: #0D0D1E;
}
.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-rule {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto 2.5rem;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: #F0EDE4;
  font-style: italic;
  line-height: 1.5;
  font-weight: 400;
}
.manifesto-attr {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.attr-dash { color: var(--amber); }

/* === SECTION COMMON === */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 1rem;
}
.section-title { color: #F0EDE4; }

/* === WORKFLOW === */
.workflow {
  padding: 7rem 3rem;
  background: var(--ink);
}
.workflow-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step { padding: 0 1rem; }
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
  color: rgba(255,255,255,0.15);
}
.step-number {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #F0EDE4;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* === PILLARS === */
.pillars {
  padding: 7rem 3rem;
  background: #0D0D1E;
}
.pillars-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pillar-icon {
  color: var(--amber);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-light);
  border-radius: 12px;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #F0EDE4;
}
.pillar-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 7rem 3rem;
  background: var(--ink);
}
.philosophy-inner { max-width: 1100px; margin: 0 auto; }
.philosophy-blocks {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.phil-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}
.phil-block:last-child { border-bottom: none; }
.phil-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  padding-top: 0.25rem;
}
.phil-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #F0EDE4;
  margin-bottom: 0.75rem;
}
.phil-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  padding: 8rem 3rem 7rem;
  background: #0D0D1E;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #F0EDE4;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* === FOOTER === */
.footer {
  padding: 3rem 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--ink);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 280px;
}
.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding: 8rem 1.5rem 4rem; }
  .workflow-steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .pillars-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav { padding: 1rem 1.5rem; }
  .manifesto, .workflow, .pillars, .philosophy, .closing { padding-left: 1.5rem; padding-right: 1.5rem; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 0.75rem; }
  .phil-block { grid-template-columns: 48px 1fr; gap: 1rem; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 2.4rem; }
  .content-flow-widget { padding: 1.25rem; }
  .section-title { font-size: 1.6rem; }
}