/* ============================================================
   ALIGNED PROFIT — Global Stylesheet
   Two-mode canvas: true-black storytelling + white catalogue.
   Coral red accent reserved for featured moments. Inter only.
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ---- Canvas (the two modes) ---- */
  --canvas-dark:     #000000;     /* true black — storytelling */
  --canvas-light:    #FFFFFF;     /* white — catalogue/browse */

  /* ---- Surface ladder ---- */
  --surface-deep:    #0A0A0A;     /* one step up on dark */
  --surface-elevated:#16181A;     /* cards on dark canvas */
  --surface-soft:    #F4F4F4;     /* soft on white canvas */
  --surface-card:    #FFFFFF;     /* card on light catalogue */

  /* ---- Aliases for legacy templates ---- */
  --bg-primary:      #000000;
  --bg-secondary:    #0A0A0A;
  --bg-card:         #16181A;
  --bg-card-hover:   #1C1F22;

  /* ---- Brand accent (coral) — reserved like Revolut's cobalt ---- */
  --accent-red:      #E85A52;
  --accent-red-lt:   #F26B62;
  --accent-red-dk:   #CC4840;

  /* ---- Greys used as quiet secondary accent ---- */
  --accent-gold:     #B8B8B8;     /* now reads as silver on dark */
  --accent-gold-lt:  #D4D4D4;
  --accent-gold-dk:  #888888;

  /* ---- Text on dark canvas ---- */
  --text-primary:    #FFFFFF;
  --text-secondary:  rgba(255,255,255,.86);
  --text-muted:      rgba(255,255,255,.66);

  /* ---- Text on white canvas (warmer than pure black) ---- */
  --ink:             #191C1F;
  --ink-body:        #1F2226;
  --ink-mute:        #3A4248;
  --stone:           #62686D;

  /* ---- Hairlines ---- */
  --border:          rgba(255,255,255,.12);
  --border-strong:   rgba(255,255,255,.22);
  --hairline-light:  #E2E2E7;
  --hairline-strong: #191C1F;

  /* ---- Radius scale (pills + cards) ---- */
  --radius-none:     0;
  --radius-sm:       8px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-xl:       28px;
  --radius-full:     9999px;

  /* ---- No drop shadows. Depth from canvas switches. ---- */
  --shadow-card:     none;

  /* ---- Motion ---- */
  --transition:      .25s ease;

  /* ---- Layout ---- */
  --nav-height:      72px;
  --max-w:           1200px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--canvas-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .005em;
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-gold-lt); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); letter-spacing: -.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.025em; line-height: 1.08; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); letter-spacing: -.01em; line-height: 1.2; }
h4 { font-size: 1.05rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: -.005em; }

p { color: var(--text-secondary); line-height: 1.7; }

.lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.85;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: .75rem;
  display: block;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent-red);
  border-radius: 2px;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
section.section--band { padding: 120px 0; }

/* ---------- CANVAS HELPERS (Revolut-style two-mode) ---------- */
/* Storytelling canvas — true black */
.canvas-dark { background: var(--canvas-dark); color: var(--text-primary); }
.canvas-dark h1, .canvas-dark h2, .canvas-dark h3, .canvas-dark h4 { color: var(--text-primary); }
.canvas-dark p, .canvas-dark .lead { color: var(--text-secondary); }

/* Catalogue canvas — pure white */
.canvas-light { background: var(--canvas-light); color: var(--ink); }
.canvas-light h1, .canvas-light h2, .canvas-light h3, .canvas-light h4 { color: var(--ink); }
.canvas-light p, .canvas-light .lead { color: var(--ink-body); }
.canvas-light .section-label { color: var(--ink); }
.canvas-light .section-label::before { background: var(--accent-red); }
.canvas-light a:not(.btn):not(.nav__cta) { color: var(--ink); }
.canvas-light .btn-outline {
  border-color: var(--hairline-strong);
  color: var(--ink);
}
.canvas-light .btn-outline:hover {
  background: var(--ink);
  color: var(--canvas-light);
}

/* Explicit button text-color guarantees — beat any .canvas-light a override */
a.btn-dark, a.btn-dark:hover,
.canvas-light a.btn-dark, .canvas-light a.btn-dark:hover { color: var(--canvas-light) !important; }
a.btn-primary, a.btn-primary:hover,
.canvas-light a.btn-primary, .canvas-light a.btn-primary:hover { color: var(--ink) !important; }
a.btn-coral, a.btn-coral:hover,
.canvas-light a.btn-coral, .canvas-light a.btn-coral:hover { color: #FFFFFF !important; }

/* Soft canvas — off-white for inset sections inside light bands */
.canvas-soft { background: var(--surface-soft); color: var(--ink); }
.canvas-soft h1, .canvas-soft h2, .canvas-soft h3, .canvas-soft h4 { color: var(--ink); }
.canvas-soft p { color: var(--ink-body); }

.section-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header.centered .section-label { justify-content: center; }

/* ---------- DIVIDER ---------- */
.gold-rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-lt));
  border-radius: 3px;
  margin: 1.25rem 0 2rem;
}
.gold-rule.centered { margin-left: auto; margin-right: auto; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: .02em;
}
.nav__logo-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  flex-wrap: nowrap;
}

.nav__links li { flex-shrink: 0; }

.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: .02em;
  padding: .25rem 0;
  position: relative;
  white-space: nowrap;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--text-primary); }
.nav__links a.active::after { transform: scaleX(1); }

/* ── Nav Dropdown ── */
.nav__dropdown-wrap {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav__caret {
  font-size: .55rem;
  color: var(--text-muted);
  transition: transform var(--transition);
  display: inline-block;
}

.nav__dropdown-wrap:hover .nav__caret {
  transform: rotate(180deg);
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 210px;
  list-style: none;
  padding: 16px 0 6px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}

.nav__dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.nav__dropdown li a::after { display: none; }

.nav__dropdown li a:hover {
  color: var(--accent-gold);
  background: var(--bg-secondary);
}

.nav__dropdown-wrap:hover .nav__dropdown,
.nav__dropdown-wrap:focus-within .nav__dropdown {
  display: block;
}

.nav__cta {
  background: var(--canvas-light);
  border: 0;
  color: var(--ink) !important;
  padding: .55rem 1.25rem !important;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  transition: background var(--transition), color var(--transition), transform var(--transition) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: #F0F0F0 !important;
  color: var(--ink) !important;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Switch to hamburger earlier than the global 1024 breakpoint so the nav
   never has a chance to squeeze the links + CTA into a wrapping mess. */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger:focus-visible {
  outline: 2px solid var(--accent-red);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- BUTTONS — pill-shaped, two-mode ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .95rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

/* PRIMARY: white pill on dark canvas — the loudest action */
.btn-primary {
  background: var(--canvas-light);
  color: var(--ink);
}
.btn-primary:hover {
  background: #F0F0F0;
  color: var(--ink);
  transform: translateY(-1px);
}

/* DARK pill on white canvas — primary on light bands */
.btn-dark {
  background: var(--canvas-dark);
  color: var(--canvas-light);
}
.btn-dark:hover {
  background: #1A1A1A;
  color: var(--canvas-light);
  transform: translateY(-1px);
}

/* CORAL — reserved for featured moments only (guarantee, hero feature) */
.btn-coral {
  background: var(--accent-red);
  color: #FFFFFF;
}
.btn-coral:hover {
  background: var(--accent-red-lt);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* OUTLINE on dark canvas — tertiary */
.btn-outline {
  background: transparent;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  padding: calc(.95rem - 1px) calc(1.75rem - 1px);
}
.btn-outline:hover {
  background: var(--text-primary);
  color: var(--ink);
  transform: translateY(-1px);
}

/* OUTLINE on white canvas — tertiary on light bands */
.btn-outline-light {
  background: transparent;
  border: 1px solid var(--hairline-strong);
  color: var(--ink);
  padding: calc(.95rem - 1px) calc(1.75rem - 1px);
}
.btn-outline-light:hover {
  background: var(--ink);
  color: var(--canvas-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: .95rem 0;
  min-height: auto;
}
.btn-ghost:hover { color: var(--accent-red); }
.btn-ghost::after { content: ' →'; }

/* ---------- CARDS — two-mode, no shadows ---------- */
.card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

/* Card variants — light vs dark canvas */
.card--light {
  background: var(--surface-card);
  border: 1px solid var(--hairline-light);
  color: var(--ink);
}
.card--light:hover { background: var(--surface-soft); border-color: var(--hairline-strong); }
.card--light p { color: var(--ink-body); }

.card--featured {
  background: var(--accent-red);
  border: 1px solid var(--accent-red);
  color: #FFFFFF;
}
.card--featured h2, .card--featured h3, .card--featured h4 { color: #FFFFFF; }
.card--featured p { color: rgba(255,255,255,.92); }

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}

/* ---------- GRID ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ---------- HERO — full-bleed canvas-dark band ---------- */
.hero {
  padding-top: calc(var(--nav-height) + 96px);
  padding-bottom: 120px;
  background: var(--canvas-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 0%, transparent 80%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,0,0,.04);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero__title span { color: var(--accent-gold); }

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.85;
  max-width: 540px;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero__stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
}
.hero__stat-num span { color: var(--accent-gold); }
.hero__stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}

/* Hero card (right column) */
.hero__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.hero__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.hero__card-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dk));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--bg-primary);
  font-weight: 700;
}
.hero__card-title { font-size: .95rem; font-weight: 600; color: var(--text-primary); }
.hero__card-sub { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

.pipeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: .6rem;
  background: rgba(0,0,0,.025);
  border: 1px solid var(--border);
}
.pipeline-item-left { display: flex; align-items: center; gap: .85rem; }
.pipeline-item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-green  { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,.4); }
.dot-gold   { background: var(--accent-gold); box-shadow: 0 0 6px rgba(0,0,0,.25); }
.dot-blue   { background: #60a5fa; box-shadow: 0 0 6px rgba(96,165,250,.4); }
.dot-purple { background: #c084fc; box-shadow: 0 0 6px rgba(192,132,252,.4); }

.pipeline-item-name { font-size: .85rem; font-weight: 500; color: var(--text-primary); }
.pipeline-item-industry { font-size: .72rem; color: var(--text-muted); margin-top: 1px; }
.pipeline-item-badge {
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 100px;
}
.badge-qualified { background: rgba(74,222,128,.12); color: #4ade80; }
.badge-engaged  { background: rgba(0,0,0,.05); color: var(--accent-gold); }
.badge-mapped   { background: rgba(96,165,250,.12); color: #60a5fa; }
.badge-ready    { background: rgba(192,132,252,.12); color: #c084fc; }

/* ---------- TICKER / MARQUEE ---------- */
.marquee-section {
  padding: 24px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.marquee-item span { color: var(--accent-gold); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- PAIN POINTS ---------- */
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pain-card:hover {
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.pain-card__num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.pain-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: .6rem;
  font-family: 'Inter', sans-serif;
}
.pain-card__desc { font-size: .875rem; color: var(--text-secondary); line-height: 1.75; }
.pain-card__solution {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--accent-gold);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.pain-card__solution::before { content: '→'; flex-shrink: 0; }

/* ---------- PERSONAS ---------- */
.persona-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}
.persona-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.persona-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.persona-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .35rem;
  font-family: 'Inter', sans-serif;
}
.persona-subtitle {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.persona-hook {
  font-size: .85rem;
  color: var(--accent-gold);
  font-style: italic;
  border-left: 2px solid var(--accent-gold);
  padding-left: .75rem;
  line-height: 1.6;
}

/* ---------- PROCESS STEPS ---------- */
.process-steps { display: flex; flex-direction: column; gap: 0; }

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 56px;
  bottom: -32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
}
.process-step + .process-step { margin-top: 32px; }

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,.04);
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-content { padding-top: .75rem; }
.step-content h4 { font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: .4rem; }
.step-content p { font-size: .875rem; }

/* ---------- PRICING TABLE ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.pricing-card.featured {
  border-color: var(--accent-red);
  background: linear-gradient(160deg, #130000, var(--bg-card));
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent-red);
  color: #FFFFFF;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.pricing-card__price {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: .5rem;
}
.pricing-card__price sup {
  font-size: 1.2rem;
  vertical-align: super;
  color: var(--text-secondary);
}
.pricing-card__price span { font-size: 1.1rem; color: var(--text-secondary); font-family: 'Inter', sans-serif; font-weight: 400; }
.pricing-card__desc {
  font-size: .85rem;
  color: var(--text-secondary);
  margin: .75rem 0 1.75rem;
  min-height: 3.5em;
  line-height: 1.65;
}

.pricing-card__divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: var(--text-secondary);
  margin-bottom: .75rem;
}
.pricing-feature::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- ADDONS ---------- */
.addon-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.addon-table th {
  background: var(--bg-secondary);
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.addon-table td {
  padding: 1.1rem 1.5rem;
  font-size: .875rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.65;
}
.addon-table tr:last-child td { border-bottom: none; }
.addon-table tr:hover td { background: rgba(0,0,0,.015); }
.addon-price { color: var(--accent-gold); font-weight: 600; white-space: nowrap; }

/* ---------- FAQ ACCORDION ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  font-weight: 500;
  font-size: .95rem;
  color: var(--text-primary);
  gap: 1rem;
}
.faq-question:hover { color: var(--accent-gold); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-gold);
  font-size: 1.1rem;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(0,0,0,.04);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-answer p {
  font-size: .875rem;
  line-height: 1.8;
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ---------- CONTACT FORM ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-secondary);
}
.form-label span { color: var(--accent-gold); }

.form-input, .form-select, .form-textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  padding: .85rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(0,0,0,.05);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }

.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--bg-secondary); }

.form-textarea { resize: vertical; min-height: 120px; }

/* ---------- COMPARISON TABLE ---------- */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.compare-table th {
  background: var(--bg-secondary);
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.compare-table th:first-child { min-width: 160px; }
.compare-table td {
  padding: 1rem 1.25rem;
  font-size: .85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.65;
  color: var(--text-secondary);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(0,0,0,.015); }
.compare-table td:first-child { font-weight: 600; color: var(--text-primary); }
.compare-table .highlight-row td { background: rgba(0,0,0,.025); }
.compare-table .highlight-row td:first-child { color: var(--accent-gold); }

/* ---------- TESTIMONIAL / QUOTE ---------- */
.quote-block {
  border-left: 3px solid var(--accent-gold);
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}
.quote-block p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.8;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.footer__brand-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}
.footer__desc { font-size: .85rem; line-height: 1.75; color: var(--text-muted); max-width: 280px; }

.footer__col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer__links a { font-size: .875rem; color: var(--text-secondary); }
.footer__links a:hover { color: var(--accent-gold); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: .8rem; color: var(--text-muted); }

/* ---------- HIGHLIGHT / CALLOUT ---------- */
.callout {
  background: rgba(0,0,0,.04);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 2.5rem 3rem;
  text-align: center;
}

/* ---------- BADGE TAGS ---------- */
.tag {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  background: rgba(0,0,0,.04);
  color: var(--accent-gold);
  border: 1px solid var(--border);
}

/* ---------- PAGE HEADER ---------- */
.page-header {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 64px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,0,0,.025) 0%, transparent 60%),
    var(--bg-primary);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header .lead { margin: 1.25rem auto 0; text-align: center; }

/* ---------- SEPARATOR ---------- */
.sep { height: 1px; background: var(--border); margin: 0; }

/* ---------- UTILITY ---------- */
.text-gold    { color: var(--accent-gold); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.mt-1  { margin-top:  .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-1  { margin-bottom:  .5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.flex  { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* ---------- MOBILE NAV OVERLAY ---------- */
.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: rgba(0,0,0,.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2rem;
  gap: .25rem;
  z-index: 99;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: .03em;
}
.nav__mobile-menu a:hover { color: var(--accent-gold); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__inner { gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Regular sections: 64px vertical, BUT never on .hero / .page-hero / .gs-hero / .legal-hero
     which must clear the fixed nav at the top. */
  section:not(.hero):not(.page-hero):not(.gs-hero):not(.legal-hero):not(.thanks-wrap):not(.lp-hero) {
    padding: 64px 0;
  }
  /* Heroes: explicit safe top padding that always clears the fixed nav. */
  .hero,
  .page-hero,
  .gs-hero,
  .legal-hero {
    padding-top: calc(var(--nav-height) + 48px) !important;
    padding-bottom: 56px !important;
  }
  .thanks-wrap {
    padding-top: calc(var(--nav-height) + 48px) !important;
  }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__desc { max-width: 100%; }
  .addon-table, .compare-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .process-step { grid-template-columns: 60px 1fr; }
  .callout { padding: 2rem 1.5rem; }
  .hero__stats { gap: 1.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Tighter nav on mobile so it takes less vertical real estate */
  :root { --nav-height: 64px; }
}

/* Scroll-padding for anchor jumps so they don't land behind the fixed nav */
html { scroll-padding-top: calc(var(--nav-height) + 16px); }

/* ============================================================
   WHITE SECTIONS + IMAGERY ADDITIONS
   ============================================================ */

/* ---- Light / white sections ---- */
.section-light {
  --bg-primary:      #FFFFFF;
  --bg-secondary:    #F4F4F4;
  --bg-card:         #F0F0F0;
  --bg-card-hover:   #E8E8E8;
  --text-primary:    #000000;
  --text-secondary:  #444444;
  --text-muted:      #888888;
  --border:          rgba(0,0,0,.10);
  --border-strong:   rgba(0,0,0,.22);
  background: #FFFFFF;
  color: #000000;
}
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: #000000; }
.section-light p,
.section-light .lead { color: #444444; }
.section-light .gold-rule {
  background: linear-gradient(90deg, #aaa, #ccc);
}
.section-light .section-label { color: #191C1F; }
.section-light .section-label::before { background: var(--accent-red); }
.section-light .pricing-feature::before { color: var(--accent-red); }
.section-light .pricing-feature { color: #333; }
/* ---- Inline image card ---- */
.img-card {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: grayscale(100%) contrast(1.05);
  display: block;
}

/* ---- Hero with bg image ---- */
.hero-img-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(100%) brightness(.18);
  z-index: 0;
}
.hero { position: relative; }
.hero .container { position: relative; z-index: 1; }

/* ---- White stat strip ---- */
.stat-strip {
  background: #FFFFFF;
  padding: 48px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-strip__item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(0,0,0,.1);
}
.stat-strip__item:last-child { border-right: none; }
.stat-strip__num {
  font-size: 2.6rem;
  font-weight: 800;
  color: #000;
  line-height: 1;
}
.stat-strip__num span { color: var(--accent-gold); }
.stat-strip__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  margin-top: .4rem;
}

/* ── Image Banner Wrap ──────────────────────────────────────────────── */
.img-banner-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.img-banner-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(.48);
}
.img-banner-wrap .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(0,0,0,.28);
}
.img-banner-wrap .overlay blockquote {
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.5;
  max-width: 760px;
  margin: 0 0 1.1rem;
  letter-spacing: -.015em;
}
.img-banner-wrap .overlay span {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

@media (max-width: 768px) {
  .img-banner-wrap { height: 280px; }
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip__item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.1); }
}

/* ── Logo Icon Spin ─────────────────────────────────────────────────── */
@keyframes logo-spin {
  0%   { transform: rotate(0deg) scale(1); }
  30%  { transform: rotate(200deg) scale(1.15); }
  70%  { transform: rotate(340deg) scale(1.08); }
  100% { transform: rotate(360deg) scale(1); }
}
.nav__logo-icon {
  transition: filter var(--transition);
}
.nav__logo-icon:hover {
  filter: brightness(1.15) drop-shadow(0 0 6px rgba(225,6,0,.5));
}
.nav__logo-icon.spinning {
  animation: logo-spin 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}



/* ══════════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE STYLES — v2
   ══════════════════════════════════════════════════════════════════════ */

/* ── Tablet: 1024px ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }

  /* Collapse 3- or 4-col class grids */
  .grid-4 { grid-template-columns: repeat(2,1fr); }

  /* Collapse inline 3- or 4-col grids */
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2,1fr) !important;
  }

  /* About founder – narrow the photo column slightly */
  [style*="grid-template-columns:220px"],
  [style*="grid-template-columns: 220px"] {
    grid-template-columns: 180px 1fr !important;
    gap: 40px !important;
  }

  /* Footer: 2-col */
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────────────────────────────
   TABLE SCROLL WRAPPER — applied globally so all tables are scrollable
   ─────────────────────────────────────────────────────────────────── */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}
.table-scroll .addon-table,
.table-scroll .compare-table {
  min-width: 600px;  /* force horizontal scroll before collapsing */
}

/* ── Mobile: 768px ────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* === BASE === */
  .container { padding: 0 1rem; }

  /* Sections: tighten padding but PRESERVE hero & page-header top spacing */
  section:not(.hero):not(.about-hero):not(.buyside-hero):not(.process-hero):not(.hero-section):not(.lp-hero) { padding: 56px 0; }
  .page-header {
    padding-top: calc(var(--nav-height) + 40px) !important;
    padding-bottom: 40px !important;
  }

  /* Hero MUST keep enough top padding to clear the fixed nav — applies to ALL hero variants */
  .hero,
  .about-hero,
  .buyside-hero,
  .process-hero,
  .hero-section {
    padding-top: calc(var(--nav-height) + 48px) !important;
    padding-bottom: 56px !important;
  }
  /* Catch any inline-styled hero sections (advisor_seller_engagement.html etc.) */
  section[style*="padding-top:calc(var(--nav-height)"],
  section[style*="padding-top: calc(var(--nav-height)"] {
    padding-top: calc(var(--nav-height) + 48px) !important;
    padding-bottom: 56px !important;
  }

  /* === TYPOGRAPHY === */
  h1 { font-size: clamp(1.65rem, 6vw, 2.1rem) !important; line-height: 1.2 !important; }
  h2 { font-size: clamp(1.35rem, 5vw, 1.75rem) !important; line-height: 1.25 !important; }
  h3 { font-size: 1.1rem !important; }
  h4 { font-size: 1rem !important; }
  .lead { font-size: .93rem !important; line-height: 1.75 !important; }
  p    { font-size: .9rem; }

  /* Inline font-size overrides for common prose sizes used across pages */
  [style*="font-size:1.05rem"] { font-size: .92rem !important; }
  [style*="font-size: 1.05rem"] { font-size: .92rem !important; }
  [style*="font-size:1.1rem"]  { font-size: .95rem !important; }
  [style*="font-size: 1.1rem"] { font-size: .95rem !important; }
  [style*="font-size:1.15rem"] { font-size: .95rem !important; }
  [style*="font-size: 1.15rem"]{ font-size: .95rem !important; }

  /* Large stat/price numbers — reduce so they don't overflow */
  [style*="font-size:1.6rem"],
  [style*="font-size: 1.6rem"],
  [style*="font-size:1.5rem"],
  [style*="font-size: 1.5rem"] { font-size: 1.25rem !important; }
  [style*="font-size:2.8rem"],
  [style*="font-size: 2.8rem"] { font-size: 2rem !important; }

  /* === NAV === */
  .nav__links    { display: none; }
  .nav__hamburger{ display: flex; }

  /* === HERO === */
  .hero__inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .hero__card { display: none; }
  .hero__subtitle { font-size: .92rem !important; margin: 1rem 0 1.75rem !important; }
  .hero__badge { font-size: .68rem; }

  /* Hero stats: wrap to 2×2 */
  .hero__stats {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
    margin-top: 1.75rem !important;
    padding-top: 1.5rem !important;
  }
  .hero__stat-num  { font-size: 1.4rem !important; }
  .hero__stat-label{ font-size: .72rem !important; }

  /* CTA button group in hero */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* CTA sections: keep buttons side-by-side, just let them wrap */
  .callout .btn,
  [style*="justify-content:center"] .btn {
    width: auto !important;
    min-width: 0;
  }

  /* === STAT STRIP (white strip below hero) === */
  .stat-strip__grid {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 0 !important;
  }
  .stat-strip__item {
    border-right: none !important;
    border-bottom: 1px solid rgba(0,0,0,.08) !important;
    padding: 1.25rem .75rem !important;
  }
  .stat-strip__num   { font-size: 1.7rem !important; }
  .stat-strip__label { font-size: .68rem !important; }

  /* === ALL INLINE 2-COL → 1 COL === */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:2fr 3fr"],
  [style*="grid-template-columns: 2fr 3fr"],
  [style*="grid-template-columns:3fr 2fr"],
  [style*="grid-template-columns: 3fr 2fr"],
  [style*="grid-template-columns:1fr 2fr"],
  [style*="grid-template-columns: 1fr 2fr"],
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns:220px 1fr"],
  [style*="grid-template-columns: 220px 1fr"],
  [style*="grid-template-columns:200px 1fr"],
  [style*="grid-template-columns: 200px 1fr"],
  [style*="grid-template-columns:auto 1fr"],
  [style*="grid-template-columns: auto 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* === 3-COL INLINE GRIDS → 1 COL === */
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* === 2-COL repeat grids (already handled above in 2-col section, also catch repeat(2)) */
  [style*="grid-template-columns:repeat(2"],
  [style*="grid-template-columns: repeat(2"] {
    grid-template-columns: 1fr !important;
  }

  /* === 4-COL INLINE GRIDS → 2×2 (stat cards, stage rows, etc.) === */
  [style*="grid-template-columns:1fr 1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr 1fr"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2,1fr) !important;
  }

  /* Class-based grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
  .pricing-grid { grid-template-columns: 1fr !important; }
  .persona-grid { grid-template-columns: 1fr !important; }

  /* Reset display order so text comes before decorative panels */
  [style*="order:2"], [style*="order: 2"] { order: initial !important; }
  [style*="order:1"], [style*="order: 1"] { order: initial !important; }

  /* Compress large inline gaps */
  [style*="gap:72px"], [style*="gap: 72px"],
  [style*="gap:80px"], [style*="gap: 80px"] { gap: 32px !important; }
  [style*="gap:64px"], [style*="gap: 64px"],
  [style*="gap:56px"], [style*="gap: 56px"] { gap: 28px !important; }
  [style*="gap:48px"], [style*="gap: 48px"] { gap: 24px !important; }

  /* === TABLES — make scrollable with a capped width === */
  .addon-table,
  .compare-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* don't use white-space: nowrap here — let text wrap inside cells */
  }
  /* Give tables a min-width so cells don't collapse */
  .addon-table   { min-width: 480px; }
  .compare-table { min-width: 580px; }
  /* Tighten cell padding on mobile */
  .addon-table th,
  .addon-table td,
  .compare-table th,
  .compare-table td {
    padding: .75rem 1rem !important;
    font-size: .8rem !important;
  }

  /* === IMAGE BANNERS === */
  .img-banner-wrap { height: 220px !important; }
  .img-banner-wrap .overlay { padding: 1.25rem 1rem; }
  .img-banner-wrap .overlay blockquote { font-size: .95rem !important; line-height: 1.5 !important; }

  /* === PAGE HEADER === */
  .page-header .lead { font-size: .9rem; max-width: 100%; }
  .page-header h1    { font-size: clamp(1.6rem, 5.5vw, 2rem) !important; }

  /* === CALLOUT / CTA === */
  .callout { padding: 2rem 1.25rem !important; }
  .callout h2 { font-size: 1.35rem !important; }

  /* === CARDS === */
  .card { padding: 1.5rem !important; }
  .card[style*="display:grid"][style*="auto 1fr"],
  .card[style*="display: grid"][style*="auto 1fr"] {
    gap: 1rem !important;
  }

  /* === PROCESS STEPS === */
  .process-step { grid-template-columns: 44px 1fr; gap: 10px; }
  .step-num { width: 44px; height: 44px; font-size: 1rem; }

  /* === FOOTER === */
  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer__desc  { max-width: 100%; }
  .footer__bottom{
    flex-direction: column;
    text-align: center;
    gap: .5rem;
  }

  /* === FORM === */
  .form-grid { grid-template-columns: 1fr !important; }
  .form-group.full { grid-column: 1 !important; }
  .form-input,
  .form-select,
  .form-textarea { font-size: 1rem !important; /* prevent iOS auto-zoom */ }

  /* === MOBILE MENU LINKS === */
  .nav__mobile-menu a { font-size: 1rem; padding: .85rem 1.5rem; }

  /* === MAX-WIDTH OVERRIDES for narrow prose columns === */
  [style*="max-width:760px"],  [style*="max-width: 760px"],
  [style*="max-width:820px"],  [style*="max-width: 820px"],
  [style*="max-width:860px"],  [style*="max-width: 860px"],
  [style*="max-width:720px"],  [style*="max-width: 720px"],
  [style*="max-width:680px"],  [style*="max-width: 680px"] {
    max-width: 100% !important;
  }

  /* === QUOTE BLOCK === */
  .quote-block { padding: 1.25rem 1.25rem; }
  .quote-block p { font-size: .92rem !important; }

  /* === ABOUT — background/history date cards ===
     When auto 1fr collapses to 1-col, left-align the date */
  .card[style*="grid-template-columns:auto 1fr"] > div:first-child,
  .card[style*="grid-template-columns: auto 1fr"] > div:first-child {
    text-align: left !important;
    min-width: 0 !important;
  }

  /* === SECTION HEADER margin === */
  .section-header { margin-bottom: 36px; }
  .section-header.centered { text-align: center; }

  /* Tight inline min-width overrides that cause horizontal scroll */
  [style*="min-width:120px"],
  [style*="min-width: 120px"] { min-width: 80px !important; }

  /* Pipeline mock dashboard stage grid cell gap tighten */
  [style*="grid-template-columns:1fr 1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr 1fr"] {
    gap: .5rem !important;
  }
}

/* ── Small mobile: 480px ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 .875rem; }

  h1 { font-size: clamp(1.5rem, 7vw, 1.8rem) !important; }
  h2 { font-size: clamp(1.25rem, 5.5vw, 1.5rem) !important; }
  .lead { font-size: .88rem !important; }

  /* Hero: even tighter */
  .hero {
    padding-top: calc(var(--nav-height) + 32px) !important;
    padding-bottom: 48px !important;
  }
  .hero__subtitle { font-size: .87rem !important; }
  .hero__stat-num  { font-size: 1.25rem !important; }

  /* Stat strip: 2-col stays but larger number trim */
  .stat-strip__num  { font-size: 1.45rem !important; }

  /* Nav logo */
  .nav__logo-icon { height: 36px !important; }

  /* Buttons: full-width only in isolated CTA areas */
  .hero__actions .btn { font-size: .85rem; padding: .75rem 1rem; }

  /* Cards: single tight padding */
  .card { padding: 1.25rem !important; }

  /* Image banner */
  .img-banner-wrap { height: 180px !important; }
  .img-banner-wrap .overlay blockquote { font-size: .85rem !important; }

  /* Table cell compress */
  .addon-table th,
  .addon-table td,
  .compare-table th,
  .compare-table td { padding: .6rem .75rem !important; font-size: .76rem !important; }

  /* Footer tighten */
  .footer { padding: 48px 0 24px; }
}

/* ══════════════════════════════════════════════════════════════════════
   HERO PATH BUTTONS
══════════════════════════════════════════════════════════════════════ */
.hero__paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.hero__path-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.hero__path-btn:hover {
  border-color: var(--accent-red);
  background: rgba(225,6,0,.06);
}
.hero__path-content { display: flex; flex-direction: column; flex: 1; }
.hero__path-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.hero__path-sub { font-size: 11px; color: #666; }
.hero__path-arrow {
  color: #444;
  font-size: 16px;
  flex-shrink: 0;
  transition: color .2s, transform .2s;
}
.hero__path-btn:hover .hero__path-arrow { color: var(--accent-red); transform: translateX(4px); }
@media (max-width: 600px) {
  .hero__paths { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════
   ECOSYSTEM FLOW
══════════════════════════════════════════════════════════════════════ */
.eco-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 3rem 0 1.5rem;
}
.eco-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.eco-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--accent-gold);
  transition: border-color .2s, background .2s;
}
.eco-node--highlight .eco-icon {
  border-color: rgba(225,6,0,.4);
  background: rgba(225,6,0,.08);
  color: var(--accent-red);
}
.eco-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  max-width: 72px;
  line-height: 1.4;
}
.eco-node--highlight .eco-label { color: #aaa; }
.eco-arrow { color: #2a2a2a; font-size: 18px; margin-top: -20px; }
.eco-note {
  text-align: center;
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}
.eco-note strong { color: var(--text-secondary); }
@media (max-width: 768px) {
  .eco-arrow { font-size: 14px; }
  .eco-icon { width: 40px; height: 40px; font-size: .8rem; }
  .eco-label { font-size: 8px; max-width: 56px; }
}

/* ══════════════════════════════════════════════════════════════════════
   DUAL AUDIENCE CARDS
══════════════════════════════════════════════════════════════════════ */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 3rem 0 2rem;
}
.audience-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.audience-card__head {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f7f7f7;
  border-bottom: 1px solid #e8e8e8;
}
.audience-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.audience-card__eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E10600;
  margin-bottom: 4px;
}
.audience-card__headline {
  font-size: 16px;
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -.2px;
}
.audience-card__body {
  padding: 18px 24px;
  font-size: .85rem;
  color: #555;
  line-height: 1.75;
  border-bottom: 1px solid #eee;
  margin: 0;
}
.audience-card__list {
  list-style: none;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-bottom: 1px solid #eee;
  flex: 1;
}
.audience-card__list li {
  font-size: .82rem;
  color: #444;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.audience-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #E10600;
  font-size: .78rem;
}
.audience-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: .85rem;
  font-weight: 700;
  color: #0a0a0a;
  text-decoration: none;
  background: #f2f2f2;
  transition: background .2s, color .2s;
}
.audience-card__cta:hover { background: #E10600; color: #fff; }
.audience-card__cta span { transition: transform .2s; }
.audience-card__cta:hover span { transform: translateX(4px); }

/* ── Who trio ── */
.who-trio {
  display: flex;
  align-items: stretch;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
}
.who-trio__item {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
}
.who-trio__sep {
  width: 1px;
  background: #e0e0e0;
  align-self: stretch;
}
.who-trio__icon { font-size: 1.4rem; color: #0a0a0a; margin-bottom: 10px; }
.who-trio__title { font-size: 15px; font-weight: 800; color: #0a0a0a; margin-bottom: 6px; }
.who-trio__desc { font-size: .8rem; color: #666; line-height: 1.6; }

@media (max-width: 768px) {
  .audience-grid { grid-template-columns: 1fr; }
  .who-trio { flex-direction: column; }
  .who-trio__sep { width: auto; height: 1px; }
}

/* ══════════════════════════════════════════════════════════════════════
   ADVISOR-FIRST BAR
══════════════════════════════════════════════════════════════════════ */
.advisor-first-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.advisor-first-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.advisor-first-badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  white-space: nowrap;
}
.advisor-first-inner p {
  font-size: .875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .advisor-first-inner { flex-direction: column; gap: 10px; }
}

/* ══════════════════════════════════════════════════════════════════════
   QUALIFIER MODAL
══════════════════════════════════════════════════════════════════════ */
.qmodal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.qmodal-overlay.open { opacity: 1; pointer-events: all; }
.qmodal-box {
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform .25s ease;
}
.qmodal-overlay.open .qmodal-box { transform: translateY(0); }
.qmodal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #555;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color .15s;
}
.qmodal-close:hover { color: #fff; }
.qmodal-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #E10600;
  margin-bottom: 10px;
}
.qmodal-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -.2px;
}
.qmodal-sub {
  font-size: 13px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}
.qmodal-choices { display: flex; flex-direction: column; gap: 10px; }
.qmodal-choice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #111;
  border: 1px solid #222;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  color: inherit;
  transition: border-color .2s, background .2s;
}
.qmodal-choice:hover { border-color: #E10600; background: rgba(225,6,0,.06); }
.qmodal-choice-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: #888;
  flex-shrink: 0;
}
.qmodal-choice:hover .qmodal-choice-icon { color: #E10600; border-color: rgba(225,6,0,.3); }
.qmodal-choice-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.qmodal-choice-desc { font-size: 11px; color: #666; }
.qmodal-choice-arrow {
  margin-left: auto;
  color: #333;
  font-size: 18px;
  flex-shrink: 0;
  transition: color .2s, transform .2s;
}
.qmodal-choice:hover .qmodal-choice-arrow { color: #E10600; transform: translateX(3px); }
.qmodal-back {
  background: none;
  border: none;
  color: #555;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color .15s;
}
.qmodal-back:hover { color: #fff; }
.qmodal-calendar {
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 480px) {
  .qmodal-box { padding: 28px 18px; }
  .qmodal-title { font-size: 20px; }
}

/* ══════════════════════════════════════════════════════════════════════
   SUPPLEMENTAL MOBILE FIXES — engagement & services pages
══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Icon-number rows (64px / 52px / 80px icon + text) ── */
  [style*="grid-template-columns:64px 1fr"],
  [style*="grid-template-columns: 64px 1fr"],
  [style*="grid-template-columns:80px 1fr"],
  [style*="grid-template-columns: 80px 1fr"],
  [style*="grid-template-columns:52px 1fr"],
  [style*="grid-template-columns: 52px 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Reduce oversized gaps when columns stack ── */
  [style*="gap:72px"],
  [style*="gap: 72px"],
  [style*="gap:80px"],
  [style*="gap: 80px"],
  [style*="gap:64px"],
  [style*="gap: 64px"] {
    gap: 32px !important;
  }

  /* ── Engagement page card grids ── */
  .card-grid.cols-2,
  .card-grid.cols-3,
  .card-grid.cols-4 {
    grid-template-columns: 1fr !important;
  }

  /* ── Engagement page pricing & comparison layouts ── */
  .pricing-main,
  .compare-grid,
  .bdr-grid,
  .addons-grid,
  .sector-grid { grid-template-columns: 1fr !important; }

  /* ── Engagement page hiw-step (icon + step content) ── */
  .hiw-step {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .hiw-step-num {
    width: 40px !important;
    height: 40px !important;
    font-size: .85rem !important;
  }

  /* ── Stats bar on sell-side ── */
  .stats-bar {
    flex-direction: column !important;
    gap: 20px !important;
    padding: 24px 20px !important;
  }
  .stat-divider { display: none !important; }

  /* ── Eco flow: wrap nodes ── */
  .eco-flow {
    flex-wrap: wrap !important;
    gap: 12px !important;
    justify-content: center !important;
  }
  .eco-arrow { display: none !important; }

  /* ── Audience cards already 1-col but ensure padding is tight ── */
  .audience-card { padding: 1.5rem !important; }

  /* ── Services: comparison table horizontal scroll ── */
  .cost-compare-table-wrap { overflow-x: auto; }

  /* ── Engagement page cover heading ── */
  .cover h1 { font-size: 26px !important; line-height: 1.15 !important; }
  .cover p  { font-size: 13px !important; }

  /* ── Page container padding on engagement pages ── */
  .page { padding: 40px 20px !important; padding-top: calc(72px + 40px) !important; }

  /* ── Pricing section ── */
  .pricing-section { padding: 28px 20px !important; }
  .pb-amount { font-size: 2.2rem !important; }

  /* ── How It Works white section ── */
  .hiw-inner { padding: 48px 20px !important; }

  /* ── Sector grid: 2 cols on mobile ── */
  .sector-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 480px) {
  /* ── Very small: sector grid → 1 col ── */
  .sector-grid { grid-template-columns: 1fr !important; }

  /* ── Pricing amounts ── */
  .pb-amount { font-size: 1.9rem !important; }

  /* ── Tags wrap nicely ── */
  .tags { gap: 6px !important; }
  .tag { font-size: 9px !important; padding: 4px 8px !important; }

  /* ── Compare grid force 1-col ── */
  .compare-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   ACCESSIBILITY (WCAG 2.1 AA) — Global Fixes
   Added April 2026
============================================================ */

/* 1. Visible focus indicators for keyboard users (WCAG 2.4.7) */
*:focus {
  outline: none;
}
*:focus-visible {
  outline: 3px solid #FFD700;
  outline-offset: 3px;
  border-radius: 4px;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.5);
}
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #FFD700;
  outline-offset: 3px;
}

/* 2. Touch target minimum (WCAG 2.5.5 — 44x44 CSS px) */
.btn,
.btn-primary,
.btn-outline,
.btn-red,
.nav__cta,
.hero__path-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav__hamburger {
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
}
@media (max-width: 768px) {
  .btn,
  .btn-primary,
  .btn-outline,
  .btn-red {
    min-height: 48px;
    padding: .85rem 1.5rem;
  }
  .nav__links a,
  .nav__mobile-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* 3. Hero image overlays — guarantees text contrast over photos (WCAG 1.4.3) */
.about-hero,
.buyside-hero,
.process-hero,
.hero,
.hero-section {
  position: relative;
}
.about-hero::before,
.buyside-hero::before,
.process-hero::before,
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.85) 100%);
  z-index: 0;
  pointer-events: none;
}
.about-hero > .container,
.buyside-hero > .container,
.process-hero > .container,
.hero-section > .container {
  position: relative;
  z-index: 1;
}
.about-hero .hero-img-bg,
.buyside-hero .hero-img-bg,
.process-hero .hero-img-bg,
.hero-section .hero-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* 4. Skip-to-content link (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #FFD700;
  color: #000;
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 6px 0;
}
.skip-link:focus {
  top: 0;
}

/* 5. Reduced motion respect (WCAG 2.3.3) */
@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;
  }
}

/* 6. Screen-reader-only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 7. Improve red text contrast — use lighter red for body-size text */
.text-red,
.accent-red-text {
  color: #FF3B38; /* 5.41:1 on black, vs 4.55:1 for #E10600 */
}
