/* ═══════════════════════════════════════════════════════
   SINOSOURCE — Stylesheet
   Brand palette: Red #D42B1E · Gold #F0A51E · Slate #5B7E99
   ═══════════════════════════════════════════════════════ */

/* ── Desktop viewport scale ──────────────────────────────────────────
   At 100% browser zoom the layout can feel large on typical monitors.
   This applies an 80% visual scale on desktop (≥1024 px) — equivalent
   to the user manually setting Chrome zoom to 80%.
   Chrome/Edge/Safari honour the CSS `zoom` property; Firefox ignores it
   gracefully so those users simply see 100% (no harm done).
   Mobile and tablet viewports (< 1024 px) are unaffected.
   ──────────────────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  html { zoom: 0.8; }
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ─── Dark backgrounds (logo is on pure black) ─── */
  --bg-black:   #09090C;
  --bg-dark:    #111116;
  --bg-mid:     #1A1A22;
  --bg-card:    #1F1F2A;
  --bg-light:   #F5F5F8;

  /* ─── Brand: Red (dominant) ─── */
  --red:        #D42B1E;
  --red-hover:  #B82216;
  --red-glow:   rgba(212,43,30,.18);
  --red-pale:   rgba(212,43,30,.08);
  --red-border: rgba(212,43,30,.30);

  /* ─── Brand: Gold (accent) ─── */
  --gold:       #F0A51E;
  --gold-hover: #D08C14;
  --gold-glow:  rgba(240,165,30,.20);
  --gold-pale:  rgba(240,165,30,.10);
  --gold-text:  #F5BC45;

  /* ─── Brand: Slate (supporting) ─── */
  --slate:      #5B7E99;
  --slate-pale: rgba(91,126,153,.12);

  /* ─── Text ─── */
  --white:      #FFFFFF;
  --text-bright:#F0F0F5;
  --text-mid:   #9A9AAE;
  --text-dim:   #5A5A72;

  /* ─── Light section text (for white-bg sections) ─── */
  --text-dark:  #111116;
  --text-body:  #3A3A4E;
  --text-muted: #6A6A82;

  /* ─── UI ─── */
  --border-dark:  rgba(255,255,255,.07);
  --border-mid:   rgba(255,255,255,.13);
  --border-light: #E2E2EC;

  /* ─── Status ─── */
  --green:      #22C55E;
  --green-pale: rgba(34,197,94,.10);
  --amber:      #F59E0B;
  --amber-pale: rgba(245,158,11,.10);
  --grey-pale:  rgba(148,148,180,.10);

  /* ─── Radii ─── */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* ─── Shadows ─── */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.35);
  --shadow:    0 4px 20px rgba(0,0,0,.40);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.55);
  --shadow-red:0 4px 24px rgba(212,43,30,.35);

  --font:    'Inter', system-ui, sans-serif;
  --nav-h:   61px;
}

html { font-size: 16px; }
/* scroll-behavior intentionally omitted — CSS smooth-scroll on the root
   element breaks Chrome's middle-click autoscroll. Smooth scrolling for
   anchor links is handled in script.js via window.scrollTo({behavior:'smooth'}). */

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Utility ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight { color: var(--gold-text); }

.section {
  padding: 96px 0;
  background: var(--bg-light);
  border-top: 1px solid rgba(0,0,0,.15);
  position: relative;
}
.section--alt {
  padding: 96px 0;
  background: #EEEEF5;
  border-top: 1px solid rgba(0,0,0,.15);
  position: relative;
}
/* Line-grid overlay for light sections */
.section::before,
.section--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 110% 80% at 50% 50%, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 110% 80% at 50% 50%, black 10%, transparent 80%);
}
/* Keep all direct children above the grid overlay */
.section > *, .section--alt > * { position: relative; z-index: 1; }
.section--dark{
  padding: 96px 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.12);
  position: relative;
}
/* Line-grid overlay — same visual language as the hero */
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 110% 80% at 50% 50%, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 110% 80% at 50% 50%, black 10%, transparent 80%);
}
/* Subtle red glow top-right, matching hero atmosphere */
.section--dark::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(circle at 90% 20%, rgba(212,43,30,.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
/* Keep all direct children above the grid overlays */
.section--dark > * { position: relative; z-index: 1; }

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-pale);
  border: 1px solid var(--red-border);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section__header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* dark sections need white headings */
.section--dark .section__header h2,
.section--dark .section__sub {
  color: var(--text-bright);
}
.section--dark .section__eyebrow {
  background: var(--red-pale);
  border-color: var(--red-border);
}

.section__sub {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── Reusable pulse loader (replaces hourglass ⏳ in AI tool buttons) ── */
@keyframes ai-pulse { 0%{transform:scale(.5);opacity:.9} 100%{transform:scale(1.5);opacity:0} }
@keyframes ai-spin  { to { transform:rotate(360deg); } }
.ai-loader {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.ai-loader::before,
.ai-loader::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: ai-pulse 1.4s ease-out infinite;
}
.ai-loader::after { animation-delay: .7s; }

/* Larger version for standalone loading panels */
.ai-loader--lg { width: 48px; height: 48px; }
.ai-loader--lg::before,
.ai-loader--lg::after { border-width: 3px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 10px 22px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

.btn--gold {
  background: var(--gold);
  color: var(--bg-black);
  border-color: var(--gold);
  font-weight: 700;
}
.btn--gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border-light);
}
.btn--outline:hover { border-color: var(--red); color: var(--red); }

.btn--outline-dark {
  background: transparent;
  color: var(--text-bright);
  border-color: var(--border-mid);
}
.btn--outline-dark:hover { border-color: var(--gold-text); color: var(--gold-text); }

.btn--sm { font-size: 12px; padding: 6px 13px; }

.btn--nav {
  background: #ff3c2e;
  color: var(--white);
  font-size: 12px;
  padding: 7px 14px;
}
.btn--nav:hover { background: #e02518; }

.btn--lg { font-size: 16px; padding: 14px 28px; }
.btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(9,9,12,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: background .3s;
}
.nav--scrolled {
  background: rgba(9,9,12,1);
  box-shadow: 0 2px 24px rgba(0,0,0,.6);
}
/* ── Floating navbar on scroll (desktop) ── */
@media (min-width: 861px) {
  .nav--scrolled {
    top: 10px;
    left: 16px;
    right: 16px;
    margin: 0 auto;
    max-width: 1200px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    background: rgba(15,15,22,.88);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    height: var(--nav-h);
    box-shadow: 0 14px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.02);
    transition: all .35s cubic-bezier(.2,.8,.2,1);
  }
  .nav--scrolled .nav__inner { height: var(--nav-h); padding: 0 28px; }
  .nav--scrolled .nav__logo-img { height: 44px; }
  html.light-mode .nav--scrolled {
    background: rgba(255,255,255,.92);
    border-color: rgba(0,0,0,.08);
    box-shadow: 0 14px 40px rgba(0,0,0,.12);
  }
}

.nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 29px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav__links { display: flex; align-items: center; gap: 24px; flex: 1; }
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color .2s;
}
.nav__links a:hover { color: var(--white); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-black);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border-dark);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 11px 0;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-dark);
  text-decoration: none;
}
.nav__mobile a:last-child { border: none; margin-top: 8px; }
.nav__mobile a:hover { color: var(--white); }
.mobile-nav-sep {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--text-dim);
  padding: 14px 0 2px; margin-top: 4px;
  border-bottom: none !important;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background: var(--bg-black);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}

/* Red diagonal stripe — disabled orange gradient per design */
.hero::before {
  display: none;
}

.hero__bg-shape {
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,126,153,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__icon-bg {
  position: absolute;
  right: -60px;
  top: 55%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.hero__icon-img {
  width: 480px;
  height: 480px;
  object-fit: contain;
  opacity: 0.12;
  mix-blend-mode: lighten;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-pale);
  border: 1px solid var(--red-border);
  color: #FF7A70;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__badge::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}

.hero__heading {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.03em;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  width: fit-content;
}

.proof__item { display: flex; flex-direction: column; gap: 3px; }
.proof__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1px;
}
.proof__num  {
  font-size: 26px;
  font-weight: 800;
  color: var(--gold-text);
  letter-spacing: -.02em;
}
.proof__label {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.4;
  max-width: 180px;
}
.proof__divider {
  width: 1px; height: 48px;
  background: var(--border-dark);
}

/* ══════════════════════════════════════
   REGULATION TICKER
══════════════════════════════════════ */
.reg-bar {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 14px 0;
}
.reg-bar__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.reg-bar__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-dim);
  white-space: nowrap;
}
.reg-bar__items { display: flex; gap: 8px; flex-wrap: wrap; }

.reg-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.reg-tag--live   { background: rgba(34,197,94,.12);  color: #4ADE80; border: 1px solid rgba(34,197,94,.25); }
.reg-tag--soon   { background: rgba(240,165,30,.12); color: var(--gold-text); border: 1px solid rgba(240,165,30,.25); }
.reg-tag--future { background: rgba(148,148,180,.08);color: var(--text-dim);  border: 1px solid rgba(148,148,180,.15); }

/* ══════════════════════════════════════
   PROBLEM  (light section)
══════════════════════════════════════ */
.problem__intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  margin-bottom: 56px;
}
.problem__intro-text {
  text-align: left !important;
  max-width: 560px;
  margin: 0 !important;
}
.problem__intro-text h2 {
  font-size: clamp(22px, 2.6vw, 30px) !important;
  white-space: nowrap !important;
}
#solution .section__header h2 {
  font-size: clamp(24px, 3vw, 34px);
  white-space: nowrap;
}
#pricing .section__header h2 {
  font-size: clamp(22px, 3vw, 34px);
  white-space: nowrap;
}
#markets .section__header h2 {
  font-size: clamp(22px, 3vw, 34px);
  white-space: nowrap;
}
#markets .section__sub {
  white-space: nowrap;
  font-size: clamp(13px, 1.4vw, 16px);
}
.spyglass-wrap {
  flex-shrink: 0;
  width: 200px;
}
.spyglass-figure {
  width: 200px;
  height: auto;
  display: block;
  animation: spy-sway 5s ease-in-out infinite;
  transform-origin: 78px 260px;
}
@keyframes spy-sway {
  0%,100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(2deg) translateY(-6px); }
}
@media (max-width: 760px) {
  .problem__intro { flex-direction: column-reverse; gap: 24px; }
  .problem__intro-text { text-align: center !important; }
  .spyglass-wrap { width: 140px; }
  .spyglass-figure { width: 140px; }
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.problem__quote {
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  border-left: 4px solid var(--red);
  padding-left: 24px;
  margin-bottom: 20px;
}
.problem__quote-sub {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  padding-left: 28px;
}

.problem__cards { display: flex; flex-direction: column; gap: 16px; }

.problem__card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.problem__card:hover {
  border-color: rgba(212,43,30,.3);
  box-shadow: 0 4px 20px rgba(212,43,30,.08);
}
.problem__card-icon { font-size: 24px; flex-shrink: 0; }
.problem__card h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.problem__card p  { font-size: 14px; color: var(--text-body); line-height: 1.6; }

/* Regulation table */
.regs__table-wrap  { margin-bottom: 56px; }
.regs__table-title { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }

.table-scroll { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.regs__table, .compare__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}
.regs__table th, .compare__table th {
  background: var(--bg-black);
  color: var(--text-mid);
  font-weight: 600;
  text-align: left;
  padding: 14px 18px;
  white-space: nowrap;
}
.regs__table th:first-child, .compare__table th:first-child { color: var(--red); }

.regs__table td, .compare__table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  line-height: 1.55;
  color: var(--text-body);
}
.regs__table tr:last-child td, .compare__table tr:last-child td { border-bottom: none; }
.regs__table tr:hover td, .compare__table tr:hover td { background: rgba(212,43,30,.03); }

.compare__row--featured td {
  background: rgba(240,165,30,.06);
  border-left: none;
  font-weight: 500;
  color: var(--text-dark);
}
.compare__row--featured td:first-child {
  border-left: 3px solid var(--gold) !important;
}

.status-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.status--live   { background: rgba(34,197,94,.12);  color: #16A34A; }
.status--soon   { background: rgba(245,158,11,.12); color: #B45309; }
.status--future { background: #F3F4F6; color: #6B7280; }

/* Cost callout — dark card */
.cost-callout {
  background: var(--bg-black);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cost-callout__text h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}
.cost-callout__text p { color: var(--text-mid); font-size: 15px; line-height: 1.7; }

.cost-callout__compare { display: flex; flex-direction: column; gap: 10px; }

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
}
.cost-row span   { font-size: 13px; color: var(--text-mid); }
.cost-row strong { font-size: 15px; color: var(--text-bright); font-weight: 700; white-space: nowrap; }

.cost-row--highlight {
  background: var(--red-pale);
  border-color: var(--red-border);
}
.cost-row--highlight span   { color: #FF9F99; }
.cost-row--highlight strong { color: var(--gold-text); font-size: 18px; }

/* ══════════════════════════════════════
   SOLUTION  (dark section)
══════════════════════════════════════ */
.report__mockup {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  margin-bottom: 72px;
  align-items: start;
}

.report__cover {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: inset 0 4px 0 0 var(--red), var(--shadow-lg);
}
.report__cover-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.report__brand { font-size: 14px; font-weight: 800; color: var(--red); letter-spacing: .04em; }
.report__month { font-size: 12px; color: var(--text-dim); }

.report__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}
.report__subtitle {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.report__cover-stats {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}
.rcs-num   { display: block; font-size: 28px; font-weight: 800; color: var(--gold-text); letter-spacing: -.02em; }
.rcs-label { display: block; font-size: 11px; color: var(--text-dim); line-height: 1.4; margin-top: 2px; }

.report__sections { display: flex; flex-direction: column; gap: 12px; }

.rs__item {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color .2s;
}
.rs__item:hover { border-color: var(--border-mid); }
.rs__item--featured {
  border-color: var(--gold);
  background: rgba(240,165,30,.06);
}

.rs__tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); display: block; margin-bottom: 4px; }
.rs__item h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.rs__item p  { font-size: 13px; color: var(--text-mid); line-height: 1.55; }

/* Workflow */
.workflow__grid {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.workflow__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  text-align: center;
}
.workflow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wf__step { display: flex; align-items: flex-start; gap: 14px; }

.wf__letter {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf__step h5 { font-size: 14px; font-weight: 700; color: var(--text-bright); margin-bottom: 4px; }
.wf__step p  { font-size: 13px; color: var(--text-mid); line-height: 1.55; }

/* ══════════════════════════════════════
   EU-READINESS SCORE (light section)
══════════════════════════════════════ */
.score__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.score__categories { display: flex; flex-direction: column; gap: 16px; }

.score__cat {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.score__cat:hover {
  border-color: rgba(212,43,30,.25);
  box-shadow: 0 4px 16px rgba(212,43,30,.06);
}
.score__cat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }

.score__cat-weight {
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.score__cat h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.score__cat p  { font-size: 13px; color: var(--text-body); line-height: 1.55; margin-bottom: 10px; }

.score__bar { height: 4px; background: var(--border-light); border-radius: 2px; }
.score__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  border-radius: 2px;
  transition: width .6s ease;
}

/* Grade list */
.score__grades-title {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-muted); margin-bottom: 16px;
}
.score__grade-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }

.grade-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: var(--white);
}
.grade-letter {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.grade--a .grade-letter { background: rgba(34,197,94,.12);  color: #16A34A; }
.grade--b .grade-letter { background: rgba(91,126,153,.15);  color: var(--slate); }
.grade--c .grade-letter { background: rgba(245,158,11,.12); color: #B45309; }
.grade--d .grade-letter { background: rgba(212,43,30,.10);  color: var(--red); }

.grade-item strong { font-size: 14px; font-weight: 700; color: var(--text-dark); display: block; margin-bottom: 3px; }
.grade-item p      { font-size: 13px; color: var(--text-body); line-height: 1.5; }

.score__disclaimer {
  font-size: 12px; color: var(--text-muted); line-height: 1.6;
  padding: 14px 16px;
  background: #F5F5F8;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  font-style: italic;
}

/* ══════════════════════════════════════
   PRICING (dark section)
══════════════════════════════════════ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.pricing__card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
}

.pricing__card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-glow), var(--shadow-lg);
  transform: translateY(-8px);
  background: var(--bg-mid);
}

.pricing__card-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  color: var(--white);
  font-size: 12px; font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing__card-label {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-dim); margin-bottom: 12px;
}

.pricing__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price__currency { font-size: 22px; font-weight: 700; color: var(--text-bright); }
.price__amount   { font-size: 48px; font-weight: 900; color: var(--white); letter-spacing: -.04em; line-height: 1; }
.price__period   { font-size: 16px; color: var(--text-dim); }

.pricing__price-note {
  font-size: 13px; color: var(--gold-text); font-weight: 600; margin-bottom: 16px;
}
.pricing__desc {
  font-size: 14px; color: var(--text-mid); line-height: 1.6;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border-dark);
}
.pricing__features {
  list-style: none; display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 28px;
}
.pricing__features li {
  font-size: 14px; color: var(--text-mid); line-height: 1.5;
  padding-left: 24px; position: relative;
}
.pricing__features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-text); font-weight: 700; }

.pricing__scarcity {
  text-align: center; font-size: 12px;
  color: var(--text-dim); margin-top: 12px; font-style: italic;
}
.pricing__note {
  text-align: center; font-size: 14px;
  color: var(--text-mid); padding: 16px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
}

/* ── Pricing button overrides inside dark cards ── */
.pricing__card .btn--outline {
  color: var(--text-bright);
  border-color: var(--border-mid);
}
.pricing__card .btn--outline:hover { border-color: var(--red); color: var(--red); }

/* ══════════════════════════════════════
   MARKETS (light section)
══════════════════════════════════════ */
.markets__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 72px;
}

.market__card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.market__card:not(.market__card--primary):hover {
  border-color: rgba(212,43,30,.2);
  box-shadow: inset 0 4px 0 0 currentColor, 0 14px 36px rgba(212,43,30,.1);
  transform: translateY(-4px);
}
.market__card:nth-child(2):hover {
  box-shadow: inset 0 4px 0 0 #AA151B, 0 14px 36px rgba(170,21,27,.12);
}
.market__card:nth-child(3):hover {
  box-shadow: inset 0 4px 0 0 #006AA7, 0 14px 36px rgba(0,106,167,.12);
}
.market__card--primary {
  background: var(--white);
  border-color: var(--border-light);
  box-shadow: inset 0 4px 0 0 #009246, inset 0 -4px 0 0 #CE2B37,
              0 8px 32px rgba(0,0,0,.08);
}
.market__card--primary h3     { color: var(--text-dark)  !important; }
.market__card--primary p      { color: var(--text-body)  !important; }
.market__card--primary label  { color: var(--text-muted) !important; }
.market__card--primary .mstat span { color: var(--gold)  !important; }
.market__card--primary .market__stats { border-bottom-color: var(--border-light); }

.market__flag { font-size: 36px; margin-bottom: 12px; display: flex; align-items: center; }

/* --- SVG flag icons (fallback for systems that don't render flag emojis) --- */
.flag-svg {
  display: inline-block;
  width: 18px; height: 13px;
  background-size: cover; background-repeat: no-repeat; background-position: center;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
  vertical-align: -2px;
  flex-shrink: 0;
}
.flag-svg--lg { width: 48px; height: 32px; border-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,.18); }
.flag-svg--it { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2' preserveAspectRatio='none'><rect width='1' height='2' fill='%23009246'/><rect x='1' width='1' height='2' fill='%23fff'/><rect x='2' width='1' height='2' fill='%23ce2b37'/></svg>"); }
.flag-svg--es { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 3' preserveAspectRatio='none'><rect width='4' height='3' fill='%23aa151b'/><rect y='0.75' width='4' height='1.5' fill='%23f1bf00'/></svg>"); }
.flag-svg--se { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10' preserveAspectRatio='none'><rect width='16' height='10' fill='%23006aa7'/><rect x='5' width='2' height='10' fill='%23fecc00'/><rect y='4' width='16' height='2' fill='%23fecc00'/></svg>"); }
.flag-svg--gb { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30' preserveAspectRatio='none'><rect width='60' height='30' fill='%23012169'/><path d='M0,0 L60,30 M60,0 L0,30' stroke='%23fff' stroke-width='6'/><path d='M0,0 L60,30 M60,0 L0,30' stroke='%23c8102e' stroke-width='4'/><path d='M30,0 v30 M0,15 h60' stroke='%23fff' stroke-width='10'/><path d='M30,0 v30 M0,15 h60' stroke='%23c8102e' stroke-width='6'/></svg>"); }
.flag-svg--cn { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20' preserveAspectRatio='none'><rect width='30' height='20' fill='%23de2910'/><polygon points='8,4 9.2,7 12.2,7 9.8,8.8 10.8,11.8 8,10 5.2,11.8 6.2,8.8 3.8,7 6.8,7' fill='%23ffde00'/></svg>"); }

/* --- Language Expertise section --- */
.langs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.lang-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lang-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,.08); border-color: rgba(201,163,78,.45); }
.lang-card .flag-svg--lg { margin-bottom: 6px; }
.lang-card h3 { font-size: 18px; font-weight: 800; color: var(--text-dark); margin: 0; }
.lang-card .lang-native { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: .04em; text-transform: uppercase; }
.lang-card p { font-size: 14px; color: var(--text-body); line-height: 1.55; margin: 0; }
.market__card h3 { font-size: 20px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
.market__stats {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}
.mstat span  { display: block; font-size: 22px; font-weight: 800; color: var(--red); letter-spacing: -.02em; }
.mstat label { display: block; font-size: 11px; color: var(--text-muted); line-height: 1.4; margin-top: 2px; }
.market__card p { font-size: 14px; color: var(--text-body); line-height: 1.65; }

/* Niches */
.niches__section h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 24px; }

.niches__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.niche__item {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color .2s, box-shadow .2s;
}
.niche__item:hover {
  border-color: rgba(212,43,30,.25);
  box-shadow: 0 4px 16px rgba(212,43,30,.06);
}
.niche--active {
  border-color: var(--red);
  background: var(--brand-red-pale, rgba(212,43,30,.04));
}
.niche__item h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.niche__item p  { font-size: 13px; color: var(--text-body); line-height: 1.6; margin-bottom: 12px; }
.niche__regs    { font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: .04em; text-transform: uppercase; }

/* ══════════════════════════════════════
   COMPETITIVE  (dark section)
══════════════════════════════════════ */
.compare__table th { background: var(--bg-mid); }
.compare__table { background: var(--bg-card); }
.compare__table td { background: var(--bg-card); border-bottom-color: var(--border-dark); color: var(--text-mid); }
.compare__table tr:hover td { background: var(--bg-mid); }
.compare__row--featured td {
  background: rgba(240,165,30,.06);
  border-left: none;
  color: var(--text-bright);
}
.compare__row--featured td:first-child {
  border-left: 3px solid var(--gold) !important;
}
/* override for dark section headings */
.section--dark .regs__table-title { color: var(--white); }

/* ══════════════════════════════════════
   MILESTONES (light section)
══════════════════════════════════════ */
.milestones__timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.milestones__timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #F0A51E 0%, var(--border-light) 100%);
}
.milestone { position: relative; padding-bottom: 40px; }
.milestone:last-child { padding-bottom: 0; }

.milestone__dot {
  position: absolute;
  left: -37px; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #F0A51E;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #F0A51E;
}
.milestone__dot--final {
  background: #F0A51E;
  width: 22px; height: 22px;
  left: -39px;
  box-shadow: 0 0 0 3px #F0A51E, 0 0 12px rgba(240,165,30,.45);
}
.milestone__month {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: #F0A51E; display: block; margin-bottom: 4px;
}
.milestone__content h4 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.milestone__content p  { font-size: 14px; color: var(--text-body); line-height: 1.6; margin-bottom: 8px; }

.milestone__rev {
  display: inline-block; font-size: 13px; font-weight: 600;
  padding: 3px 12px; border-radius: 100px;
  background: #F0F0F5; color: var(--text-muted);
  border: 1px solid var(--border-light);
}
.milestone__rev--active {
  background: rgba(34,197,94,.08);
  color: #15803D;
  border-color: rgba(34,197,94,.2);
}

/* ══════════════════════════════════════
   ABOUT  (light section)
══════════════════════════════════════ */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about__text .section__eyebrow { margin-bottom: 16px; }
.about__text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 20px;
}
.about__text > p {
  font-size: 16px; color: var(--text-body); line-height: 1.75; margin-bottom: 32px;
}
/* Founder photo */
.founder__photo-wrap {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}
.founder__photo {
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 3px solid var(--red);
  box-shadow: 0 0 0 5px rgba(212,43,30,.12), var(--shadow);
  flex-shrink: 0;
}
.founder__photo-info { display: flex; flex-direction: column; gap: 3px; }
.founder__photo-info strong { font-size: 17px; font-weight: 800; color: var(--text-dark); }
.founder__photo-info span  { font-size: 13px; color: var(--text-muted); }
.founder__li {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--slate);
  text-decoration: none; margin-top: 6px;
  transition: color .2s;
}
.founder__li:hover { color: var(--text-dark); }

.founder__langs { display: flex; flex-wrap: wrap; gap: 10px; }

.lang-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
}
.lang-badge--dev { opacity: .65; }

.about__strengths h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 24px; }

.strength__item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.strength__icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.strength__item h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.strength__item p  { font-size: 14px; color: var(--text-body); line-height: 1.6; }

/* ══════════════════════════════════════
   AI SOURCING ADVISOR
══════════════════════════════════════ */
.advisor-section {
  padding: 100px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}
.advisor-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(240,165,30,.07) 0%, transparent 65%);
  pointer-events: none;
}
.advisor__inner { max-width: 780px; margin: 0 auto; position: relative; }
.advisor__header { text-align: center; margin-bottom: 48px; }
.advisor__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
  color: var(--gold-text);
  background: rgba(240,165,30,.10);
  border: 1px solid rgba(240,165,30,.25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.advisor__header h2 { font-size: clamp(24px,4vw,36px); font-weight: 800; margin-bottom: 14px; }
.advisor__header p  { font-size: 16px; color: var(--text-mid); max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* Input row */
.advisor__widget { display: flex; flex-direction: column; gap: 20px; }
.advisor__form-wrap { display: flex; flex-direction: column; gap: 10px; }
.advisor__input-row { display: flex; gap: 12px; }
.advisor__input {
  flex: 1;
  font-family: var(--font-body, sans-serif);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--border-mid);
  background: var(--bg-card);
  color: var(--text-bright);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.advisor__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,165,30,.12);
}
.advisor__input::placeholder { color: var(--text-dim); }
.advisor__btn  { padding: 14px 24px; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.advisor__disclaimer { font-size: 12px; color: var(--text-dim); text-align: center; }

/* Spinner */
.advisor__spinner { animation: advisor-spin 1s linear infinite; }
@keyframes advisor-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .advisor__spinner { animation: none; } }

/* Result card */
.advisor__result {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 3px 0 0 var(--gold);
  animation: advisor-fadein .35s ease;
}
@keyframes advisor-fadein { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.advisor__result-header {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border-dark);
}
.advisor__result-niche { font-size: 18px; font-weight: 700; color: var(--text-bright); }
.advisor__score-wrap   { text-align: right; }
.advisor__score-label  { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); margin-bottom: 4px; }
.advisor__score-badge  {
  font-size: 28px; font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.advisor__verdict {
  padding: 20px 28px;
  font-size: 14px; line-height: 1.75; color: var(--text-mid);
  border-bottom: 1px solid var(--border-dark);
}
.advisor__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-bottom: 1px solid var(--border-dark);
}
.advisor__grid .advisor__block:first-child { border-right: 1px solid var(--border-dark); }
.advisor__block { padding: 18px 24px; }
.advisor__block-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-dim); margin-bottom: 8px; }
.advisor__block div, .advisor__block p { font-size: 13px; line-height: 1.65; color: var(--text-mid); }
.advisor__regs { padding: 18px 24px; border-bottom: 1px solid var(--border-dark); }
.advisor__regs ul { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.advisor__regs li { font-size: 13px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px; }
.advisor__regs li::before { content: '›'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.advisor__upsell {
  padding: 22px 28px;
  background: rgba(240,165,30,.04);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.advisor__upsell p { font-size: 13px; color: var(--text-mid); max-width: 460px; line-height: 1.6; }

/* Error */
.advisor__error {
  background: rgba(212,43,30,.08);
  border: 1px solid rgba(212,43,30,.25);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  color: #FF9F99;
  text-align: center;
}

/* Mobile */
@media (max-width: 640px) {
  .advisor__input-row { flex-direction: column; }
  .advisor__btn { width: 100%; justify-content: center; }
  .advisor__grid { grid-template-columns: 1fr; }
  .advisor__grid .advisor__block:first-child { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .advisor__upsell { flex-direction: column; text-align: center; }
  .advisor__result-header { flex-direction: column; text-align: center; }
  .advisor__score-wrap { text-align: center; }
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  background: var(--bg-black);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
}
/* Soft gold radial glow — replaces the harsh red gradient */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240,165,30,.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Dot-grid overlay */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}
.cta__inner { position: relative; z-index: 1; }
/* Floating watermark logo */
.cta-bg-logo {
  position: absolute;
  bottom: -24px;
  right: -48px;
  opacity: .042;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: grayscale(1) brightness(12);
  animation: cta-logo-float 10s ease-in-out infinite;
}
.cta-bg-logo img { width: 540px; height: auto; }
@keyframes cta-logo-float {
  0%, 100% { transform: translateY(0px)   rotate(-7deg); }
  50%       { transform: translateY(-18px) rotate(-7deg); }
}
/* ── Animated background elements ── */
.cta-bg-anim {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}

/* Pulsing rings emanate from centre */
.cta-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1.5px solid rgba(240,165,30,.26);
  transform: translate(-50%,-50%) scale(.08);
  animation: ctaRingPulse 5.4s ease-out infinite;
}
.cta-ring--2 { animation-delay: 1.8s; }
.cta-ring--3 { animation-delay: 3.6s; }

@keyframes ctaRingPulse {
  0%   { transform:translate(-50%,-50%) scale(.08); opacity:.9; border-color:rgba(240,165,30,.40); }
  55%  { border-color:rgba(240,165,30,.08); }
  100% { transform:translate(-50%,-50%) scale(6);  opacity:0; }
}

/* Floating container boxes */
.cta-fbox {
  position: absolute;
  border: 1.5px solid rgba(240,165,30,.20);
  border-radius: 4px;
  animation: ctaBoxRise linear infinite;
}
/* Horizontal mid-line (like a container rail) */
.cta-fbox::before {
  content: ''; position: absolute;
  top: 50%; left: 0; right: 0; height: 1px;
  background: rgba(240,165,30,.14);
  transform: translateY(-50%);
}
/* Vertical centre divider */
.cta-fbox::after {
  content: ''; position: absolute;
  left: 50%; top: 0; bottom: 0; width: 1px;
  background: rgba(240,165,30,.10);
}

@keyframes ctaBoxRise {
  0%   { transform: translateY(0)      rotate(0deg);  opacity: 0; }
  6%   { opacity: 1; }
  88%  { opacity: .65; }
  100% { transform: translateY(-680px) rotate(14deg); opacity: 0; }
}

/* Honour reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .cta-section        { animation: none; background-position: 0% 0%; }
  .cta-section::before{ animation: none; }
  .cta-bg-logo        { animation: none; }
  .cta-ring, .cta-fbox{ animation: none; opacity: 0; }
}
.cta__inner h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; color: var(--white);
  margin-bottom: 16px; letter-spacing: -.02em;
}
.cta__inner > p {
  font-size: 18px; color: rgba(255,255,255,.72);
  margin-bottom: 40px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta__form {
  display: flex; gap: 12px;
  justify-content: center;
  flex-wrap: wrap; margin-bottom: 16px;
}
.cta__input, .cta__select {
  font-family: var(--font); font-size: 15px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--white); outline: none;
  min-width: 240px;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.cta__input::placeholder { color: rgba(255,255,255,.4); }
.cta__select option { background: #111116; color: var(--white); }
.cta__input:focus, .cta__select:focus {
  border-color: var(--gold-text);
  background: rgba(255,255,255,.13);
}
.cta__fine { font-size: 13px; color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
/* ══════════════════════════════════════
   FOOTER — redesigned
══════════════════════════════════════ */
.footer { background: var(--bg-black); }

/* Thin gold gradient stripe at the very top */
.footer__stripe {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold-text) 50%, var(--gold) 80%, transparent 100%);
}

/* ── Main footer: brand (left) + nav columns (right) ── */
.footer__main { padding: 60px 0; border-bottom: 1px solid var(--border-dark); }
.footer__main-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.footer__brand .nav__logo-img { height: 38px; margin-bottom: 18px; display: block; }
.footer__brand > p {
  font-size: 14px; color: var(--text-mid); line-height: 1.8;
  max-width: 300px; margin: 0 0 22px;
}
.footer__li-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-mid);
  padding: 8px 14px; border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; transition: border-color .2s, color .2s;
}
.footer__li-link svg { flex-shrink: 0; }
.footer__li-link:hover { color: var(--white); border-color: rgba(255,255,255,.22); }
.footer__col h5 {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-dim); margin-bottom: 14px;
}
.footer__col a { display: block; font-size: 13.5px; color: var(--text-mid); margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: var(--white); }

/* ── Animated ship scene ── */
.footer__scene {
  width: 100%; overflow: hidden; height: 140px;
  position: relative;
  background: linear-gradient(to bottom, transparent 0%, rgba(240,165,30,.03) 55%, rgba(240,165,30,.07) 100%);
}
.footer__scene-svg { display: block; width: 100%; height: 100%; }

/* Ship bobs gently on the water */
@keyframes footerBob {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-6px); }
}
/* Waves scroll left continuously */
@keyframes footerWave1 {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-900px); }
}
@keyframes footerWave2 {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-900px); }
}
/* Smoke puffs rise and fade */
@keyframes footerSmoke {
  0%   { opacity: 0;   transform: translate(0,0) scale(.7); }
  25%  { opacity: .55; }
  100% { opacity: 0;   transform: translate(-6px,-28px) scale(2.2); }
}

.footer-ship       { animation: footerBob 4.2s ease-in-out infinite; }
.footer-wave-back  { animation: footerWave1 9s linear infinite; }
.footer-wave-front { animation: footerWave2 6s linear infinite; }
.footer-smoke-a    { animation: footerSmoke 3.2s ease-out infinite; }
.footer-smoke-b    { animation: footerSmoke 3.2s ease-out 1.1s infinite; }
.footer-smoke-c    { animation: footerSmoke 3.2s ease-out 2.2s infinite; }

/* ── Legal bar ── */
.footer__bottom { padding: 18px 0; }
.footer__bottom-inner {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.footer__copy { font-size: 12px; font-weight: 600; color: var(--text-dim); white-space: nowrap; }
.footer__legal { font-size: 11px; color: var(--text-dim); line-height: 1.5; flex: 1; min-width: 0; }
.footer__bottom-links { display: flex; gap: 16px; margin-left: auto; flex-shrink: 0; }
.footer__bottom-links a { font-size: 12px; color: var(--text-dim); transition: color .2s; }
.footer__bottom-links a:hover { color: var(--white); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .workflow__steps   { grid-template-columns: repeat(2, 1fr); }
  .niches__grid      { grid-template-columns: repeat(2, 1fr); }
  .markets__grid     { grid-template-columns: 1fr 1fr; }
  .market__card--primary { grid-column: span 2; }
  .pricing__grid     { grid-template-columns: 1fr 1fr; }
  .pricing__card--featured { transform: none; grid-column: span 2; max-width: 420px; margin: 0 auto; width: 100%; }
  .cost-callout      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section, .section--alt, .section--dark { padding: 64px 0; }

  .nav__links { display: none; }
  .btn--nav   { display: none; }
  .client-login-nav { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: calc(var(--nav-h) + 48px) 0 56px; }
  .hero__icon-bg { display: none; }
  .hero__proof { flex-direction: column; gap: 20px; width: 100%; }
  .proof__divider { display: none; }

  .problem__grid  { grid-template-columns: 1fr; }
  .report__mockup { grid-template-columns: 1fr; }
  .score__layout  { grid-template-columns: 1fr; }
  .about__layout  { grid-template-columns: 1fr; gap: 40px; }
  .pricing__grid  { grid-template-columns: 1fr; }
  .pricing__card--featured { grid-column: auto; max-width: 100%; }
  .markets__grid  { grid-template-columns: 1fr; }
  .market__card--primary { grid-column: auto; }
  .niches__grid   { grid-template-columns: 1fr 1fr; }
  .footer__main-inner  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand       { grid-column: 1 / -1; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer__bottom-links { margin-left: 0; }
  .cost-callout   { padding: 32px 24px; }
  .workflow__grid { padding: 32px 24px; }
  .workflow__steps{ grid-template-columns: 1fr; }
  .cta__form      { flex-direction: column; align-items: center; }
  .cta__input, .cta__select { min-width: 100%; width: 100%; }
  .hero__actions  { flex-direction: column; align-items: flex-start; }
  .reg-bar__inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 480px) {
  .niches__grid { grid-template-columns: 1fr; }
  .hero__heading { font-size: 36px; }
  .report__cover-stats { gap: 12px; }
  .rcs-num { font-size: 22px; }
  .milestones__timeline { padding-left: 32px; }
}

/* ══════════════════════════════════════════════════════════
   Narrow-phone fix (Xiaomi 15 Ultra, Pixel 8 Pro, etc.)
   These devices render CSS viewports around 412–440px but
   their tall aspect ratio exposes any element with a
   capped max-width or left-aligned flex content as a
   "content-in-left-half" layout bug. Force common
   containers to fill width on phones.
   ══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .container        { padding: 0 18px; }
  .hero__inner,
  .hero__proof,
  .hero__actions,
  .section__header,
  .about__text,
  .report__copy,
  .score__copy,
  .workflow__grid,
  .cta__form,
  .advisor__inner   { max-width: 100% !important; width: 100%; }
  /* Buttons/CTAs stretch to full width on narrow phones */
  .hero__actions .btn,
  .cta__form .btn   { width: 100%; justify-content: center; }
  /* Kill horizontal scroll caused by oversize absolute shapes */
  html              { overflow-x: clip; }
  body              { overflow-x: hidden; }
  .hero             { overflow: hidden; }
  .hero::before,
  .hero__bg-shape   { display: none; }

  /* Hero: hide heavy below-fold elements — stats are shown in the section below */
  .hero__proof        { display: none !important; }
  .hero__linkedin     { display: none !important; }
  .hero__bilingual-tag{ display: none !important; }

  /* Problem section: hide decorative telescope image so heading gets full width */
  .spyglass-wrap      { display: none !important; }

  /* Footer: single column on very narrow phones */
  .footer__main-inner { grid-template-columns: 1fr !important; }

  /* ── Regs table → stacked cards (no horizontal scroll needed) ── */
  .regs__table-wrap              { overflow-x: visible; max-width: 100%; }
  .regs__table-wrap .table-scroll{ overflow: visible; box-shadow: none; border-radius: 0; background: transparent; }
  .regs__table                   { min-width: unset !important; background: transparent; width: 100%; }
  .regs__table thead             { display: none; }
  .regs__table tbody tr          { display: block; padding: 12px 14px; border-radius: 10px;
                                   border: 1px solid var(--border-light); margin-bottom: 10px;
                                   background: var(--white); }
  .regs__table td                { display: block; padding: 2px 0 !important; border: none !important;
                                   white-space: normal !important; }
  .regs__table td:nth-child(1)   { font-weight: 700; font-size: 13px; color: var(--text-dark); margin-bottom: 6px; }
  .regs__table td:nth-child(2)   { margin-bottom: 7px; }
  .regs__table td:nth-child(3)   { font-size: 12px; line-height: 1.55; }
  .regs__table tr:last-child td  { border: none !important; }

  /* ── Compare table → stacked cards ── */
  #compare .table-scroll         { overflow: visible; box-shadow: none; border-radius: 0; background: transparent; }
  .compare__table                { min-width: unset !important; background: transparent; width: 100%; }
  .compare__table thead          { display: none; }
  .compare__table tbody tr       { display: block; padding: 12px 14px; border-radius: 10px;
                                   border: 1px solid var(--border-dark); margin-bottom: 10px;
                                   background: var(--bg-card); }
  .compare__table td             { display: block; padding: 2px 0 !important; border: none !important;
                                   font-size: 12px; line-height: 1.5; white-space: normal !important; }
  .compare__table td:nth-child(1){ font-weight: 700; font-size: 14px; color: var(--white); margin-bottom: 7px; }
  .compare__table td:nth-child(2)::before { content: "✔ "; color: var(--gold); }
  .compare__table td:nth-child(3){ color: var(--text-dim); }
  .compare__table td:nth-child(3)::before { content: "✗ "; color: var(--red); }
  .compare__table td:nth-child(4){ font-weight: 700; color: var(--gold); font-size: 13px; margin-top: 5px; }
  .compare__row--featured        { border-color: var(--gold) !important; background: rgba(240,165,30,.08) !important; }
  .compare-wrap                  { overflow-x: visible; }

  /* Sticky CTA: prevent Crisp chat button from overlapping the action button */
  .sticky-cta-bar   { padding-right: 72px; }
  .sticky-cta-bar__dismiss { right: 8px; }
  /* Index-page multi-column grids → single column on narrow phones (Xiaomi 15 Ultra fix) */
  .problem__grid,
  .problem__cards,
  .report__cover-stats,
  .report__sections,
  .score__layout,
  .score__categories,
  .score__grades,
  .pricing__grid,
  .markets__grid,
  .niches__grid,
  .workflow__steps,
  .features__grid,
  .steps__grid,
  .testimonials__grid,
  .faq__grid        { grid-template-columns: 1fr !important; display: grid; gap: 16px; width: 100%; }
  /* Prevent any row from exceeding viewport */
  main section, main .container { max-width: 100%; overflow-x: hidden; }
  img, svg, video, iframe, picture { max-width: 100%; height: auto; }
  /* Report mockup: ensure it doesn't overflow */
  .report__mockup   { max-width: 100%; }
  /* Type scale */
  .hero__heading    { font-size: clamp(28px, 8vw, 40px); line-height: 1.15; }
  .hero__sub        { font-size: 15px; }
  .proof__num       { font-size: 22px; }
  .section__heading,
  h2.section__heading { font-size: clamp(22px, 6vw, 32px); line-height: 1.2; }

  /* Allow section headings to wrap on mobile (desktop uses white-space:nowrap) */
  .problem__intro-text h2,
  #solution .section__header h2,
  #pricing .section__header h2,
  #markets .section__header h2,
  #markets .section__sub         { white-space: normal !important; }
}

/* ══════════════════════════════════════
   NAV CONTROLS PILL
══════════════════════════════════════ */
.nav__controls {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  height: 34px;
  flex-shrink: 0;
  overflow: hidden;
  gap: 0;
}
/* Visual order: currency | language | theme */
.nav__controls #currencyToggle { order: 1; }
.nav__controls .lang-toggle    { order: 2; }
.nav__controls #themeToggle    { order: 3; }

/* Strip individual borders/backgrounds from children inside the pill */
.nav__controls .theme-toggle,
.nav__controls .cur-toggle {
  border: none;
  border-radius: 0;
  height: 100%;
  padding: 0 11px;
  font-size: 13px;
}
.nav__controls .theme-toggle:hover,
.nav__controls .cur-toggle:hover { border-color: transparent; }

/* Lang toggle inside pill: no own border/bg, flanked by separators */
.nav__controls .lang-toggle {
  background: none;
  border: none;
  border-left:  1px solid var(--border-dark);
  border-right: 1px solid var(--border-dark);
  border-radius: 0;
  padding: 0 10px;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: default;
}
.nav__controls .lang-toggle:hover { border-color: var(--border-dark); }

/* Hide on mobile (controls appear in mobile menu instead) */
@media (max-width: 768px) {
  .nav__controls { display: none; }
  .nav__actions  { display: none; }
  /* Hide theme/currency toggles that sit directly in nav__inner (not in the pill) */
  .nav__inner > .theme-toggle,
  .nav__inner > #themeToggle,
  .nav__inner > #currencyToggle { display: none; }
}

/* ══════════════════════════════════════
   LANGUAGE TOGGLE (11) — standalone (no pill parent)
══════════════════════════════════════ */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  padding: 4px 12px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text-dim);
  transition: border-color .2s;
  flex-shrink: 0;
}
.lang-toggle:hover { border-color: var(--border-mid); }

.lang-toggle__opt {
  background: none;
  border: none;
  padding: 0 2px;
  margin: 0;
  cursor: pointer;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: var(--text-dim);
  transition: color .2s;
  line-height: 1;
}
.lang-toggle__opt:hover { color: var(--text-mid); }
.lang-toggle__opt--active { color: var(--gold-text); }
.lang-toggle__sep { color: var(--text-dim); margin: 0 1px; }

/* ══════════════════════════════════════
   HERO LINKEDIN LINK (4)
══════════════════════════════════════ */
.hero__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-top: 8px;
  margin-bottom: 32px;
  padding: 8px 14px;
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  background: var(--bg-card);
  transition: border-color .2s, color .2s;
}
.hero__linkedin:hover {
  border-color: #0A66C2;
  color: #70AEFF;
}
.hero__linkedin svg { color: #0A66C2; flex-shrink: 0; }

/* ══════════════════════════════════════
   STRIPE BUTTON (10)
══════════════════════════════════════ */
.stripe-btn {
  gap: 10px;
}

/* ══════════════════════════════════════
   TESTIMONIALS (5)
══════════════════════════════════════ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.testimonial__card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
/* Large decorative opening quote mark */
.testimonial__card::before {
  content: '\201C';
  position: absolute;
  top: -12px; right: 20px;
  font-size: 120px;
  line-height: 1;
  color: var(--red);
  opacity: .06;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}
.testimonial__card:hover {
  border-color: rgba(212,43,30,.2);
  box-shadow: 0 8px 28px rgba(212,43,30,.08);
  transform: translateY(-3px);
}
/* Featured card — inset top accent instead of border-top (avoids corner arcs) */
.testimonial__card--featured {
  box-shadow: inset 0 4px 0 0 var(--red), 0 4px 20px rgba(212,43,30,.08);
  border-color: rgba(212,43,30,.3);
}
.testimonial__card--featured:hover {
  box-shadow: inset 0 4px 0 0 var(--red), 0 14px 36px rgba(212,43,30,.14);
  transform: translateY(-4px);
}
.testimonial__card--featured::before {
  opacity: .1;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial__quote {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #9A1E14);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.ta--red   { background: linear-gradient(135deg, #D42B1E, #9A1E14); }
.ta--blue  { background: linear-gradient(135deg, #2C5282, #1A3559); }
.ta--green { background: linear-gradient(135deg, #276749, #1A4532); }
.ta--gold  { background: linear-gradient(135deg, #C07C0A, #8A5A08); }
.ta--slate { background: linear-gradient(135deg, #4A6FA5, #2D4E7C); }
.testimonial__author strong {
  display: block;
  font-size: 14px; font-weight: 700;
  color: var(--text-dark);
}
.testimonial__author span {
  display: block;
  font-size: 12px; color: var(--text-muted);
  margin-top: 2px;
}
.testimonials__note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  margin-top: 16px;
}

/* ══════════════════════════════════════
   FOOTER LINKEDIN — kept for other pages still using .footer__linkedin
══════════════════════════════════════ */
.footer__linkedin {
  display: inline-flex !important;
  align-items: center;
  gap: 6px; font-size: 13px; font-weight: 600;
  color: var(--text-mid) !important;
  transition: color .2s !important;
}
.footer__linkedin:hover { color: var(--white) !important; }
.footer__linkedin svg { flex-shrink: 0; }

/* ══════════════════════════════════════
   FORM SUCCESS STATE (1)
══════════════════════════════════════ */
.form-success {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.form-success__icon {
  width: 56px; height: 56px;
  background: rgba(34,197,94,.15);
  border-radius: 50%;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--green);
}
.form-success h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.form-success p  { font-size: 14px; color: var(--text-mid); }

/* ══════════════════════════════════════
   CTA FORM extra fields
══════════════════════════════════════ */
.cta__form { flex-wrap: wrap; }
.cta__form .cta__input[name="company"] {
  flex: 1 1 240px;
}

@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .lang-toggle { display: none; } /* hidden standalone; .nav__controls also hides on mobile */
}

/* ══════════════════════════════════════
   HERO BILINGUAL TAG
══════════════════════════════════════ */
.hero__bilingual-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #F0A51E;
  background: rgba(240, 165, 30, 0.08);
  border: 1px solid rgba(240, 165, 30, 0.28);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════
   LEAD MAGNET BAR
══════════════════════════════════════ */
.lead-magnet-bar {
  background: linear-gradient(90deg, #1A1A22 0%, #1f1f2e 100%);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 18px 0;
}
.lead-magnet-bar__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lead-magnet-bar__icon { font-size: 28px; flex-shrink: 0; color: var(--white); }
.lead-magnet-bar__text {
  flex: 1;
  min-width: 200px;
}
.lead-magnet-bar__text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.lead-magnet-bar__text span {
  font-size: 13px;
  color: var(--text-mid);
}
@media (max-width: 768px) {
  .lead-magnet-bar__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ══════════════════════════════════════
   SURVEY CALLOUT (problem section)
══════════════════════════════════════ */
.survey-callout {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #2a2a35;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 0;
  margin-bottom: 56px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.survey-callout__stat {
  flex: 1;
  min-width: 180px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.survey-pct {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold-text);
  letter-spacing: -.03em;
  line-height: 1;
  flex-shrink: 0;
}
.survey-callout__stat p {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.survey-callout__divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
  align-self: stretch;
}
.survey-callout__source {
  position: absolute;
  bottom: 10px;
  right: 18px;
  font-size: 10px;
  color: rgba(255,255,255,.3);
  font-style: italic;
}
@media (max-width: 768px) {
  .survey-callout { flex-direction: column; gap: 24px; }
  .survey-callout__divider { display: none; }
  .survey-callout__source { position: static; }
}

/* ══════════════════════════════════════
   UNIT ECONOMICS BLOCK (pricing)
══════════════════════════════════════ */
.unit-econ {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 28px 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ue-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 120px;
  padding: 8px 24px;
}
.ue-val {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold-text);
  letter-spacing: -.03em;
}
.ue-label {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.4;
  max-width: 120px;
}
.ue-divider {
  width: 1px;
  height: 52px;
  background: var(--border-dark);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .unit-econ { flex-direction: column; padding: 24px; }
  .ue-divider { width: 100%; height: 1px; }
}

/* ══════════════════════════════════════
   SCARCITY BAR (pricing card)
══════════════════════════════════════ */
.pricing__scarcity-bar {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.scarcity-bar__track {
  width: 100%;
  height: 4px;
  background: var(--border-dark);
  border-radius: 2px;
  overflow: hidden;
}
.scarcity-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
}

/* ══════════════════════════════════════
   COMING-SOON NICHES
══════════════════════════════════════ */
.niches__grid { grid-template-columns: repeat(3, 1fr); }

.niche--coming-soon {
  opacity: 0.6;
  border-style: dashed;
  background: rgba(255,255,255,.4);
  position: relative;
  pointer-events: none;
}
.niche__soon-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate);
  background: var(--slate-pale);
  border: 1px solid rgba(91,126,153,.25);
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* ══════════════════════════════════════
   FUTURE MILESTONE
══════════════════════════════════════ */
.milestone--future .milestone__dot {
  border-color: var(--slate);
  background: var(--bg-light);
}
.milestone--future .milestone__month { color: var(--slate); }
.milestone--future .milestone__content h4 { color: var(--text-muted); }
.milestone--future .milestone__content p  { color: var(--text-muted); }

/* ══════════════════════════════════════
   MOAT SECTION (about)
══════════════════════════════════════ */
.moat-section {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 56px;
  padding: 36px 40px;
  background: var(--bg-black);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--gold);
}
.moat-section__icon { font-size: 36px; flex-shrink: 0; margin-top: 2px; }
.moat-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.moat-section p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}
@media (max-width: 768px) {
  .moat-section { flex-direction: column; padding: 28px 24px; }
}

/* ══════════════════════════════════════
   TESTING LAB highlight strength item
══════════════════════════════════════ */
.strength__item--highlight {
  padding: 16px;
  background: var(--slate-pale);
  border: 1px solid rgba(91,126,153,.2);
  border-radius: var(--radius);
}

/* ══════════════════════════════════════
   LEAD MAGNET MODAL
══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--bg-dark);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(16px);
  transition: transform .25s ease;
  text-align: center;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  color: var(--text-mid);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s;
}
.modal__close:hover { color: var(--white); border-color: var(--border-mid); }
.modal__icon { font-size: 48px; margin-bottom: 20px; }
.modal h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.modal > p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 28px;
}
.modal__input {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border-mid);
  background: var(--bg-card);
  color: var(--white);
  outline: none;
  margin-bottom: 12px;
  transition: border-color .2s;
}
.modal__input:focus { border-color: var(--gold-text); }
.modal__input::placeholder { color: var(--text-dim); }
.modal__fine {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
}
@media (max-width: 480px) {
  .modal { padding: 36px 24px; }
}

/* ══════════════════════════════════════
   BLOG CARD (used on blog.html)
══════════════════════════════════════ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(212,43,30,.25);
  box-shadow: 0 8px 32px rgba(212,43,30,.08);
  transform: translateY(-3px);
}
.blog-card__cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: 8px;
}
.blog-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card__excerpt {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--text-muted);
}
.blog-card__meta strong { color: var(--text-dark); font-weight: 600; }

/* ══════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--bg-dark); border-top: 1px solid var(--border-mid);
  padding: 14px 16px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.2,.8,.3,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.45);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; padding-right: 76px;
}
.cookie-banner__text {
  flex: 1; min-width: 220px; font-size: 13px;
  color: var(--text-mid); line-height: 1.65;
}
.cookie-banner__text a { color: var(--gold-text); text-decoration: underline; }
.cookie-banner__text a:hover { color: var(--gold); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: var(--radius);
  cursor: pointer; border: 1px solid transparent; transition: all .18s;
}
.cookie-btn--accept  { background: var(--gold); color: var(--bg-black); }
.cookie-btn--accept:hover  { background: var(--gold-hover); }
.cookie-btn--decline { background: transparent; border-color: var(--border-mid); color: var(--text-mid); }
.cookie-btn--decline:hover { border-color: var(--border-mid); color: var(--white); }

/* ══════════════════════════════════════
   EXIT-INTENT OVERLAY
══════════════════════════════════════ */
.exit-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.82);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 800; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.exit-overlay.open { opacity: 1; pointer-events: all; }
.exit-modal {
  background: var(--bg-dark); border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl); padding: 48px 40px;
  max-width: 460px; width: 100%; text-align: center; position: relative;
  transform: scale(.95); transition: transform .3s ease;
}
.exit-overlay.open .exit-modal { transform: scale(1); }
.exit-modal__close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg-card); border: 1px solid var(--border-dark);
  color: var(--text-mid); width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center; transition: color .2s;
}
.exit-modal__close:hover { color: var(--white); }
.exit-modal__badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  background: var(--red-pale); color: var(--red); border: 1px solid var(--red-border);
  margin-bottom: 18px;
}
.exit-modal__icon { font-size: 52px; margin-bottom: 14px; }
.exit-modal h3 {
  font-size: 24px; font-weight: 800; color: var(--white);
  line-height: 1.2; margin-bottom: 10px;
}
.exit-modal > p {
  font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 22px;
}
.exit-modal__dismiss {
  display: block; margin-top: 14px; font-size: 12px;
  color: var(--text-dim); cursor: pointer;
  transition: color .2s; text-decoration: underline; background: none; border: none;
}
.exit-modal__dismiss:hover { color: var(--text-mid); }
@media (max-width: 480px) { .exit-modal { padding: 40px 24px; } }

/* ══════════════════════════════════════
   COMING SOON WAITLIST INLINE FORM
══════════════════════════════════════ */
.niche__waitlist { display: flex; gap: 8px; margin-top: 14px; }
.niche__waitlist-input {
  flex: 1; font-family: var(--font); font-size: 13px;
  padding: 7px 12px; border-radius: var(--radius);
  border: 1px solid var(--border-light); background: var(--white);
  color: var(--text-dark); outline: none; transition: border-color .2s; min-width: 0;
}
.niche__waitlist-input:focus { border-color: var(--red); }
.niche__waitlist-input::placeholder { color: var(--text-muted); }
.niche__waitlist-btn {
  font-family: var(--font); font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: var(--radius);
  background: var(--red); color: var(--white); border: none;
  cursor: pointer; transition: background .18s; white-space: nowrap; flex-shrink: 0;
}
.niche__waitlist-btn:hover { background: var(--red-hover); }
.niche__waitlist-success {
  font-size: 12px; color: var(--green); margin-top: 6px;
  font-weight: 600; display: none;
}
.niche__waitlist-success.show { display: block; }

/* ══════════════════════════════════════
   PRIVACY PAGE
══════════════════════════════════════ */
.privacy-hero {
  background: var(--bg-black); padding: calc(var(--nav-h) + 64px) 0 56px;
  border-bottom: 1px solid var(--border-dark);
}
.privacy-hero h1 { font-size: clamp(28px,4vw,44px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.privacy-hero p  { font-size: 15px; color: var(--text-mid); }
.privacy-body { padding: 64px 0 96px; background: var(--bg-light); }
.privacy-content { max-width: 720px; }
.privacy-content h2 {
  font-size: 22px; font-weight: 700; color: var(--text-dark);
  margin: 48px 0 14px; padding-top: 48px;
  border-top: 1px solid var(--border-light);
}
.privacy-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.privacy-content h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin: 28px 0 10px; }
.privacy-content p  { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.privacy-content ul { margin: 0 0 16px 22px; }
.privacy-content li { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 6px; }
.privacy-content a  { color: var(--red); text-decoration: underline; }
.privacy-content strong { color: var(--text-dark); }
.privacy-toc {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 48px;
}
.privacy-toc h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 14px; }
.privacy-toc a { display: block; font-size: 14px; color: var(--text-body); margin-bottom: 8px; text-decoration: none; }
.privacy-toc a:hover { color: var(--red); }

/* ══════════════════════════════════════
   ROI CALCULATOR
══════════════════════════════════════ */
/* .roi-section background is set in the ROI LIGHT THEME block below */
.roi-calculator {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
  background: var(--bg-dark); border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl); padding: 40px 44px;
}
@media (max-width: 900px) { .roi-calculator { grid-template-columns: 1fr; padding: 28px 24px; } }
.roi-input-group { margin-bottom: 28px; }
.roi-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 12px; letter-spacing: .02em; }
.roi-slider-row { display: flex; align-items: center; gap: 14px; }
.roi-slider {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 2px; background: var(--border-mid); outline: none; cursor: pointer;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--red); cursor: pointer; box-shadow: 0 0 0 5px rgba(212,43,30,.18);
}
.roi-slider::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--red); cursor: pointer; border: none;
}
.roi-output {
  font-size: 14px; font-weight: 700; color: var(--white);
  min-width: 96px; text-align: right; flex-shrink: 0;
}
.roi-risk-row { display: flex; gap: 8px; flex-wrap: wrap; }
.roi-risk-btn {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid var(--border-mid); background: transparent;
  color: var(--text-mid); cursor: pointer; transition: all .18s;
}
.roi-risk-btn:hover, .roi-risk-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }
.roi-results { display: flex; flex-direction: column; gap: 14px; }
.roi-card {
  background: var(--bg-card); border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 18px 22px;
}
.roi-card--roi { border-color: rgba(240,165,30,.3); background: rgba(240,165,30,.05); }
.roi-card--risk { border-color: rgba(212,43,30,.25); background: rgba(212,43,30,.05); }
.roi-card__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--text-dim); margin-bottom: 5px; }
.roi-card__val { font-size: 30px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.roi-card--risk .roi-card__val { color: #FF8A80; }
.roi-card__val--gold { color: var(--gold-text) !important; }
.roi-card__sub { font-size: 12px; color: var(--text-dim); }
.roi-breakeven {
  background: var(--bg-mid); border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 20px 22px; text-align: center;
}
.roi-breakeven p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.roi-breakeven strong { color: var(--white); }

/* ══════════════════════════════════════
   PRICING CALENDLY NOTE
══════════════════════════════════════ */
.pricing__calendly {
  text-align: center; margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.pricing__calendly p { font-size: 14px; color: var(--text-mid); }

/* ══════════════════════════════════════
   NAV DROPDOWN
══════════════════════════════════════ */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  background: none; border: none; cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  font-family: var(--font); display: flex; align-items: center; gap: 4px;
  padding: 0 0 2px; transition: color .2s;
  position: relative;
}
.nav__dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  transition: width .28s cubic-bezier(.2,.8,.2,1);
}
.nav__dropdown:hover .nav__dropdown-trigger::after { width: 100%; }
.nav__dropdown-trigger:hover, .nav__dropdown:hover .nav__dropdown-trigger { color: var(--white); }
.nav__caret { font-size: 10px; transition: transform .2s; }
.nav__dropdown:hover .nav__caret { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute; top: calc(100% + 12px);
  left: 50%; transform: translateX(-50%) translateY(-6px);
  background: var(--bg-dark); border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg); min-width: 200px;
  padding: 8px 0;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 200;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__dropdown.open .nav__caret { transform: rotate(180deg); }
.nav__dropdown-menu a {
  display: block; padding: 10px 18px;
  font-size: 14px; color: var(--text-mid);
  text-decoration: none; transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav__dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,.04); }
/* Small triangle pointing up */
.nav__dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 22px;
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-bottom: 6px solid var(--border-mid);
}
.nav__dropdown-menu::after {
  content: ''; position: absolute; top: -5px; left: 22px;
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-bottom: 6px solid var(--bg-dark);
}

/* ══════════════════════════════════════
   ROI CALCULATOR — LIGHT THEME
══════════════════════════════════════ */
.roi-section {
  padding: 96px 0;
  background: #F0F0F5;
}
.roi-section__header { margin-bottom: 40px; }
.roi-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-pale); border: 1px solid var(--red-border);
  color: var(--red); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.roi-heading { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--text-dark); margin-bottom: 14px; }
.roi-sub { font-size: 17px; color: var(--text-body); max-width: 600px; margin: 0 auto; }

/* Override card and input styles for light background */
.roi-calculator {
  background: #FFFFFF;
  border: 1px solid #DADADF;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.roi-label { color: var(--text-muted); }
.roi-output { color: var(--text-dark); font-weight: 700; font-size: 14px; min-width: 90px; text-align: right; }
.roi-slider { background: #D8D8E4; }
.roi-risk-btn {
  background: #fff; border-color: #D8D8E4; color: var(--text-body);
}
.roi-risk-btn:hover { background: var(--red-pale); color: var(--red); border-color: var(--red-border); }
.roi-risk-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

.roi-card { background: #F5F5FA; border: 1px solid #E0E0EA; }
.roi-card__label { color: var(--text-muted); }
.roi-card__val { color: var(--text-dark); }
.roi-card--risk { background: rgba(212,43,30,.05); border-color: rgba(212,43,30,.2); }
.roi-card--risk .roi-card__val { color: #C0221A; }
.roi-card--per-trial { background: rgba(245,158,11,.05); border-color: rgba(245,158,11,.25); }
.roi-card--per-trial .roi-card__val { color: #B07210; }
.roi-card--roi { background: rgba(240,165,30,.07); border-color: rgba(240,165,30,.3); }
.roi-card__val--gold { color: #A06800 !important; }
.roi-card__sub { color: var(--text-muted); }

.roi-breakeven { background: #FFFFFF; border: 1px solid #E0E0EA; }
.roi-breakeven p { color: var(--text-body); }
.roi-breakeven strong { color: var(--text-dark); }

/* ══════════════════════════════════════
   INTERACTIVE NICHES
══════════════════════════════════════ */
.niches__hint { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; font-style: italic; }

.niche__status--live {
  font-size: 11px; font-weight: 600; color: #16a34a; margin-bottom: 6px;
  letter-spacing: .04em;
}
.niche--clickable { cursor: pointer; transition: border-color .2s, box-shadow .2s, transform .15s; }
.niche--clickable:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,43,30,.1); border-color: rgba(212,43,30,.35); }
/* Ensure waitlist form elements remain interactive inside clickable cards */
.niche--clickable .niche__waitlist,
.niche--clickable .niche__waitlist * { position: relative; z-index: 2; pointer-events: all; cursor: auto; }
.niche--clickable .niche__waitlist-btn { cursor: pointer; }
.niche--active { border-color: var(--red) !important; box-shadow: 0 4px 16px rgba(212,43,30,.14) !important; }

/* Detail panel */
.niche__detail-panel {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease;
  opacity: 0;
  margin-top: 0;
}
.niche__detail-panel.open {
  max-height: 600px; opacity: 1;
  margin-top: 20px;
}
.niche__detail-inner {
  background: var(--white); border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 28px 32px;
}
.nd__top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; border-bottom: 1px solid var(--border-light); padding-bottom: 16px; }
.nd__icon { font-size: 28px; line-height: 1; }
.nd__title { font-size: 17px; font-weight: 700; color: var(--text-dark); }
.nd__status { font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.nd__status--live { color: #16a34a; }
.nd__status--coming { color: var(--amber); }
.nd__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 20px; }
@media (max-width: 840px) { .nd__cols { grid-template-columns: 1fr; } }
.nd__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--text-muted); margin-bottom: 8px; }
.nd__regs { list-style: none; }
.nd__regs li { font-size: 13px; color: var(--text-body); padding: 4px 0; border-bottom: 1px solid var(--border-light); }
.nd__regs li:last-child { border-bottom: none; }
.nd__text { font-size: 13px; color: var(--text-body); line-height: 1.6; }
.nd__quote { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-style: italic; background: var(--bg-light); padding: 12px 14px; border-radius: var(--radius); border-left: 3px solid var(--red-border); }
.nd__footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.nd__avail { font-size: 13px; color: var(--text-muted); }

/* ══════════════════════════════════════
   LIGHT MODE
   Applied via html.light-mode class
══════════════════════════════════════ */
html.light-mode {
  --bg-black:    #FFFFFF;
  --bg-dark:     #F5F5F8;
  --bg-mid:      #EDEDF2;
  --bg-card:     #FFFFFF;
  --bg-light:    #F0F0F5;
  --text-bright: #111116;
  --text-mid:    #4A4A5E;
  --text-dim:    #8A8A9E;
  --text-dark:   #111116;
  --text-body:   #3A3A4E;
  --text-muted:  #6A6A82;
  --border-dark:  rgba(0,0,0,.08);
  --border-mid:   rgba(0,0,0,.14);
  --border-light: #DCDCE8;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.10);
  --shadow:      0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.15);
}

html.light-mode body { background: #F5F5F8; color: #111116; }

/* Nav in light mode */
html.light-mode .nav {
  background: rgba(245,245,248,.96);
  border-bottom-color: rgba(0,0,0,.08);
}
html.light-mode .nav__links a,
html.light-mode .nav__dropdown-trigger { color: #3A3A4E; }
html.light-mode .nav__links a:hover { color: #111116; }
html.light-mode .nav__dropdown-menu {
  background: #FFFFFF;
  border-color: rgba(0,0,0,.10);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
html.light-mode .nav__dropdown-menu a { color: #3A3A4E; }
html.light-mode .nav__dropdown-menu a:hover { background: #F5F5F8; color: #111116; }
html.light-mode .nav__mobile { background: #FFFFFF; border-top-color: rgba(0,0,0,.08); }
html.light-mode .nav__mobile a { color: #3A3A4E; border-bottom-color: rgba(0,0,0,.06); }
html.light-mode .mobile-nav-sep { color: #8A8A9E; border-bottom-color: rgba(0,0,0,.08); }
html.light-mode .nav__burger span { background: #3A3A4E; }

/* Cards and sections */
html.light-mode .section { background: #FFFFFF; }
html.light-mode .section--dark { background: #F0F0F5; }
/* Grid overlay switches to dark lines on light-mode dark sections */
html.light-mode .section--dark::before {
  background-image:
    linear-gradient(rgba(0,0,0,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.045) 1px, transparent 1px);
  background-size: 64px 64px;
}
html.light-mode .section--dark::after { opacity: 0; }
html.light-mode .pricing__card {
  background: #FFFFFF;
  border-color: rgba(0,0,0,.10);
}
html.light-mode .pricing__card--featured {
  background: linear-gradient(135deg,#FFFFFF 0%,rgba(240,165,30,.06) 100%);
}
html.light-mode .pricing__card-label,
html.light-mode .pricing__desc,
html.light-mode .pricing__features li { color: #4A4A5E; }
html.light-mode .pricing__price .price__amount { color: #111116; }
html.light-mode .pricing__price .price__period { color: #6A6A82; }

/* Blog cards */
html.light-mode .blog-card,
html.light-mode .faq-item,
html.light-mode .reg-card { background: #FFFFFF; border-color: rgba(0,0,0,.10); }

/* Footer */
html.light-mode .footer { background: #F5F5F7; }
html.light-mode .footer__stripe { background: linear-gradient(90deg, transparent 0%, #D08C14 20%, #F0A51E 50%, #D08C14 80%, transparent 100%); }
html.light-mode .footer__main { border-bottom-color: rgba(0,0,0,.09); }
html.light-mode .footer__brand > p,
html.light-mode .footer__col a,
html.light-mode .footer__copy,
html.light-mode .footer__legal,
html.light-mode .footer__bottom-links a { color: #4A4A5E; }
html.light-mode .footer__col h5 { color: #111116; }
html.light-mode .footer__col a:hover,
html.light-mode .footer__bottom-links a:hover { color: #111116; }
html.light-mode .footer__li-link { color: #4A4A5E; border-color: rgba(0,0,0,.15); }
html.light-mode .footer__li-link:hover { color: #111116; border-color: rgba(0,0,0,.35); }
html.light-mode .footer__scene { background: linear-gradient(to bottom, transparent 0%, rgba(200,135,0,.04) 55%, rgba(200,135,0,.09) 100%); }

/* Score section (keep dark) */
html.light-mode .score-section { background: #111116; }
html.light-mode .score-section h2,
html.light-mode .score-section p,
html.light-mode .score-section .section__eyebrow { filter: none; }

/* Theme toggle button */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  background: none;
  border: 1px solid var(--border-mid);
  border-radius: 18px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-mid);
  transition: all .2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.theme-toggle__label,
.cur-toggle__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
}
.cur-toggle { gap: 5px; padding: 0 10px; }
.theme-toggle:hover { color: var(--text-bright); border-color: var(--gold); }
html.light-mode .theme-toggle { border-color: rgba(0,0,0,.15); color: #4A4A5E; }

/* ── Light mode: fix white-on-white text ── */
html.light-mode .hero__heading { color: #111116; }
html.light-mode .cost-callout__text h3 { color: #111116; }
html.light-mode .report__title { color: #111116; }
html.light-mode .rs__item h4 { color: #111116; }
html.light-mode .workflow__title { color: #111116; }
html.light-mode .price__amount { color: #111116; }
html.light-mode .moat-section h3 { color: #111116; }
html.light-mode .lead-magnet-bar__text strong { color: #F0F0F5; }
html.light-mode .modal h3 { color: #111116; }
html.light-mode .exit-modal { background: #FFFFFF; border-color: rgba(0,0,0,.12); }
html.light-mode .exit-modal h3 { color: #111116; }
html.light-mode .exit-modal > p { color: #4A4A5E; }
html.light-mode .exit-modal__close { background: #F0F0F5; border-color: rgba(0,0,0,.12); color: #4A4A5E; }
html.light-mode .exit-modal__close:hover { color: #111116; }
html.light-mode .exit-modal__dismiss { color: #9A9AAE; }
html.light-mode .modal input,
html.light-mode .modal select,
html.light-mode .modal textarea { color: #111116; background: #F0F0F5; border-color: rgba(0,0,0,.14); }
html.light-mode .form-success h3 { color: #111116; }
html.light-mode .roi-output { color: #111116; }
html.light-mode .roi-card__val { color: #111116; }
html.light-mode .roi-breakeven strong { color: #111116; }
html.light-mode .privacy-hero h1 { color: #111116; }
html.light-mode .section__title,
html.light-mode .section__heading { color: #111116; }
html.light-mode .btn--ghost { color: #4A4A5E; border-color: rgba(0,0,0,.18); }
html.light-mode .btn--ghost:hover { color: #111116; background: rgba(0,0,0,.06); border-color: rgba(0,0,0,.25); }

/* Lead magnet bar */
html.light-mode .lead-magnet-bar {
  background: #F0F0F8;
  border-top: 1px solid rgba(0,0,0,.1);
  border-bottom: 1px solid rgba(0,0,0,.1);
}
html.light-mode .lead-magnet-bar__text strong { color: #111116; }
html.light-mode .lead-magnet-bar__text span { color: #4A4A5E; }

/* Regulatory ticker bar */
html.light-mode .reg-bar {
  background: #EBEBF2;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
html.light-mode .reg-bar__label { color: #6A6A7E; }

/* Survey callout */
html.light-mode .survey-callout {
  background: #E8E8F0;
  border-color: rgba(0,0,0,.1);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
html.light-mode .survey-callout__stat p { color: #4A4A5E; }
html.light-mode .survey-callout__divider { background: rgba(0,0,0,.1); }
html.light-mode .survey-callout__source { color: rgba(0,0,0,.35); }

/* Scroll CTA bar */
html.light-mode #scrollCta {
  background: rgba(255,255,255,.97);
  border-top: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
}
html.light-mode #scrollCta__text { color: #4A4A5E; }
html.light-mode #scrollCta__text strong { color: #111116; }
html.light-mode #scrollCta__close {
  border-color: rgba(0,0,0,.18);
  color: #6A6A7E;
}
html.light-mode #scrollCta__close:hover {
  color: #111116;
  border-color: rgba(0,0,0,.35);
  background: rgba(0,0,0,.06);
}

/* Cookie banner */
html.light-mode .cookie-banner {
  background: #FFFFFF;
  border-top: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
}
html.light-mode .cookie-banner__text { color: #4A4A5E; }
html.light-mode .cookie-btn--decline {
  border-color: rgba(0,0,0,.18);
  color: #4A4A5E;
}
html.light-mode .cookie-btn--decline:hover { color: #111116; border-color: rgba(0,0,0,.35); }

/* Modal */
html.light-mode .modal {
  background: #FFFFFF;
  border-color: rgba(0,0,0,.1);
}
html.light-mode .modal > p { color: #4A4A5E; }
html.light-mode .modal__close {
  background: #F0F0F5;
  border-color: rgba(0,0,0,.12);
  color: #4A4A5E;
}
html.light-mode .modal__close:hover { color: #111116; }
html.light-mode .modal-overlay { background: rgba(0,0,0,.4); }

/* ══════════════════════════════════════
   PRINT STYLES
══════════════════════════════════════ */
/* ══════════════════════════════════════
   ACCESSIBLE FOCUS INDICATORS
   ══════════════════════════════════════ */
/* Global focus-visible ring for keyboard users only (doesn't show on mouse click) */
*:focus { outline: none; }
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.filter-btn:focus-visible,
.plan-cta:focus-visible,
.nav__burger:focus-visible,
.theme-toggle:focus-visible,
.lang-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold, #F0A51E);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Higher-contrast ring on dark CTA buttons */
.btn--gold:focus-visible,
.btn--red:focus-visible {
  outline-color: #ffffff;
}
/* Respect reduced motion preference globally */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ══════════════════════════════════════
   MEGA-MENU RESOURCES DROPDOWN
══════════════════════════════════════ */
.nav__dropdown-menu--mega {
  min-width: 560px;
  max-width: 620px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 6px;
}
@media (max-width: 860px) {
  .nav__dropdown-menu--mega {
    min-width: 320px;
    max-width: 360px;
    grid-template-columns: 1fr;
  }
}
.nav-mega-item {
  display: flex !important;
  gap: 12px;
  padding: 10px 12px !important;
  border-radius: 10px;
  align-items: center;
  white-space: normal !important;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.nav-mega-item:hover {
  background: rgba(240,165,30,.08) !important;
  transform: translateX(2px);
}
.nav-mega-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(240,165,30,.16), rgba(240,165,30,.06));
  border: 1px solid rgba(240,165,30,.22);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-text);
  transition: all .2s;
}
.nav-mega-item:hover .nav-mega-icon {
  background: linear-gradient(135deg, rgba(240,165,30,.28), rgba(240,165,30,.1));
  border-color: rgba(240,165,30,.4);
}
.nav-mega-icon svg { width: 20px; height: 20px; display: block; }
.nav-mega-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.nav-mega-text strong {
  font-size: 13.5px; font-weight: 700; color: var(--text-bright);
  line-height: 1.2; letter-spacing: -.005em;
}
.nav-mega-text em {
  font-size: 12px; color: var(--text-mid);
  font-style: normal; line-height: 1.4; font-weight: 400;
}
html.light-mode .nav-mega-text strong { color: #111116; }
html.light-mode .nav-mega-text em { color: #575766; }
html.light-mode .nav-mega-item:hover { background: rgba(240,165,30,.1) !important; }

/* ══════════════════════════════════════
   SHIPPING LANE ANIMATION
══════════════════════════════════════ */
.ship-lane {
  position: relative;
  height: 110px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-black) 0%, rgba(15,15,22,.6) 50%, var(--bg-black) 100%);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.ship-lane::before {
  content: '';
  position: absolute;
  top: 62%;
  left: 0; right: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(240,165,30,.35) 0 8px, transparent 8px 20px);
  background-size: 20px 1px;
  background-repeat: repeat-x;
}
.ship-lane__label {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.ship-lane__label span { color: var(--gold-text); }
.ship-lane__ship {
  position: absolute;
  top: 38%;
  left: -160px;
  width: 140px; height: 52px;
  color: var(--gold-text);
  animation: ship-sail 28s linear infinite;
  filter: drop-shadow(0 4px 8px rgba(240,165,30,.15));
}
.ship-lane__waves {
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  height: 10px;
  opacity: .4;
  color: var(--gold-text);
}
@keyframes ship-sail {
  0%   { left: -160px; }
  100% { left: calc(100% + 20px); }
}
@media (max-width: 640px) {
  .ship-lane { height: 86px; }
  .ship-lane__ship { width: 100px; height: 38px; }
}
html.light-mode .ship-lane {
  background: linear-gradient(180deg, #F8F8FC 0%, #EFEFF5 50%, #F8F8FC 100%);
  border-color: rgba(0,0,0,.05);
}

/* ══════════════════════════════════════
   GENERIC ICON UTILITY (for inline SVG icons in body text)
══════════════════════════════════════ */
.icn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.1em; height: 1.1em;
  vertical-align: -.15em; color: currentColor;
}
.icn svg { width: 100%; height: 100%; stroke: currentColor; }

/* ── Crisp chat: force corner popup (CSS handles positioning from class rules) ── */
/* JS in each HTML file overrides the inline !important width/height via setProperty */
.cc-w7v18 {
  top: auto !important;
  left: auto !important;
  bottom: 80px !important;
  right: 20px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25) !important;
}

@media print {
  .nav, .nav__mobile, .footer, .cookie-banner, .exit-overlay,
  .modal-overlay, .btn--nav, .lang-toggle, .hero__bilingual-tag,
  .lead-magnet-bar, .cta-section { display: none !important; }
  body { background: #fff !important; color: #000 !important; font-size: 12pt; }
  .section, .blog-section { padding: 20pt 0; background: #fff !important; }
  h1, h2, h3 { color: #000 !important; }
  a { color: #000; text-decoration: underline; }
  .container { max-width: 100%; padding: 0 12pt; }
  .pricing__grid, .score__grid, .niches__grid { grid-template-columns: 1fr !important; gap: 8pt; }
  .pricing__card, .blog-card { border: 1pt solid #ccc !important; box-shadow: none !important; page-break-inside: avoid; }
  .highlight { color: #B82216 !important; -webkit-text-fill-color: #B82216 !important; background: none; }
  .section__eyebrow { border-color: #ccc !important; color: #666 !important; background: #f5f5f5 !important; }
  @page { margin: 2cm; }
}


/* ══════════════════════════════════════════════════════════════
   ✦  VISUAL ENHANCEMENTS — animations, glow, glassmorphism,
      scroll-reveal, shimmer, gradient text, micro-interactions
   ══════════════════════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes glow-pulse    { 0%,100%{box-shadow:0 0 0 0 rgba(212,43,30,0);} 50%{box-shadow:0 0 32px 8px rgba(212,43,30,.22);} }
@keyframes gold-pulse    { 0%,100%{box-shadow:0 0 0 1px rgba(240,165,30,.15),0 20px 60px rgba(0,0,0,.5);} 50%{box-shadow:0 0 0 1px rgba(240,165,30,.4),0 20px 60px rgba(0,0,0,.5),0 0 60px rgba(240,165,30,.22);} }
@keyframes float-y       { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
@keyframes orb-drift     { 0%,100%{transform:translate(0,0) scale(1);}  50%{transform:translate(30px,-20px) scale(1.08);} }
@keyframes gradient-pan  { 0%{background-position:0% 50%;} 50%{background-position:100% 50%;} 100%{background-position:0% 50%;} }
@keyframes reveal-up     { from{opacity:0;transform:translateY(36px);} to{opacity:1;transform:translateY(0);} }
@keyframes fade-in-anim  { from{opacity:0;} to{opacity:1;} }
@keyframes gradient-text-shift { 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }
@keyframes number-count  { from{opacity:0;transform:scale(.7);} to{opacity:1;transform:scale(1);} }
@keyframes shimmer-slide { 0%{transform:translateX(-100%) skewX(-15deg);} 100%{transform:translateX(200%) skewX(-15deg);} }

/* ── Scroll-reveal: JS adds .is-visible ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible        { opacity: 1; transform: none; }
.reveal--left             { transform: translateX(-32px); }
.reveal--right            { transform: translateX(32px); }
.reveal--scale            { transform: scale(.93); }
.reveal--left.is-visible,
.reveal--right.is-visible { transform: none; opacity: 1; }
.reveal--scale.is-visible { transform: scale(1); opacity: 1; }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.2,.8,.2,1), transform .55s cubic-bezier(.2,.8,.2,1);
}
.stagger.is-visible > *:nth-child(1)  { opacity:1; transform:none; transition-delay:.05s; }
.stagger.is-visible > *:nth-child(2)  { opacity:1; transform:none; transition-delay:.12s; }
.stagger.is-visible > *:nth-child(3)  { opacity:1; transform:none; transition-delay:.19s; }
.stagger.is-visible > *:nth-child(4)  { opacity:1; transform:none; transition-delay:.26s; }
.stagger.is-visible > *:nth-child(5)  { opacity:1; transform:none; transition-delay:.33s; }
.stagger.is-visible > *:nth-child(6)  { opacity:1; transform:none; transition-delay:.40s; }
.stagger.is-visible > *:nth-child(7)  { opacity:1; transform:none; transition-delay:.47s; }
.stagger.is-visible > *:nth-child(8)  { opacity:1; transform:none; transition-delay:.54s; }
.stagger.is-visible > *:nth-child(n+9){ opacity:1; transform:none; transition-delay:.60s; }

/* ── Gradient text utilities ── */
.text--gradient {
  background: linear-gradient(135deg, #FF6B5B 0%, var(--gold-text) 60%, #FFF 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text-shift 5s ease infinite;
}
.text--gold-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, #FFDDA0 50%, var(--gold-text) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text-shift 4s ease infinite;
}

/* ── Hero animated orbs ── */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  mix-blend-mode: screen;
  z-index: 0;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,43,30,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orb-drift 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,165,30,.12) 0%, transparent 70%);
  bottom: 0; left: -50px;
  animation: orb-drift 18s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(91,126,153,.1) 0%, transparent 70%);
  top: 35%; right: 30%;
  animation: orb-drift 22s ease-in-out infinite 3s;
}

/* Hero grid lines */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
}

/* ── Button shimmer ── */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.22) 50%, transparent 80%);
  transform: skewX(-15deg);
  transition: left .6s ease;
  pointer-events: none;
}
.btn:hover::after { left: 130%; }

/* Enhanced primary */
.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, #E8382A 100%);
  box-shadow: 0 2px 12px rgba(212,43,30,.3);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #E8382A 0%, #B82216 100%);
  box-shadow: 0 6px 28px rgba(212,43,30,.5);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(212,43,30,.3); }

/* Enhanced gold */
.btn--gold {
  background: linear-gradient(135deg, #F5BA30 0%, var(--gold) 100%);
  box-shadow: 0 2px 12px rgba(240,165,30,.25);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
  box-shadow: 0 6px 28px rgba(240,165,30,.45);
  transform: translateY(-2px);
}
.btn--gold:active { transform: translateY(0); }

/* Ghost animated border */
.btn--ghost:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.55);
  box-shadow: inset 0 0 20px rgba(255,255,255,.04), 0 0 20px rgba(255,255,255,.06);
}

/* ── Pricing card enhancements ── */
.pricing__card {
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.pricing__card:hover:not(.pricing__card--featured) {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.45);
  border-color: var(--border-mid);
}
.pricing__card--featured {
  animation: gold-pulse 3.5s ease-in-out infinite;
  position: relative;
}
.pricing__card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-xl) + 1px);
  background: linear-gradient(135deg, rgba(240,165,30,.15) 0%, transparent 50%, rgba(212,43,30,.1) 100%);
  z-index: 0;
  pointer-events: none;
}
.pricing__card--featured > * { position: relative; z-index: 1; }

/* ── Card hover lifts ── */
.problem__card, .rs__item, .lang-card, .niche__item, .score__cat, .grade-item, .market__card {
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.problem__card:hover   { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(212,43,30,.1); }
.lang-card:hover       { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.niche__item:hover     { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(212,43,30,.1); }
.score__cat:hover      { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(212,43,30,.08); }
.market__card:hover    { transform: translateY(-7px); box-shadow: 0 18px 40px rgba(212,43,30,.1); border-color: rgba(212,43,30,.28); }

/* ── Report section slide on hover ── */
.rs__item {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.rs__item:hover {
  transform: translateX(5px);
  border-color: rgba(255,255,255,.2);
}
.rs__item--featured:hover {
  border-color: var(--gold);
  box-shadow: -4px 0 20px rgba(240,165,30,.18);
}

/* ── Glassmorphism on dark cards ── */
.report__cover, .workflow__grid, .cost-callout, .advisor__result {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Nav link animated underline ── */
.nav__links a {
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  transition: width .28s cubic-bezier(.2,.8,.2,1);
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--white); }

/* ── Hero proof glass card ── */
.hero__proof {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(31,31,42,.72);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.07);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero__proof:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 56px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.1);
}

/* ── Animated hero badge dot ── */
.hero__badge::before { animation: glow-pulse 2s ease-in-out infinite; }

/* ── Hero heading highlight animated gradient ── */
.hero__heading .highlight {
  background: linear-gradient(135deg, var(--gold-text) 0%, #FFD470 60%, var(--gold) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text-shift 4s ease infinite;
}

/* ── Score bar glow fill ── */
.score__bar-fill {
  transition: width .9s cubic-bezier(.2,.8,.2,1) .2s;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold-text) 100%);
  box-shadow: 0 0 8px rgba(240,165,30,.4);
}

/* ── Milestone dot pulse ── */
.milestone__dot {
  position: relative;
  transition: all .3s ease;
}
.milestone__dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,43,30,.3);
  animation: glow-pulse 2.5s ease-in-out infinite;
}
.milestone__dot--final::after {
  border-color: rgba(212,43,30,.5);
  animation: glow-pulse 1.8s ease-in-out infinite;
}

/* ── Workflow step hover ── */
.wf__letter {
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 2px 8px rgba(212,43,30,.3);
}
.wf__step:hover .wf__letter {
  transform: scale(1.14);
  box-shadow: 0 4px 20px rgba(212,43,30,.5);
}

/* ── Input focus glow ── */
input[type="text"]:focus, input[type="email"]:focus,
input[type="number"]:focus, input[type="password"]:focus,
select:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,43,30,.18), 0 0 0 1px rgba(212,43,30,.5) !important;
  border-color: var(--red) !important;
  transition: box-shadow .22s ease, border-color .22s ease;
}

/* ── Cost row hover ── */
.cost-row {
  transition: transform .2s ease, box-shadow .2s ease;
}
.cost-row:hover {
  transform: translateX(4px);
  box-shadow: -3px 0 12px rgba(212,43,30,.12);
}

/* ── Blog card hover ── */
.blog-card {
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease !important;
}
.blog-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.18) !important;
}

/* ── Footer links ── */
footer a, .footer a {
  transition: color .2s ease;
}
footer a:hover, .footer a:hover { color: var(--gold-text) !important; }

/* ── Proof divider gradient ── */
.proof__divider {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.2), transparent);
}

/* ── Page fade-in ── */
body { animation: fade-in-anim .4s ease both; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,.06); }
::-webkit-scrollbar-thumb {
  background: #FF2A1E;
  border-radius: 4px;
  min-height: 40px;
}
::-webkit-scrollbar-thumb:hover { background: #FF3D32; }

/* ── Text selection ── */
::selection { background: rgba(212,43,30,.35); color: var(--white); }

/* ── Advisor section extra orb ── */
.advisor-section {
  overflow: hidden;
}
.advisor-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,43,30,.09) 0%, transparent 70%);
  pointer-events: none;
  animation: orb-drift 15s ease-in-out infinite reverse;
}

/* ── Section light top accent line ── */
/* (position:relative already set in .section / .section--alt above) */

/* ── Reg tag hover ── */
.reg-tag {
  transition: transform .2s ease, box-shadow .2s ease;
}
.reg-tag:hover { transform: scale(1.06); }

/* ── Pricing badge shimmer ── */
.pricing__card-badge {
  background: linear-gradient(90deg, var(--red) 0%, #E85A10 40%, var(--gold) 100%);
  background-size: 200% 100%;
  animation: gradient-pan 3s ease infinite;
}

/* ── Status badge hover ── */
.status-badge {
  transition: transform .2s ease;
}
.status-badge:hover { transform: scale(1.07); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { transition: none; opacity: 1; transform: none; }
  .hero__orb { animation: none; }
  .pricing__card--featured { animation: none; }
  .milestone__dot::after { animation: none; }
  .text--gradient, .text--gold-gradient, .hero__heading .highlight { animation: none; -webkit-text-fill-color: var(--gold-text); }
  .btn::after { transition: none; }
  body { animation: none; }
  .pricing__card-badge { animation: none; }
}

/* ══════════════════════════════════════════════════════
   HERO & PROBLEM SECTION — VISUAL UPLIFT v2
══════════════════════════════════════════════════════ */

/* ── Badge: animated gradient glow border ── */
.hero__badge {
  background: linear-gradient(135deg, rgba(212,43,30,.12) 0%, rgba(240,165,30,.08) 100%);
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
  box-shadow: 0 0 0 1px rgba(240,165,30,.22), 0 4px 20px rgba(212,43,30,.18), inset 0 1px 0 rgba(255,255,255,.07);
}
@keyframes badge-border-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.hero__badge::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  background: conic-gradient(from var(--badge-angle, 0deg), rgba(212,43,30,.5), rgba(240,165,30,.6), rgba(212,43,30,.5));
  z-index: -1;
  animation: badge-spin 4s linear infinite;
  opacity: .65;
}
@property --badge-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
@keyframes badge-spin {
  to { --badge-angle: 360deg; }
}

/* ── Hero heading: bigger line rhythm ── */
.hero__heading {
  text-shadow: 0 2px 40px rgba(0,0,0,.25);
}
.hero__heading .highlight {
  display: inline-block;
  filter: drop-shadow(0 0 24px rgba(240,165,30,.35));
}

/* ── Hero sub: slightly larger on desktop ── */
@media (min-width: 900px) {
  .hero__sub { font-size: 19px; max-width: 640px; }
}

/* ── Gold CTA pulse attention ── */
@keyframes cta-heartbeat {
  0%, 100% { box-shadow: 0 2px 12px rgba(240,165,30,.25); }
  40%       { box-shadow: 0 0 0 8px rgba(240,165,30,.0), 0 6px 28px rgba(240,165,30,.55); }
  60%       { box-shadow: 0 0 0 14px rgba(240,165,30,.0), 0 8px 32px rgba(240,165,30,.3); }
}
.hero__actions .btn--gold {
  animation: cta-heartbeat 3.2s ease-in-out infinite;
  font-size: 17px;
  padding: 16px 32px;
  letter-spacing: .01em;
}
.hero__actions .btn--gold:hover { animation-play-state: paused; }

/* ── Outline dark CTA ── */
.hero__actions .btn--outline-dark {
  font-size: 17px;
  padding: 16px 28px;
}

/* ── Proof card: elevated glass ── */
.hero__proof {
  background: rgba(18, 18, 28, 0.82);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(240,165,30,.08), inset 0 1px 0 rgba(255,255,255,.08);
  border-radius: 20px;
  gap: 0;
}
.proof__item {
  flex: 1;
  padding: 20px 28px;
  position: relative;
}
.proof__item + .proof__item {
  border-left: 1px solid rgba(255,255,255,.07);
}
.proof__divider { display: none; }

/* Proof tags — colored per stat */
.proof__tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.proof__item:nth-child(1) .proof__tag { color: #F5BA30; }
.proof__item:nth-child(2) .proof__tag { color: #FF7A70; }
.proof__item:nth-child(3) .proof__tag { color: #6DC9A0; }

/* Proof numbers — larger + gradient */
.proof__num {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #FFD470 0%, var(--gold-text) 60%, #F5BA30 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.proof__item:nth-child(2) .proof__num {
  background: linear-gradient(135deg, #FF9A90 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.proof__item:nth-child(3) .proof__num {
  background: linear-gradient(135deg, #7ED9B4 0%, #3FC98A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.proof__label {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
  max-width: 200px;
}

/* ── Proof card hover per item ── */
.proof__item {
  transition: background .25s ease;
  border-radius: 14px;
}
.proof__item:hover { background: rgba(255,255,255,.03); }


/* ══════════════════════════════════════
   PROBLEM SECTION — LIGHT SECTION
══════════════════════════════════════ */

/* ── Section heading accent ── */
.section h2 .highlight {
  position: relative;
}
.section h2 .highlight::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.2,.8,.2,1) .3s;
}
.section h2.heading-animated .highlight::after { transform: scaleX(1); }

/* ── Survey callout ── */
.survey-callout {
  position: relative;
  border: 1px solid rgba(212,43,30,.18) !important;
  box-shadow: 0 8px 48px rgba(212,43,30,.12), 0 2px 0 rgba(212,43,30,.35) inset !important;
}
.survey-callout::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, #E85A10 50%, var(--gold) 100%);
  border-radius: 16px 16px 0 0;
}
.survey-pct {
  background: linear-gradient(135deg, var(--red) 0%, #E85A10 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 52px !important;
  letter-spacing: -.04em !important;
  line-height: 1 !important;
  filter: drop-shadow(0 2px 8px rgba(212,43,30,.2));
}

/* ── Problem cards: colored left border per card ── */
.problem__card {
  border-left: 3px solid transparent;
  padding-left: 20px;
}
.problem__cards .problem__card:nth-child(1) {
  border-left-color: var(--red);
}
.problem__cards .problem__card:nth-child(2) {
  border-left-color: #4E6FCC;
}
.problem__cards .problem__card:nth-child(3) {
  border-left-color: var(--gold);
}

/* ── Problem card icon circles ── */
.problem__card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.problem__cards .problem__card:nth-child(1) .problem__card-icon {
  background: rgba(212,43,30,.1);
  color: var(--red);
}
.problem__cards .problem__card:nth-child(2) .problem__card-icon {
  background: rgba(78,111,204,.1);
  color: #4E6FCC;
}
.problem__cards .problem__card:nth-child(3) .problem__card-icon {
  background: rgba(240,165,30,.1);
  color: var(--gold);
}

/* ── Problem card hover ── */
.problem__card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06) !important;
  transform: translateY(-5px) !important;
}
.problem__cards .problem__card:nth-child(1):hover { border-left-color: var(--red); }
.problem__cards .problem__card:nth-child(2):hover { border-left-color: #4E6FCC; }
.problem__cards .problem__card:nth-child(3):hover { border-left-color: var(--gold); }

/* ── Spyglass figure enhancement ── */
.spyglass-figure {
  filter: drop-shadow(0 12px 32px rgba(212,43,30,.18));
  transition: transform .4s ease, filter .4s ease;
}
.spyglass-wrap:hover .spyglass-figure {
  transform: scale(1.04) translateY(-4px);
  filter: drop-shadow(0 20px 40px rgba(212,43,30,.28));
}

/* ── Problem section eyebrow with dot ── */
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section__eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
  flex-shrink: 0;
}

/* ── Mobile adjustments ── */
@media (max-width: 768px) {
  .hero__actions .btn--gold,
  .hero__actions .btn--outline-dark { font-size: 15px; padding: 14px 22px; }
  .proof__num { font-size: 26px; }
  .proof__item { padding: 16px 20px; }
  .survey-pct { font-size: 40px !important; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__badge::after { animation: none; }
  .hero__actions .btn--gold { animation: none; }
  .survey-pct { filter: none; }
}

/* ══════════════════════════════════════════════════════
   HERO CANVAS + FLOATING SCORE CARD
══════════════════════════════════════════════════════ */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}

/* Floating supplier score card */
.hero__float-card {
  display: none;
}
@media (min-width: 1100px) {
  .hero__float-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: absolute;
    right: clamp(40px, 5vw, 80px);
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    background: rgba(18, 18, 28, 0.88);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 20px 22px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 64px rgba(0,0,0,.6), 0 0 0 1px rgba(240,165,30,.1), inset 0 1px 0 rgba(255,255,255,.08);
    animation: hfc-float 6s ease-in-out infinite;
    z-index: 4;
  }
}
@keyframes hfc-float {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50%       { transform: translateY(-50%) translateY(-12px); }
}

/* Card header */
.hfc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hfc__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}
.hfc__live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #3FC98A;
}
.hfc__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3FC98A;
  box-shadow: 0 0 6px #3FC98A;
  animation: glow-pulse 1.8s ease-in-out infinite;
}

/* Supplier row */
.hfc__supplier {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hfc__grade {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}
.hfc__grade--a {
  background: rgba(63, 201, 138, .18);
  color: #3FC98A;
  border: 1px solid rgba(63,201,138,.3);
  box-shadow: 0 0 16px rgba(63,201,138,.15);
}
.hfc__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.hfc__detail {
  font-size: 10.5px;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}

/* Mini bars */
.hfc__bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hfc__bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hfc__bar-row > span:first-child {
  font-size: 10px;
  color: rgba(255,255,255,.45);
  width: 82px;
  flex-shrink: 0;
}
.hfc__bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  overflow: hidden;
}
.hfc__bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #3FC98A, #7ED9B4);
  transition: width 1.2s cubic-bezier(.2,.8,.2,1);
}
.hfc__bar-fill--b {
  background: linear-gradient(90deg, var(--gold), #FFD470);
}
.hfc__bar-fill--c {
  background: linear-gradient(90deg, #4E6FCC, #7BA7FF);
}
.hfc__pct {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

/* Pills */
.hfc__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hfc__pill {
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: .04em;
}
.hfc__pill--green { background: rgba(63,201,138,.15); color: #3FC98A; border: 1px solid rgba(63,201,138,.25); }
.hfc__pill--gold  { background: rgba(240,165,30,.15);  color: #F5BA30; border: 1px solid rgba(240,165,30,.25); }
.hfc__pill--blue  { background: rgba(78,111,204,.15);  color: #7BA7FF; border: 1px solid rgba(78,111,204,.25); }

/* ══════════════════════════════════════════════════════
   SOLUTION SECTION — REPORT COVER GLOW
══════════════════════════════════════════════════════ */
.report__cover {
  position: relative;
}
.report__cover::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,43,30,.12) 0%, rgba(240,165,30,.06) 50%, transparent 70%);
  border-radius: 32px;
  pointer-events: none;
  z-index: 0;
}
.report__cover > * { position: relative; z-index: 1; }

/* Workflow step connector — removed (looked odd on grid) */

/* ══════════════════════════════════════════════════════
   SCORE SECTION — ANIMATED BARS + GRADES
══════════════════════════════════════════════════════ */
.score__bar-fill {
  width: 0 !important; /* start at 0, JS animates to data-width */
  transition: width 1.1s cubic-bezier(.2,.8,.2,1);
}
.score__bar-fill.bars-animated {
  /* width set by JS */
}

/* Grade letter colors */
.grade--a .grade-letter {
  background: linear-gradient(135deg, rgba(63,201,138,.2), rgba(63,201,138,.1));
  color: #3FC98A;
  border: 1px solid rgba(63,201,138,.3);
  box-shadow: 0 0 16px rgba(63,201,138,.12);
}
.grade--b .grade-letter {
  background: linear-gradient(135deg, rgba(74,158,255,.2), rgba(74,158,255,.1));
  color: #4A9EFF;
  border: 1px solid rgba(74,158,255,.3);
  box-shadow: 0 0 12px rgba(74,158,255,.1);
}
.grade--c .grade-letter {
  background: linear-gradient(135deg, rgba(240,165,30,.2), rgba(240,165,30,.1));
  color: #F5BA30;
  border: 1px solid rgba(240,165,30,.3);
}
.grade--d .grade-letter {
  background: linear-gradient(135deg, rgba(212,43,30,.2), rgba(212,43,30,.1));
  color: #FF7A70;
  border: 1px solid rgba(212,43,30,.3);
}

/* Grade item hover */
.grade-item {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.grade--a:hover { box-shadow: 0 6px 24px rgba(63,201,138,.12); border-color: rgba(63,201,138,.25) !important; }
.grade--b:hover { box-shadow: 0 6px 24px rgba(74,158,255,.12); border-color: rgba(74,158,255,.25) !important; }
.grade--c:hover { box-shadow: 0 6px 24px rgba(240,165,30,.12); border-color: rgba(240,165,30,.25) !important; }
.grade--d:hover { box-shadow: 0 6px 24px rgba(212,43,30,.12); border-color: rgba(212,43,30,.25) !important; }

/* Score category weight badges */
.score__cat-weight {
  background: linear-gradient(135deg, var(--red), #E85A10);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  font-size: 15px;
}

/* ══════════════════════════════════════════════════════
   PRICING — SCARCITY BAR PULSE
══════════════════════════════════════════════════════ */
@keyframes scarcity-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,43,30,.4); }
  50%       { box-shadow: 0 0 0 4px rgba(212,43,30,.0); }
}
.scarcity-bar__fill {
  animation: scarcity-pulse 2.5s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════
   MARKET CARDS — FLAG-COLORED TOP ACCENTS
   Uses inset box-shadow so it respects border-radius
══════════════════════════════════════════════════════ */
/* Italy hover — preserve dark bg + tricolor while still lifting */
.market__card--primary:hover {
  background: #1F1F2A;
  border-color: rgba(255,255,255,.13);
  box-shadow: inset 0 4px 0 0 #009246, inset 0 -4px 0 0 #CE2B37,
              0 18px 48px rgba(0,0,0,.5);
}

/* Spain — red top accent */
.market__card:nth-child(2) {
  box-shadow: inset 0 4px 0 0 #AA151B, 0 4px 16px rgba(0,0,0,.06);
}
/* Sweden — blue top accent */
.market__card:nth-child(3) {
  box-shadow: inset 0 4px 0 0 #006AA7, 0 4px 16px rgba(0,0,0,.06);
}

/* Market stats numbers */
.mstat > span {
  background: linear-gradient(135deg, var(--gold-text), #F5BA30);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

/* Niche active item */
.niche--active {
  border-color: rgba(212,43,30,.4) !important;
  box-shadow: 0 0 0 1px rgba(212,43,30,.15), 0 8px 24px rgba(212,43,30,.08) !important;
}

/* ══════════════════════════════════════════════════════
   MILESTONES — TIMELINE ENHANCEMENTS
══════════════════════════════════════════════════════ */
.milestone__rev--active {
  background: linear-gradient(135deg, rgba(63,201,138,.15), rgba(63,201,138,.05));
  border-color: rgba(63,201,138,.3) !important;
  color: #3FC98A !important;
}
.milestone__month {
  background: linear-gradient(135deg, var(--red), #E85A10);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Future milestones keep slate color (not red gradient) */
.milestone--future .milestone__month {
  background: none;
  -webkit-text-fill-color: var(--slate);
  color: var(--slate);
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS — UPGRADED CARDS
══════════════════════════════════════════════════════ */
.testimonial__stars {
  background: linear-gradient(90deg, #F5BA30, #FFD470);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}
/* Avatar gradient */
.testimonial__avatar {
  background: linear-gradient(135deg, var(--red), #E85A10) !important;
  font-weight: 800 !important;
}

/* ══════════════════════════════════════════════════════
   COMPARE TABLE — SINOSOURCE ROW HIGHLIGHT
══════════════════════════════════════════════════════ */
/* Gold gradient text on company name */
.compare__row--featured td:first-child strong {
  background: linear-gradient(90deg, var(--gold-text), #F5BA30);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Left accent ONLY on the first cell — not all cells (avoids fake column dividers) */
.compare__row--featured td:first-child {
  border-left: 3px solid var(--gold) !important;
}
/* Remove the per-cell left border that was set elsewhere — keep only first cell */
.compare__row--featured td:not(:first-child) {
  border-left: none !important;
}

/* ══════════════════════════════════════════════════════
   LEAD MAGNET BAR — ENHANCED
══════════════════════════════════════════════════════ */
.lead-magnet-bar {
  position: relative;
  overflow: hidden;
}
.lead-magnet-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(212,43,30,.06) 0%, rgba(240,165,30,.06) 50%, rgba(212,43,30,.06) 100%);
  background-size: 200% 100%;
  animation: gradient-pan 4s ease infinite;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   CTA SECTION — DEEPER BACKGROUND
══════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,165,30,.5), transparent);
  pointer-events: none;
}

/* CTA form inputs enhanced */
.cta__input, .cta__select {
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease !important;
}
.cta__input:focus, .cta__select:focus {
  background: rgba(255,255,255,.08) !important;
}

/* ══════════════════════════════════════════════════════
   FOOTER STRIPE ANIMATION
══════════════════════════════════════════════════════ */
.footer__stripe {
  background: linear-gradient(90deg, var(--red) 0%, #E85A10 35%, var(--gold) 65%, var(--red) 100%) !important;
  background-size: 200% 100% !important;
  animation: gradient-pan 5s ease infinite !important;
}

/* ══════════════════════════════════════════════════════
   STRENGTH ITEMS + MOAT SECTION
══════════════════════════════════════════════════════ */
.strength__item {
  transition: transform .25s ease, border-color .25s ease;
}
.strength__item:hover {
  transform: translateX(5px);
  border-color: rgba(240,165,30,.3) !important;
}
.strength__item--highlight {
  border-color: rgba(240,165,30,.25) !important;
  background: rgba(240,165,30,.04) !important;
}
.moat-section {
  border-color: rgba(212,43,30,.2) !important;
  position: relative;
  overflow: hidden;
}
.moat-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
}

/* Reduce motion guard */
@media (prefers-reduced-motion: reduce) {
  .hero__float-card { animation: none; transform: translateY(-50%); }
  .hfc__dot { animation: none; }
  .scarcity-bar__fill { animation: none; }
  .footer__stripe { animation: none !important; }
  .lead-magnet-bar::before { animation: none; }
}

/* ══════════════════════════════════════════════════════
   ABOUT SECTION — STRENGTH ICON BACKGROUNDS
   Give each icon a subtle colored bg circle
══════════════════════════════════════════════════════ */
.strength__icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(91,126,153,.1);
  border: 1px solid rgba(91,126,153,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  margin-top: 0;
}
/* Alternate icon colors for visual variety */
.strength__item:nth-child(1) .strength__icon { background: rgba(212,43,30,.08);  border-color: rgba(212,43,30,.18);  color: var(--red); }
.strength__item:nth-child(2) .strength__icon { background: rgba(240,165,30,.08); border-color: rgba(240,165,30,.18); color: var(--gold); }
.strength__item:nth-child(3) .strength__icon { background: rgba(74,158,255,.08); border-color: rgba(74,158,255,.18); color: #4A9EFF; }
.strength__item:nth-child(4) .strength__icon { background: rgba(34,197,94,.08);  border-color: rgba(34,197,94,.18);  color: #22C55E; }
.strength__item:nth-child(5) .strength__icon { background: rgba(240,165,30,.1);  border-color: rgba(240,165,30,.22); color: var(--gold-text); }

/* ══════════════════════════════════════════════════════
   SCORE CATEGORIES — WEIGHT BADGE IMPROVEMENTS
══════════════════════════════════════════════════════ */
/* Subtle left accent line on score cats based on weight */
.score__cat { position: relative; overflow: hidden; }
.score__cat::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: var(--border-light);
}
.score__categories .score__cat:nth-child(1)::before,
.score__categories .score__cat:nth-child(2)::before,
.score__categories .score__cat:nth-child(3)::before {
  background: var(--red);
}
.score__categories .score__cat:nth-child(4)::before,
.score__categories .score__cat:nth-child(5)::before,
.score__categories .score__cat:nth-child(6)::before {
  background: var(--slate);
  opacity: .45;
}

/* ══════════════════════════════════════════════════════
   NICHES — ACTIVE INDICATOR DOT
══════════════════════════════════════════════════════ */
.niche__item { position: relative; }
.niche--active {
  border-color: rgba(212,43,30,.35) !important;
  box-shadow: inset 0 3px 0 0 var(--red), 0 6px 24px rgba(212,43,30,.09) !important;
}
/* Small "Year 1 focus" badge in top-right */
.niche--active::after {
  content: 'Year 1 focus';
  position: absolute;
  top: 10px; right: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(212,43,30,.08);
  border: 1px solid rgba(212,43,30,.2);
  border-radius: 100px;
  padding: 2px 8px;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   WORKFLOW — STEP LETTERS GRADIENT
══════════════════════════════════════════════════════ */
.wf__letter {
  background: linear-gradient(135deg, var(--red) 0%, #E85A10 100%) !important;
}

/* ══════════════════════════════════════════════════════
   STICKY BOTTOM CTA BAR
══════════════════════════════════════════════════════ */
.sticky-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(9,9,12,.97);
  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,.4);
}
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-bar__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-bright, #F0F0F5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta-bar__text span {
  color: var(--gold, #F0A51E);
}
.sticky-cta-bar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sticky-cta-bar__dismiss {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-dim, #5A5A72);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color .18s;
}
.sticky-cta-bar__dismiss:hover { color: var(--text-mid, #9A9AAE); }
@media (max-width: 520px) {
  /* Leave room for Crisp chat widget (56px wide + 14px gap = 70px from right) */
  .sticky-cta-bar { padding: 12px 72px 12px 16px; }
  .sticky-cta-bar__text { font-size: 13px; }
  .sticky-cta-bar__dismiss { right: 8px; }
}
@media (max-width: 480px) {
  /* On narrow phones, hide the label — just show a full-width CTA button */
  .sticky-cta-bar__text { display: none; }
  .sticky-cta-bar { padding: 12px 52px 12px 16px; }
  .sticky-cta-bar__actions { flex: 1; }
  .sticky-cta-bar__actions .btn--gold { flex: 1; justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   EXIT-INTENT OVERLAY
══════════════════════════════════════════════════════ */
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.exit-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.exit-modal {
  background: var(--bg-card, #1F1F2A);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid var(--red, #D42B1E);
  border-radius: 20px;
  padding: 40px 36px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: scale(.95) translateY(8px);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.exit-overlay.open .exit-modal {
  transform: scale(1) translateY(0);
}
.exit-modal__close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  color: var(--text-dim, #5A5A72);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color .18s;
}
.exit-modal__close:hover { color: var(--text-mid); }
.exit-modal__eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red, #D42B1E);
  margin-bottom: 14px;
}
.exit-modal h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.exit-modal p {
  font-size: 15px;
  color: var(--text-mid, #9A9AAE);
  margin-bottom: 24px;
  line-height: 1.65;
}
.exit-modal__form { display: flex; flex-direction: column; gap: 10px; }
.exit-modal__input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
}
.exit-modal__input:focus { border-color: var(--gold, #F0A51E); }
.exit-modal__input::placeholder { color: rgba(255,255,255,.25); }
.exit-modal__skip {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim, #5A5A72);
  margin-top: 12px;
  cursor: pointer;
  transition: color .18s;
}
.exit-modal__skip:hover { color: var(--text-mid); }

/* ══════════════════════════════════════════════════════
   SOCIAL PROOF TICKER (hero)
══════════════════════════════════════════════════════ */
.social-proof-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid, #9A9AAE);
  margin-top: 20px;
  flex-wrap: wrap;
}
.spt__dot {
  width: 8px;
  height: 8px;
  background: var(--green, #22C55E);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,.4);
  animation: sptPulse 2s ease infinite;
}
@keyframes sptPulse {
  0%  { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  70% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.spt__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 100px;
  font-size: 12px;
  white-space: nowrap;
}
.spt__flag { font-size: 14px; }

/* ══════════════════════════════════════════════════════
   HERO CTA GLOW ANIMATION
══════════════════════════════════════════════════════ */
.btn--gold.btn--lg {
  position: relative;
  overflow: visible;
}
.btn--gold.btn--lg::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(90deg, #F0A51E, #E85A10, #D42B1E, #F0A51E);
  background-size: 300% 100%;
  z-index: -1;
  opacity: 0;
  animation: ctaGlowPulse 3s ease infinite;
  filter: blur(8px);
}
@keyframes ctaGlowPulse {
  0%,100% { opacity: 0; background-position: 0% 50%; }
  50%      { opacity: .55; background-position: 100% 50%; }
}

/* ══════════════════════════════════════════════════════
   REGULATION ALERT BUTTON
══════════════════════════════════════════════════════ */
.reg-alert-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(240,165,30,.25);
  background: rgba(240,165,30,.06);
  color: var(--gold-text, #F5BC45);
  cursor: pointer;
  transition: all .18s;
  font-family: inherit;
}
.reg-alert-btn:hover {
  background: rgba(240,165,30,.14);
  border-color: rgba(240,165,30,.5);
}
.reg-alert-btn.subscribed {
  background: rgba(34,197,94,.08);
  border-color: rgba(34,197,94,.3);
  color: #22C55E;
  cursor: default;
}
.reg-alert-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.reg-alert-modal.open {
  opacity: 1;
  pointer-events: all;
}
.reg-alert-modal__box {
  background: var(--white, #fff);
  border-radius: 16px;
  padding: 32px 28px 24px;
  max-width: 420px;
  width: 100%;
  position: relative;
  transform: scale(.96) translateY(6px);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1);
}
.reg-alert-modal.open .reg-alert-modal__box {
  transform: scale(1) translateY(0);
}
.reg-alert-modal__box h4 {
  font-size: 18px;
  font-weight: 800;
  color: #111116;
  margin-bottom: 8px;
}
.reg-alert-modal__box p {
  font-size: 14px;
  color: #5A5A72;
  margin-bottom: 20px;
  line-height: 1.65;
}
.reg-alert-modal__input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
  margin-bottom: 12px;
}
.reg-alert-modal__input:focus { border-color: #D42B1E; }
.reg-alert-modal__close {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: none;
  font-size: 20px; cursor: pointer;
  color: #9A9AAE;
}
.reg-alert-modal__close:hover { color: #3A3A4E; }
html.light-mode .reg-alert-modal__box { background: #fff; }

/* ══════════════════════════════════════════════════════
   LIGHT MODE — TOOLS PAGES
══════════════════════════════════════════════════════ */
html.light-mode .tool-hero,
html.light-mode .tool-wrap { background: var(--bg-white, #F5F5F7); }
html.light-mode .tool-card,
html.light-mode .step-card,
html.light-mode .plan-block,
html.light-mode .landed-result {
  background: #fff;
  border-color: rgba(0,0,0,.1);
  color: var(--text-dark, #1A1A28);
}
html.light-mode .tool-input,
html.light-mode .tool-input,
html.light-mode .finder-input {
  background: #fff;
  border-color: rgba(0,0,0,.15);
  color: #111116;
}
html.light-mode .tool-input::placeholder,
html.light-mode .finder-input::placeholder { color: #9A9AAE; }
