/* comesportsarena.com — Orange Arena (V9 FSL11)
   Canonical header: nav-grid flex layout. Arena-competitive, multi-sport.
   Includes: scroll-margin fix, mobile hero cap 480-720px,
   clean hamburger (1 rule, 3 bars, 42x42), section card wrappers.
============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--header-h);
  overflow-x: hidden;
}

/* ===== Section ID scroll-margin ===== */
section[id] { scroll-margin-top: 80px; }

/* ===== Container ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

/* ===== Skip link (a11y) ===== */
.skip-link {
  position: fixed !important;
  left: -9999px !important;
  top: 0;
  background: var(--primary);
  color: var(--inverse);
  padding: 12px 18px;
  z-index: 9999;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  border: 2px solid var(--primary);
}
.skip-link:focus { left: 8px !important; top: 8px; outline: 3px solid var(--primary); outline-offset: 2px; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--overlay);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--soft-border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header .container {
  padding: 0 16px;
  min-width: 0;
  height: 100%;
}

/* ===== nav-grid: canonical flex header layout ===== */
.nav-grid {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 100%;
}
.nav-grid .brand { flex-shrink: 0; margin-right: auto; }
.nav-grid .nav-links { flex: 0 0 auto; }

/* ===== Brand ===== */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FF6B00, #FFB627);
  color: #1A0F08;
  font-weight: 900;
  font-size: 15px;
  font-family: var(--font-sans);
  letter-spacing: 0.5px;
  box-shadow: 0 0 14px rgba(255,107,0,0.35);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--text-strong);
}
.brand-name em {
  font-style: normal;
  color: var(--primary);
  font-weight: 700;
}

/* ===== nav-links (desktop nav) ===== */
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links .nav-link {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color var(--t-fast);
}
.nav-links .nav-link:hover, .nav-links .nav-link.is-active { color: var(--primary); }
.nav-links .nav-link.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--primary); border-radius: 2px;
}

/* ===== Header CTA ===== */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 10px;
  transition: all var(--t-fast);
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 8px 15px; font-size: 13px; }
.btn-block { display: block; width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, #FF6B00, #FFB627);
  color: #1A0F08;
  box-shadow: 0 6px 20px rgba(255,107,0,0.30);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,107,0,0.42); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

/* ===== Hamburger (clean — 1 rule, 3 bars, 42x42) ===== */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: #F8F4EF;
  flex-shrink: 0;
  position: relative;
  z-index: 70;
  padding: 0;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile drawer ===== */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1A0F08;
  z-index: 55;
  padding: 82px 24px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
  height: 100vh; height: 100dvh;
  width: 100vw;
  overscroll-behavior: contain;
}
.mobile-drawer.is-open { display: block !important; }
.mobile-drawer a.drawer-section {
  display: block;
  padding: 14px 0;
  color: #F8F4EF;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 16px;
  font-weight: 600;
}
.mobile-drawer a.drawer-section:hover { color: #FF6B00; }
.drawer-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer-cta a {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}
.drawer-cta .btn-primary { background: linear-gradient(135deg, #FF6B00, #FFB627); color: #1A0F08; }
.drawer-cta .btn-ghost { background: transparent; color: #F8F4EF; border: 1px solid rgba(255,255,255,.12); }
.drawer-social { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.drawer-social-label { font-size: 12px; color: #C4B5A6; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }
.drawer-social-row { display: flex; gap: 10px; margin-top: 10px; }
.drawer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,107,0,0.10);
  color: #FF6B00;
}
body.menu-open { overflow: hidden; }

/* ===== Hero (LAYOUT_001 Magazine Newsstand) ===== */
.hero {
  position: relative;
  padding: 56px 0 72px;
  background: var(--gradient-hero);
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 22%, rgba(255,107,0,0.22), transparent 52%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-copy { z-index: 2; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--text-strong);
  letter-spacing: -0.02em;
  font-weight: 700;
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
}
.hero-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 26px;
  max-width: 620px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* hero-banner (magazine newsstand image) */
.hero-banner {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 107, 0, 0.18);
  position: relative;
  z-index: 2;
}

/* hero-trust panel (used on some pages) */
.hero-trust {
  background: rgba(255,182,39,0.04);
  border: 1px solid rgba(255,107,0,0.32);
  border-radius: var(--r-xl);
  padding: 22px;
  z-index: 2;
}
.hero-trust h3 {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.hero-trust ul { list-style: none; padding: 0; margin: 0; }
.hero-trust li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.hero-trust li:last-child { border-bottom: none; }
.hero-trust .check {
  display: inline-flex;
  width: 24px; height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255,107,0,0.18);
  color: var(--primary);
  flex-shrink: 0;
  font-size: 14px;
}

/* ===== Bands ===== */
.band {
  padding: 60px 0;
  background: var(--background);
}
.band-elev-1 { background: var(--surface); }
.band-elev-2 { background: linear-gradient(180deg, var(--background) 0%, var(--surface) 100%); }
.band-header { margin-bottom: 32px; max-width: 780px; }
.band-header h2 {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}
.band-header p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* ===== Card grids ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.card {
  background: var(--gradient-tile);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.card:hover { transform: translateY(-2px); border-color: var(--primary); }
.card h3 {
  margin: 12px 0 10px;
  color: var(--text-strong);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,107,0,0.18);
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}
.card p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.55; }

/* ===== stat-tile / loose-card ===== */
.stat-tile {
  background: var(--surface);
  border: 1px solid rgba(255,107,0,0.40);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.loose-card {
  margin: 24px 0;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255,107,0,0.10), rgba(255,107,0,0.02));
  border: 2px solid rgba(255,107,0,0.45);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
}
.loose-card h3 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.loose-card p { color: var(--text); font-size: 15px; line-height: 1.7; margin: 0 0 14px; }
.loose-card p:last-child { margin-bottom: 0; }
.loose-card ul { margin: 0 0 14px; padding-left: 20px; }
.loose-card li { color: var(--text); font-size: 15px; line-height: 1.6; margin-bottom: 8px; }
.loose-card-icon {
  display: inline-flex;
  width: 32px; height: 32px;
  background: rgba(255,107,0,0.30);
  border-radius: 8px;
  color: var(--primary);
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ===== Step grid ===== */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}
.step-card {
  background: var(--gradient-tile);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-lg);
  padding: 20px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FF6B00, #FFB627);
  color: #1A0F08;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 10px;
}
.step-card h3 { margin: 0 0 8px; font-size: 16px; color: var(--text-strong); }
.step-card p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ===== Data grid (stat tiles) ===== */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.data-card {
  background: var(--surface);
  border: 1px solid rgba(255,107,0,0.40);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.data-num, .stat-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  font-family: var(--font-display);
}
.data-label, .stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
  font-weight: 700;
}

/* ===== Spotlight (homepage stat row) ===== */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}
.spot-card {
  background: var(--gradient-tile);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-lg);
  padding: 22px;
}
.spot-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-display);
  line-height: 1;
}
.spot-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 700;
}
.spot-desc { font-size: 13px; color: var(--text-muted); margin-top: 10px; line-height: 1.5; }

/* ===== Risk grid ===== */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}
.risk-card {
  background: linear-gradient(135deg, rgba(239,68,68,0.10), rgba(239,68,68,0.02));
  border: 1px solid rgba(239,68,68,0.40);
  border-radius: var(--r-lg);
  padding: 20px;
}
.risk-card h3 {
  margin: 0 0 8px;
  color: #EF4444;
  font-size: 16px;
  font-weight: 800;
}
.risk-card p { margin: 0 0 8px; color: var(--text); font-size: 14px; line-height: 1.5; }
.risk-mitigation { font-size: 13px; color: var(--text-muted); font-style: italic; }

/* ===== Comparison grid (platform cards) ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}
.comparison-card {
  background: var(--gradient-tile);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-lg);
  padding: 20px;
  position: relative;
}
.platform-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  background: rgba(255,107,0,0.18);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.comparison-card h3 { margin: 0 0 8px; color: var(--text-strong); font-size: 18px; }
.comparison-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin: 0 0 10px; }

/* ===== Inline image row ===== */
.inline-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,107,0,0.06), rgba(255,107,0,0.02));
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 14px;
  padding: 20px;
  margin: 28px 0;
}
.inline-image-row img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.40);
  aspect-ratio: 16/9;
  object-fit: cover;
}
.inline-image-row .text-side h4 {
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
}
.inline-image-row .text-side p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.inline-image-row .image-side-eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
  display: block;
}

/* ===== News / Blog cards ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.news-card {
  background: var(--surface);
  border: 1px solid var(--soft-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.news-card:hover { transform: translateY(-2px); border-color: var(--primary); }
.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--surface-2);
}
.news-card-body { padding: 16px; }
.news-card-meta {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.news-card h3 {
  margin: 8px 0 8px;
  font-size: 17px;
  color: var(--text-strong);
  line-height: 1.3;
  font-weight: 700;
}
.news-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ===== Tables ===== */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
}
.table-responsive table { min-width: 480px; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 16px 0 24px;
}
.data-table th {
  background: rgba(255,107,0,0.15);
  color: var(--primary);
  padding: 12px;
  text-align: left;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.data-table td {
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 14px;
}
.data-table tr:hover td { background: rgba(255,255,255,0.03); }

/* ===== FAQ ===== */
.faq-grid { max-width: 820px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin: 16px 0; }
.faq-item {
  background: var(--gradient-tile);
  border: 1px solid var(--soft-border);
  border-radius: var(--r-lg);
  padding: 0;
  margin-bottom: 12px;
  transition: border-color var(--t-fast);
}
.faq-item:hover { border-color: var(--primary); }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-strong);
  font-size: 15px;
  list-style: none;
  padding: 16px 20px;
  position: relative;
  padding-right: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 22px;
  color: var(--primary);
  font-weight: 800;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  margin: 0;
  padding: 0 20px 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(135deg, #FF6B00 0%, #FFB627 100%);
  color: #1A0F08;
  padding: 50px 32px;
  border-radius: var(--r-xl);
  text-align: center;
  margin: 40px 0;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 30px;
  margin: 0 0 12px;
  color: #1A0F08;
  letter-spacing: -0.01em;
}
.cta-band p {
  font-size: 16px;
  margin: 0 auto 22px;
  color: rgba(26,15,8,0.82);
  max-width: 700px;
}
.cta-band .btn-primary {
  background: #1A0F08;
  color: #FFB627;
  box-shadow: 0 6px 20px rgba(0,0,0,0.30);
}
.cta-band .btn-primary:hover { background: #0F0904; }

/* ===== Footer (4 cols navigation only) ===== */
.footer-brand {
  background: #0F0904;
  border-top: 1px solid rgba(255,107,0,0.18);
  padding: 50px 0 24px;
  color: var(--text-muted);
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--primary); }
.footer-col p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}
.social-row { display: flex; gap: 8px; margin-top: 10px; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,107,0,0.10);
  color: var(--primary);
  transition: background var(--t-fast);
}
.social-icon:hover { background: rgba(255,107,0,0.20); }
.social-icon svg { width: 16px; height: 16px; }

/* ===== Compliance strip ===== */
.compliance-strip {
  background: rgba(255,182,39,0.05);
  border: 1px solid rgba(255,107,0,0.18);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 12px;
  color: var(--text-muted);
  margin: 16px 0;
  line-height: 1.5;
}

/* ===== Prose ===== */
.section-prose p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 16px;
}
.section-prose p strong { color: var(--primary); font-weight: 700; }
.section-prose ul { padding-left: 20px; margin: 0 0 16px; }
.section-prose ul li { margin-bottom: 8px; color: var(--text); font-size: 15px; line-height: 1.6; }

/* ===== Responsive ===== */
@media (max-width: 899px) {
  .nav-links { display: none !important; }
  .header-cta { display: none !important; }
  .hamburger { display: inline-flex !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero { padding: 52px 0 44px; min-height: 480px; max-height: 720px; }
  .hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .hero h1 { font-size: 31px; line-height: 1.1; }
  .hero-lede { font-size: 15px; line-height: 1.5; }
  .hero-trust { display: none; }
  .hero-banner { min-height: 200px; height: 220px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .band { padding: 40px 0; }
  .band-header h2 { font-size: 26px; }
  .inline-image-row { grid-template-columns: 1fr; }
  .cta-band { padding: 32px 20px; }
  .cta-band h2 { font-size: 22px; }
}
@media (min-width: 900px) {
  .hamburger { display: none !important; }
  .mobile-drawer, .mobile-drawer.is-open { display: none !important; }
  .nav-links { display: flex; }
  .header-cta { display: inline-flex; }
}
@media (max-width: 599px) {
  .data-table th, .data-table td { padding: 10px 8px; font-size: 12px; }
  .data-table th { letter-spacing: 0.04em; }
}
