/* TOPBET - LAYOUT_131 DARK HERO CARDS - COLOR_084 DARK HERO NEON - TYPO_009 */
:root {
  --primary: #07111F;
  --accent: #00D084;
  --bg: #081226;
  --text: #F8FAFC;
  --muted: #CBD5E1;
  --surface: #0F1B3E;
  --surface-2: #192B5D;
  --border: rgba(255,255,255,0.14);
  --container: 1240px;
  --header-h: 72px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,.4);
  --font-display: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--text); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; height: auto; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.2; }

/* TOPBAR */
.topbar { background: #07111F; color: var(--muted); font-size: 13px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar .promo { display: flex; gap: 8px; align-items: center; font-weight: 600; }
.topbar .promo .badge { background: var(--accent); color: #07111F; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 800; }

/* HEADER */
header.site { position: sticky; top: 0; z-index: 100; background: rgba(7,17,31,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); height: var(--header-h); display: flex; align-items: center; }
header.site .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--accent); font-size: 19px; font-family: var(--font-display); }
.logo span.cs { color: var(--text); font-weight: 500; }
nav.main { display: flex; gap: 4px; flex: 1; justify-content: center; }
nav.main a { padding: 10px 14px; border-radius: var(--radius-sm); color: var(--text); font-weight: 500; font-size: 14px; transition: all .2s; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
nav.main a:hover { background: var(--surface); color: var(--accent); text-decoration: none; }
nav.main .nav-icon { width: 17px; height: 17px; flex: 0 0 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: .9; }
.menu-toggle { display: none; background: transparent; border: 0; cursor: pointer; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--radius-sm); }
.menu-toggle .hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.menu-toggle .hamburger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 28px; border-radius: 999px; font-weight: 700; font-size: 15px; line-height: 1; cursor: pointer; border: 0; transition: all .2s; white-space: nowrap; gap: 8px; font-family: var(--font-body); min-height: 44px; }
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--accent); color: #07111F; }
.btn-primary:hover { background: var(--text); color: #07111F; }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #07111F; }

/* BREADCRUMB */
.breadcrumb { background: var(--primary); border-bottom: 1px solid var(--border); padding: 12px 0; font-size: 13px; color: var(--muted); font-family: var(--font-display); }
.breadcrumb .container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); }
.breadcrumb .sep { color: var(--border); }

/* HERO */
.hero { background: linear-gradient(135deg, #07111F 0%, #0F1B3E 100%); padding: 80px 0 64px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background-image: radial-gradient(circle at 20% 50%, rgba(0,208,132,.08) 0%, transparent 50%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-visual .container { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 520px); align-items: center; gap: 42px; }
.hero-copy { min-width: 0; }
.hero-art { display: block; }
.hero-art img { display: block; width: 100%; height: auto; border-radius: 16px; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 22px 55px rgba(0,0,0,.35); }
.hero h1 { font-size: 56px; font-weight: 800; color: var(--text); margin-bottom: 20px; max-width: 760px; line-height: 1.05; }
.hero .lede { font-size: 20px; color: var(--muted); margin-bottom: 28px; max-width: 680px; line-height: 1.5; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* TRUST STRIP */
.trust-strip { background: var(--surface); padding: 32px 0; border-bottom: 1px solid var(--border); }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-stat .num { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1; }
.trust-stat .lbl { font-size: 13px; color: var(--muted); margin-top: 6px; text-transform: uppercase; letter-spacing: .05em; }

/* HUB GRID (Dark Hero Cards) */
.hub-grid-section { padding: 64px 0; background: var(--bg); }
.latest-post { padding: 56px 0; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.latest-post .section-title { text-align: left; }
.latest-post .section-sub { text-align: left; margin-bottom: 28px; }
.section-title { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--text); margin-bottom: 12px; text-align: center; }
.section-sub { font-size: 17px; color: var(--muted); text-align: center; margin-bottom: 40px; }
.hub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hub-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: all .25s; position: relative; overflow: hidden; display: block; }
.hub-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--accent) 0%, transparent 100%); opacity: 0; transition: opacity .25s; }
.hub-card:hover { transform: translateY(-2px); border-color: var(--accent); text-decoration: none; }
.hub-card:hover::after { opacity: 1; }
.hub-card .icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(0,208,132,.18), rgba(255,255,255,.06)); border: 1px solid rgba(0,208,132,.22); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--accent); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.hub-card .icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hub-card h3 { font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.hub-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* CONTENT */
.content { background: var(--bg); padding: 64px 0; }
.longform { max-width: 880px; margin: 0 auto; }
.longform .lede { font-size: 19px; color: var(--muted); line-height: 1.6; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.longform h2 { font-size: 30px; line-height: 1.2; font-weight: 800; color: var(--text); margin: 40px 0 14px; }
.longform h3 { font-size: 22px; line-height: 1.3; font-weight: 700; color: var(--accent); margin: 28px 0 10px; }
.longform h4 { font-size: 18px; font-weight: 700; color: var(--text); margin: 18px 0 6px; }
.longform p { font-size: 17px; line-height: 1.75; margin-bottom: 16px; color: var(--text); }
.longform ul, .longform ol { margin: 12px 0 18px 24px; color: var(--text); }
.longform li { margin-bottom: 8px; line-height: 1.7; }
.longform details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 10px; }
.longform summary { cursor: pointer; font-weight: 600; color: var(--text); padding: 4px 0; }
.longform details[open] summary { color: var(--accent); margin-bottom: 8px; }
.longform details > div { color: var(--muted); line-height: 1.6; }
.longform .hub-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important; }
.content-visual { margin: 34px 0 22px; }
.content-visual img { width: min(100%, 760px); margin: 0 auto; border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 18px 44px rgba(0,0,0,.28); aspect-ratio: 16 / 9; object-fit: cover; }
.longform h2 + .content-visual,
.content-visual + h2 { margin-top: 34px; }

/* TABLE */
.stats-table { width: 100%; border-collapse: collapse; margin: 24px 0; background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.stats-table th, .stats-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.stats-table th { background: var(--surface-2); color: var(--accent); font-family: var(--font-display); font-weight: 700; }
.stats-table tr:last-child td { border-bottom: 0; }
.stats-table tr:hover { background: var(--surface-2); }

/* TOC */
.toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 32px; }
.toc h2 { font-size: 18px; color: var(--accent); margin-bottom: 10px; }
.toc ol { margin: 0; padding-left: 20px; }
.toc li { margin-bottom: 4px; font-size: 14px; }
.toc a { color: var(--muted); }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%); padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.cta-band h3 { font-size: 32px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.cta-band p { font-size: 17px; color: var(--muted); margin-bottom: 24px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-band .btn { margin: 0 6px; }

/* FOOTER */
footer { background: #07111F; color: rgba(248,250,252,.7); padding: 56px 0 24px; margin-top: 64px; border-top: 1px solid var(--border); }
footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
footer h5 { color: var(--accent); font-family: var(--font-display); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; font-size: 14px; }
footer a { color: rgba(248,250,252,.7); }
footer a:hover { color: var(--accent); }
footer .footer-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; margin: 12px 0 16px; }
footer .footer-brand .logo { color: var(--accent); margin-bottom: 12px; }
footer .footer-brand .logo span.cs { color: rgba(248,250,252,.7); }
footer .legal-bar { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--muted); font-family: var(--font-display); }
footer .legal-bar a { color: var(--muted); }

/* STICKY MOBILE CTA */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(7,17,31,.98); border-top: 1px solid var(--border); padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); z-index: 999; box-shadow: 0 -10px 30px rgba(0,0,0,.5); gap: 10px; }
.sticky-cta .btn { flex: 1; min-height: 44px; padding: 11px 14px; font-size: 13px; font-weight: 800; }

/* DESKTOP-ONLY HELPER */
.desktop-only { display: inline-flex; }

/* RESPONSIVE - 3 @media blocks (1024/768/480) */
@media (max-width: 1024px) {
  .hub-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  footer .container { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 44px; }
  .hero-visual .container { grid-template-columns: 1fr; gap: 28px; }
  .hero-art { max-width: 560px; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .topbar .promo { display: none; }
  .topbar .social { display: none; }
  nav.main { display: none; }
  nav.main.open { display: flex; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--surface); padding: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); z-index: 99; }
  nav.main.open a { padding: 12px 16px; text-align: center; }
  .menu-toggle { display: inline-flex; }
  header.site .container > .btn { display: none !important; }
  .desktop-only { display: none !important; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 32px; }
  .hero .lede { font-size: 17px; }
  .hero-visual .container { gap: 20px; }
  .hero-art img { border-radius: 12px; max-height: 220px; object-fit: cover; object-position: center; }
  .hub-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hub-card { padding: 18px; }
  .hub-card h3 { font-size: 16px; }
  .section-title { font-size: 26px; }
  .longform h2 { font-size: 24px; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-stat .num { font-size: 28px; }
  footer .container { grid-template-columns: 1fr; gap: 24px; }
  .cta-band { padding: 40px 0; }
  .cta-band h3 { font-size: 24px; }
  .news-card { grid-template-columns: 1fr !important; gap: 14px !important; padding: 16px !important; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hub-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}

/* Company and policy page navigation */
.eyebrow{display:inline-block;margin-bottom:14px;color:var(--accent);font:800 12px/1 var(--font-display);letter-spacing:.12em;text-transform:uppercase}
.context-nav{position:relative;z-index:3;background:rgba(7,17,31,.92);border-top:1px solid var(--border);border-bottom:1px solid var(--border);backdrop-filter:blur(14px)}
.context-nav .container{display:flex;align-items:center;gap:8px;overflow-x:auto;padding-top:12px;padding-bottom:12px;scrollbar-width:none}
.context-nav span{color:var(--muted);font:800 11px/1 var(--font-display);letter-spacing:.12em;text-transform:uppercase;margin-right:8px}
.context-nav a{white-space:nowrap;padding:9px 14px;border:1px solid var(--border);border-radius:999px;color:var(--text);font:700 13px/1 var(--font-display)}
.context-nav a:hover{border-color:var(--accent);color:var(--accent);background:rgba(0,208,132,.07)}
.page-menu{margin-top:64px;background:linear-gradient(180deg,var(--surface),var(--bg))}
.longform strong{color:var(--text)}
@media(max-width:640px){.context-nav .container{padding-left:20px;padding-right:20px}.page-menu{margin-top:40px}}
