:root {
  --bg: #0E1A17;
  --surface: #122620;
  --surface2: #1A3028;
  --fg: #F4F1EC;
  --fg-muted: #8A9B8E;
  --green: #2A5E4A;
  --lime: #B4F542;
  --lime-dim: rgba(180, 245, 66, 0.15);
  --border: rgba(180, 245, 66, 0.12);
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--lime);
  letter-spacing: -0.02em;
}
.nav-logo-accent { color: var(--fg-muted); }
.nav-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  font-weight: 500;
}
.nav-cta {
  margin-left: auto;
  padding: 8px 20px;
  background: var(--lime);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: #a3e635; }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 48px 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(180,245,66,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,245,66,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

.hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lime);
  border: 1px solid var(--lime);
  padding: 5px 12px;
  margin-bottom: 32px;
  opacity: 0.9;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-meta-item { text-align: left; }
.hero-meta-val {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
}
.hero-meta-label {
  display: block;
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.hero-meta-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── HERO VISUAL ── */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.clock-face {
  position: relative;
  width: 260px;
  height: 260px;
}
.clock-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(180,245,66,0.2);
}
.clock-ring-outer {
  inset: 0;
  border-color: rgba(180,245,66,0.15);
  animation: pulse 4s ease-in-out infinite;
}
.clock-ring-inner {
  inset: 20px;
  border-color: rgba(180,245,66,0.08);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.02); }
}
.clock-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(180,245,66,0.25);
  border-radius: 50%;
}
.clock-number {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
}
.clock-month {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.clock-tick {
  position: absolute;
  width: 1px;
  height: 12px;
  background: rgba(180,245,66,0.3);
  top: 0;
  left: 50%;
  transform-origin: 50% 130px;
}
.clock-tick-1 { transform: rotate(0deg) translateX(-0.5px); }
.clock-tick-2 { transform: rotate(90deg) translateX(-0.5px); }
.clock-tick-3 { transform: rotate(180deg) translateX(-0.5px); }
.clock-tick-4 { transform: rotate(270deg) translateX(-0.5px); }

.data-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}
.data-bar {
  width: 14px;
  background: var(--c);
  opacity: 0.6;
  border-radius: 2px 2px 0 0;
  height: var(--h);
}

/* ── COUNTDOWN ── */
.countdown {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 48px;
  text-align: center;
}
.countdown-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lime);
  margin-bottom: 20px;
}
.countdown-units {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.countdown-unit { text-align: center; }
.cu-val {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
}
.cu-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-top: 4px;
}
.cu-sep {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--lime);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}
.countdown-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ── PROBLEM ── */
.problem { padding: 100px 48px; }
.section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lime);
  margin-bottom: 20px;
}
.problem-header { margin-bottom: 60px; max-width: 680px; }
.problem-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 60px;
}
.problem-card {
  background: var(--surface);
  padding: 40px 36px;
}
.pc-icon {
  margin-bottom: 24px;
}
.pc-icon-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--lime);
}
.pc-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.pc-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.problem-bottom {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.problem-stat { flex: 1; }
.ps-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}
.ps-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.problem-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── HOW ── */
.how { padding: 100px 48px; background: var(--surface); }
.how-header { margin-bottom: 60px; }
.how-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.pipeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
}
.pipeline-step {
  flex: 1;
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--bg);
}
.pipeline-connector {
  width: 32px;
  height: 1px;
  background: var(--lime);
  opacity: 0.4;
  align-self: center;
  flex-shrink: 0;
  margin-top: 60px;
}
.pipeline-step .ps-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: var(--lime);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 12px;
}
.pipeline-step .ps-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pipeline-step .ps-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.how-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.hdg-item {
  background: var(--bg);
  padding: 28px 32px;
}
.hdg-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lime);
  margin-bottom: 8px;
}
.hdg-val {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing { padding: 100px 48px; }
.pricing-header { margin-bottom: 48px; }
.pricing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.pricing-card {
  max-width: 520px;
  background: var(--surface);
  border: 1px solid var(--lime);
  padding: 48px;
  margin-bottom: 48px;
}
.pc-price {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
}
.pc-period {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 14px;
}
.pf-check {
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}
.pc-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
  opacity: 0.7;
}
.pc-cta-btn {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 14px 24px;
  background: var(--lime);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.pc-cta-btn:hover { background: #a3e635; }
.pricing-compare { }
.compare-grid { display: flex; gap: 40px; flex-wrap: wrap; }
.cg-item { display: flex; align-items: center; gap: 10px; }
.cg-icon {
  font-size: 1.2rem;
  color: var(--fg-muted);
  opacity: 0.5;
}
.cg-text { font-size: 0.85rem; color: var(--fg-muted); }

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 640px; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.closing-sub {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--fg-muted);
  margin-bottom: 48px;
  font-style: italic;
}
.closing-urgency {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 32px 36px;
  margin-bottom: 40px;
}
.cu-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cu-row:last-child { border-bottom: none; }
.cu-label-left {
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.cu-label-right {
  font-size: 0.82rem;
  color: var(--fg);
  font-weight: 500;
}
.closing-cta { }
.cta-text {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lime);
  margin-bottom: 24px;
}
.closing-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--lime);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.closing-cta-btn:hover { background: #a3e635; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner { }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--lime);
}
.footer-slash { color: var(--fg-muted); }
.footer-name {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
}
.footer-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-sep { opacity: 0.3; }
.footer-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 32px 50px;
    min-height: auto;
  }
  .hero-visual { display: none; }
  .problem-grid,
  .how-detail-grid {
    grid-template-columns: 1fr;
  }
  .pipeline { flex-direction: column; }
  .pipeline-connector { width: 1px; height: 20px; margin: 0; }
  .nav { padding: 16px 32px; }
  .problem, .how, .pricing, .closing, .footer { padding: 60px 32px; }
  .countdown { padding: 32px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 3.5rem; }
  .hero-meta-row { flex-wrap: wrap; gap: 20px; }
  .cu-val { font-size: 2.5rem; }
  .pc-price { font-size: 3.5rem; }
  .pricing-card { padding: 32px 24px; }
}