:root {
  --bg: #F8F7F2;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #C8922A;
  --accent-dark: #8A6219;
  --nav-bg: #0B0F1A;
  --nav-fg: #F8F7F2;
  --card-bg: #FFFFFF;
  --border: #E0DDD5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  background: var(--nav-bg);
  padding: 20px 40px;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--nav-fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  background: rgba(200,146,42,0.12);
  padding: 4px 10px;
  border-radius: 2px;
}
.nav-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
.nav-link {
  font-size: 13px;
  color: rgba(248,247,242,0.7);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--nav-fg); }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 40px 120px;
  background: var(--nav-bg);
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,146,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,146,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,146,42,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 70%);
  bottom: -50px; left: 100px;
}
.hero-rule {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700;
  color: var(--nav-fg);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: rgba(248,247,242,0.6);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-signal {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
.hero-dot-text {
  font-size: 12px;
  color: rgba(248,247,242,0.4);
  letter-spacing: 0.05em;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* STATS */
.stats {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.stat {
  flex: 1;
  padding: 40px 32px;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* SECTION COMMON */
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}

/* FEATURES */
.features {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 56px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  padding: 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
}
.feature-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* METHOD */
.method {
  padding: 80px 40px;
  background: var(--nav-bg);
}
.method-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.method .section-title { color: var(--nav-fg); }
.method .section-sub { color: rgba(248,247,242,0.5); }
.method-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.method-week {
  flex: 1;
  padding: 0 40px 0 0;
}
.method-arrow {
  font-size: 24px;
  color: var(--accent);
  padding-top: 8px;
  flex-shrink: 0;
}
.method-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.method-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--nav-fg);
  margin-bottom: 12px;
}
.method-desc {
  font-size: 14px;
  color: rgba(248,247,242,0.5);
  line-height: 1.65;
}

/* DIFFERENTIATOR */
.diff {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.diff-quote blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 32px;
}
.diff-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 28px;
}
.diff-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.diff-numbers {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}
.diff-stat {}
.diff-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.diff-lbl {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--nav-bg);
  text-align: center;
}
.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}
.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--nav-fg);
  line-height: 1.15;
  max-width: 680px;
  margin: 0 auto 24px;
  letter-spacing: -0.01em;
}
.closing-sub {
  font-size: 16px;
  color: rgba(248,247,242,0.5);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.closing-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.closing-tag {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.closing-tag-sep { color: rgba(248,247,242,0.2); }

/* FOOTER */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.footer-sub {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 64px 24px 80px; min-height: auto; }
  .stats { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
  .stat-divider { display: none; }
  .features { padding: 64px 24px; }
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .method { padding: 64px 24px; }
  .method-timeline { flex-direction: column; gap: 32px; }
  .method-arrow { display: none; }
  .method-week { padding: 0; }
  .diff { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 40px 24px; }
}