:root {
  --bg: #0e0e14;
  --panel: #16161f;
  --panel-2: #1d1d28;
  --line: #2a2a37;
  --text: #e8e8ea;
  --muted: #9a9aa6;
  --accent: #f4a323;
  --accent-2: #ffce6b;
  --ok: #4ccf87;
  --meh: #f4a323;
  --no: #e06b6b;
  --radius: 14px;
  --max: 980px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(1200px 600px at 50% -200px, #1b1b29 0%, var(--bg) 60%);
  color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
kbd {
  font: 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--panel-2); border: 1px solid var(--line); border-bottom-width: 2px;
  border-radius: 5px; padding: 2px 6px; color: var(--text);
}
code { font: 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace; background: var(--panel-2); padding: 1px 6px; border-radius: 5px; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px max(20px, calc((100% - var(--max)) / 2));
  background: rgba(14, 14, 20, 0.8); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 800; letter-spacing: 0.5px; }
.brand img { border-radius: 7px; }
.nav__links { display: flex; align-items: center; gap: 22px; }
.nav__links a { color: var(--muted); font-size: 14px; }
.nav__links a:hover { color: var(--text); text-decoration: none; }
.badge { font-size: 11px; font-weight: 700; color: var(--accent); border: 1px solid var(--accent); border-radius: 999px; padding: 2px 8px; }

main { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* hero */
.hero { text-align: center; padding: 72px 0 36px; }
.eyebrow { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 14px; }
.hero h1 { font-size: clamp(28px, 5vw, 46px); line-height: 1.12; margin: 0 0 18px; letter-spacing: -0.5px; }
.lede { color: var(--muted); font-size: 18px; max-width: 640px; margin: 0 auto 28px; }
.fineprint { color: var(--muted); font-size: 12px; margin-top: 22px; }

/* download buttons */
.downloads { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--panel); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 20px; font-weight: 600; cursor: pointer; transition: transform .08s ease, border-color .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); border-color: #3a3a4a; }
.dl { flex-direction: column; align-items: flex-start; min-width: 180px; }
.dl strong { font-size: 16px; }
.dl small { color: var(--muted); font-weight: 500; font-size: 12px; }
.btn--primary { background: linear-gradient(180deg, var(--accent-2), var(--accent)); color: #1a1206; border-color: transparent; }
.btn--primary small { color: #5a4410; }
.btn--primary:hover { border-color: transparent; filter: brightness(1.04); }
.btn--ghost { background: transparent; }
/* light-blue accent button — complements the orange primary, glows to draw the eye */
.btn--blue { background: linear-gradient(180deg, #7fd1ff, #2f9fe0); color: #052433; border-color: transparent; box-shadow: 0 0 0 1px rgba(127,209,255,.35), 0 8px 24px rgba(47,159,224,.42); }
.btn--blue:hover { border-color: transparent; filter: brightness(1.06); }

/* sections */
.section { padding: 46px 0; border-top: 1px solid var(--line); }
.section h2 { font-size: 26px; margin: 0 0 24px; }

/* feature grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.card h3 { margin: 0 0 8px; font-size: 17px; color: var(--accent-2); }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* support table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.support { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
.support th, .support td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.support thead th { background: var(--panel-2); color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.support tr:last-child td { border-bottom: none; }
.support td .muted { display: block; font-weight: 400; font-size: 12px; }
.support .yes { color: var(--ok); font-weight: 700; }
.support .meh { color: var(--meh); font-weight: 700; }
.support .no { color: var(--no); font-weight: 700; }
.support tr.dim { opacity: 0.6; }
.muted { color: var(--muted); }

/* steps / details */
.steps { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
details { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 18px; }
details[open] { background: var(--panel-2); }
summary { cursor: pointer; font-weight: 600; padding: 12px 0; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::before { content: "+"; color: var(--accent); font-weight: 800; margin-right: 10px; }
details[open] summary::before { content: "\2013"; }
details ol, details p { margin: 4px 0 16px; color: var(--muted); }
details ol { padding-left: 22px; }
details li { margin: 6px 0; }

/* footer */
.footer { max-width: var(--max); margin: 40px auto 0; padding: 28px 20px 60px; border-top: 1px solid var(--line); text-align: center; }
.footer p { margin: 6px 0; font-size: 13px; }

/* age gate */
.agegate { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; background: rgba(8, 8, 12, 0.92); backdrop-filter: blur(6px); padding: 20px; }
.agegate[hidden] { display: none; }
.agegate__card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; max-width: 440px; text-align: center; }
.agegate__card h2 { margin: 0 0 12px; color: var(--accent); }
.agegate__card p { color: var(--muted); margin: 0 0 22px; }
.agegate__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
