/* === TYPOGRAPHY === */
:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EDE7;
  --primary: #1B3D2F;
  --accent: #C9953A;
  --text: #1A1A1A;
  --text-muted: #6B6B5E;
  --border: #E0DDD7;
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'Syne', sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

nav a:hover { color: var(--primary); }

/* === SECTION BASE === */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

/* === HERO === */
.hero {
  padding: 160px 40px 100px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { max-width: 500px; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* === FLOW ILLUSTRATION === */
.flow-illustration {
  background: var(--primary);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 24px 64px rgba(27, 61, 47, 0.25);
}

.flow-node {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

.flow-node .node-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.flow-node .node-icon {
  font-size: 1.1rem;
  filter: grayscale(0.3);
}

.flow-connector {
  margin-left: 40px;
}

.flow-badge {
  background: rgba(201, 149, 58, 0.15);
  border: 1px solid rgba(201, 149, 58, 0.4);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.flow-badge span:last-child {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
}

/* === HERO BG SHAPE === */
.hero-bg-shape {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,58,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 40px;
  background: var(--bg-alt);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: box-shadow 0.3s;
}

.step-card:hover {
  box-shadow: 0 8px 32px rgba(27, 61, 47, 0.08);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  margin-bottom: 20px;
  line-height: 1;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === DIFFERENTIATOR === */
.differentiator {
  padding: 100px 40px;
}

.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diff-lede {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.diff-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.diff-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.diff-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.language-block {
  background: var(--primary);
  border-radius: 16px;
  padding: 36px 40px;
  width: 100%;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.9;
  font-style: italic;
  box-shadow: 0 16px 48px rgba(27, 61, 47, 0.2);
  position: relative;
}

.lang-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 100px 40px;
  background: var(--primary);
}

.philosophy .section-eyebrow { color: var(--accent); }
.philosophy .section-title { color: #fff; }

.philosophy-quote {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: center;
}

.philosophy-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.philosophy-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 32px;
}

.philosophy-card h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.philosophy-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* === OUTCOMES === */
.outcomes {
  padding: 100px 40px;
  background: var(--bg-alt);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.outcome-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.outcome-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outcome-list li {
  font-size: 1rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.outcome-before .outcome-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4A573;
}

.outcome-after .outcome-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* === CLOSING === */
.closing-statement {
  padding: 120px 40px;
  text-align: center;
}

.closing-statement h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === FOOTER === */
.site-footer {
  background: var(--primary);
  padding: 60px 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  nav { display: none; }

  .hero { padding: 120px 20px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .flow-illustration { padding: 28px; }

  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .diff-inner { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }

  .how-it-works, .differentiator, .philosophy, .outcomes, .closing-statement {
    padding: 64px 20px;
  }

  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .flow-node { max-width: 100%; }
}