:root {
  --bg: #0B1120;
  --bg-mid: #0F1629;
  --bg-light: #141C30;
  --fg: #F1F5F9;
  --fg-muted: #94A3B8;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(241, 245, 249, 0.08);
  --radius: 10px;
}

*, *::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-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* HERO */
.hero {
  padding: 100px 32px 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-kicker {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
}

/* Launch Display (ASCII art / bars) */
.hero-visual {
  display: flex;
  justify-content: center;
}
.launch-display {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 32px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.display-bar {
  width: 12px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  animation: pulse-bar 1.8s ease-in-out infinite;
}
.display-bar-1 { height: 32px; animation-delay: 0s; }
.display-bar-2 { height: 56px; animation-delay: 0.2s; }
.display-bar-3 { height: 44px; animation-delay: 0.4s; }
.display-bar-4 { height: 72px; animation-delay: 0.1s; }
.display-bar-5 { height: 40px; animation-delay: 0.3s; }
.display-bar-6 { height: 60px; animation-delay: 0.15s; }
@keyframes pulse-bar {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}
.display-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 16px;
  text-align: center;
  letter-spacing: 0.04em;
}

/* PROOF STRIP */
.proof {
  padding: 48px 32px;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.proof-num {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}
.proof-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* FEATURES */
.features {
  padding: 96px 32px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 56px;
  max-width: 500px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  padding: 36px 32px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: rgba(245, 158, 11, 0.25);
}
.feature-icon {
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.feature-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* PHILOSOPHY */
.philosophy {
  padding: 96px 32px;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
}
.philosophy-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 20px;
}
.philosophy-attr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.philosophy-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* CLOSING */
.closing {
  padding: 96px 32px 120px;
  background: var(--bg);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.closing-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 20px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* FOOTER */
.footer {
  padding: 56px 32px 40px;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
}
.footer-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 10px;
  max-width: 280px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 13px;
  color: var(--fg-muted);
}
.accent { color: var(--accent); }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-stats { gap: 28px; }
  .proof-divider { display: none; }
  .footer-inner { flex-direction: column; }
  .hero { padding: 64px 24px 56px; }
  .features, .philosophy, .closing { padding: 64px 24px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .proof-num { font-size: 32px; }
}