/* Self-hosted Inter (variable, latin subset) — eliminates Google Fonts render-blocking */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/inter-var.woff2') format('woff2-variations'),
       url('assets/fonts/inter-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --black: #050507;
  --black-2: #0a0a12;
  --navy: #101827;
  --navy-2: #141f35;
  --purple: #7c3aed;
  --purple-2: #a78bfa;
  --purple-3: #c4b5fd;
  --text: #f8fafc;
  --muted: #c9d0dd;
  --faint: #8e98ad;
  --border: rgba(248, 250, 252, 0.13);
  --panel: rgba(16, 24, 39, 0.78);
  --panel-2: rgba(20, 31, 53, 0.72);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --radius: 26px;
  --radius-sm: 16px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(124, 58, 237, 0.26), transparent 31rem),
    radial-gradient(circle at 86% 8%, rgba(167, 139, 250, 0.16), transparent 25rem),
    linear-gradient(180deg, #050507 0%, #090912 42%, #101827 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
p { color: var(--muted); max-width: 72ch; }
ul, ol { padding-left: 1.1rem; }
li { color: var(--muted); margin-top: 0.45rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.1rem, 4vw, 2.5rem);
  background: rgba(5, 5, 7, 0.78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 0.7rem; font-weight: 900; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  height: 36px;
  padding-inline: 0.5rem;
  border: 1px solid rgba(196, 181, 253, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.32), rgba(16, 24, 39, 0.88));
  box-shadow: inset 0 0 26px rgba(167, 139, 250, 0.16);
}
.brand-name { color: var(--muted); font-size: 0.96rem; }
.nav { display: flex; align-items: center; gap: clamp(0.8rem, 2vw, 1.6rem); color: var(--muted); font-size: 0.94rem; font-weight: 700; }
.nav a { transition: color .18s ease, transform .18s ease; }
.nav a:hover { color: var(--text); transform: translateY(-1px); }
.nav-cta { color: var(--text) !important; padding: .7rem 1rem; border: 1px solid rgba(196,181,253,.45); border-radius: 999px; background: rgba(124,58,237,.18); }
.menu-toggle { display: none; color: var(--text); border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,.05); padding: .6rem .85rem; font-weight: 800; }

.section { padding: clamp(4.5rem, 8vw, 7rem) 0; }
.container { width: min(var(--max), calc(100% - clamp(2rem, 6vw, 5rem))); margin-inline: auto; }
.container-narrow { width: min(840px, calc(100% - 2rem)); }
.section-raised { border-block: 1px solid var(--border); background: linear-gradient(180deg, rgba(16,24,39,.68), rgba(5,5,7,.18)); }
.section-heading { display: grid; gap: 1rem; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-heading.center { text-align: center; justify-items: center; }
.sticky-heading { position: sticky; top: 105px; align-self: start; }
.eyebrow { color: var(--purple-3); font-size: .76rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; max-width: none; }
h1, h2, h3 { line-height: 1.02; letter-spacing: -.055em; }
h1 { max-width: 12ch; font-size: clamp(3rem, 7vw, 6.85rem); }
h2 { max-width: 12.5ch; font-size: clamp(2.2rem, 4vw, 4.35rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.8rem); }
.center h2 { margin-inline: auto; }

.hero { min-height: calc(100vh - 70px); display: grid; align-items: center; padding-top: clamp(3rem, 5vw, 4.5rem); padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); gap: clamp(2.2rem, 6vw, 5rem); align-items: center; }
.hero-copy { display: grid; gap: 1.35rem; }
.hero-lede { font-size: clamp(1.05rem, 1.4vw, 1.28rem); }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .88rem 1.16rem; border-radius: 999px; font-weight: 900; font-size: .94rem; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, var(--purple), #6d28d9); box-shadow: 0 18px 44px rgba(124, 58, 237, .35); }
.button-secondary { color: var(--text); border: 1px solid rgba(196,181,253,.36); background: rgba(255,255,255,.045); }
.button-large { min-height: 56px; padding-inline: 1.35rem; }
.micro-line { color: var(--text); font-weight: 800; }
.trust-strip { display: flex; flex-wrap: wrap; gap: .55rem; }
.trust-strip span { border: 1px solid var(--border); border-radius: 999px; padding: .42rem .7rem; background: rgba(255,255,255,.045); color: var(--muted); font-size: .82rem; font-weight: 800; }
.portrait-card, .risk-card, .service-card, .tier-card, .bridge-callout, .final-panel, .proof-list article, .timeline article, .faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}
.portrait-card { padding: 1rem; position: relative; overflow: hidden; }
.portrait-card::before { content: ""; position: absolute; inset: -30% -40% auto auto; width: 360px; height: 360px; border-radius: 999px; background: rgba(124,58,237,.22); filter: blur(35px); }
.portrait-wrap { position: relative; overflow: hidden; border-radius: calc(var(--radius) - 8px); border: 2px solid rgba(124,58,237,.75); background: #111827; }
.portrait-wrap img { aspect-ratio: 4/5; object-fit: cover; object-position: center 23%; filter: saturate(.9) contrast(1.05); }
.portrait-caption { display: grid; gap: .25rem; margin-top: 1rem; padding: 1rem; border: 1px solid var(--border); border-radius: 18px; background: rgba(5,5,7,.58); text-align: center; }
.portrait-caption span { color: var(--muted); font-size: .92rem; }

.proof-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 4rem); }
.proof-list { display: grid; gap: 1rem; }
.proof-list article { padding: 1.35rem; box-shadow: none; display: grid; gap: .65rem; }
.proof-list span, .service-top span, .timeline span, .mini-mark, .tier-tag { color: var(--purple-3); font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }

.card-grid.four { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.risk-card { padding: 1.25rem; display: grid; gap: .8rem; box-shadow: none; }
.trigger-line { color: var(--text); font-weight: 800; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.service-card { padding: 1.4rem; display: grid; gap: .95rem; box-shadow: none; }
.service-top { display: flex; justify-content: space-between; gap: 1rem; align-items: center; color: var(--faint); font-size: .86rem; }
.service-card ul, .tier-card ul { display: grid; gap: .2rem; }

.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.timeline article { padding: 1.25rem; box-shadow: none; display: grid; gap: .7rem; }
.section-closer { margin: 2rem auto 0; text-align: center; color: var(--text); font-size: 1.05rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.tier-card { padding: 1.35rem; display: grid; gap: .9rem; box-shadow: none; position: relative; }
.tier-card.featured { border-color: rgba(196,181,253,.56); transform: translateY(-10px); background: linear-gradient(145deg, rgba(124,58,237,.2), rgba(255,255,255,.04)); }
.default-badge { width: fit-content; border: 1px solid rgba(196,181,253,.5); border-radius: 999px; padding: .35rem .6rem; background: rgba(124,58,237,.24); color: var(--text); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.tier-price { color: var(--text); font-weight: 800; }
.tier-price span { font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -.06em; margin-right: .2rem; }
.bridge-callout { margin-top: 1.25rem; padding: clamp(1.25rem, 3vw, 2rem); display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(20,31,53,.68)); }
.bridge-callout h3 { margin: .35rem 0 .55rem; }

.faq-list { display: grid; gap: .75rem; }
.faq-list details { padding: 1rem 1.1rem; box-shadow: none; }
.faq-list summary { cursor: pointer; color: var(--text); font-weight: 900; }
.faq-list p { margin-top: .75rem; }
.final-panel { padding: clamp(1.5rem, 5vw, 3rem); display: grid; gap: 1rem; justify-items: start; background: radial-gradient(circle at 90% 0%, rgba(167,139,250,.2), transparent 22rem), linear-gradient(145deg, rgba(124,58,237,.18), rgba(255,255,255,.035)); }
.final-panel h2 { max-width: 16ch; }
.site-footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border); background: rgba(5,5,7,.48); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; }
.footer-identity { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.footer-tagline { font-size: .875rem; color: var(--muted); margin-top: 0.75rem; margin-bottom: 0.5rem; max-width: none; }
.footer-contact-link { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: .875rem; transition: color .15s; padding: 4px 0; }
.footer-contact-link:hover { color: var(--text); }
.footer-cols { display: flex; gap: 4rem; flex-shrink: 0; }
.footer-col { display: flex; flex-direction: column; gap: 0; }
.footer-col-heading { color: var(--text); font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; max-width: none; }
.footer-col nav { display: flex; flex-direction: column; }
.footer-col nav a { color: var(--muted); font-size: .875rem; padding: 5px 0; transition: color .15s; }
.footer-col nav a:hover { color: var(--text); }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(248,250,252,.06); display: flex; justify-content: space-between; align-items: center; }
.footer-meta { color: var(--faint); font-size: .8125rem; margin: 0; max-width: none; }
.footer-brand-inline { color: var(--purple); }

@media (max-width: 980px) {
  .hero-grid, .proof-grid { grid-template-columns: 1fr; }
  h1 { max-width: 13ch; }
  .sticky-heading { position: static; }
  /* Hero v2 — narrow desktop / tablet: tighten the 2-col gap and portrait min-width */
  .hero-v2 .hero-grid-v2 { grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr) !important; gap: 2.2rem !important; }
  .card-grid.four, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: 1fr; }
  .tier-card.featured { transform: none; }
  .bridge-callout { grid-template-columns: 1fr; display: grid; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-cols { gap: 2.5rem; }
}

@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  .menu-toggle { display: inline-flex; }
  .nav { display: none; position: absolute; top: calc(100% + 1px); left: 1rem; right: 1rem; padding: 1rem; border: 1px solid var(--border); border-radius: 20px; background: rgba(5,5,7,.96); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav.is-open { display: flex; }
  .nav a { padding: .55rem; }
  .section { padding: 3.25rem 0; }
  .container, .container-narrow { width: min(100% - 1.25rem, var(--max)); }
  h1 { font-size: clamp(2.55rem, 14vw, 4.1rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.25rem); }
  .cta-row { align-items: stretch; }
  .button { width: 100%; text-align: center; }
  .card-grid.four, .service-grid, .timeline { grid-template-columns: 1fr; }
  .portrait-card { max-width: 460px; margin-inline: auto; }
}

/* Mobile card sliders */
.slider-controls {
  display: none;
}

@media (max-width: 760px) {
  .mobile-slider {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: calc((100vw - min(86vw, 380px)) / 2);
    -webkit-overflow-scrolling: touch;
    padding: .35rem calc((100vw - min(86vw, 380px)) / 2) 1rem;
    margin-inline: calc((100vw - 100%) / -2);
  }

  .mobile-slider > * {
    flex: 0 0 min(86vw, 380px);
    width: min(86vw, 380px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-height: 100%;
  }

  .mobile-slider::-webkit-scrollbar {
    display: none;
  }

  .mobile-slider {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    margin-top: .35rem;
  }

  .slider-arrow {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(196, 181, 253, .35);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
    font-size: 1.05rem;
    font-weight: 900;
    cursor: pointer;
    transition: transform .18s ease, opacity .18s ease, border-color .18s ease, background .18s ease;
  }

  .slider-arrow:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(196, 181, 253, .62);
    background: rgba(124, 58, 237, .16);
  }

  .slider-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
  }

  .slider-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-width: 88px;
  }

  .slider-dot {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: rgba(196, 181, 253, .32);
    cursor: pointer;
    transition: width .2s ease, background .2s ease, opacity .2s ease;
  }

  .slider-dot.is-active {
    width: 24px;
    background: var(--purple-3);
  }

  .pricing-grid.mobile-slider > .tier-card.featured {
    transform: none;
  }
}

/* ============================================================
   IRIS v7 — 4-PLAY DEPLOYMENT
   Play 1: 2px violet border on slider cards only
   Play 2: Risk card expand + pulled service inline
   Play 3: Sticky mobile CTA bar
   Play 4: Hero Option B (mobile reorder: H1 → photo → caption → subhead → CTA)
   ============================================================ */

/* PLAY 1 — 2px violet border on slider cards (mobile only) */
@media (max-width: 760px) {
  .mobile-slider > * {
    border: 2px solid #7C3AED !important;
    box-shadow: 0 4px 18px rgba(124, 58, 237, 0.15);
  }
}

/* PLAY 2 — Risk card expand/collapse + pulled service */
.risk-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: rgba(167, 139, 250, 0.10);
  border: 1px solid rgba(167, 139, 250, 0.30);
  color: #C4B5FD;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-top: 8px;
  min-height: 44px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.risk-toggle:hover,
.risk-toggle:focus-visible {
  background: rgba(124, 58, 237, 0.18);
  border-color: rgba(167, 139, 250, 0.55);
  color: #fff;
  outline: none;
}
.risk-card.is-expanded {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, rgba(15, 22, 38, 1) 60%) !important;
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.30) !important;
}
.risk-card.is-expanded .risk-toggle {
  background: rgba(124, 58, 237, 0.25);
  border-color: #7C3AED;
  color: #fff;
}
.pulled-service {
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(167, 139, 250, 0.45);
  border-radius: 10px;
  padding: 14px 14px 16px;
  margin-top: 10px;
  animation: pullFade 0.25s ease;
}
.pulled-service[hidden] { display: none; }
@keyframes pullFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pulled-label {
  color: #A78BFA;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pulled-service h4 {
  font-size: 16px;
  font-weight: 700;
  color: #F9FAFB;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.pulled-service p {
  font-size: 13px;
  color: #C5CCD9 !important;
  line-height: 1.55;
  margin-bottom: 12px;
}
.pulled-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(180deg, #7C3AED 0%, #6D28D9 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 14px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.40);
  min-height: 44px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.pulled-cta:hover,
.pulled-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.55);
  outline: none;
}

/* PLAY 3 — Sticky mobile CTA bar */
.sticky-cta {
  display: none; /* desktop hidden */
}
@media (max-width: 760px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 16, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 2px solid rgba(167, 139, 250, 0.40);
    padding: 13px 16px calc(13px + env(safe-area-inset-bottom, 0px));
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 -16px 44px rgba(0, 0, 0, 0.65), 0 -2px 0 rgba(124, 58, 237, 0.25);
    z-index: 60;
    transform: translateY(0);
    opacity: 1;
    transition: transform 280ms ease, opacity 220ms ease;
    will-change: transform, opacity;
  }
  .sticky-cta > .sticky-avatar,
  .sticky-cta > .sticky-text,
  .sticky-cta > .sticky-btn {
    flex: 0 0 auto;
  }
  .sticky-cta .sticky-text {
    flex: 0 1 auto;
    align-items: flex-start;
    text-align: left;
  }
  .sticky-cta.is-hidden {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
  }
  .sticky-avatar {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    border: 2px solid rgba(167, 139, 250, 0.70);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.45);
    position: relative;
  }
  .sticky-avatar::after {
    content: "";
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #22C55E;
    border: 2px solid rgba(10, 10, 16, 1);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  }
  .sticky-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    display: block;
  }
  .sticky-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    line-height: 1.25;
    min-width: 0;
  }
  .sticky-text-1 {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #F9FAFB;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .sticky-text-2 {
    font-size: 12px;
    color: #C5CCD9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 2px;
  }
  .sticky-btn {
    background: linear-gradient(180deg, #8B5CF6 0%, #6D28D9 100%);
    color: #fff !important;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.01em;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(167, 139, 250, 0.35);
  }
  .sticky-btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 12px rgba(124, 58, 237, 0.50);
  }
  /* Reserve space at bottom of <main> so sticky bar doesn't overlap final-CTA / footer */
  main { padding-bottom: 100px; }
  .site-footer { padding-bottom: 120px; }
}

/* ============================================================ */
/* HERO V2 — Option B: pain-Q → bullets → portrait → answer    */
/* ============================================================ */

/* Default mobile portrait elements hidden — shown only ≤760px */
.hero-v2 .hero-mobile-portrait,
.hero-v2 .hero-mobile-portrait-caption { display: none; }

/* DESKTOP (≥761px) — 2-column: copy left, portrait right */
@media (min-width: 761px) {
  .hero-v2 .hero-grid-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
  }
  .hero-v2 .hero-copy {
    display: grid;
    gap: 1.05rem;
  }
  .hero-v2 .hero-pain-h1 {
    font-size: clamp(36px, 4.05vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
  }
  .hero-v2 .hero-pain-bullets {
    list-style: none;
    padding: 0;
    margin: .15rem 0 .25rem;
    display: grid;
    gap: 10px;
  }
  .hero-v2 .hero-pain-bullets li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
    color: #C5CCD9;
    font-size: 15.5px;
    line-height: 1.55;
  }
  .hero-v2 .bullet-mark {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: linear-gradient(180deg, #A78BFA 0%, #7C3AED 100%);
    margin-top: 9px;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
  }
  .hero-v2 .hero-answer {
    border-top: 1px solid rgba(167, 139, 250, 0.18);
    padding-top: 1.05rem;
    margin-top: .25rem;
    display: grid;
    gap: .6rem;
  }
  .hero-v2 .eyebrow-soft {
    color: #A78BFA;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
  }
  .hero-v2 .hero-answer-h2 {
    font-size: clamp(26px, 2.6vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #F9FAFB;
    margin: 0;
  }
  .hero-v2 .hero-lede {
    color: #C5CCD9;
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0;
  }

  /* Portrait card — desktop vertical 3:4 */
  .hero-v2 .portrait-card-v2 {
    position: relative;
    background: linear-gradient(155deg, #14213A 0%, #0F1626 100%);
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-radius: 22px;
    padding: 14px 14px 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(124, 58, 237, 0.08);
    overflow: hidden;
  }
  .hero-v2 .portrait-card-v2::before {
    content: "";
    position: absolute;
    inset: -40% -50% auto auto;
    width: 380px;
    height: 380px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.22);
    filter: blur(40px);
    pointer-events: none;
  }
  .hero-v2 .portrait-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    background: #0a0a14;
    border: 1px solid rgba(167, 139, 250, 0.22);
  }
  .hero-v2 .portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    display: block;
    filter: saturate(0.95) contrast(1.04);
  }
  .hero-v2 .portrait-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(10, 10, 16, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.35);
    color: #F9FAFB;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
  .hero-v2 .portrait-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  }
  .hero-v2 .portrait-caption-v2 {
    text-align: center;
    margin-top: 14px;
    line-height: 1.35;
  }
  .hero-v2 .portrait-caption-v2 strong {
    display: block;
    color: #F9FAFB;
    font-weight: 700;
    font-size: 16px;
  }
  .hero-v2 .portrait-caption-v2 span {
    display: block;
    color: #8B92A3;
    font-size: 12px;
    margin-top: 3px;
    letter-spacing: 0.01em;
  }
}

/* MOBILE (≤760px) — single column: pain → bullets → portrait → answer → CTA */
@media (max-width: 760px) {
  .hero-v2 .hero-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  /* Hide the desktop right-rail aside on mobile — replaced by .hero-mobile-portrait inline */
  .hero-v2 .portrait-card-v2 { display: none; }

  .hero-v2 .hero-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
  }
  .hero-v2 .eyebrow {
    text-align: left;
    margin: 0 0 14px;
  }
  .hero-v2 .hero-pain-h1 {
    text-align: left;
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: -0.015em;
    margin: 0 0 20px;
  }
  .hero-v2 .hero-pain-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 12px;
  }
  .hero-v2 .hero-pain-bullets li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 11px;
    align-items: start;
    color: #C5CCD9;
    font-size: 14.5px;
    line-height: 1.5;
  }
  .hero-v2 .bullet-mark {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: linear-gradient(180deg, #A78BFA 0%, #7C3AED 100%);
    margin-top: 8px;
  }

  /* Inline mobile portrait — pain → bullets → THE PORTRAIT MOMENT → answer */
  .hero-v2 .hero-mobile-portrait {
    display: block !important;
    width: min(85%, 320px);
    aspect-ratio: 4 / 5;
    margin: 28px auto 28px;
    border-radius: 22px;
    background-image: image-set(url('assets/shannon-source.avif') type('image/avif'), url('assets/shannon-source.webp') type('image/webp'), url('assets/shannon-source-opt.jpg') type('image/jpeg'));
    background-image: -webkit-image-set(url('assets/shannon-source.avif') type('image/avif'), url('assets/shannon-source.webp') type('image/webp'), url('assets/shannon-source-opt.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center 20%;
    border: 1px solid rgba(167, 139, 250, 0.32);
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.60),
      0 0 0 1px rgba(124, 58, 237, 0.15),
      0 0 60px rgba(124, 58, 237, 0.18);
    position: relative;
    overflow: hidden;
  }
  /* Soft violet glow halo behind the portrait */
  .hero-v2 .hero-mobile-portrait::before {
    content: "";
    position: absolute;
    inset: -8% -10% auto auto;
    width: 60%;
    height: 60%;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.30);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
  }
  /* Available pill — bottom center */
  .hero-v2 .hero-mobile-portrait::after {
    content: "● Available · 30-min calls";
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    padding: 7px 14px;
    background: rgba(10, 10, 16, 0.90);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.38);
    border-radius: 999px;
    color: #F9FAFB;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    z-index: 2;
  }
  /* Caption block under portrait — name + role */
  .hero-v2 .hero-mobile-portrait-caption {
    display: block !important;
    text-align: center;
    margin: -12px auto 24px;
    line-height: 1.35;
  }
  .hero-v2 .hero-mobile-portrait-caption strong {
    display: block;
    color: #F9FAFB;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.005em;
  }
  .hero-v2 .hero-mobile-portrait-caption span {
    display: block;
    color: #8B92A3;
    font-size: 11.5px;
    margin-top: 3px;
    letter-spacing: 0.01em;
  }

  .hero-v2 .hero-answer {
    border-top: 1px solid rgba(167, 139, 250, 0.18);
    padding-top: 18px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .hero-v2 .eyebrow-soft {
    color: #A78BFA;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
  }
  .hero-v2 .hero-answer-h2 {
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: #F9FAFB;
    margin: 0;
  }
  .hero-v2 .hero-lede {
    color: #C5CCD9;
    font-size: 14px;
    line-height: 1.55;
    margin: 4px 0 0;
  }

  /* CTA row — stacked, full-width */
  .hero-v2 .cta-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 18px;
  }
  .hero-v2 .cta-row .button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-v2 .trust-strip {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
  }
}

/* ============================================================ */
/* DESKTOP CTA AUDIT FIXES                                      */
/* ============================================================ */

/* Tier card CTA buttons (all viewports) */
.tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  text-decoration: none;
  margin-top: 4px;
  transition: transform 120ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}
.tier-cta-primary {
  background: linear-gradient(180deg, #8B5CF6 0%, #6D28D9 100%);
  color: #fff;
  border: 1px solid rgba(167, 139, 250, 0.35);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.tier-cta-primary:hover,
.tier-cta-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(124, 58, 237, 0.50), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.tier-cta-ghost {
  background: rgba(124, 58, 237, 0.10);
  color: #E9D5FF;
  border: 1px solid rgba(167, 139, 250, 0.30);
}
.tier-cta-ghost:hover,
.tier-cta-ghost:focus-visible {
  background: rgba(124, 58, 237, 0.18);
  border-color: rgba(167, 139, 250, 0.50);
  color: #F9FAFB;
}

/* Services CTA row */
.services-cta-row {
  margin-top: 2.4rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(167, 139, 250, 0.22);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.08), rgba(255, 255, 255, 0.02));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.services-cta-prompt {
  margin: 0;
  color: #C5CCD9;
  font-size: 15px;
  font-weight: 500;
}

/* Proof section soft link */
.proof-soft-link {
  margin: 1.4rem 0 0;
  text-align: left;
}
.proof-soft-link a {
  color: #A78BFA;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: color 160ms ease, transform 160ms ease;
  display: inline-block;
}
.proof-soft-link a:hover,
.proof-soft-link a:focus-visible {
  color: #C4B5FD;
  transform: translateX(2px);
}

/* Risk Router — auto-expand pulled-service on desktop */
@media (min-width: 761px) {
  .risk-toggle { display: none !important; }
  .pulled-service[hidden] { display: block !important; }
  .pulled-service {
    margin-top: 1rem !important;
    border-top: 1px solid rgba(167, 139, 250, 0.22) !important;
    padding-top: 1rem !important;
  }
}

/* Mobile services CTA row stacks */
@media (max-width: 760px) {
  .services-cta-row {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
  }
  .services-cta-row .button { width: 100%; }
  .proof-soft-link { text-align: center; }
}

/* ============================================================ */
/* MOBILE H2 TIGHTEN — "Shannon handles it." (drop full name)   */
/* ============================================================ */
@media (max-width: 760px) {
  .hero-v2 .hero-answer-h2 .full-name { display: none; }
  .hero-v2 .hero-answer-h2 .short-name { display: inline; }
}
@media (min-width: 761px) {
  .hero-v2 .hero-answer-h2 .full-name { display: inline; }
  .hero-v2 .hero-answer-h2 .short-name { display: none; }
}

/* ============================================================ */
/* MOBILE SCROLL CUE — subtle bounce arrow under portrait       */
/* ============================================================ */
@media (max-width: 760px) {
  .hero-v2 .hero-mobile-portrait-caption {
    position: relative;
  }
  .hero-v2 .hero-mobile-portrait-caption::after {
    content: "↓";
    display: block;
    margin: 14px auto 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.14);
    border: 1px solid rgba(167, 139, 250, 0.32);
    color: #A78BFA;
    font-size: 16px;
    font-weight: 700;
    animation: scroll-cue-bounce 2s ease-in-out infinite;
  }
  @keyframes scroll-cue-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.85; }
    50% { transform: translateY(5px); opacity: 1; }
  }
  /* Reduced motion: keep static */
  @media (prefers-reduced-motion: reduce) {
    .hero-v2 .hero-mobile-portrait-caption::after {
      animation: none;
    }
  }
}

/* ============================================================ */
/* CLIENT REVISION PASS: alignment, spacing, cards, contact      */
/* ============================================================ */
.section-heading {
  max-width: 760px;
}
.section-heading.center {
  margin-inline: auto;
}
.section-heading.center p {
  margin-inline: auto;
}
.section-heading:not(.center) p {
  max-width: 66ch;
}

.hero-v2 .hero-pain-h1,
.hero-v2 .hero-pain-bullets,
.hero-v2 .hero-pain-bullets li,
.hero-v2 .hero-answer,
.hero-v2 .cta-row,
.hero-v2 .trust-strip {
  text-align: center;
  justify-content: center;
}
.hero-v2 .hero-pain-bullets {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.proof-soft-link {
  grid-column: 2;
  margin-top: .2rem;
}
.proof-soft-link a {
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 999px;
  padding: .7rem 1rem;
  background: rgba(124, 58, 237, 0.10);
}

.risk-card,
.service-card,
.tier-card,
.timeline article {
  gap: 1rem;
  align-content: start;
}
.risk-card,
.service-card {
  min-height: 100%;
}
.risk-card .pulled-service {
  margin-top: auto;
}
.service-card ul,
.tier-card ul {
  gap: .45rem;
}
.pricing-grid {
  align-items: stretch;
}
.tier-card {
  grid-template-rows: auto auto auto auto 1fr auto;
}
.tier-card .tier-cta {
  align-self: end;
}
.bridge-callout {
  align-items: stretch;
}
.bridge-callout > div {
  display: grid;
  gap: .5rem;
}

.final-panel {
  gap: 1.15rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  gap: 1rem;
}
.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-form label {
  display: grid;
  gap: .45rem;
  color: var(--text);
  font-weight: 800;
  font-size: .9rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(196,181,253,.24);
  border-radius: 14px;
  background: rgba(5, 5, 7, .52);
  color: var(--text);
  padding: .9rem 1rem;
  font: inherit;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(167, 139, 250, .45);
  outline-offset: 2px;
}

.sticky-cta .sticky-text,
.sticky-cta .sticky-text-1,
.sticky-cta .sticky-text-2 {
  text-align: left !important;
}
.site-header, .site-header * {
  text-align: initial;
}

@media (max-width: 980px) {
  .proof-soft-link {
    grid-column: auto;
    text-align: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  /* Iris mobile type normalization: use the Section 2 title scale everywhere. */
  .section-heading,
  .section-heading:not(.center),
  .sticky-heading {
    text-align: center;
    justify-items: center;
    margin-inline: auto;
    margin-bottom: 2rem;
  }

  .section-heading p,
  .section-heading:not(.center) p,
  .sticky-heading p {
    margin-inline: auto;
    max-width: 34rem;
  }

  .section h2,
  .final-panel h2,
  .contact-section h2 {
    max-width: 12.5ch;
    margin-inline: auto;
    font-size: clamp(2rem, 10vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-align: center;
  }

  .risk-card h3,
  .service-card h3,
  .timeline h3,
  .tier-card h3,
  .faq-list summary {
    font-size: clamp(1.22rem, 5.8vw, 1.45rem);
    line-height: 1.18;
    letter-spacing: -0.025em;
  }

  /* Iris mobile hero pressure card: the bullets become one contained card. */
  .hero-v2 .hero-pain-bullets {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 24px;
    padding: 14px;
    border: 1px solid rgba(167, 139, 250, 0.24);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.14), rgba(255, 255, 255, 0.035));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.30);
    gap: 10px;
  }

  .hero-v2 .hero-pain-bullets li {
    grid-template-columns: 14px 1fr;
    gap: 10px;
    align-items: start;
    padding: 11px 12px;
    border: 1px solid rgba(248, 250, 252, 0.08);
    border-radius: 16px;
    background: rgba(5, 5, 7, 0.30);
    text-align: left;
  }

  .hero-v2 .hero-pain-bullets li span:last-child {
    text-align: left;
  }

  .hero-v2 .bullet-mark {
    margin-top: 8px;
  }
}

@media (max-width: 760px) {
  /* Iris Section 1 match pass: make hero typography behave like Section 2. */
  .hero-v2 .hero-copy,
  .hero-v2 .eyebrow,
  .hero-v2 .hero-pain-h1 {
    text-align: center;
  }

  .hero-v2 .eyebrow {
    margin-inline: auto;
    margin-bottom: 14px;
  }

  .hero-v2 .hero-pain-h1 {
    max-width: 12.5ch;
    margin: 0 auto 22px;
    font-size: clamp(2rem, 10vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .hero-v2 .hero-pain-bullets {
    width: min(100%, 380px);
    max-width: 86vw;
    justify-content: stretch;
    justify-items: stretch;
  }

  .hero-v2 .hero-pain-bullets li {
    width: 100%;
    justify-content: stretch;
    justify-items: start;
    text-align: left !important;
  }

  .hero-v2 .hero-pain-bullets li span:last-child {
    display: block;
    width: 100%;
    text-align: left !important;
  }

  .hero-v2 .hero-answer {
    width: min(100%, 380px);
    max-width: 86vw;
    margin: 0 auto 18px;
    padding: 16px;
    border: 1px solid rgba(167, 139, 250, 0.24);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.30);
    text-align: left !important;
    align-items: start;
  }

  .hero-v2 .hero-answer .eyebrow-soft,
  .hero-v2 .hero-answer-h2,
  .hero-v2 .hero-lede {
    text-align: left !important;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-v2 .hero-answer-h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 6.6vw, 1.9rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
  }

  .hero-v2 .hero-lede {
    font-size: 14.5px;
    line-height: 1.55;
  }
}

/* ============================================================ */
/* IRIS HEADER SYSTEM PATCH                                     */
/* True section headers follow Section 2. Card heads stay calm. */
/* ============================================================ */
h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading {
  width: 100%;
  max-width: 760px;
  gap: 1rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.section-heading h2,
.final-panel h2,
.contact-section .section-heading h2 {
  max-width: 12.5ch;
  font-size: clamp(2.2rem, 4vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading.center h2,
.section-heading.center p,
.final-panel h2,
.final-panel p,
.contact-section .section-heading h2,
.contact-section .section-heading p {
  margin-inline: auto;
}

.section-heading p,
.final-panel p,
.contact-section .section-heading p {
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.risk-card h3,
.service-card h3,
.timeline h3,
.tier-card h3,
.bridge-callout h3 {
  max-width: none;
  font-size: clamp(1.25rem, 1.75vw, 1.65rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.hero-v2 .hero-answer {
  border-top: 0;
  border: 1px solid rgba(167, 139, 250, 0.22);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.070), rgba(255, 255, 255, 0.025));
  padding: clamp(1rem, 2vw, 1.25rem);
  text-align: left !important;
  justify-items: start;
  align-items: start;
}

.hero-v2 .hero-answer .eyebrow-soft,
.hero-v2 .hero-answer-h2,
.hero-v2 .hero-lede {
  text-align: left !important;
  margin-inline: 0;
}

.hero-v2 .hero-answer-h2 {
  max-width: none;
  font-size: clamp(1.55rem, 2.25vw, 2.1rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.final-panel {
  text-align: center;
  justify-items: center;
}

@media (max-width: 760px) {
  .section-heading,
  .section-heading:not(.center),
  .sticky-heading,
  .final-panel,
  .contact-section .section-heading {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
    justify-items: center;
  }

  .section-heading h2,
  .final-panel h2,
  .contact-section .section-heading h2,
  .hero-v2 .hero-pain-h1 {
    max-width: 12.5ch;
    margin-inline: auto;
    font-size: clamp(2rem, 10vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-align: center;
  }

  .section-heading p,
  .final-panel p,
  .contact-section .section-heading p {
    max-width: 34rem;
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }

  .hero-v2 .hero-answer {
    width: min(100%, 380px);
    max-width: 86vw;
    margin-inline: auto;
  }

  .hero.section {
    padding-top: 2.75rem;
    padding-bottom: 3rem;
  }

  .hero-v2 .hero-pain-h1 {
    margin-bottom: 18px;
  }

  .hero-v2 .hero-pain-bullets {
    margin-bottom: 18px;
    padding: 12px;
    gap: 8px;
  }

  .hero-v2 .hero-pain-bullets li {
    padding: 10px 11px;
  }

  .hero-v2 .hero-mobile-portrait {
    margin-top: 22px;
    margin-bottom: 22px;
  }

  .hero-v2 .hero-mobile-portrait-caption {
    margin-bottom: 18px;
  }

  .hero-v2 .hero-answer {
    margin-bottom: 14px;
    padding: 14px;
  }

  #risk,
  #process,
  .final-cta {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #pricing,
  .contact-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .service-card,
  .risk-card,
  .timeline article {
    padding: 1.1rem;
  }

  .tier-card {
    padding: 1.2rem;
  }

  .bridge-callout {
    padding: 1.15rem;
    gap: 1rem;
  }

  .services-cta-row {
    margin-top: 1.75rem;
  }

  .faq-section {
    padding-top: 3.1rem;
    padding-bottom: 3.1rem;
  }

  .final-panel {
    padding: 1.35rem;
  }
}

/* ============================================================ */
/* DESKTOP HEADER + SPACING NORMALIZATION PATCH                 */
/* Keep Section 2 editorial/sticky. Normalize standard sections. */
/* ============================================================ */
@media (min-width: 761px) {
  .section {
    padding-top: clamp(4rem, 7vw, 6rem);
    padding-bottom: clamp(4rem, 7vw, 6rem);
  }

  .hero.section {
    padding-top: clamp(3rem, 5vw, 4.5rem);
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
  }

  .section-heading {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  }

  .section:not(.proof-section) > .container > .section-heading,
  .contact-section .section-heading {
    margin-inline: auto;
    text-align: center;
    justify-items: center;
  }

  .section:not(.proof-section) > .container > .section-heading h2,
  .section:not(.proof-section) > .container > .section-heading p,
  .contact-section .section-heading h2,
  .contact-section .section-heading p {
    margin-inline: auto;
  }

  .service-grid,
  .pricing-grid,
  .card-grid.four,
  .timeline {
    gap: clamp(1rem, 2vw, 1.25rem);
  }

  .service-card,
  .risk-card,
  .timeline article {
    padding: clamp(1.2rem, 2vw, 1.45rem);
  }

  .tier-card {
    padding: clamp(1.25rem, 2vw, 1.55rem);
  }

  .tier-card.featured {
    transform: translateY(-4px);
  }

  .hero-v2 .hero-answer {
    max-width: 620px;
    padding: clamp(1rem, 1.6vw, 1.2rem);
  }

  .faq-section {
    padding-top: clamp(3.75rem, 6vw, 5.25rem);
    padding-bottom: clamp(3.75rem, 6vw, 5.25rem);
  }

  .final-cta {
    padding-top: clamp(4rem, 6vw, 5.5rem);
    padding-bottom: clamp(4rem, 6vw, 5.5rem);
  }
}

/* ============================================================ */
/* DESKTOP SECTION 1 HERO ALIGNMENT PATCH                       */
/* Center header copy. Keep bullet copy left inside a card.      */
/* ============================================================ */
@media (min-width: 761px) {
  .hero-v2 .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero-v2 .eyebrow,
  .hero-v2 .hero-pain-h1 {
    text-align: center;
    margin-inline: auto;
  }

  .hero-v2 .hero-pain-h1 {
    max-width: 12.5ch;
  }

  .hero-v2 .hero-pain-bullets {
    width: min(100%, 620px);
    max-width: 620px;
    margin: 0 auto;
    padding: 1rem;
    border: 1px solid rgba(167, 139, 250, 0.22);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.070), rgba(255, 255, 255, 0.025));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
    text-align: left;
    justify-content: stretch;
  }

  .hero-v2 .hero-pain-bullets li {
    width: 100%;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    justify-content: stretch;
    text-align: left;
    padding: 0.8rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 16px;
    background: rgba(5, 5, 7, 0.28);
  }

  .hero-v2 .hero-pain-bullets li span:last-child {
    text-align: left;
  }

  .hero-v2 .hero-answer {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .hero-v2 .cta-row,
  .hero-v2 .trust-strip {
    justify-content: center;
  }
}

/* ============================================================ */
/* RISK ROUTER CARD EVENING PATCH                               */
/* Equalize card rhythm on desktop and mobile slider states.     */
/* ============================================================ */
.card-grid.four.mobile-slider {
  align-items: stretch;
}

.risk-card {
  height: 100%;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  align-content: stretch;
}

.risk-card > p:not(.trigger-line) {
  align-self: start;
}

.risk-toggle,
.risk-card .pulled-service {
  align-self: end;
}

@media (min-width: 761px) {
  #risk .card-grid.four {
    align-items: stretch;
  }

  #risk .risk-card {
    min-height: 520px;
  }

  #risk .risk-card .pulled-service {
    display: grid !important;
    grid-template-rows: auto auto 1fr auto;
    min-height: 230px;
  }

  #risk .pulled-service p:not(.pulled-label) {
    align-self: start;
  }

  #risk .pulled-cta {
    align-self: end;
  }
}

@media (max-width: 760px) {
  #risk .mobile-slider {
    align-items: stretch;
  }

  #risk .risk-card {
    min-height: 375px;
  }

  #risk .risk-card.is-expanded {
    min-height: 610px;
  }

  #risk .risk-toggle {
    margin-top: auto;
  }
}

/* ============================================================ */
/* RISK ROUTER INNER PANEL PATCH                                */
/* Solid borders, matched heights, consistent CTA placement.     */
/* ============================================================ */
.pulled-service {
  border-style: solid;
}

@media (min-width: 761px) {
  #risk .risk-card .pulled-service {
    width: 100%;
    min-height: 365px;
    border: 1px solid rgba(167, 139, 250, 0.34) !important;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.105), rgba(10, 13, 24, 0.34));
    padding: 1.25rem !important;
    margin-top: 1rem !important;
  }

  #risk .pulled-label {
    min-height: 2.4em;
  }

  #risk .pulled-service h4 {
    min-height: 3.9em;
    display: flex;
    align-items: flex-start;
  }

  #risk .pulled-service p:not(.pulled-label) {
    min-height: 9.5em;
    margin-bottom: 1rem;
  }

  #risk .pulled-cta {
    min-height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  #risk .risk-card .pulled-service {
    border: 1px solid rgba(167, 139, 250, 0.34) !important;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.105), rgba(10, 13, 24, 0.34));
    padding: 1rem !important;
  }
}

/* ============================================================ */
/* FINAL CTA SCALE PATCH                                        */
/* Long closing CTA copy should not read as a second hero.       */
/* ============================================================ */
.final-panel .eyebrow {
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  letter-spacing: 0.13em;
}

.final-panel h2 {
  max-width: 20ch;
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

@media (max-width: 760px) {
  .final-panel .eyebrow {
    font-size: 0.7rem;
    line-height: 1.45;
  }

  .final-panel h2 {
    max-width: 15ch;
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.08;
  }
}

/* ============================================================ */
/* TARGETED SPACING TIGHTENING PATCH                            */
/* Keep global rhythm. Reduce only the bulky local areas.        */
/* ============================================================ */
@media (min-width: 761px) {
  .hero-v2 .hero-grid-v2 {
    gap: clamp(1.8rem, 4vw, 3.5rem) !important;
  }

  .hero-v2 .hero-copy {
    gap: 1.05rem;
  }

  .hero-v2 .hero-pain-bullets {
    padding: 0.85rem;
    gap: 0.65rem;
  }

  .hero-v2 .hero-pain-bullets li {
    padding: 0.68rem 0.78rem;
  }

  .hero-v2 .hero-answer {
    padding: 0.95rem 1rem;
  }

  #risk .risk-card .pulled-service {
    min-height: 330px;
    padding: 1.08rem !important;
    margin-top: 0.85rem !important;
  }

  #risk .pulled-service h4 {
    min-height: 3.35em;
  }

  #risk .pulled-service p:not(.pulled-label) {
    min-height: 8.4em;
    margin-bottom: 0.85rem;
  }
}

@media (max-width: 760px) {
  .hero-v2 .hero-pain-h1 {
    margin-bottom: 14px;
  }

  .hero-v2 .hero-pain-bullets {
    margin-bottom: 14px;
    padding: 10px;
    gap: 7px;
  }

  .hero-v2 .hero-pain-bullets li {
    padding: 9px 10px;
  }

  .hero-v2 .hero-mobile-portrait {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .hero-v2 .hero-mobile-portrait-caption {
    margin-bottom: 14px;
  }

  .hero-v2 .hero-answer {
    margin-bottom: 12px;
    padding: 12px;
  }

  #risk .risk-card.is-expanded {
    min-height: 560px;
  }

  #risk .risk-card .pulled-service {
    padding: 0.9rem !important;
  }

  .contact-section {
    padding-top: 3.35rem;
    padding-bottom: 3.35rem;
  }
}

.form-feedback {
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}
.form-success {
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: #6ee7b7;
}
.form-error {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fca5a5;
}
