/* ===== THEME KNOBS — change colours/fonts/spacing here ===== */
:root {
  --teal: #2DD4BF;
  --teal-deep: #0c2e2a;   /* darker teal — used only in the hero gradient */
  --bg: #0c0c0c;
  --surface: #161616;
  --text: #f0f0f0;
  --muted: #a0a0a0;
  --maxw: 1100px;
  --pad: 24px;
  --radius: 16px;
  --font: "Outfit", system-ui, -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* keep section headings clear of the 64px sticky nav when jumping to #anchors */
[id] { scroll-margin-top: 80px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.5; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== LAYOUT ===== */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 72px 0; }
.eyebrow { color: var(--teal); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
h1 { font-weight: 900; font-size: clamp(34px, 6vw, 60px); line-height: 1.05; letter-spacing: -0.5px; }
h2 { font-weight: 800; font-size: clamp(26px, 4vw, 40px); line-height: 1.1; letter-spacing: -0.5px; }
p.lead { color: var(--muted); font-size: clamp(16px, 2vw, 19px); }

/* ===== BUTTONS / STORE BADGES ===== */
.btn { display: inline-block; background: var(--teal); color: #0c0c0c; font-weight: 700;
  padding: 12px 20px; border-radius: 10px; }
.btn:hover { filter: brightness(1.08); }
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badges img { height: 48px; width: auto; }

/* ===== NAV ===== */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(12,12,12,0.85);
  backdrop-filter: blur(8px); border-bottom: 1px solid #ffffff14; }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav .brand { font-weight: 800; font-size: 20px; }
.nav .brand b { color: var(--teal); }
.nav .links { display: flex; align-items: center; gap: 22px; }
.nav .links a { color: var(--muted); font-weight: 600; font-size: 15px; }
.nav .links a:hover { color: var(--text); }
.nav .menu-btn { display: none; background: none; border: 0; color: var(--text); font-size: 24px; cursor: pointer; }

@media (max-width: 720px) {
  .nav .links { position: absolute; top: 64px; left: 0; right: 0; flex-direction: column;
    background: var(--bg); border-bottom: 1px solid #ffffff14; padding: 16px var(--pad); gap: 16px; display: none; }
  .nav .links.open { display: flex; }
  .nav .menu-btn { display: block; }
}

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, #0c0c0c 0%, var(--teal-deep) 55%, var(--teal) 165%);
  padding: 72px 0 88px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.hero-copy h1 { margin: 12px 0 16px; }
.hero-copy .lead { max-width: 520px; margin-bottom: 24px; }
.hero-art img { margin: 0 auto; max-height: 540px; border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 48px; }
  .hero-art img { margin: 0; }
}

/* ===== FEATURES ===== */
.feature .container { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.feature h2 { margin: 10px 0 12px; }
.feature ul { list-style: none; margin-top: 16px; display: grid; gap: 10px; }
.feature li { padding-left: 26px; position: relative; color: var(--muted); }
.feature li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }
.feature .art { background: var(--surface); border: 1px solid #ffffff14; border-radius: var(--radius);
  min-height: 240px; display: flex; align-items: center; justify-content: center; color: var(--muted); }
.feature.alt .container { direction: rtl; }     /* flip image side on desktop */
.feature.alt .container > * { direction: ltr; }
@media (min-width: 900px) {
  .feature .container { grid-template-columns: 1fr 1fr; gap: 56px; }
}

/* ===== TRUST STRIP ===== */
.strip { background: var(--surface); border-top: 1px solid #ffffff10; border-bottom: 1px solid #ffffff10; padding: 20px 0; }
.strip p { text-align: center; color: var(--muted); font-weight: 600; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid #ffffff14; padding: 36px 0; background: var(--surface); }
.footer .brand { font-weight: 800; font-size: 20px; }
.footer .brand b { color: var(--teal); }
.footer-top { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--muted); font-weight: 600; }
.footer-links a:hover { color: var(--text); }
.footer-fine { color: var(--muted); font-size: 13px; margin-top: 18px; }

/* ===== LEGAL PAGES ===== */
.legal { max-width: 760px; margin: 0 auto; padding: 56px var(--pad); }
.legal h1 { font-size: clamp(28px, 5vw, 40px); margin-bottom: 8px; }
.legal h2 { font-size: 22px; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal a { color: var(--teal); }
.legal .back { display: inline-block; margin-bottom: 24px; color: var(--teal); font-weight: 700; }
.legal ul { padding-left: 20px; margin-bottom: 12px; }
.legal table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 4px; margin-bottom: 12px; }
.legal th { text-align: left; padding: 8px 10px; border-bottom: 1.5px solid #ffffff20; color: var(--muted); font-weight: 700; font-size: 12px; }
.legal td { padding: 8px 10px; border-bottom: 1px solid #ffffff14; color: var(--muted); vertical-align: top; }
.legal .legal-footer-link { margin-top: 48px; padding-top: 32px; border-top: 1px solid #ffffff14; }
.legal .legal-footer-link a { font-size: 14px; font-weight: 600; }
/* rich legal components (summary box, table of contents, callouts) */
.legal h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 24px 0 8px; }
.legal .lead { font-size: 18px; color: var(--text); }
.legal .updated { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.legal h2 .num { color: var(--teal); font-variant-numeric: tabular-nums; font-weight: 700; margin-right: 10px; }
.legal .summary { background: var(--surface); border: 1px solid #ffffff14; border-radius: 14px; padding: 8px 24px 20px; margin: 32px 0; }
.legal .summary h2 { font-size: 18px; margin-top: 24px; }
.legal .inshort { font-style: italic; color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.legal .toc { list-style: none; counter-reset: toc; padding: 0; margin: 28px 0; }
.legal .toc li { counter-increment: toc; margin-bottom: 0; border-bottom: 1px solid #ffffff14; }
.legal .toc li a { display: flex; gap: 14px; padding: 11px 4px; color: var(--text); }
.legal .toc li a:hover { color: var(--teal); }
.legal .toc li a::before { content: counter(toc, decimal-leading-zero); color: var(--teal); font-variant-numeric: tabular-nums; font-weight: 700; min-width: 28px; }
.legal .callout { border-left: 3px solid var(--teal); background: var(--surface); padding: 16px 20px; border-radius: 0 10px 10px 0; margin: 20px 0; font-size: 15px; }
.legal .callout p:last-child { margin-bottom: 0; }
.legal .addr { line-height: 1.6; color: var(--muted); }

/* ===== FAQ ===== */
.faq-eyebrow { text-align: center; }
.faq-title { text-align: center; margin: 8px 0 28px; }
.faq details { border: 1px solid #ffffff14; border-radius: 12px; padding: 16px 18px; margin-bottom: 12px; background: var(--surface); }
.faq summary { font-weight: 700; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }   /* hide native triangle (Safari/Chrome) */
.faq summary::marker { content: ""; }                     /* hide native triangle (Firefox) */
.faq summary::after { content: "+"; float: right; color: var(--teal); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin-top: 10px; }
.faq .container { max-width: 760px; }
