:root {
  --bg: #0F1110;
  --surface: #161A18;
  --surface-alt: #1E2321;
  --border: #2B302E;
  --text: #F2F1ED;
  --text-secondary: #9C9F99;
  --text-faint: #6E756F;
  --accent: #3FBF8F;
  --accent-muted: #12291F;
  --pro: #E0A24A;
  --pro-muted: #2A2216;
  --pro-border: #4A3A1E;
  --radius: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 20, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 18px; letter-spacing: -0.02em; }
.logo-accent { color: var(--text-secondary); }

/* "The Glimpse" mark — three rising bars + one brass outlier dot. Built from divs, no image
   asset, so it scales cleanly at any size (mirrors the RN GlimpseMark component). */
.logo-mark {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2.5px;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 4px;
  flex: none;
}
.logo-mark i { display: block; width: 3.5px; border-radius: 1.5px; font-style: normal; }
.logo-mark i:nth-child(1) { height: 6px; background: #4A514B; }
.logo-mark i:nth-child(2) { height: 10px; background: #8A918B; }
.logo-mark i:nth-child(3) { height: 14px; background: var(--accent); }
.logo-mark em {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pro);
  font-style: normal;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
.nav-links a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }

/* Hero */
.hero { padding: 96px 0 64px; text-align: center; }
.eyebrow {
  display: inline-block;
  background: var(--accent-muted);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 800;
}
.lede {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--text-secondary);
  font-size: 18px;
}
.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
}
.waitlist-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
}
.waitlist-form input:focus { outline: 2px solid var(--accent); }
.fine-print { color: var(--text-secondary); font-size: 13px; margin-top: 14px; }

/* Social proof */
.social-proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Features */
.features { padding: 80px 0; }
.features h2, .pricing h2, .faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-icon { font-size: 28px; margin-bottom: 12px; }
.feature-card h3 { margin: 0 0 8px; font-size: 18px; }
.feature-card p { margin: 0; color: var(--text-secondary); font-size: 14px; }

/* Pricing */
.pricing { padding: 80px 0; background: var(--surface); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.price-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
}
.price-card-highlight { border-color: var(--pro-border); background: var(--pro-muted); }
.price-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--pro);
  color: #1C1408;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}
.price-card h3 { margin: 0 0 8px; }
.price { font-size: 36px; font-weight: 800; margin: 0 0 20px; }
.price span { font-size: 16px; color: var(--text-secondary); font-weight: 400; }
.price-card ul { list-style: none; padding: 0; margin: 0; color: var(--text-secondary); font-size: 14px; }
.price-card li { padding: 6px 0; border-top: 1px solid var(--border); }
.price-card li:first-child { border-top: none; }
.price-card-highlight ul, .price-card-highlight .price span { color: #C9A876; }
.price-card-highlight li { border-top-color: var(--pro-border); }

/* FAQ */
.faq { padding: 80px 0; max-width: 700px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
}
.faq p { color: var(--text-secondary); margin: 12px 0 0; font-size: 14px; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 13px;
}

/* Legal pages (privacy, terms) */
.legal { padding: 64px 0 96px; }
.legal .container { max-width: 720px; }
.legal h1 { font-size: 36px; margin: 0 0 8px; }
.legal .updated { color: var(--text-faint); font-size: 13px; margin: 0 0 48px; }
.legal h2 { font-size: 20px; margin: 40px 0 12px; }
.legal p, .legal li { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.legal ul { padding-left: 20px; }
.legal a.inline { color: var(--accent); }
.legal strong { color: var(--text); }

@media (max-width: 640px) {
  .hero h1 { font-size: 32px; }
  .nav-links { display: none; }
  .waitlist-form { flex-direction: column; }
}
