:root {
  --bg: #0e131a;
  --bg-2: #131b24;
  --panel: #182230;
  --border: #2a3746;
  --border-2: #34455a;
  --text: #dbe3ec;
  --muted: #93a0b0;
  --gold: #d8b54a;
  --gold-bright: #ecc95f;
  --gold-dim: #a8893a;
  --good: #57b894;
  --bad: #d47a6a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(1000px 500px at 80% -10%, #1a2836 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 10%, #16202c 0%, var(--bg) 55%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
main { max-width: 980px; margin: 0 auto; padding: 0 24px; }
section { padding: 64px 0; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.01em; }
.accent { color: var(--gold-bright); }

/* nav */
.nav { display: flex; justify-content: space-between; align-items: center; max-width: 980px; margin: 0 auto; padding: 20px 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: .3px; }
.logo { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; font-weight: 800; color: #17110a; background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim)); }
.nav-cta { color: var(--gold-bright); text-decoration: none; font-weight: 600; font-size: 14px; border: 1px solid var(--gold-dim); padding: 8px 16px; border-radius: 8px; }
.nav-cta:hover { background: rgba(216,181,74,.1); }

/* hero */
.hero { text-align: center; padding-top: 56px; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-size: 12.5px; font-weight: 600; margin-bottom: 18px; }
.hero h1 { font-size: clamp(32px, 6vw, 56px); font-weight: 800; }
.lede { color: var(--muted); font-size: clamp(16px, 2.2vw, 19px); max-width: 620px; margin: 22px auto 30px; }
.cta { display: inline-block; background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim)); color: #17110a; font-weight: 700; text-decoration: none; padding: 13px 30px; border-radius: 10px; font-size: 16px; }
.cta:hover { filter: brightness(1.08); }
.microcopy { color: var(--muted); font-size: 13.5px; margin-top: 14px; }

/* demo */
.demo { text-align: center; }
.demo-card { max-width: 560px; margin: 0 auto; text-align: left; background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.demo-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.demo-title { font-weight: 700; font-size: 17px; }
.vis-toggle { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-2); border: 1px solid var(--border-2); color: var(--muted); border-radius: 20px; padding: 6px 12px; font-size: 12.5px; font-weight: 600; cursor: pointer; }
.vis-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--bad); transition: background .2s; }
.vis-toggle[aria-pressed="true"] { color: var(--good); border-color: var(--good); }
.vis-toggle[aria-pressed="true"] .vis-dot { background: var(--good); }
.demo-body { font-size: 15px; }
.secret { background: var(--gold-dim); color: transparent; border-radius: 4px; padding: 1px 4px; transition: color .25s, background .25s; user-select: none; }
.secret.revealed { background: rgba(216,181,74,.18); color: var(--gold-bright); user-select: auto; }
.demo-foot { color: var(--muted); font-size: 13px; margin-top: 14px; }
.demo-caption { color: var(--muted); font-size: 13.5px; margin-top: 20px; }

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: var(--panel); border: 1px solid var(--border); border-left: 3px solid var(--gold-dim); border-radius: 12px; padding: 22px; }
.ficon { font-size: 24px; margin-bottom: 12px; }
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14px; }

/* pricing */
.pricing { text-align: center; }
.pricing h2 { font-size: 28px; margin-bottom: 28px; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tier { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 22px 18px; display: flex; flex-direction: column; gap: 8px; }
.tier.featured { border-color: var(--gold-dim); box-shadow: 0 0 0 1px var(--gold-dim); }
.tname { color: var(--gold); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.tprice { font-size: 32px; font-weight: 800; }
.tprice em { font-size: 15px; font-weight: 500; color: var(--muted); font-style: normal; }
.tnote { color: var(--muted); font-size: 13px; }
.pricing-foot { color: var(--muted); font-size: 13.5px; margin-top: 20px; }

/* join */
.join { text-align: center; max-width: 560px; margin: 0 auto; }
.join h2 { font-size: 28px; margin-bottom: 10px; }
.join p { color: var(--muted); margin-bottom: 22px; }
.waitform { display: flex; flex-direction: column; gap: 12px; }
.waitform input { background: var(--bg-2); border: 1px solid var(--border-2); color: var(--text); border-radius: 10px; padding: 13px 15px; font-size: 15px; font-family: inherit; }
.waitform input:focus { outline: none; border-color: var(--gold); }
.waitform button { background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim)); color: #17110a; font-weight: 700; border: none; border-radius: 10px; padding: 13px; font-size: 16px; cursor: pointer; }
.waitform button:hover { filter: brightness(1.08); }
.waitform button:disabled { opacity: .6; cursor: default; }
.formmsg { margin-top: 14px; font-size: 14px; min-height: 20px; }
.formmsg.ok { color: var(--good); }
.formmsg.err { color: var(--bad); }

/* footer */
.foot { text-align: center; color: var(--muted); font-size: 13px; padding: 40px 24px 56px; border-top: 1px solid var(--border); margin-top: 40px; }

@media (max-width: 760px) {
  .features, .tiers { grid-template-columns: 1fr; }
  section { padding: 44px 0; }
}

/* two-text demo views */
.demo-view { display: none; }
.demo-view.on { display: block; }
.demo-facts { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 7px; font-size: 14px; }
.demo-facts li b { color: var(--muted); font-weight: 600; margin-right: 7px; text-transform: uppercase; font-size: 11px; letter-spacing: .06em; }
.fact-secret { background: rgba(216,181,74,.10); border-left: 3px solid var(--gold-dim); padding: 5px 9px; border-radius: 4px; }
.logo-seal { display: block; }

/* wordmark rule: Aelo white, DM gold */
.brand .dm { color: var(--gold-bright); font-weight: 800; }
