/* ============================================================
   SCOREFOX PRO — REDESIGNED STYLESHEET v2
   Brand: Deep Black + Fox Orange (#E8551A) + Navy Steel (#1C2B3A)
   Energy: Dark, premium, powerful — match the hype video
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --color-orange:        #E8551A;
  --color-orange-hover:  #C94410;
  --color-orange-glow:   rgba(232, 85, 26, 0.35);
  --color-orange-light:  #FDE8DC;
  --color-navy:          #1C2B3A;
  --color-navy-mid:      #243447;
  --color-navy-light:    #2E4259;
  --color-gold:          #C8952B;
  --color-gold-light:    #E8B84B;

  --color-bg:            #0A0D12;
  --color-surface:       #111520;
  --color-surface-2:     #161B28;
  --color-surface-3:     #1C2535;
  --color-border:        #1E2D40;
  --color-divider:       #1A2330;

  --color-text:          #F0EEE8;
  --color-text-muted:    #8A9BB0;
  --color-text-faint:    #4A5A6A;
  --color-text-inverse:  #0A0D12;

  --color-primary:       var(--color-orange);
  --color-primary-hover: var(--color-orange-hover);

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.8rem,   1.5rem  + 4.5vw,  5.5rem);
  --text-4xl:  clamp(3.5rem,   2rem    + 5vw,    7rem);

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem;  --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* UI */
  --radius-sm:   0.375rem;
  --radius-md:   0.625rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-full: 9999px;
  --transition:  200ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg:   0 16px 50px rgba(0,0,0,0.6);
  --shadow-orange: 0 0 40px rgba(232, 85, 26, 0.3), 0 0 80px rgba(232, 85, 26, 0.1);
  --shadow-orange-sm: 0 0 20px rgba(232, 85, 26, 0.25);

  --content-default: 1180px;
  --content-narrow:  700px;
  --nav-h: 76px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Offset for fixed header so nav links don't land under it */
  scroll-padding-top: 86px;
}
/* Per-section fallback for older browsers */
section[id] { scroll-margin-top: 86px; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 700; }
p  { color: var(--color-text-muted); line-height: 1.7; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--space-4);
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-orange);
  border-radius: 2px;
}
.section-title {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-5);
  line-height: 1.15;
}
.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 54ch;
}
.section-header-centered {
  text-align: center;
  margin-bottom: var(--space-16);
}
.section-header-centered .section-eyebrow { justify-content: center; }
.section-header-centered .section-sub { margin-inline: auto; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75em 1.75em;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 85, 26, 0.4);
}
.btn-primary:hover {
  background: var(--color-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 85, 26, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--color-orange);
  border: 1.5px solid var(--color-orange);
}
.btn-outline:hover {
  background: var(--color-orange);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost-gold {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
  font-size: var(--text-sm);
}
.btn-ghost-gold:hover {
  background: var(--color-gold);
  color: #0A0D12;
  transform: translateY(-2px);
}
.btn-lg { padding: 0.85em 2.2em; font-size: var(--text-base); }
.btn-full { width: 100%; justify-content: center; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
/* Desktop: header-row-top is not a separate row — just a passthrough */
.header-row-top {
  display: contents;
}
.logo-link { flex-shrink: 0; }
.nav-logo {
  width: 160px;
  height: auto;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.8; }
.site-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: #444444;
  padding: var(--space-2) 0.6rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--color-orange); }
.nav-link.active { color: var(--color-orange); }
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: var(--space-4);
}
.theme-toggle { display: none; } /* dark-only design */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111111;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  padding-top: var(--nav-h);
}

/* Animated background grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 85, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 85, 26, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Orange radial glow behind mascot */
.hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  height: 55vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(232, 85, 26, 0.18) 0%, rgba(232, 85, 26, 0.06) 40%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-12);
  position: relative;
  z-index: 1;
  padding-block: var(--space-20);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
  background: rgba(232, 85, 26, 0.1);
  border: 1px solid rgba(232, 85, 26, 0.25);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 8px var(--color-orange);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-heading {
  font-size: var(--text-4xl);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  color: #fff;
}
/* SEO keyword H1 — visible, brand-matched, sits below emotional tagline */
.hero-tagline-display {
  font-size: var(--text-4xl);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
  color: #fff;
}
.hero-keyword-h1 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-orange);
  letter-spacing: 0.01em;
  margin-bottom: var(--space-6);
  line-height: 1.3;
  text-transform: none;
}
.hero-accent {
  color: var(--color-orange);
  display: block;
  position: relative;
}
.hero-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.hero-legal {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* Mascot visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(232, 85, 26, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}
.mascot-img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
  animation: mascot-float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(232, 85, 26, 0.3));
}
@keyframes mascot-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Hero stat strip */
.hero-stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-orange);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-1);
}
.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-5) 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.trust-item svg { color: var(--color-orange); flex-shrink: 0; }
.trust-div {
  width: 1px;
  height: 20px;
  background: var(--color-border);
}

/* ── SECTION BASE ───────────────────────────────────────────── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ── VIDEO SECTION ──────────────────────────────────────────── */
.hype-video-section {
  padding: 0;
  position: relative;
  background: #000;
  overflow: hidden;
}
.hype-video-label {
  position: absolute;
  top: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.hype-video-label svg { color: var(--color-orange); }
.hype-video-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding: var(--space-16) var(--space-8);
}
.hype-video-player {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(232, 85, 26, 0.25), 0 0 120px rgba(232, 85, 26, 0.08);
  border: 1px solid rgba(232, 85, 26, 0.2);
  cursor: pointer;
}
.hype-video-player video {
  width: 100%;
  display: block;
}
.hype-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  transition: opacity var(--transition);
}
.hype-video-overlay.hidden { opacity: 0; pointer-events: none; }
.hype-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(232, 85, 26, 0.6);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hype-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(232, 85, 26, 0.8);
}
.hype-play-btn svg { fill: white; width: 30px; height: 30px; margin-left: 4px; }
.hype-video-caption {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
}

/* Original intro video section */
.video-section { background: var(--color-surface); }
.video-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-16);
}
.video-text h2 { margin-bottom: var(--space-4); }
.video-text p  { margin-bottom: var(--space-6); }
.video-player-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(232, 85, 26, 0.1);
  border: 1px solid var(--color-border);
}
.video-player { position: relative; aspect-ratio: 16/9; background: #000; }
.video-player video { width: 100%; height: 100%; object-fit: cover; }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: opacity var(--transition);
}
.video-play-btn svg { width: 72px; height: 72px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }
.video-play-btn.hidden { opacity: 0; pointer-events: none; }

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-section { background: var(--color-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.about-content .section-title { margin-bottom: var(--space-5); }
.about-lead {
  font-size: var(--text-lg) !important;
  color: var(--color-text) !important;
  font-weight: 500;
  margin-bottom: var(--space-4);
  line-height: 1.55 !important;
}
.about-content p { margin-bottom: var(--space-4); }
.compliance-box {
  display: flex;
  gap: var(--space-3);
  background: rgba(232, 85, 26, 0.06);
  border-left: 3px solid var(--color-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-6);
}
.compliance-box svg { flex-shrink: 0; color: var(--color-orange); margin-top: 3px; }
.compliance-box p { font-size: var(--text-sm); color: var(--color-text-faint); margin: 0; }
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.pillar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: border-color var(--transition), transform var(--transition);
}
.pillar:hover {
  border-color: rgba(232, 85, 26, 0.4);
  transform: translateY(-3px);
}
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(232, 85, 26, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-orange);
  margin-bottom: var(--space-4);
}
.pillar h3 { font-size: var(--text-sm); margin-bottom: var(--space-2); color: var(--color-text); }
.pillar p  { font-size: var(--text-sm); margin: 0; }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-section { background: var(--color-surface); }
.steps-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: var(--space-4);
  overflow-x: auto;
  padding-bottom: var(--space-4);
}
.step {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-5);
  min-width: 160px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.step:hover {
  border-color: rgba(232, 85, 26, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.step:hover::before { opacity: 1; }
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(232, 85, 26, 0.2);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.step h3 { font-size: var(--text-sm); margin-bottom: var(--space-2); color: var(--color-text); }
.step p  { font-size: var(--text-xs); margin: 0; }
.step-connector {
  color: var(--color-orange);
  font-size: 1.5rem;
  opacity: 0.4;
  padding-top: var(--space-8);
  flex-shrink: 0;
  align-self: start;
}
.step-connector::after { content: '→'; }

/* ── SERVICES ───────────────────────────────────────────────── */
.services-section { background: var(--color-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: rgba(232, 85, 26, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(232, 85, 26, 0.08);
}
.service-featured {
  border-color: rgba(232, 85, 26, 0.35);
  background: var(--color-surface-2);
}
.service-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-gold));
}
.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(232, 85, 26, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-orange);
}
.service-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
  background: rgba(232, 85, 26, 0.1);
  border: 1px solid rgba(232, 85, 26, 0.2);
  border-radius: var(--radius-full);
  padding: 0.2em 0.8em;
}
.service-card h3 { font-size: var(--text-base); color: var(--color-text); }
.service-card p  { font-size: var(--text-sm); flex-grow: 1; }
.service-list { display: flex; flex-direction: column; gap: var(--space-2); }
.service-list li {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); color: var(--color-text-muted);
}
.service-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-orange);
  flex-shrink: 0;
}
.mfsn-note {
  display: flex; gap: var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.mfsn-note svg { flex-shrink: 0; color: var(--color-text-muted); margin-top: 2px; }
.mfsn-note p { font-size: var(--text-sm); margin: 0; }

/* ── PRICING ────────────────────────────────────────────────── */
.pricing-section {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 85, 26, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}
.price-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.price-featured {
  border-color: var(--color-orange);
  background: linear-gradient(160deg, var(--color-surface-3) 0%, var(--color-surface-2) 100%);
  box-shadow: 0 0 0 1px var(--color-orange), 0 20px 60px rgba(232, 85, 26, 0.2);
  transform: scale(1.02);
}
.price-featured:hover { transform: scale(1.02) translateY(-4px); }
.price-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-gold));
}
.price-popular-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-orange);
  border-radius: var(--radius-full);
  padding: 0.3em 1em;
  margin-bottom: var(--space-4);
  width: fit-content;
}
.price-card-header { margin-bottom: var(--space-6); }
.plan-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.plan-price { display: flex; align-items: baseline; gap: var(--space-1); }
.price-amt {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--color-text);
  line-height: 1;
}
.price-period { font-size: var(--text-sm); color: var(--color-text-muted); }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex-grow: 1;
  margin-bottom: var(--space-8);
}
.plan-features li {
  display: flex; align-items: flex-start; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--color-text-muted);
  line-height: 1.5;
}
.plan-features li svg { color: var(--color-orange); flex-shrink: 0; margin-top: 2px; }
.plan-disclaimer { font-size: 0.7rem; color: var(--color-text-faint); margin-top: var(--space-3); text-align: center; }
.pricing-note { text-align: center; font-size: var(--text-sm); color: var(--color-text-faint); }

/* ── WHO WE HELP ────────────────────────────────────────────── */
.who-section { background: var(--color-bg); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.who-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  transition: border-color var(--transition), transform var(--transition);
}
.who-card:hover {
  border-color: rgba(232, 85, 26, 0.3);
  transform: translateY(-3px);
}
.who-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(232, 85, 26, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-orange);
  margin-bottom: var(--space-4);
}
.who-card h3 { font-size: var(--text-base); margin-bottom: var(--space-3); color: var(--color-text); }
.who-card p  { font-size: var(--text-sm); margin: 0; }

/* ── SPLIT SECTION ──────────────────────────────────────────── */
.split-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.split-inner {
  display: flex;
  gap: var(--space-6);
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-8);
}
.split-card {
  flex: 1;
  max-width: 420px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.split-sfp { border-color: rgba(232, 85, 26, 0.3); }
.split-uwg { border-color: rgba(200, 149, 43, 0.3); }
.split-brand-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--space-3);
}
.split-uwg .split-brand-label { color: var(--color-gold); }
.split-card h3 { font-size: var(--text-lg); color: var(--color-text); margin-bottom: var(--space-4); }
.split-list { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); }
.split-list li {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--color-text-muted);
}
.split-list li svg { color: var(--color-orange); flex-shrink: 0; }
.split-uwg .split-list li svg { color: var(--color-gold); }
.split-plus {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-orange);
  opacity: 0.4;
  flex-shrink: 0;
}
.split-note { text-align: center; font-size: var(--text-sm); color: var(--color-text-muted); max-width: 60ch; margin-inline: auto; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section { background: var(--color-bg); }
.faq-wrap { max-width: var(--content-narrow); margin-inline: auto; }
.faq-wrap .section-header-centered { margin-bottom: var(--space-12); }
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(232, 85, 26, 0.3); }
.faq-item[open] { border-color: rgba(232, 85, 26, 0.4); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  list-style: none;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--color-orange);
  transition: transform var(--transition);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-a {
  padding: 0 var(--space-6) var(--space-5);
  border-top: 1px solid var(--color-border);
}
.faq-a p { font-size: var(--text-sm); margin-top: var(--space-4); }
.faq-a p + p { margin-top: var(--space-3); }
.faq-a ul { margin: var(--space-3) 0 var(--space-3) var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.faq-a ul li { font-size: var(--text-sm); color: var(--color-text-muted); list-style: disc; }
.faq-a ul li strong { color: var(--color-text); }

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--color-navy) 0%, #0A0D12 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: clamp(4rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(232, 85, 26, 0.15) 0%, transparent 70%);
}
.cta-band-inner { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.cta-band h2 { font-size: var(--text-2xl); color: #fff; margin-bottom: var(--space-4); }
.cta-band p  { margin-bottom: var(--space-8); font-size: var(--text-base); }
.cta-band-btns { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-section { background: var(--color-surface); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: start;
}
.contact-content .section-title { margin-bottom: var(--space-4); }
.contact-content > p { margin-bottom: var(--space-8); }
.contact-details { display: flex; flex-direction: column; gap: var(--space-4); }
.contact-item {
  display: flex; align-items: flex-start; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--color-text-muted);
  transition: color var(--transition);
}
.contact-item svg { color: var(--color-orange); flex-shrink: 0; margin-top: 2px; }
a.contact-item:hover { color: var(--color-orange); }
.form-wrap {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.contact-form { display: flex; flex-direction: column; gap: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label {
  font-size: var(--text-sm); font-weight: 600;
  color: var(--color-text);
}
.req { color: var(--color-orange); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.65em 1em;
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(232, 85, 26, 0.1);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-label { display: flex; gap: var(--space-3); cursor: pointer; align-items: flex-start; }
.checkbox-label input[type="checkbox"] { margin-top: 3px; accent-color: var(--color-orange); width: 16px; height: 16px; flex-shrink: 0; }
.checkbox-label span { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.6; }
.form-success, .form-error {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-4); border-radius: var(--radius-md);
  font-size: var(--text-sm); font-weight: 600;
}
.form-success { background: rgba(22, 160, 133, 0.1); color: #16a085; border: 1px solid rgba(22, 160, 133, 0.2); }
.form-error   { background: rgba(232, 85, 26, 0.08); color: var(--color-orange); border: 1px solid rgba(232, 85, 26, 0.2); }
[hidden] { display: none !important; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--color-surface); border-top: 1px solid var(--color-border); }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: var(--space-16);
  padding-block: var(--space-16);
}
.footer-logo { width: 180px; height: auto; margin-bottom: var(--space-4); }
.footer-tagline { font-size: var(--text-sm); color: var(--color-text-muted); font-style: italic; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-orange); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-6);
}
.footer-bottom-inner {
  display: flex; flex-direction: column; gap: var(--space-2);
  text-align: center;
}
.footer-copy, .footer-disc { font-size: var(--text-xs); color: var(--color-text-faint); }

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Hero entrance */
.hero-text { animation: hero-enter 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-visual { animation: hero-enter-right 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-enter-right {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: var(--space-8); }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { order: -1; }
  .mascot-img { max-width: 380px; }
  .hero-stats { justify-content: center; }
  .video-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-featured { transform: none; }
  .price-featured:hover { transform: translateY(-4px); }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .split-inner { flex-direction: column; align-items: stretch; }
  .split-plus { text-align: center; padding: 0; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-10); }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .steps-wrap { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .who-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .trust-div { display: none; }
  .trust-inner { gap: var(--space-4); justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: var(--space-2); }
  .hero-stats { flex-direction: column; gap: var(--space-4); }

  /* ── TWO-ROW MOBILE HEADER ──────────────────────────────── */
  .site-header {
    height: auto;
    padding: var(--space-2) 0;
  }
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-inline: 1rem;
  }
  /* Row 1: logo left, CTA right */
  .header-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-2) 0;
  }
  .nav-logo { width: 130px; }
  .nav-cta-portal { display: none; }
  .nav-cta {
    display: inline-flex;
    font-size: 0.72rem;
    padding: 0.35rem 0.85rem;
  }
  /* Row 2: all nav links visible, wrapping */
  .site-nav {
    position: static;
    background: transparent;
    padding: var(--space-1) 0 var(--space-2);
    border-top: 1px solid rgba(0,0,0,0.07);
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: auto;
  }
  .nav-list {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
  .nav-link {
    font-size: 0.68rem;
    padding: 0.3rem 0.4rem;
    white-space: nowrap;
  }
  .mobile-menu-toggle { display: none; }
  .header-actions { gap: var(--space-2); }

  .hype-video-wrap { padding: var(--space-8) var(--space-4); }
  /* Hero offset: account for taller two-row mobile header (~110px) */
  .hero { padding-top: 110px; }
  /* Scroll offset for mobile two-row header */
  html { scroll-padding-top: 120px; }
  section[id] { scroll-margin-top: 120px; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-band-btns { flex-direction: column; align-items: center; }
}

/* ── NAV ACTIVE STATE ───────────────────────────────────────── */
.nav-link.active { color: var(--color-orange); }

/* ── MOBILE MENU ACTIVE ─────────────────────────────────────── */
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO SCROLL HINT ───────────────────────────────────────── */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  color: var(--color-text-faint);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scroll-hint-bounce 2.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes scroll-hint-bounce {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

/* ── HERO BG ELEMENTS ───────────────────────────────────────── */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 85, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 85, 26, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}
.hero-bg-glow {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  height: 55vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(232, 85, 26, 0.18) 0%, rgba(232, 85, 26, 0.06) 40%, transparent 70%);
  pointer-events: none;
}
.mascot-glow-ring {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(232, 85, 26, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

/* ── NAV TEXT LOGO ──────────────────────────────────────────── */
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.nav-logo-score { color: #fff; }
.nav-logo-fox   { color: var(--color-orange); }
.nav-logo-pro   {
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
  vertical-align: middle;
  background: rgba(232,85,26,0.15);
  border: 1px solid rgba(232,85,26,0.3);
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 4px;
}

/* ── BONUS FEATURE ROW ──────────────────────────────────────── */
.plan-feature-bonus {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-gold-light) !important;
  background: rgba(200, 149, 43, 0.08);
  border: 1px solid rgba(200, 149, 43, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  margin-top: var(--space-2);
}
.plan-feature-bonus svg { color: var(--color-gold-light); flex-shrink: 0; margin-top: 2px; }
.plan-feature-bonus strong { color: var(--color-gold-light); }

/* ── CLIENT PORTAL BUTTON ───────────────────────────────────── */
.btn-portal {
  background: transparent;
  color: #333333;
  border: 1.5px solid #dddddd;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.55em 1.2em;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-portal:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: rgba(232, 85, 26, 0.05);
}
@media (max-width: 768px) {
  .nav-cta-portal { display: none; }
}

/* ── CROA TOOLTIP ───────────────────────────────────────────── */
.trust-tooltip-wrap {
  position: relative;
  cursor: help;
}
.trust-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: #1C2535;
  border: 1px solid rgba(232, 85, 26, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
  z-index: 100;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}
.trust-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1C2535;
}
.trust-tooltip-wrap:hover .trust-tooltip { display: block; }

/* ── COMPLIANCE BAND ────────────────────────────────────────── */
.compliance-band {
  background: var(--color-navy);
  border-top: 1px solid rgba(232, 85, 26, 0.15);
  border-bottom: 1px solid rgba(232, 85, 26, 0.15);
  padding: var(--space-10) 0;
}
.compliance-band-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.compliance-band-title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff;
  text-align: center;
  justify-content: center;
}
.compliance-band-title svg { color: var(--color-orange); flex-shrink: 0; }
.compliance-band-laws {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  justify-content: center;
  flex-wrap: wrap;
}
.compliance-law {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  max-width: 280px;
  flex: 1;
  min-width: 200px;
}
.law-acronym {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-orange);
  line-height: 1;
}
.law-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}
.law-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.compliance-law-div {
  width: 1px;
  align-self: stretch;
  background: var(--color-border);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .compliance-law-div { display: none; }
  .compliance-band-laws { flex-direction: column; align-items: center; }
}

/* ── SPLIT CARD DESC ────────────────────────────────────────── */
.split-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}
