/* FairPlay Guide — one stylesheet. Tokens on :root, dark by default, light override.
   Self-contained, no external CSS, no web-font CDN (font is self-hosted same-origin). */

:root{
  --bg:#121212; --surface:#1c1c1e; --text:#ededed; --muted:#a0a0a0;
  --accent:#3ad07a; --accent2:#f5c542; --line:#2a2a2c;
  --maxw:760px; --wide:1120px; --gutter:16px;
  --font:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}
@media (prefers-color-scheme: light){
  :root:not([data-theme="dark"]){
    --bg:#ffffff; --surface:#f5f6f8; --text:#16181c; --muted:#5a6270;
    --accent:#0a8f4d; --accent2:#b8860b; --line:#e2e5ea;
  }
}
:root[data-theme="light"]{
  --bg:#ffffff; --surface:#f5f6f8; --text:#16181c; --muted:#5a6270;
  --accent:#0a8f4d; --accent2:#b8860b; --line:#e2e5ea;
}

@font-face{
  font-family:Montserrat; font-style:normal; font-weight:100 900; font-display:swap;
  src:url(../fonts/montserrat-latin.woff2) format("woff2");
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; background:var(--bg); color:var(--text);
  font-family:var(--font); font-size:1.0625rem; line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 var(--gutter)}
.wide{max-width:var(--wide)}

a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}

h1{font-size:clamp(1.9rem,5vw,2.75rem); font-weight:800; line-height:1.15; margin:.6em 0 .4em}
h2{font-size:clamp(1.4rem,3.5vw,2rem); font-weight:700; line-height:1.25; margin:1.8em 0 .5em}
h3{font-size:1.25rem; font-weight:700; margin:1.4em 0 .4em}
p,ul,ol,table{margin:0 0 1em}
ul,ol{padding-left:1.3em}

/* header */
.site-header{border-bottom:1px solid var(--line); background:var(--bg); position:sticky; top:0; z-index:20}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.7rem var(--gutter); max-width:var(--wide); margin:0 auto}
.logo{font-weight:800; font-size:1.15rem; color:var(--text)}
.logo b{color:var(--accent)}
.primary-nav{display:flex; gap:1.1rem; flex-wrap:wrap; list-style:none; margin:0; padding:0}
.primary-nav a{color:var(--text); font-weight:600; font-size:.95rem}
.primary-nav a:hover{color:var(--accent)}
.nav-toggle{display:none}

/* disclosure */
.fpg-disclosure{background:var(--surface); border:1px solid var(--line); border-left:3px solid var(--accent2);
  padding:.9rem 1rem; border-radius:8px; font-size:.92rem; color:var(--muted); margin:1.2rem 0}
.fpg-disclosure strong{color:var(--text)}

/* content */
main{padding:1rem 0 3rem}
.lead{font-size:1.12rem}
table{width:100%; border-collapse:collapse; font-size:.96rem}
th,td{border:1px solid var(--line); padding:.55rem .7rem; text-align:left}
th{background:var(--surface)}

/* faq */
.faq_section ul{list-style:none; padding:0}
.faq_section li{border:1px solid var(--line); border-radius:8px; margin:.5rem 0; overflow:hidden; background:var(--surface)}
.faq_item-question{display:flex; justify-content:space-between; align-items:center; gap:1rem; padding:.9rem 1rem; cursor:pointer}
.faq_item-title{font-weight:700}
.faq_item-answer{padding:0 1rem 1rem; color:var(--muted); display:none}
.faq_section li.active .faq_item-answer{display:block}
.faq_section .arrow svg{width:16px; height:16px; fill:var(--muted); transition:transform .2s}
.faq_section li.active .arrow svg{transform:rotate(180deg)}

/* cta */
.btn{display:inline-block; background:var(--accent); color:#04120a; font-weight:700;
  padding:.7rem 1.2rem; border-radius:8px; margin:.3rem 0}
.btn:hover{text-decoration:none; filter:brightness(1.05)}

/* footer */
.site-footer{border-top:1px solid var(--line); background:var(--surface); margin-top:2rem}
.site-footer .wrap{padding-top:1.5rem; padding-bottom:2rem}
.footer-nav{display:flex; gap:1.2rem; flex-wrap:wrap; list-style:none; padding:0; margin:0 0 1rem}
.footer-nav a{color:var(--text); font-weight:600; font-size:.9rem}
.footer-legal{font-size:.85rem; color:var(--muted)}
.socials{display:flex; gap:.8rem; list-style:none; padding:0; margin:0 0 1rem}

@media (max-width:640px){
  .primary-nav{gap:.7rem; font-size:.85rem}
}

/* ---- added: hero, CTA, payments row, quick facts ---- */
.hero{display:flex;gap:1.2rem;align-items:center;background:var(--surface);border:1px solid var(--line);border-radius:12px;padding:1.2rem;margin:1rem 0 1.4rem}
.hero svg{flex:0 0 128px;width:128px;height:96px}
.hero .hero-txt{font-size:.98rem;color:var(--muted)}
.hero .hero-txt strong{color:var(--text)}

.cta-block{background:linear-gradient(135deg,var(--surface),var(--bg));border:1px solid var(--line);border-left:3px solid var(--accent);border-radius:12px;padding:1.1rem 1.2rem;margin:1.4rem 0;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.8rem}
.cta-block .cta-copy{font-weight:600;color:var(--text);font-size:1rem}
.cta-block .cta-sub{display:block;font-weight:400;color:var(--muted);font-size:.85rem;margin-top:.2rem}
.cta-btn{display:inline-block;background:var(--accent);color:#04120a;font-weight:800;padding:.8rem 1.5rem;border-radius:8px;white-space:nowrap;font-size:1rem}
.cta-btn:hover{text-decoration:none;filter:brightness(1.06)}
.cta-note{font-size:.72rem;color:var(--muted);width:100%;margin-top:.2rem}

.quickfacts{border:1px solid var(--line);border-radius:12px;overflow:hidden;margin:1rem 0 1.4rem}
.quickfacts table{margin:0}
.quickfacts th{width:42%;background:var(--surface)}

.payments-row{margin:1.2rem 0 1rem}
.payments-row .plabel{font-size:.8rem;color:var(--muted);margin-bottom:.5rem}
.payments-row ul{display:flex;flex-wrap:wrap;gap:.5rem;list-style:none;padding:0;margin:0}
.payments-row li{border:1px solid var(--line);background:var(--bg);border-radius:6px;padding:.35rem .7rem;font-size:.8rem;font-weight:700;color:var(--muted);letter-spacing:.02em}

@media (max-width:640px){
  .hero{flex-direction:column;text-align:center}
  .cta-block{flex-direction:column;align-items:stretch;text-align:center}
  .cta-btn{text-align:center}
}
