:root {
  --bg: #050505;
  --bg-2: #0b0b0b;
  --ink: #f5f5f5;
  --muted: #b4b4b4;
  --line: rgba(255,255,255,.12);
  --orange: #f97316;
  --orange-2: #ea580c;
  --card: #111111;
  --danger: #f43f5e;
  --ok: #22c55e;
  --warn: #eab308;
  --ready: #38bdf8;
  --radius: 4px;
  --header-h: 72px;
  --max: 1180px;
  --font: "Montserrat", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 12px; top: 12px; background: #fff; color: #000; padding: 8px 12px; z-index: 80; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: .04em;
}
.brand-mark {
  width: 28px; height: 28px; border-radius: 6px;
  background: linear-gradient(135deg, #222, #000);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 10px; font-weight: 800; color: var(--orange);
}
nav { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
nav a { color: #ddd; font-size: 13px; font-weight: 500; }
nav a:hover, nav a[aria-current="page"] { color: #fff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 28px;
  background: var(--orange); color: #111; font-weight: 700;
  border: 0; border-radius: var(--radius); cursor: pointer;
}
.btn:hover { background: var(--orange-2); }
.btn.ghost {
  background: transparent; color: #fff; border: 1px solid var(--line);
}
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.hero {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px;
  align-items: center; padding: 72px 0 48px;
}
.kicker {
  color: var(--orange); font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin: 0 0 18px;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: .92; letter-spacing: -.04em; margin: 0;
  font-weight: 700;
}
.lead { color: var(--muted); font-size: 1.05rem; max-width: 42rem; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.video-card {
  background: #171717; border: 1px solid var(--line); border-radius: 12px;
  min-height: 320px; position: relative; overflow: hidden;
}
.video-card .stage {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(249,115,22,.25), transparent 40%),
    linear-gradient(180deg, #1a1a1a, #0a0a0a);
  display: grid; place-items: center;
}
.play {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--orange); border: 0; cursor: pointer; font-size: 22px;
}
.section { padding: 88px 0; border-top: 1px solid var(--line); }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -.03em; margin: 0 0 12px; }
.grid-4, .grid-3, .grid-2 { display: grid; gap: 16px; }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 22px;
}
.card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }
.band {
  background: #0f0f0f; border-block: 1px solid var(--line);
  padding: 56px 0; text-align: center;
}
.marquee {
  overflow: hidden; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex; gap: 14px; padding: 18px 0;
  width: max-content; animation: slide 42s linear infinite;
}
.thumb {
  width: 280px; height: 158px; border-radius: 10px;
  border: 1px solid var(--line); background: #161616;
  padding: 16px; display: flex; flex-direction: column; justify-content: space-between;
}
.thumb small { color: var(--orange); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 10px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
.faq-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0; }
.faq-tabs button {
  background: transparent; color: #ddd; border: 1px solid var(--line);
  min-height: 44px; padding: 10px 14px; cursor: pointer; border-radius: var(--radius);
}
.faq-tabs button[aria-selected="true"] { border-color: var(--orange); color: #fff; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.accordion summary { cursor: pointer; font-weight: 600; }
footer {
  padding: 36px 0 48px; color: var(--muted); font-size: 13px;
  border-top: 1px solid var(--line);
}
.foot-row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.disclosure {
  border: 1px solid rgba(249,115,22,.35);
  background: rgba(249,115,22,.08);
  padding: 14px 16px; border-radius: 10px; color: #ddd; font-size: .92rem;
}
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
input, select {
  background: #0f0f0f; color: #fff; border: 1px solid var(--line);
  min-height: 44px; padding: 10px 12px; border-radius: var(--radius);
  font: inherit;
}
.chip {
  min-height: 40px; padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent; color: #eee; cursor: pointer;
}
.chip.on { border-color: var(--orange); color: #fff; }
.results { display: grid; gap: 12px; }
.result {
  display: grid; grid-template-columns: 110px 1fr; gap: 16px;
  border: 1px solid var(--line); border-radius: 12px; padding: 16px; background: #0e0e0e;
}
.stat {
  font-size: 2rem; font-weight: 700; letter-spacing: -.03em;
}
.muted { color: var(--muted); }
.internal-banner {
  background: #3f1d0a; color: #ffd7b0; padding: 8px 16px; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.board { display: grid; grid-template-columns: repeat(5, minmax(180px,1fr)); gap: 12px; align-items: start; }
.col { background: #0c0c0c; border: 1px solid var(--line); border-radius: 10px; padding: 10px; min-height: 40vh; }
.col h3 { margin: 0 0 10px; font-size: 13px; display: flex; justify-content: space-between; }
.task {
  background: #151515; border: 1px solid var(--line); border-radius: 8px;
  padding: 10px; margin-bottom: 8px; font-size: 13px;
}
.task b { display: block; margin-bottom: 6px; }
.pill { display: inline-block; font-size: 10px; padding: 3px 7px; border: 1px solid var(--line); border-radius: 999px; margin-right: 4px; }
.dash-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 18px; }
.horizon { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
@media (max-width: 980px) {
  .hero, .grid-4, .grid-3, .dash-grid, .horizon, .board, .result { grid-template-columns: 1fr; }
  nav { display: none; }
  nav.open { display: flex; position: absolute; top: var(--header-h); left: 0; right: 0; background: #000; flex-direction: column; padding: 16px; }
  .menu { display: inline-flex; }
}
.menu { display: none; background: transparent; color: #fff; border: 1px solid var(--line); min-height: 44px; padding: 0 12px; }
.modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.72); display: none;
  align-items: center; justify-content: center; padding: 24px; z-index: 50;
}
.modal.open { display: flex; }
.modal .sheet { background: #111; border: 1px solid var(--line); max-width: 640px; padding: 28px; border-radius: 12px; }


/* 2026-09-07 BSM overhaul design layer */

:root{color-scheme:dark;--bg:#05070d;--bg2:#0e111d;--panel:rgba(16,18,30,.76);--panel2:rgba(255,255,255,.055);--ink:#f7f4ec;--muted:#b9bbc6;--line:rgba(255,255,255,.16);--orange:#ff5a12;--orange2:#ff8a39;--gold:#f1c86a;--blue:#8fb7ff;--shadow:0 36px 100px rgba(0,0,0,.48)}*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;background:var(--bg);color:var(--ink);font-family:Montserrat,Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;line-height:1.55}body:before{content:"";position:fixed;inset:0;z-index:-3;background:linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.78)),radial-gradient(circle at 74% 10%,rgba(255,90,18,.18),transparent 32rem),radial-gradient(circle at 14% 12%,rgba(143,183,255,.14),transparent 34rem),linear-gradient(180deg,#090c14,#040509 70%)}body:after{content:"";position:fixed;inset:0;z-index:-2;background:linear-gradient(115deg,transparent 0 18%,rgba(255,255,255,.04) 18.2% 18.5%,transparent 18.7% 100%),repeating-linear-gradient(90deg,rgba(255,255,255,.03) 0 1px,transparent 1px 70px);mask-image:linear-gradient(#000,transparent 70%)}a{color:inherit;text-decoration:none}.topbar{position:sticky;top:0;z-index:20;background:rgba(5,7,13,.84);backdrop-filter:blur(18px);border-bottom:1px solid rgba(255,255,255,.08)}.nav{max-width:1180px;margin:auto;padding:18px 22px;display:flex;align-items:center;justify-content:space-between;gap:20px}.brand{display:flex;align-items:center;gap:12px;font-weight:900;letter-spacing:.02em}.mark{font-size:2rem;line-height:.9}.brand small{display:block;font-size:.68rem;color:var(--muted);font-weight:700;letter-spacing:.04em}.links{display:flex;align-items:center;gap:22px;color:#e8e7e1;font-weight:700;font-size:.92rem}.links a:hover{color:var(--orange2)}.mobile-toggle{display:none;background:transparent;border:0;color:var(--ink);font-size:2rem}.hero{min-height:calc(100vh - 74px);display:grid;place-items:center;padding:78px 22px 52px;position:relative;overflow:hidden}.hero:before{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(rgba(5,7,13,.44),rgba(5,7,13,.94)),url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23080b13" width="1200" height="800"/><g fill="%23182030"><rect x="70" y="330" width="100" height="350"/><rect x="200" y="250" width="90" height="430"/><rect x="330" y="360" width="130" height="320"/><rect x="520" y="180" width="120" height="500"/><rect x="700" y="310" width="100" height="370"/><rect x="850" y="230" width="140" height="450"/><rect x="1040" y="345" width="80" height="335"/></g><g stroke="%23ffffff" opacity=".12"><path d="M580 80v100M530 180h100M1 680h1199"/><path d="M90 360h70M220 284h55M540 215h80M875 265h90"/></g></svg>') center/cover no-repeat}.hero-inner{width:min(1100px,100%);text-align:center}.kicker{display:inline-flex;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.08);padding:13px 34px;text-transform:uppercase;letter-spacing:.08em;font-size:.9rem;margin-bottom:28px}.hero h1{font-size:clamp(3.0rem,8vw,7.25rem);font-style:italic;font-weight:500;letter-spacing:-.055em;line-height:.95;margin:0 auto 22px;max-width:1000px}.hero .sub{font-size:clamp(1.18rem,2.4vw,1.85rem);font-weight:600}.btn{display:inline-flex;align-items:center;justify-content:center;min-height:54px;padding:15px 25px;border-radius:6px;background:linear-gradient(180deg,var(--orange2),var(--orange));color:#fff;font-weight:900;border:1px solid rgba(255,255,255,.25);box-shadow:0 18px 44px rgba(255,90,18,.28)}.btn.ghost{background:rgba(255,255,255,.08);border-color:var(--line);box-shadow:none}.hero-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin:28px 0}.video-card{width:min(850px,100%);height:clamp(210px,32vw,430px);margin:42px auto 18px;border-radius:13px;border:1px solid rgba(255,255,255,.25);background:#f7f3ed;box-shadow:var(--shadow);display:grid;place-items:center;color:#10131d;position:relative;overflow:hidden}.video-card:before{content:"";position:absolute;inset:0 0 auto;height:11px;background:#0d0c0c}.video-mark{font-size:clamp(3rem,8vw,7rem);font-weight:950;color:var(--orange);letter-spacing:-.08em}.tagline{font-size:clamp(1.2rem,2.3vw,1.75rem);font-style:italic;font-weight:500;max-width:760px;margin:0 auto}.section{max-width:1180px;margin:0 auto;padding:84px 22px}.section h2{font-size:clamp(2.2rem,5vw,4.7rem);line-height:1;letter-spacing:-.055em;margin:0 0 20px}.section .intro{font-size:1.12rem;color:var(--muted);max-width:850px}.split{display:grid;grid-template-columns:.9fr 1.1fr;gap:36px;align-items:start}.card{background:var(--panel);border:1px solid var(--line);border-radius:24px;padding:28px;box-shadow:var(--shadow)}.profile{display:grid;grid-template-columns:110px 1fr;gap:22px}.avatar{width:105px;height:105px;border-radius:26px;background:linear-gradient(135deg,var(--orange),var(--gold));display:grid;place-items:center;color:#120b06;font-weight:950;font-size:2rem}.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.tile{background:var(--panel2);border:1px solid var(--line);border-radius:20px;padding:22px;min-height:180px}.tile b{color:var(--gold);text-transform:uppercase;font-size:.75rem;letter-spacing:.08em}.band{border-block:1px solid var(--line);background:linear-gradient(90deg,rgba(255,90,18,.13),rgba(143,183,255,.08));text-align:center}.metrics{display:flex;overflow:hidden;gap:0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.metric{min-width:260px;padding:24px 34px;border-right:1px solid var(--line);animation:marquee 22s linear infinite}.metric strong{display:block;font-size:2.6rem;color:var(--orange2)}@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-100%)}}@media(prefers-reduced-motion:reduce){.metric{animation:none}}.blog-tools{display:grid;grid-template-columns:2fr 1fr 1fr auto;gap:12px;margin:24px 0}.blog-tools input,.blog-tools select{width:100%;border:1px solid var(--line);border-radius:12px;background:rgba(255,255,255,.08);color:var(--ink);padding:13px 14px;font:inherit}.blog-tools option{color:#111}.results-meta{color:var(--muted);font-weight:700;margin-bottom:14px}.posts{display:grid;gap:14px}.post{display:grid;grid-template-columns:160px 1fr;gap:16px;background:rgba(255,255,255,.055);border:1px solid var(--line);border-radius:18px;padding:18px}.datebox{color:var(--gold);font-weight:900;text-transform:uppercase}.topics{display:flex;gap:7px;flex-wrap:wrap;margin-top:10px}.topic{font-size:.74rem;background:rgba(255,90,18,.16);border:1px solid rgba(255,90,18,.35);padding:5px 8px;border-radius:999px}.empty{display:none;border:1px dashed var(--line);padding:30px;border-radius:18px;color:var(--muted)}footer{max-width:1180px;margin:0 auto;padding:38px 22px 60px;border-top:1px solid var(--line);display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;color:var(--muted)}@media(max-width:820px){.links{display:none;position:absolute;left:0;right:0;top:72px;background:#070912;flex-direction:column;align-items:flex-start;padding:18px 22px;border-bottom:1px solid var(--line)}.links.open{display:flex}.mobile-toggle{display:block}.hero{min-height:auto;padding-top:68px}.split,.grid,.blog-tools,.post{grid-template-columns:1fr}.profile{grid-template-columns:1fr}.section{padding:58px 18px}.nav{padding:14px 18px}.metrics{display:grid}.metric{animation:none}.hero h1{font-size:clamp(2.5rem,14vw,4.2rem)}}

/* mobile overflow hardening */
html,body{max-width:100%;overflow-x:hidden}.section,.hero,.nav,main,footer{max-width:100%;}.card,.tile,.post,.blog-tools input,.blog-tools select{min-width:0;max-width:100%;overflow-wrap:anywhere}.intro,p,h1,h2,h3{overflow-wrap:break-word}.aliases{font-size:.86rem;color:var(--muted)}@media(max-width:820px){.blog-tools{display:grid;grid-template-columns:minmax(0,1fr)!important;width:100%}.blog-tools .btn{width:100%}.section h1{font-size:clamp(2.35rem,12vw,3.25rem)!important}.section .intro{font-size:1rem}.card{padding:22px}.post{width:100%}}
