:root {
  --bg: #080c14;
  --bg-card: #0d1320;
  --bg-card-hover: #111a2e;
  --fg: #f0f2f7;
  --fg-muted: #8891a8;
  --fg-subtle: #4a546a;
  --accent: #00ff8c;
  --accent-dim: rgba(0, 255, 140, 0.08);
  --accent-glow: rgba(0, 255, 140, 0.15);
  --amber: #ffb800;
  --amber-dim: rgba(255, 184, 0, 0.08);
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(0, 255, 140, 0.2);
}

*, *::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;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.nav-logo-accent { color: var(--accent); }
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.nav-link {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover {
  color: var(--fg);
  border-color: var(--border-accent);
}

/* HERO */
.hero {
  padding: 6rem 2rem 4rem;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(0,255,140,0.07) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(0,255,140,0.02) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 1.75rem;
  background: var(--accent-dim);
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 750px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

/* COUNTDOWN BAR */
.hero-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 820px;
  background: var(--bg-card);
}
.cd-item {
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
}
.cd-item:last-child { border-right: none; }
.cd-label {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.cd-desc {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 0.2rem;
}
.cd-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}
.cd-divider { display: none; }

/* TIMELINE */
.timeline {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.section-header {
  margin-bottom: 3.5rem;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1rem;
  max-width: 620px;
  line-height: 1.2;
}
.section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 640px;
  line-height: 1.7;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.tl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.tl-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}
.tl-agency {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.tl-date {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.tl-headline {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.tl-body {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* HOW IT WORKS */
.how {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.step-body {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* SOURCES */
.sources {
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.sources-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sources-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 1.25rem;
}
.sources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.src-tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* CLOSING */
.closing {
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,255,140,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--fg-subtle);
}
footer a { color: var(--fg-subtle); text-decoration: none; }
footer a:hover { color: var(--fg-muted); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 5rem 2rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.pricing-inner {}
.pricing-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: border-color 0.2s;
}
.price-card:hover {
  border-color: var(--border-accent);
}
.price-card--highlight {
  border-color: rgba(0,255,140,0.4);
  background: linear-gradient(160deg, #0d1320 0%, rgba(0,255,140,0.04) 100%);
}
.price-card--highlight:hover {
  border-color: rgba(0,255,140,0.6);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #080c14;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.pc-header { display: flex; flex-direction: column; gap: 0.4rem; }
.pc-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.04em;
}
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
.pc-amount {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.pc-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.pc-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.pc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.pc-cta:hover {
  color: var(--fg);
  border-color: var(--border-accent);
}
.pc-cta--primary {
  background: var(--accent);
  color: #080c14;
  border-color: var(--accent);
}
.pc-cta--primary:hover {
  opacity: 0.88;
  color: #080c14;
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}
.pc-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.pc-check { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.pricing-footer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-subtle);
  margin-top: 2.5rem;
  line-height: 1.6;
}
.pricing-footer a {
  color: var(--fg-muted);
  text-decoration: none;
}
.pricing-footer a:hover { color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-countdown {
    grid-template-columns: repeat(2, 1fr);
  }
  .cd-item:nth-child(2) { border-right: none; }
  .cd-item:nth-child(3),
  .cd-item:nth-child(4) {
    border-top: 1px solid var(--border);
  }
  .timeline { padding: 4rem 1.5rem; }
  .timeline-grid { grid-template-columns: 1fr; }
  .how { padding: 4rem 1.5rem; }
  .how-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .closing { padding: 5rem 1.5rem; }
  .nav-tagline { display: none; }
  .pricing { padding: 4rem 1.5rem 5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--highlight { border-color: rgba(0,255,140,0.4); }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-countdown { grid-template-columns: 1fr; }
  .cd-item { border-right: none; border-bottom: 1px solid var(--border); }
  .cd-item:last-child { border-bottom: none; }
}