:root {
  --bg: #050914;
  --surface: #0a1628;
  --surface2: #0f1f3a;
  --accent: #7dd3fc;
  --accent-dim: rgba(125, 211, 252, 0.12);
  --highlight: #facc15;
  --text: #e2e8f0;
  --muted: #64748b;
  --border: rgba(125, 211, 252, 0.1);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Epilogue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 100px 40px 80px;
  max-width: 860px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--highlight);
  box-shadow: 0 0 12px var(--highlight);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 20px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.6;
}
.hero-meter {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}
.meter-label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.meter-bar {
  height: 4px;
  background: var(--surface2);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}
.meter-fill {
  height: 100%;
  width: 98%;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  border-radius: 2px;
}
.meter-note {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}

/* FEATURES */
.features {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.feature-card {
  background: var(--surface);
  padding: 40px;
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.8;
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feature-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* HOW */
.how {
  padding: 80px 40px;
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.how-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--highlight);
  margin-bottom: 16px;
  display: block;
}
.how-title {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--surface2);
  line-height: 1;
  min-width: 60px;
}
.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.step-content p {
  font-size: 15px;
  color: var(--muted);
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.closing-vision {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.footer-copy {
  font-size: 12px;
  color: var(--surface2);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav, .hero, .features, .how, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { padding-top: 60px; padding-bottom: 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px; }
  .how-step { gap: 20px; }
  .step-num { font-size: 28px; min-width: 40px; }
}