:root{
  --bg:#050505;
  --panel:#0e0e0e;
  --text:#f2f2f2;
  --muted:#bdbdbd;
  --line:rgba(255,255,255,.12);
  --accent:#ff7a00;
  --max:1040px;
  --radius:14px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--max);margin:0 auto;padding:0 18px}
.skip{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip:focus{left:18px;top:18px;width:auto;height:auto;background:#000;color:#fff;padding:10px;border:1px solid var(--line);border-radius:10px;z-index:9999}

.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(5,5,5,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-row{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 0}
.brand{display:flex;flex-direction:column;gap:2px}
.brand a{
  color:var(--text);
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:18px;
}
.brand small{color:var(--muted);letter-spacing:.08em;text-transform:uppercase;font-size:12px}
.nav{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.nav a{
  color:var(--text);
  font-weight:600;
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
}
.nav a[aria-current="page"]{background:rgba(255,122,0,.14);border:1px solid rgba(255,122,0,.35)}
.nav a:hover{background:rgba(255,255,255,.06);text-decoration:none}

.hero{position:relative;border-bottom:1px solid var(--line)}
.hero-inner{padding:44px 0 24px}
.hero h1{margin:0 0 10px 0;font-size:34px;letter-spacing:.02em}
.hero p{margin:0;color:var(--muted);max-width:78ch}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  margin:16px 0;
}
.hr{height:1px;background:var(--line);margin:22px 0}
h2,h3{margin:22px 0 10px 0}
h2{font-size:22px}
h3{font-size:18px}
ul,ol{margin:10px 0 0 22px}
.kicker{color:var(--muted);text-transform:uppercase;letter-spacing:.1em;font-weight:700;font-size:12px}
.btn{
  display:inline-block;
  background:var(--accent);
  color:#000;
  font-weight:800;
  padding:10px 14px;
  border-radius:12px;
  border:0;
}
.btn:hover{filter:brightness(1.05);text-decoration:none}
.grid2{display:grid;grid-template-columns:1.2fr .8fr;gap:16px}
@media (max-width:860px){.grid2{grid-template-columns:1fr}}

.site-footer{border-top:1px solid var(--line);padding:18px 0 32px;color:var(--muted);margin-top:40px}
.footer-row{display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap}
.footer-links a{color:var(--muted);margin-right:12px}
.footer-links a:hover{color:var(--text);text-decoration:none}

/* Accordion */
.accordion{margin:14px 0}
.acc-item{border:1px solid var(--line);border-radius:12px;overflow:hidden;background:rgba(255,255,255,.03);margin:10px 0}
.acc-btn{
  width:100%;
  background:transparent;
  color:var(--text);
  border:0;
  text-align:left;
  padding:14px 14px;
  font-weight:800;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.acc-panel{display:none;padding:0 14px 14px 14px;color:var(--muted)}
.acc-item.open .acc-panel{display:block}
.acc-chevron{opacity:.7}

/* Age gate */
.agegate-backdrop{
  position:fixed;inset:0;background:rgba(0,0,0,.82);
  display:none;align-items:center;justify-content:center;z-index:9999;
  padding:20px;
}
.agegate{
  max-width:520px;width:100%;
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,.16);
  border-radius:16px;
  padding:18px;
}
.agegate h2{margin:0 0 8px 0}
.agegate p{margin:0 0 14px 0;color:var(--muted)}
.agegate .row{display:flex;gap:10px;flex-wrap:wrap}
.agegate button{
  flex:1;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  cursor:pointer;
  font-weight:800;
}
.agegate .yes{background:var(--accent);color:#000;border-color:rgba(255,122,0,.55)}
.agegate .no{background:transparent;color:var(--text)}
.agegate small{display:block;margin-top:10px;color:var(--muted)}
}

