:root {
    /* Surfaces */
    --bg:        #FAFAF9;
    --bg-2:      #F4F4F2;
    --bg-deep:   #EFEFEC;
    --surface:   #FFFFFF;
    --dark:      #0A0A0A;
    --dark-2:    #141414;

    /* Text */
    --ink:       #0A0A0A;
    --ink-2:     #262626;
    --muted:     #525252;
    --mute-2:    #737373;
    --mute-3:    #A3A3A3;
    --on-dark:   #FAFAF9;
    --on-dark-mute: #A3A3A3;

    /* Lines */
    --line:      #E5E5E5;
    --line-2:    #D4D4D4;
    --line-dark: #262626;

    /* Accent */
    --accent:      #0E3D2E;
    --accent-2:    #155E47;
    --accent-3:    #E4EEEA;
    --accent-soft: rgba(14, 61, 46, 0.06);

    /* Semantic */
    --success:   #15803D;
    --warning:   #B45309;
    --error:     #B91C1C;

    --radius:    6px;
    --radius-lg: 10px;
    --section-y:       clamp(120px, 10vw, 160px);
    --section-y-tight: clamp(80px, 7vw, 104px);
    --shadow-sm: 0 1px 0 rgba(10,10,10,.04), 0 1px 2px rgba(10,10,10,.06);
    --shadow-md: 0 1px 0 rgba(10,10,10,.04), 0 12px 24px -10px rgba(10,10,10,.08);
    --shadow-lg: 0 1px 0 rgba(10,10,10,.04), 0 30px 60px -24px rgba(10,10,10,.15);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: auto; }
  body {
    margin: 0; padding: 0;
    font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    font-size: 16px; line-height: 1.5;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "ss01", "ss02", "cv11";
    min-height: 100dvh;
  }
  .mono { font-family: "Geist", sans-serif; font-feature-settings: "zero", "ss01"; }

  ::selection { background: var(--accent); color: var(--bg); }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; }

  /* =========== LAYOUT =========== */
  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .wrap-tight { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
  .wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

  /* =========== NAV (LEGACY, NON RENDU) ===========
     Plus aucune page n'emet de <header class="nav"> : le bandeau est injecte
     par site.js sous la forme .sn-nav et style dans brand/site.css, seule
     source de verite. Ces regles ne sont conservees que comme filet de
     securite. Si un header code en dur revenait, il devrait etre PLEINE
     LARGEUR (pas de .wrap autour de .nav-inner), sinon le logo se recentre et
     se decolle du bord gauche de l'ecran. */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250, 250, 249, 0.85);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, background .25s ease;
  }
  .nav.scrolled { border-bottom-color: var(--line); }
  .nav-inner {
    /* 1fr auto 1fr : les liens sont centres sur le BANDEAU, et non sur la
       colonne du milieu. Avec "auto 1fr auto", la largeur du bloc de droite
       (bouton + toggle + EN/FR) decalait visuellement les liens vers la droite. */
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    height: 64px; gap: 20px;
  }
  .brand {
    display: inline-flex; align-items: baseline; gap: 0;
    font-size: 30px; font-weight: 600; letter-spacing: -0.020em;
    color: var(--ink);
    line-height: 1;
    justify-self: start;
    margin-left: -14px;
  }
  .brand-v {
    height: 34px;
    width: 21px; /* viewBox 48:78 × 34px = 20.9 */
    flex-shrink: 0;
    color: var(--accent);
    margin-right: -2px;
    transform: translateY(3px);
    transition: color .25s ease;
  }
  .brand:hover .brand-v { color: var(--ink); }
  .nav-links {
    display: flex; align-items: center; justify-content: center; gap: 32px;
    font-size: 15.5px; color: var(--ink-2); font-weight: 400;
  }
  .nav-links a {
    color: var(--ink-2);
    transition: color .15s ease;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-right {
    display: flex; align-items: center; gap: 12px;
    justify-self: end;
  }
  .nav-right .sign-in {
    font-size: 14px; color: var(--ink-2); padding: 8px 12px;
  }
  .nav-right .sign-in:hover { color: var(--ink); }
  .nav-lang {
    display: inline-flex; align-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    font-family: "Geist", sans-serif;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--muted);
    background: var(--bg);
  }
  .nav-lang button {
    appearance: none; border: 0; background: transparent;
    font: inherit; color: inherit;
    padding: 7px 11px; cursor: pointer;
    transition: color .15s ease, background .15s ease;
  }
  .nav-lang button:hover { color: var(--ink); }
  .nav-lang button.active { background: var(--ink); color: var(--bg); }
  .bulletin-hook {
    display: inline-flex; align-items: center;
    font-size: 13px; font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: color .18s ease;
    white-space: nowrap;
  }
  .bulletin-hook:hover { color: var(--accent-2); text-decoration: underline; }
  .bulletin-hook .bh-pip { display: none; }

  /* =========== BUTTONS =========== */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
    cursor: pointer; border: 1px solid transparent;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .15s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--ink); color: var(--bg);
    border-color: var(--ink);
  }
  .btn-primary:hover { background: var(--accent); border-color: var(--accent); }
  .btn-primary:active { transform: translateY(1px); }
  .btn-secondary {
    background: transparent; color: var(--ink-2);
    border-color: var(--line-2);
  }
  .btn-secondary:hover { background: var(--surface); border-color: var(--ink-2); color: var(--ink); }
  .btn-large { padding: 14px 22px; font-size: 15px; border-radius: var(--radius); }
  .btn .arrow {
    display: inline-block;
    transition: transform .2s ease;
  }
  .btn:hover .arrow { transform: translateX(3px); }

  /* =========== HERO =========== */
  .hero {
    padding: 80px 0 96px;
    position: relative;
    overflow: hidden;
  }
  .hero-eyebrow {
    display: inline-block;
    font-family: "Geist", sans-serif;
    font-size: 11px; font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.04em;
    margin-bottom: 28px;
  }
  @keyframes ctaBreathe {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50%       { opacity: 0.65; transform: translateX(-50%) scale(1.08); }
  }
  @keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(2); opacity: 0; }
  }

  .hero-h1 {
    font-size: clamp(44px, 6.4vw, 80px);
    line-height: 1.02;
    letter-spacing: -0.028em;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 24px;
    max-width: 14ch;
  }
  .hero-h1 .accent {
    color: var(--accent);
    position: relative;
  }
  .hero-h1 .accent:last-child::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 100%; height: 2px;
    background: var(--accent);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.22, 0.72, 0.2, 1) 0.9s,
                opacity 0.3s ease 0.9s;
  }
  .hero-h1.reveal .accent:last-child::after {
    opacity: 0.5;
    transform: scaleX(1);
  }

  /* =========== HERO CTA + TRUST SPACING =========== */
  .hero-sub {
    font-size: clamp(17px, 1.6vw, 19px);
    line-height: 1.55;
    color: var(--muted);
    max-width: 56ch;
    margin: 0 0 36px;
    font-weight: 400;
  }
  .hero-ctas {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 48px;
  }
  .hero-trust {
    display: flex; align-items: center; gap: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    margin-top: 0;
  }
  .hero-trust b { color: var(--ink); font-weight: 500; }
  .hero-trust .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--mute-3); }

  /* =========== HERO AMBIENT ORB (brand palette only) =========== */
  /* Two-column hero: copy left, living brand orb right. The orb is the
     Uiverse "liquid metal" element, recolored strictly to Veille greens
     and stripped of its hue-rotate (which would drift off-brand). */
  .hero .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
  }
  .hero-copy { min-width: 0; }
  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
  }
  /* Soft ambient green halo so the orb sits on the page and fills the space */
  .hero-visual::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 340px; height: 340px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 94, 71, 0.12), rgba(14, 61, 46, 0) 68%);
    pointer-events: none;
    z-index: 0;
  }
  .veille-orb {
    --c-one: #155E47;                    /* accent-2, molten top */
    --c-two: #0E3D2E;                    /* accent, molten bottom */
    --c-rim: #E4EEEA;                    /* accent-3, pale rim highlight */
    --c-glow: rgba(21, 94, 71, 0.45);    /* accent-2 @ 45% */
    --c-glow-deep: rgba(14, 61, 46, 0.45); /* accent @ 45% */
    --c-faint: rgba(21, 94, 71, 0.25);   /* accent-2 @ 25% */
    --t: 2s;
    --size: 2.3;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    transform: scale(var(--size));
    box-shadow: 0 0 25px 0 var(--c-glow), 0 20px 50px 0 var(--c-glow-deep);
  }
  .veille-orb::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100px; height: 100px;
    border-radius: 50%;
    border-top: solid 1px var(--c-rim);
    border-bottom: solid 1px var(--c-two);
    background: linear-gradient(180deg, var(--c-faint), var(--c-glow-deep));
    box-shadow: inset 0 10px 10px 0 var(--c-glow), inset 0 -10px 10px 0 var(--c-glow-deep);
  }
  .veille-orb__body {
    width: 100px; height: 100px;
    background: linear-gradient(180deg, var(--c-one) 30%, var(--c-two) 70%);
    -webkit-mask: url(#veilleOrbClip);
    mask: url(#veilleOrbClip);
  }
  .veille-orb svg { position: absolute; }
  .veille-orb svg #veilleOrbClip {
    filter: contrast(15);
    animation: veilleOrbRound calc(var(--t) / 2) linear infinite;
  }
  .veille-orb svg #veilleOrbClip polygon { filter: blur(7px); }
  .veille-orb svg #veilleOrbClip polygon:nth-child(1) { transform-origin: 75% 25%; transform: rotate(90deg); }
  .veille-orb svg #veilleOrbClip polygon:nth-child(2) { transform-origin: 50% 50%; animation: veilleOrbRot var(--t) linear infinite reverse; }
  .veille-orb svg #veilleOrbClip polygon:nth-child(3) { transform-origin: 50% 60%; animation: veilleOrbRot var(--t) linear infinite; animation-delay: calc(var(--t) / -3); }
  .veille-orb svg #veilleOrbClip polygon:nth-child(4) { transform-origin: 40% 40%; animation: veilleOrbRot var(--t) linear infinite reverse; }
  .veille-orb svg #veilleOrbClip polygon:nth-child(5) { transform-origin: 40% 40%; animation: veilleOrbRot var(--t) linear infinite reverse; animation-delay: calc(var(--t) / -2); }
  .veille-orb svg #veilleOrbClip polygon:nth-child(6) { transform-origin: 60% 40%; animation: veilleOrbRot var(--t) linear infinite; }
  .veille-orb svg #veilleOrbClip polygon:nth-child(7) { transform-origin: 60% 40%; animation: veilleOrbRot var(--t) linear infinite; animation-delay: calc(var(--t) / -1.5); }
  @keyframes veilleOrbRot { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
  @keyframes veilleOrbRound {
    0% { filter: contrast(15); }
    20% { filter: contrast(3); }
    40% { filter: contrast(3); }
    60% { filter: contrast(15); }
    100% { filter: contrast(15); }
  }
  @media (max-width: 900px) {
    .hero .wrap { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    .veille-orb svg #veilleOrbClip,
    .veille-orb svg #veilleOrbClip polygon { animation: none !important; }
  }

  /* =========== HERO VIDEO BACKGROUND =========== */
  /* Home hero only. Replaces the ambient orb with a slow looping clip.
     The scrim carries legibility in both themes; the copy stays left so
     the right side of the frame (flag, building) reads clean. */
  .hero--video {
    overflow: hidden !important;
    isolation: isolate;
  }
  .hero--video .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 50%;
    z-index: 0;
    pointer-events: none;
    filter: saturate(0.82) contrast(1.02);
  }
  .hero--video .hero-video-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(250,250,249,0.94) 0%, rgba(250,250,249,0.80) 38%, rgba(250,250,249,0.30) 66%, rgba(250,250,249,0.08) 100%),
      linear-gradient(180deg, rgba(250,250,249,0.55) 0%, rgba(250,250,249,0.10) 38%, rgba(250,250,249,0.62) 100%);
  }
  html.dark .hero--video .hero-video-scrim {
    background:
      linear-gradient(90deg, rgba(8,36,27,0.94) 0%, rgba(8,36,27,0.82) 38%, rgba(8,36,27,0.42) 66%, rgba(8,36,27,0.16) 100%),
      linear-gradient(180deg, rgba(8,36,27,0.60) 0%, rgba(8,36,27,0.18) 38%, rgba(8,36,27,0.70) 100%);
  }
  .hero--video .wrap {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
  }
  .hero--video .hero-copy { max-width: 660px; }

  /* Deux sources : 16:9 au-dessus de 900px, 9:16 en dessous. La vidéo masquée
     n'est jamais lue, donc jamais telechargee (preload="none"). */
  .hero--video .hero-video--tall { display: none; }

  @media (max-width: 900px) {
    .hero--video .hero-video--wide { display: none; }
    .hero--video .hero-video--tall { display: block; object-position: 50% 50%; }
    .hero--video .hero-video-scrim {
      background: linear-gradient(180deg, rgba(250,250,249,0.92) 0%, rgba(250,250,249,0.74) 46%, rgba(250,250,249,0.92) 100%);
    }
    html.dark .hero--video .hero-video-scrim {
      background: linear-gradient(180deg, rgba(8,36,27,0.90) 0%, rgba(8,36,27,0.78) 46%, rgba(8,36,27,0.92) 100%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero--video .hero-video { display: none; }
    .hero--video { background: linear-gradient(160deg, var(--bg) 0%, var(--accent-3, #E4EEEA) 100%); }
  }

  /* =========== SECTION SCAFFOLD =========== */
  .section { padding: var(--section-y) 0; }
  .section-dark {
    background: var(--dark);
    color: var(--on-dark);
  }
  .section-light { background: var(--bg-2); }

  .section-eyebrow {
    display: inline-block;
    font-family: "Geist", sans-serif;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.14em; text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .section-dark .section-eyebrow { color: var(--accent-on-dark); }

  .section-h2 {
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.024em;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 20px;
    max-width: 22ch;
  }
  .section-dark .section-h2 { color: var(--on-dark); }

  .section-sub {
    font-size: 18px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 60ch;
    margin: 0;
  }
  .section-dark .section-sub { color: var(--on-dark-mute); }

  .section-head {
    margin-bottom: 64px;
    max-width: 720px;
  }

  /* =========== PRICING =========== */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 64px;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
  }
  .price-card {
    background: var(--surface);
    padding: 44px 40px 40px;
    display: flex; flex-direction: column;
    position: relative;
    border-right: 1px solid var(--line);
  }
  .price-card:last-child { border-right: none; }
  .price-card.featured {
    background: var(--dark);
  }
  .price-card.featured + .price-card { border-left: none; }
  .price-card .tier {
    font-family: "Geist", sans-serif;
    font-size: 10.5px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--mute-2);
    margin-bottom: 22px;
  }
  .price-card.featured .tier { color: var(--accent-on-dark); }
  .price-card .price {
    display: flex; align-items: baseline; gap: 8px;
    margin-bottom: 10px;
  }
  .price-card .price .num {
    font-size: clamp(48px, 4.5vw, 64px);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .price-card.featured .price .num { color: var(--on-dark); }
  .price-card .price .per {
    font-size: 14px; color: var(--mute-2); font-weight: 400;
  }
  .price-card.featured .price .per { color: rgba(250,250,249,0.35); }
  .price-card .price-context {
    font-size: 12px; color: var(--mute-2); line-height: 1.5;
    margin: 0 0 22px;
    padding: 9px 13px;
    background: var(--bg-2);
    border-radius: 6px;
    border-left: 2px solid var(--line-2);
    font-family: "Geist", sans-serif;
  }
  .price-card.featured .price-context {
    background: rgba(255,255,255,0.05);
    border-left-color: var(--accent-on-dark);
    color: rgba(250,250,249,0.4);
  }
  .price-card .price-divider {
    height: 1px; background: var(--line); margin: 0 0 22px;
  }
  .price-card.featured .price-divider { background: rgba(255,255,255,0.08); }
  .price-card .desc {
    font-size: 14px; color: var(--muted); line-height: 1.6;
    margin: 0 0 28px;
  }
  .price-card.featured .desc { color: rgba(250,250,249,0.45); }
  .price-card .price-list {
    list-style: none; padding: 0; margin: 0 0 36px;
    flex: 1;
  }
  .price-card .price-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: var(--ink-2); line-height: 1.5;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .price-card .price-list li:last-child { border-bottom: none; }
  .price-card.featured .price-list li {
    color: rgba(250,250,249,0.75);
    border-color: rgba(255,255,255,0.07);
  }
  .price-card .price-list li::before {
    content: '';
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0; margin-top: 8px;
  }
  .price-card.featured .price-list li::before { background: var(--accent-on-dark); }
  .price-card .price-cta {
    width: 100%; justify-content: center;
    border-radius: 10px; padding: 14px;
    font-size: 15px;
  }
  .price-card.featured .btn-primary {
    background: var(--on-dark); color: var(--dark);
    border-color: var(--on-dark);
  }
  .price-card.featured .btn-primary:hover {
    background: var(--accent-3); color: var(--accent);
    border-color: var(--accent-3);
  }

  /* Pricing improvements */
  .pricing-alert {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    background: var(--accent-3);
    border: 1px solid rgba(14, 61, 46, 0.18);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    font-size: 13.5px;
    color: var(--ink-2);
    line-height: 1.45;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.72, 0.2, 1);
  }
  .pricing-alert.in { opacity: 1; transform: none; }
  .pricing-alert-pip {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    position: relative;
  }
  .pricing-alert-pip::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0.4;
    animation: pulse 2s ease-out infinite;
  }
  .pricing-alert strong { color: var(--accent); font-weight: 600; }
  .pricing-alert-link {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(14,61,46,0.3);
    text-underline-offset: 2px;
    white-space: nowrap;
  }
  .pricing-alert-link:hover { text-decoration-color: var(--accent); }

  .price-context {
    font-family: "Geist", sans-serif;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.02em;
    margin: 2px 0 18px;
    padding: 8px 12px;
    background: var(--bg);
    border-radius: var(--radius);
    line-height: 1.55;
    border-left: 2px solid var(--accent-3);
  }

  .pricing-faq {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 0.72, 0.2, 1);
    transition-delay: 0.1s;
  }
  .pricing-faq.in { opacity: 1; transform: none; }
  .pricing-faq-label {
    font-family: "Geist", sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mute-2);
    font-weight: 500;
    margin-bottom: 24px;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .faq-item {
    padding: 22px 26px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    background: var(--surface);
    transition: background 0.15s ease;
  }
  .faq-item:hover { background: var(--bg); }
  .faq-item:nth-child(even) { border-right: none; }
  .faq-item:nth-last-child(-n+2) { border-bottom: none; }
  .faq-q {
    font-family: "Geist", sans-serif;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.06em;
    font-weight: 500;
    margin-bottom: 9px;
    line-height: 1.4;
  }
  .faq-a {
    font-size: 13.5px;
    color: var(--ink-2);
    line-height: 1.58;
    margin: 0;
  }
  .faq-a b { color: var(--ink); font-weight: 500; }
  @media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
    .faq-item { border-right: none; }
    .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
    .faq-item:last-child { border-bottom: none; }
    .pricing-alert { flex-wrap: wrap; }
    .pricing-alert-link { margin-left: 0; }
  }

  /* =========== PLATFORM FEATURES =========== */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 64px;
  }
  .feature-card {
    background: var(--surface);
    padding: 40px 36px;
    display: flex; flex-direction: column;
    transition: background 0.15s ease;
  }
  .feature-card:hover { background: var(--bg); }
  .feature-num {
    font-family: "Geist", sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
  }
  .feature-title {
    font-size: 20px; font-weight: 600;
    letter-spacing: -0.018em; color: var(--ink);
    margin: 0 0 10px;
  }
  .feature-desc {
    font-size: 14.5px; line-height: 1.6;
    color: var(--muted); margin: 0; flex: 1;
  }
  .feature-stat {
    display: inline-flex; align-items: center;
    margin-top: 18px;
    font-size: 12px; font-weight: 500;
    color: var(--accent);
  }
  @media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
  }

  /* =========== MANIFESTO BAND =========== */
  .manifesto-band {
    background: var(--dark);
    padding: var(--section-y-tight) 0;
    position: relative;
    overflow: hidden;
  }
  .manifesto-band::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse at center, rgba(14,61,46,0.22), transparent 65%);
    pointer-events: none;
  }
  .manifesto-inner { position: relative; z-index: 1; text-align: center; }
  .manifesto-q {
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.6;
    letter-spacing: -0.012em;
    color: var(--on-dark);
    font-weight: 300;
    margin: 0 auto 28px;
    max-width: 68ch;
  }
  .manifesto-q::before { content: '\201C'; color: var(--accent-on-dark); font-weight: 400; margin-right: 2px; }
  .manifesto-q::after  { content: '\201D'; color: var(--accent-on-dark); font-weight: 400; margin-left: 2px; }
  .manifesto-attr {
    font-family: "Geist", sans-serif;
    font-size: 10.5px;
    color: var(--on-dark-mute);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .manifesto-attr::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--accent-on-dark);
    flex-shrink: 0;
  }
  .manifesto-band.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 0.72, 0.2, 1);
  }
  .manifesto-band.fade-in.in { opacity: 1; transform: none; }
  .manifesto-stats {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 36px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12.5px;
    color: var(--on-dark-mute);
  }
  .manifesto-stats b { color: var(--on-dark); font-weight: 600; }

  /* =========== WHY NOW TIMELINE =========== */
  .whynow { padding: var(--section-y-tight) 0; }
  .timeline { position: relative; margin-top: 64px; }
  .timeline-track {
    position: absolute;
    top: 7px; left: 0; right: 0;
    height: 2px;
    background: var(--line-2);
  }
  .timeline-track::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 42%;
    background: var(--accent);
  }
  .tl-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
  .tl-item { position: relative; padding-top: 30px; }
  .tl-dot {
    position: absolute;
    top: 0; left: 0;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--line-2);
    box-sizing: border-box;
  }
  .tl-item.past .tl-dot { border-color: var(--accent); background: var(--accent); }
  .tl-item.today .tl-dot {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(14, 61, 46, 0.14), 0 2px 12px rgba(14, 61, 46, 0.35);
  }
  .tl-date {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--mute-2);
    margin-bottom: 7px;
  }
  .tl-item.past .tl-date { color: var(--accent-2); }
  .tl-item.today .tl-date { color: var(--accent); }
  .tl-name {
    display: block;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: -0.008em;
    color: var(--ink);
    margin-bottom: 5px;
    line-height: 1.25;
  }
  .tl-here {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .tl-desc {
    display: block;
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5;
  }
  /* Desktop: align the three text bands (date / title / description) across
     all six columns via subgrid, so every description starts on the same line
     even when a title wraps to two lines (e.g. the EU AI Act milestone). */
  @media (min-width: 901px) {
    .tl-grid {
      grid-template-rows: auto auto auto;
      column-gap: 24px;
      row-gap: 0;
    }
    .tl-item {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 3;
      align-content: start;
    }
    /* "You are here" stays the small 11px marker, but sits on the same top line
       and baseline as the milestone titles instead of floating centered in the
       two-line title band. */
    .tl-here {
      align-self: start;
      position: relative;
      top: -2.5px;
    }
  }
  @media (max-width: 900px) {
    .timeline-track { display: none; }
    .tl-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
    .tl-item { padding-top: 0; padding-left: 28px; }
    .tl-dot { top: 2px; }
  }
  @media (max-width: 520px) {
    .tl-grid { grid-template-columns: 1fr; }
  }


  /* =========== CTA SECTION =========== */
  .cta-section {
    padding: var(--section-y) 0;
    text-align: center;
    background: var(--dark);
    color: var(--on-dark);
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 1200px; height: 800px;
    background: radial-gradient(ellipse at center, rgba(14, 61, 46, 0.4), transparent 60%);
    z-index: 0;
    pointer-events: none;
  }
  .cta-section > .wrap { position: relative; z-index: 1; }
  .cta-section h2 {
    font-size: clamp(40px, 5.5vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.024em;
    font-weight: 600;
    color: var(--on-dark);
    margin: 0 auto 24px;
    max-width: 22ch;
  }
  .cta-section .sub {
    font-size: 18px;
    color: var(--on-dark-mute);
    max-width: 56ch;
    margin: 0 auto 40px;
    line-height: 1.55;
  }
  .cta-section .ctas { display: inline-flex; gap: 12px; }
  .cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .cta-sep {
    width: 1px; height: 20px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
  }
  .cta-meta-item {
    font-size: 13px;
    color: var(--on-dark-mute);
  }
  .cta-meta-item b { color: var(--on-dark); font-weight: 500; }
  .cta-section .btn-primary {
    background: var(--bg); color: var(--ink); border-color: var(--bg);
  }
  .cta-section .btn-primary:hover {
    background: var(--accent); color: var(--bg); border-color: var(--accent);
  }
  .cta-section .btn-secondary {
    background: transparent; color: var(--on-dark); border-color: var(--line-dark);
  }
  .cta-section .btn-secondary:hover {
    background: var(--dark-2); border-color: var(--mute-2); color: var(--on-dark);
  }
  .cta-section .meta { display: none; }

  /* Shimmer text, transitions.dev adapted for dark bg */
  :root {
    --shimmer-dur: 2800ms;
    --shimmer-base: rgba(250, 250, 249, 0.60);
    --shimmer-highlight: #ffffff;
    --shimmer-band: 400%;
    --shimmer-ease: linear;
  }
  .t-shimmer {
    position: relative;
    display: inline-block;
    color: var(--shimmer-base);
  }
  .t-shimmer::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(
      90deg,
      transparent           0%,
      transparent          40%,
      var(--shimmer-highlight) 50%,
      transparent          60%,
      transparent         100%
    );
    background-size: var(--shimmer-band) 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: t-shimmer var(--shimmer-dur) var(--shimmer-ease) infinite;
  }
  @keyframes t-shimmer {
    0%   { background-position: 100% 0; }
    100% { background-position: 0% 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .t-shimmer::before { animation: none !important; }
  }

  /* Email capture */
  .cta-divider {
    display: flex; align-items: center; gap: 16px;
    margin: 36px auto 32px;
    max-width: 480px;
    color: var(--on-dark-mute); font-size: 12px; letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .cta-divider::before, .cta-divider::after {
    content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08);
  }
  .email-capture {
    display: flex; gap: 0;
    max-width: 480px; margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
  }
  .email-capture input {
    flex: 1; background: transparent;
    border: none; outline: none;
    padding: 13px 16px;
    font-family: "Geist", sans-serif;
    font-size: 14px; color: var(--on-dark);
    min-width: 0;
  }
  .email-capture input::placeholder { color: var(--on-dark-mute); }
  .email-capture button {
    background: var(--accent); color: #FAFAF9;
    border: none; cursor: pointer;
    padding: 13px 20px;
    font-family: "Geist", sans-serif;
    font-size: 14px; font-weight: 500;
    white-space: nowrap;
    transition: background .18s ease;
  }
  .email-capture button:hover { background: var(--accent-2); }
  .email-capture-note {
    font-size: 12px; color: var(--on-dark-mute);
    margin-top: 28px; text-align: center;
  }

  /* Page footer is injected by brand/site.js (.sn-footer), styles in site.css. */

  /* =========== FADE-IN =========== */
  .fade {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .8s ease, transform .8s cubic-bezier(0.2, 0.6, 0.2, 1);
  }
  .fade.in { opacity: 1; transform: none; }

  /* =========== MOTION ENHANCEMENTS =========== */

  /* Lenis smooth scroll baseline */
  html.lenis, html.lenis body { height: auto; }
  html.lenis, html.lenis-smooth { scroll-behavior: auto !important; }
  html.lenis-smooth iframe { pointer-events: none; }

  /* Hero word reveal, P18: blur on entrance */
  .hero-h1 { perspective: 800px; }
  .hero-h1 .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-right: 0.18em;
    line-height: 1.02;
  }
  .hero-h1 .word > span {
    display: inline-block;
    transform: translateY(105%);
    opacity: 0;
    filter: blur(6px);
    transition: transform 1.1s cubic-bezier(0.22, 0.72, 0.2, 1),
                opacity 0.75s ease,
                filter 0.9s ease;
    transition-delay: var(--d, 0ms);
    will-change: transform, opacity, filter;
  }
  .hero-h1.reveal .word > span {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }

  /* Hero secondary elements stagger, P1: spring bounce on eyebrow */
  .hero-eyebrow {
    opacity: 0;
    transform: scale(0.88) translateY(14px);
    transition: opacity 0.6s ease,
                transform 0.75s cubic-bezier(0.34, 1.45, 0.64, 1);
    transition-delay: 0ms;
  }
  .hero-h1.reveal ~ .hero-sub, .hero-eyebrow.in {
    opacity: 1; transform: none;
  }
  .hero-sub, .hero-ctas, .hero-trust {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 0.72, 0.2, 1);
  }
  .hero-h1.reveal ~ .hero-sub { transition-delay: 0.54s; opacity: 1; transform: none; }
  .hero-h1.reveal ~ .hero-ctas { transition-delay: 0.68s; opacity: 1; transform: none; }
  .hero-h1.reveal ~ .hero-trust { transition-delay: 0.82s; opacity: 1; transform: none; }

  /* Section eyebrow underline draw-in */
  .section-eyebrow {
    position: relative;
    padding-bottom: 6px;
  }
  .section-eyebrow::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 32px; height: 1.5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.9s cubic-bezier(0.22, 0.72, 0.2, 1);
    transition-delay: 0.25s;
  }
  .section-dark .section-eyebrow::after { background: var(--accent-on-dark); }
  .section-head.in .section-eyebrow::after { transform: scaleX(1); }

  /* =========== CINEMATIC REVEAL =========== */
  .cinematic-reveal {
    background: var(--dark);
    padding: clamp(100px, 9vw, 140px) 0 clamp(60px, 6vw, 100px);
    position: relative;
  }
  .cinematic-reveal::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse at center, rgba(14,61,46,0.28), transparent 65%);
    pointer-events: none;
    animation: ctaBreathe 9s ease-in-out infinite;
    /* glow stays within section, use clip-path not overflow:hidden */
    clip-path: inset(0);
  }
  .cinematic-inner {
    position: relative; z-index: 1;
    text-align: center;
  }
  .cinematic-label {
    font-family: "Geist", sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--accent-on-dark);
    margin: 0 0 20px;
    opacity: 0; transform: translateY(10px);
    transition: opacity .8s ease, transform .8s cubic-bezier(0.22,0.72,0.2,1);
  }
  .cinematic-reveal.in .cinematic-label { opacity: 1; transform: none; }
  .cinematic-h {
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.024em;
    font-weight: 600;
    color: var(--on-dark);
    margin: 0 auto 64px;
    max-width: 18ch;
    opacity: 0; transform: translateY(20px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.22,0.72,0.2,1);
    transition-delay: 0.12s;
  }
  .cinematic-reveal.in .cinematic-h { opacity: 1; transform: none; }
  .cinematic-vis {
    margin: 0 auto;
    max-width: 1140px;
    padding: 0 40px;
    will-change: transform;
    opacity: 0;
    transform: translateY(120px) scale(0.94);
    transition: opacity 1.6s cubic-bezier(0.16,1,0.3,1),
                transform 1.6s cubic-bezier(0.16,1,0.3,1);
    transition-delay: 0.32s;
    position: relative;
  }
  /* Glow under the frame */
  .cinematic-vis::before {
    content: '';
    position: absolute;
    bottom: -60px; left: 10%; right: 10%;
    height: 120px;
    background: radial-gradient(ellipse at center, rgba(14,61,46,0.55), transparent 70%);
    filter: blur(20px);
    z-index: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
    transition-delay: 0.8s;
  }
  .cinematic-reveal.in .cinematic-vis {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .cinematic-reveal.in .cinematic-vis::before { opacity: 1; }
  /* ===== Rainbow aura behind the dashboard frame (M2-chip style) =====
     Lives on a wrapper, not the frame, because the frame is overflow:hidden.
     Exact reference colours: orange TL, blue TR, pink BL, purple BR. */
  .cinematic-glow { position: relative; display: block; }
  .cinematic-glow::before,
  .cinematic-glow::after {
    content: '';
    position: absolute;
    inset: calc(var(--glow-size) * -1);
    background:
      radial-gradient(circle at 0 0, hsl(27deg 93% 60%), transparent),
      radial-gradient(circle at 100% 0, #00a6ff, transparent),
      radial-gradient(circle at 0 100%, #ff0056, transparent),
      radial-gradient(circle at 100% 100%, #6500ff, transparent);
    pointer-events: none;
  }
  /* crisp rainbow rim hugging the frame */
  .cinematic-glow::after {
    --glow-size: 3px;
    z-index: 0;
    border-radius: 17px;
  }
  /* soft blurred bloom that gently breathes */
  .cinematic-glow::before {
    --glow-size: 22px;
    z-index: 0;
    border-radius: 30px;
    filter: blur(26px);
    animation: cinemaGlowPulse 3s ease-in-out alternate infinite;
  }
  @keyframes cinemaGlowPulse {
    to { filter: blur(38px); transform: scale(1.02); }
  }
  @media (prefers-reduced-motion: reduce) {
    .cinematic-glow::before { animation: none; }
  }
  .cinematic-frame {
    background: #111;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    overflow: hidden;
    position: relative; z-index: 1;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.06),
      0 24px 70px -30px rgba(0,0,0,0.5);
    /* 3D tilt support */
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.22,0.72,0.2,1), box-shadow 0.4s ease;
  }
  .cinematic-chrome {
    height: 40px;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: center; padding: 0 16px; gap: 14px;
  }
  .cinematic-chrome .dots { display: flex; gap: 7px; }
  .cinematic-chrome .dots span {
    width: 12px; height: 12px; border-radius: 50%;
  }
  .cinematic-chrome .dots span:nth-child(1) { background: #ff5f57; }
  .cinematic-chrome .dots span:nth-child(2) { background: #febc2e; }
  .cinematic-chrome .dots span:nth-child(3) { background: #28c840; }
  .cinematic-chrome .url {
    flex: 1; background: rgba(255,255,255,0.06);
    height: 24px; border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.07);
    font-family: "Geist", sans-serif; font-size: 11.5px;
    color: rgba(255,255,255,0.35);
    padding: 0 12px; display: flex; align-items: center;
    max-width: 320px; margin: 0 auto;
  }
  .cinematic-stage {
    position: relative;
    height: calc(900px * 0.72);  /* 648px, shows full dashboard viewport */
    overflow: hidden;
    background: #f5f5f3;
  }
  .cinematic-stage iframe,
  .cinematic-stage img {
    width: 1440px;
    height: 900px;
    border: 0;
    transform: scale(0.72);
    transform-origin: top left;
    pointer-events: none;
    display: block;
    object-fit: cover;
    object-position: top left;
  }
  @media (max-width: 1024px) {
    .cinematic-stage { height: calc(900px * 0.58); }
    .cinematic-stage iframe,
    .cinematic-stage img { transform: scale(0.58); }
    .cinematic-vis { max-width: 100%; padding: 0 24px; }
  }
  @media (max-width: 680px) {
    .cinematic-vis { padding: 0 16px; }
    .cinematic-h { margin-bottom: 40px; }
    .cinematic-stage { height: auto; }
    .cinematic-stage iframe,
    .cinematic-stage img {
      width: 100%; height: auto;
      transform: none;
      object-fit: contain;
    }
  }

  /* =========== SCOPE BAND =========== */
  .trust-band {
    padding: var(--section-y-tight) 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-band .label {
    font-family: "Geist", sans-serif;
    font-size: 11px; color: var(--mute-2);
    letter-spacing: 0.14em; text-transform: uppercase;
    text-align: center; margin-bottom: 48px;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .trust-item {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    padding: 0 32px 0;
    border-right: 1px solid var(--line);
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22,0.72,0.2,1);
  }
  .trust-item:last-child { border-right: none; }
  .trust-grid.in .trust-item { opacity: 1; transform: none; }
  .trust-grid.in .trust-item:nth-child(1) { transition-delay: 0ms; }
  .trust-grid.in .trust-item:nth-child(2) { transition-delay: 90ms; }
  .trust-grid.in .trust-item:nth-child(3) { transition-delay: 180ms; }
  .trust-grid.in .trust-item:nth-child(4) { transition-delay: 270ms; }
  .trust-item .trust-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-soft);
    border-radius: 10px;
    margin-bottom: 16px;
    color: var(--accent);
  }
  .trust-item .num {
    font-size: clamp(36px, 3.2vw, 48px);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
  }
  .trust-item .lbl {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    max-width: 22ch;
  }
  .moat-callout {
    display: flex; align-items: flex-start; gap: 12px;
    margin-top: 22px; padding: 0;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,0.72,0.2,1);
    transition-delay: 0.22s;
  }
  .moat-callout.in { opacity: 1; transform: none; }
  .moat-icon {
    width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
    background: var(--accent);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='1.8'><rect x='2' y='8' width='12' height='7' rx='1.5'/><path d='M5 8V5a3 3 0 016 0v3'/></svg>") center/contain no-repeat;
  }
  .moat-callout p { font-size: 13.5px; color: var(--accent); line-height: 1.62; margin: 0; }
  .moat-callout strong { font-weight: 600; }

  /* =========== WHO IT'S FOR (WEDGE) =========== */
  .reg-overlap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 56px;
  }
  .reg-card {
    background: var(--surface);
    padding: 32px 30px;
    transition: background 0.15s ease;
  }
  .reg-card:hover { background: var(--bg); }
  .reg-tag {
    display: inline-block;
    font-family: "Geist", sans-serif;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .reg-name {
    font-size: 30px; font-weight: 600;
    letter-spacing: -0.02em; color: var(--ink);
    margin: 0 0 12px; line-height: 1;
  }
  .reg-desc {
    font-size: 13.5px; line-height: 1.6;
    color: var(--muted); margin: 0;
  }
  .reg-line {
    font-size: 16px; line-height: 1.6;
    color: var(--ink-2); margin: 28px 0 0;
    max-width: 72ch;
  }
  .reg-line strong { color: var(--accent); font-weight: 600; }
  .icp-segments {
    display: flex; flex-wrap: nowrap; gap: 12px;
    margin-top: 32px;
  }
  .icp-seg {
    display: inline-flex; align-items: center;
    padding: 11px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 13.5px; font-weight: 500;
    color: var(--ink-2);
    white-space: nowrap;
  }
  /* One row on desktop; below this width there is not enough room, so wrap */
  @media (max-width: 1240px) {
    .icp-segments { flex-wrap: wrap; }
  }
  @media (max-width: 768px) {
    .reg-overlap { grid-template-columns: 1fr; }
    .icp-seg { white-space: normal; }
  }

  /* =========== PRODUCT TEASERS =========== */
  .teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
  }
  .teaser-card {
    display: flex; flex-direction: column;
    padding: 32px 28px 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-decoration: none; color: inherit;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.85s ease,
                transform 0.85s cubic-bezier(0.22,0.72,0.2,1),
                border-color 0.2s ease,
                box-shadow 0.3s ease;
  }
  .teaser-grid.in .teaser-card { opacity: 1; transform: none; }
  .teaser-grid.in .teaser-card:nth-child(1) { transition-delay: 0ms; }
  .teaser-grid.in .teaser-card:nth-child(2) { transition-delay: 110ms; }
  .teaser-grid.in .teaser-card:nth-child(3) { transition-delay: 220ms; }
  .teaser-card:hover {
    border-color: var(--line-2);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
  }
  .teaser-grid.in .teaser-card:hover { transform: translateY(-5px); }
  .teaser-icon {
    width: 28px; height: 28px;
    color: var(--ink); margin-bottom: 20px;
  }
  .teaser-card h3 {
    font-size: 20px; font-weight: 600;
    color: var(--ink); margin: 0 0 10px;
    letter-spacing: -0.012em;
  }
  .teaser-card p {
    font-size: 14px; line-height: 1.6;
    color: var(--muted); margin: 0; flex: 1;
  }
  .teaser-link {
    display: inline-flex; align-items: center; gap: 4px;
    margin-top: 20px;
    font-size: 13px; font-weight: 500;
    color: var(--accent);
    transition: gap .2s ease;
  }
  .teaser-card:hover .teaser-link { gap: 8px; }
  /* Green dot that continuously orbits the border of the "Monitor" card.
     offset-path: inset(...round) makes it follow the card's rounded corners. */
  .teaser-card--orbit { position: relative; }
  .teaser-card--orbit .orbit-dot {
    position: absolute;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 9px 2px rgba(21, 94, 71, 0.85), 0 0 3px 1px rgba(14, 61, 46, 0.95);
    offset-path: inset(0 round var(--radius-lg));
    offset-distance: 0%;
    offset-anchor: 50% 50%;
    z-index: 3;
    pointer-events: none;
    animation: orbitBorder 6s linear infinite;
  }
  @keyframes orbitBorder {
    to { offset-distance: 100%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .teaser-card--orbit .orbit-dot { animation: none; }
  }

  /* =========== FRAMEWORK BADGES =========== */
  .fw-badges {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-top: 48px;
  }
  .fw-badge {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    flex: 1; min-width: 160px;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .fw-badge:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
  .fw-badge.fw-tier1 { border-color: rgba(14,61,46,0.2); background: var(--accent-soft); }
  .fw-juris {
    font-family: "Geist", sans-serif;
    font-size: 9px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--mute-2); white-space: nowrap; flex-shrink: 0;
  }
  .fw-tier1 .fw-juris { color: var(--accent); }
  .fw-name { font-size: 14px; font-weight: 600; color: var(--ink); flex: 1; letter-spacing: -0.008em; }
  .fw-status {
    font-family: "Geist", sans-serif;
    font-size: 9.5px; font-weight: 500;
    white-space: nowrap; letter-spacing: 0.04em;
  }
  .fw-status.active { color: var(--success); }
  .fw-status.pending { color: var(--warning); }
  .coverage-more {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 28px;
    font-size: 14px; font-weight: 500;
    color: var(--accent); text-decoration: none;
    transition: gap .2s ease;
  }
  .coverage-more:hover { gap: 10px; }
  .coverage-trust {
    margin-top: 22px;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--mute-2);
    max-width: 66ch;
  }
  .coverage-trust b { color: var(--ink-2); font-weight: 500; }

  /* =========== DASHBOARD MOCKUP =========== */
  .dash-m {
    display: grid;
    grid-template-columns: 180px 1fr;
    background: var(--surface);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    min-height: 480px;
    font-size: 12px;
  }
  .dash-m-sidebar {
    background: #0A0A0A;
    padding: 20px 0;
    border-right: 1px solid #1c1c1c;
  }
  .dash-m-brand {
    display: flex; align-items: center; gap: 6px;
    padding: 0 16px 20px;
    font-family: "Geist", sans-serif;
    font-size: 16px; font-weight: 600;
    color: #FAFAF9;
    border-bottom: 1px solid #1c1c1c;
    margin-bottom: 12px;
  }
  .dash-m-section {
    font-family: "Geist", sans-serif;
    font-size: 9px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: #404040; padding: 12px 16px 6px;
  }
  .dash-m-nav {
    display: flex; align-items: center;
    padding: 7px 16px; gap: 8px;
    font-size: 12px; color: #737373;
    cursor: default;
    transition: background .15s ease;
  }
  .dash-m-nav.active { color: #FAFAF9; background: rgba(255,255,255,0.06); border-radius: 6px; margin: 0 8px; padding: 7px 10px; }
  .dash-m-nav .nav-badge {
    margin-left: auto;
    font-family: "Geist", sans-serif;
    font-size: 10px; font-weight: 700;
    width: 16px; height: 16px;
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
  }
  .nav-badge.red { background: rgba(185,28,28,0.2); color: #ef4444; }
  .dash-m-main {
    background: #F9F9F8;
    display: flex; flex-direction: column;
    overflow: hidden;
  }
  .dash-m-topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }
  .dash-m-topbar-title { font-weight: 600; color: var(--ink); }
  .dash-m-topbar-sub { font-size: 11px; color: var(--mute-2); margin-top: 1px; }
  .dash-m-chips { display: flex; align-items: center; gap: 6px; }
  .dm-chip {
    font-family: "Geist", sans-serif;
    font-size: 10px; font-weight: 600;
    padding: 3px 8px; border-radius: 4px;
  }
  .dm-chip.alert { background: rgba(185,28,28,0.1); color: #b91c1c; }
  .dm-chip.ok { background: rgba(21,128,61,0.1); color: #15803d; }
  .dm-chip.neutral { background: var(--bg-2); color: var(--mute-2); border: 1px solid var(--line); }
  .dash-m-content { display: grid; grid-template-columns: auto 1fr auto; gap: 1px; background: var(--line); flex: 0 0 auto; }
  .dash-m-score-cell, .dash-m-metrics-cell, .dash-m-fw-cell {
    background: var(--surface); padding: 16px 18px;
  }
  .dash-m-score-cell { min-width: 120px; }
  .score-ring {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: conic-gradient(#0E3D2E 0% 88%, var(--line) 88% 100%);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 8px;
    position: relative;
  }
  .score-ring::before {
    content: ''; position: absolute; inset: 6px;
    border-radius: 50%; background: var(--surface);
  }
  .score-num {
    font-family: "Geist", sans-serif;
    font-size: 18px; font-weight: 700; color: var(--ink);
    position: relative; z-index: 1;
  }
  .score-label { font-size: 11px; color: var(--muted); }
  .score-delta { font-size: 10.5px; color: var(--success); margin-top: 2px; font-weight: 500; }
  .dash-m-metrics-cell { display: flex; gap: 1px; padding: 0; }
  .dash-metric {
    flex: 1; padding: 16px 14px;
    border-right: 1px solid var(--line);
    display: flex; flex-direction: column;
  }
  .dash-metric:last-child { border-right: none; }
  .dash-metric-val {
    font-family: "Geist", sans-serif;
    font-size: 26px; font-weight: 700;
    color: var(--ink); line-height: 1;
    margin-bottom: 4px;
  }
  .dash-metric-val .sub { font-size: 14px; color: var(--mute-2); font-weight: 400; }
  .dash-metric-val.gap-val { color: #b91c1c; }
  .dash-metric-lbl { font-size: 11px; color: var(--muted); }
  .dash-metric-meta { font-size: 10px; color: var(--mute-3); margin-top: 2px; }
  .dash-m-fw-cell { min-width: 160px; }
  .dash-fw-label {
    font-family: "Geist", sans-serif;
    font-size: 9px; color: var(--mute-2);
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 10px; font-weight: 600;
  }
  .dash-fw-row { display: grid; grid-template-columns: 70px 1fr 14px; gap: 6px; align-items: center; margin-bottom: 7px; }
  .dash-fw-name { font-size: 10.5px; color: var(--ink-2); }
  .dash-fw-bar { height: 3px; background: var(--line); border-radius: 2px; overflow: hidden; }
  .dash-fw-bar span { display: block; height: 100%; background: var(--accent); border-radius: 2px; }
  .dash-fw-count { font-family: "Geist", sans-serif; font-size: 10px; color: var(--mute-2); text-align: right; }
  .dash-fw-count.red { color: #b91c1c; }
  .dash-m-agent {
    display: flex; align-items: center; gap: 10px;
    background: var(--ink); color: var(--on-dark);
    padding: 10px 18px; font-size: 11.5px; flex-shrink: 0;
  }
  .agent-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-on-dark); flex-shrink: 0; }
  .agent-msg { flex: 1; color: rgba(250,250,249,0.7); }
  .agent-msg b { color: var(--on-dark); font-weight: 500; }
  .dash-m-agent-actions { display: flex; gap: 8px; flex-shrink: 0; }
  .dash-m-agent-btn {
    font-size: 11px; font-weight: 500; padding: 5px 12px;
    border-radius: 4px; cursor: default;
  }
  .dash-m-agent-btn.primary { background: var(--accent-on-dark); color: #0A0A0A; }
  .dash-m-agent-btn.ghost { background: rgba(255,255,255,0.08); color: rgba(250,250,249,0.6); }
  .dash-m-table { flex: 1; overflow: hidden; }
  .dash-tbl-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 18px; border-bottom: 1px solid var(--line);
    background: var(--surface);
  }
  .dash-tbl-title { font-weight: 600; font-size: 12px; color: var(--ink); }
  .dash-tbl-meta { font-family: "Geist", sans-serif; font-size: 10px; color: var(--mute-2); letter-spacing: 0.04em; }
  .dash-tbl-cols {
    display: grid; grid-template-columns: 1fr 64px 120px 80px 72px;
    gap: 0; padding: 6px 18px;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    font-family: "Geist", sans-serif; font-size: 9.5px;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--mute-2);
  }
  .dash-tbl-row {
    display: grid; grid-template-columns: 1fr 64px 120px 80px 72px;
    padding: 9px 18px; border-bottom: 1px solid var(--line);
    background: var(--surface); align-items: center;
  }
  .dash-tbl-row:last-child { border-bottom: none; }
  .dash-sys-name { font-size: 12px; font-weight: 500; color: var(--ink); }
  .dash-sys-id { font-family: "Geist", sans-serif; font-size: 10px; color: var(--mute-3); }
  .dash-risk {
    font-family: "Geist", sans-serif; font-size: 9.5px; font-weight: 700;
    padding: 2px 6px; border-radius: 3px; display: inline-block;
    letter-spacing: 0.04em;
  }
  .dash-risk.high { background: rgba(185,28,28,0.1); color: #b91c1c; }
  .dash-risk.med { background: rgba(180,83,9,0.1); color: #b45309; }
  .dash-risk.low { background: rgba(21,128,61,0.1); color: #15803d; }
  .dash-fw-tags { font-size: 10.5px; color: var(--muted); }
  .dash-posture { display: flex; align-items: center; gap: 6px; }
  .dash-posture-bar { flex: 1; height: 3px; background: var(--line); border-radius: 2px; overflow: hidden; }
  .dash-posture-bar span { display: block; height: 100%; border-radius: 2px; }
  .bar-red span { background: #ef4444; }
  .bar-amber span { background: #f59e0b; }
  .bar-green span { background: #22c55e; }
  .dash-posture-num { font-family: "Geist", sans-serif; font-size: 10.5px; font-weight: 700; }
  .dash-status {
    font-size: 11px; display: flex; align-items: center; gap: 5px;
  }
  .status-dot { width: 5px; height: 5px; border-radius: 50%; }
  .status-dot.gap { background: #ef4444; }
  .status-dot.review { background: #f59e0b; }
  .status-dot.ok { background: #22c55e; }

  /* =========== COVERAGE GRID (Apple-style) =========== */
  .cov-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px;
  }
  .cov-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 24px 14px;
    display: flex; flex-direction: column;
    transition: box-shadow .2s ease, border-color .2s ease, transform .3s cubic-bezier(0.22,0.72,0.2,1);
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22,0.72,0.2,1),
                box-shadow .2s ease, border-color .2s ease;
  }
  .cov-grid.in .cov-card { opacity: 1; transform: none; }
  .cov-grid.in .cov-card:nth-child(1) { transition-delay: 0ms; }
  .cov-grid.in .cov-card:nth-child(2) { transition-delay: 60ms; }
  .cov-grid.in .cov-card:nth-child(3) { transition-delay: 120ms; }
  .cov-grid.in .cov-card:nth-child(4) { transition-delay: 180ms; }
  .cov-grid.in .cov-card:nth-child(5) { transition-delay: 240ms; }
  .cov-grid.in .cov-card:nth-child(6) { transition-delay: 300ms; }
  .cov-grid.in .cov-card:nth-child(7) { transition-delay: 360ms; }
  .cov-grid.in .cov-card:nth-child(8) { transition-delay: 420ms; }
  .cov-card:hover { border-color: var(--line-2); box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .cov-grid.in .cov-card:hover { transform: translateY(-4px); }
  .cov-card.tier1 {
    border-color: rgba(14,61,46,0.22);
    background: var(--accent-soft);
  }
  .cov-card.tier1:hover { border-color: rgba(14,61,46,0.4); }
  .cov-juris {
    font-family: "Geist", sans-serif;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--mute-2); margin-bottom: 10px;
  }
  .cov-card.tier1 .cov-juris { color: var(--accent); }
  .cov-name {
    font-size: 22px; font-weight: 600;
    color: var(--ink); margin: 0 0 10px;
    letter-spacing: -0.015em; line-height: 1.15;
  }
  .cov-card.tier1 .cov-name { color: var(--accent); }
  .cov-desc {
    font-size: 13px; line-height: 1.55;
    color: var(--muted); margin: 0; flex: 1;
  }
  .cov-footer {
    display: flex; align-items: flex-start; gap: 7px;
    margin-top: 18px; padding-top: 14px;
    border-top: 1px solid var(--line);
    font-family: "Geist", sans-serif;
    font-size: 10px; letter-spacing: 0.06em;
    color: var(--ink);
    min-height: 44px;
  }
  .cov-card.tier1 .cov-footer { border-top-color: rgba(14,61,46,0.15); }
  .cov-pip { display: none !important; }
  @media (max-width: 1024px) { .cov-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 680px) { .cov-grid { grid-template-columns: 1fr; } }
  /* Showcase 6 core frameworks; reveal the rest on demand */
  .cov-extra { display: none; }
  .cov-grid.cov-expanded .cov-extra { display: flex; }
  button.coverage-more { cursor: pointer; background: none; border: none; padding: 0; font-family: inherit; }
  .coverage-more .arrow { display: inline-block; transition: transform .2s ease; }
  .coverage-more.is-open .arrow { transform: rotate(90deg); }

  /* =========== STAGGER, pricing grid =========== */
  .pricing-grid .price-card {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.85s ease,
                transform 0.85s cubic-bezier(0.22,0.72,0.2,1),
                border-color 0.2s ease, box-shadow 0.4s ease;
  }
  .pricing-grid.in .price-card { opacity: 1; transform: none; }
  .pricing-grid.in .price-card:nth-child(1) { transition-delay: 0ms; }
  .pricing-grid.in .price-card:nth-child(2) { transition-delay: 110ms; }
  .pricing-grid.in .price-card:nth-child(3) { transition-delay: 220ms; }

  /* Card hover lift */
  /* No lift hover on pricing, Apple style is stable/non-moving */

  /* =========== RESPONSIVE =========== */
  @media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .teaser-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 680px) {
    .wrap, .wrap-tight, .wrap-narrow { padding: 0 20px; }
    .nav-links { display: none; }
    /* Dock the nav "Request a demo" small, on the right, beside the EN/FR toggle.
       (With .nav-links hidden, grid auto-placement would otherwise drop .nav-right
       into the empty middle column, so pin it to column 3 and bring the toggle
       back into flow next to it.) */
    .nav-right { grid-column: 3; justify-content: flex-end; }
    .nav-lang { position: static; transform: none; right: auto; top: auto; }
    .nav-inner { padding-right: 20px; }
    .nav-right .btn { padding: 7px 12px; font-size: 12px; letter-spacing: -0.004em; }
    .section { padding: 80px 0; }
    .hero { padding: 56px 0 72px; }
    .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-ctas .btn { justify-content: center; padding: 13px 18px; font-size: 14.5px; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
    .teaser-grid { grid-template-columns: 1fr; }
    .fw-badges { flex-direction: column; }
    .trust-grid { grid-template-columns: 1fr; }
  }

  /* =========== SECTION HEAD CASCADE =========== */
  .section-head .section-h2 {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22,0.72,0.2,1);
    transition-delay: 0.14s;
  }
  .section-head .section-sub {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22,0.72,0.2,1);
    transition-delay: 0.29s;
  }
  .section-head.in .section-h2,
  .section-head.in .section-sub {
    opacity: 1;
    transform: none;
  }

  /* =========== FEATURE CARDS STAGGER =========== */
  .features-grid .feature-card {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.85s ease,
                transform 0.85s cubic-bezier(0.22,0.72,0.2,1),
                background 0.15s ease;
  }
  .features-grid.in .feature-card { opacity: 1; transform: none; }
  .features-grid.in .feature-card:nth-child(1) { transition-delay: 0ms; }
  .features-grid.in .feature-card:nth-child(2) { transition-delay: 90ms; }
  .features-grid.in .feature-card:nth-child(3) { transition-delay: 180ms; }
  .features-grid.in .feature-card:nth-child(4) { transition-delay: 270ms; }

  /* =========== TIMELINE STAGGER =========== */
  .tl-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22,0.72,0.2,1);
  }
  .tl-grid.in .tl-item { opacity: 1; transform: none; }
  .tl-grid.in .tl-item:nth-child(1) { transition-delay: 0ms; }
  .tl-grid.in .tl-item:nth-child(2) { transition-delay: 80ms; }
  .tl-grid.in .tl-item:nth-child(3) { transition-delay: 160ms; }
  .tl-grid.in .tl-item:nth-child(4) { transition-delay: 240ms; }
  .tl-grid.in .tl-item:nth-child(5) { transition-delay: 320ms; }
  .tl-grid.in .tl-item:nth-child(6) { transition-delay: 400ms; }

  /* =========== CTA SECTION ENTRANCE =========== */
  .cta-section h2,
  .cta-section .sub,
  .cta-section .cta-row {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.22,0.72,0.2,1);
  }
  .cta-section h2.in  { opacity: 1; transform: none; transition-delay: 0ms; }
  .cta-section .sub.in  { opacity: 1; transform: none; transition-delay: 0.12s; }
  .cta-section .cta-row.in { opacity: 1; transform: none; transition-delay: 0.26s; }

  /* =========== P9: Stat number char pop-in =========== */
  .trust-item .num .pop-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
    animation: p9-pop-in 0.65s cubic-bezier(0.34, 1.45, 0.64, 1) both;
    animation-delay: calc(var(--ci, 0) * 55ms);
  }
  @keyframes p9-pop-in {
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
  }

  /* =========== P6: CTA button text swap on hover =========== */
  .btn-swap {
    position: relative;
    overflow: hidden;
  }
  .btn-swap .t-default,
  .btn-swap .t-hover {
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.22s ease,
                filter 0.22s ease;
  }
  .btn-swap .t-hover {
    position: absolute;
    inset: 0;
    justify-content: center;
    transform: translateY(10px);
    opacity: 0;
    filter: blur(4px);
    white-space: nowrap;
  }
  .btn-swap:hover .t-default,
  .btn-swap:focus-visible .t-default {
    transform: translateY(-10px);
    opacity: 0;
    filter: blur(4px);
  }
  .btn-swap:hover .t-hover,
  .btn-swap:focus-visible .t-hover {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }

  /* =========== P10: Email form success state =========== */
  .email-form-wrap { position: relative; }
  .email-form-wrap .email-capture {
    transition: opacity 0.3s ease, filter 0.3s ease;
  }
  .email-form-wrap.success .email-capture {
    opacity: 0;
    filter: blur(4px);
    pointer-events: none;
  }
  .email-success {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center; justify-content: center; gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease 0.15s;
  }
  .email-form-wrap.success .email-success { opacity: 1; }
  .success-check-svg {
    width: 22px; height: 22px; flex-shrink: 0;
    opacity: 0;
  }
  .email-form-wrap.success .success-check-svg {
    animation:
      p10-fade   0.4s ease                              forwards,
      p10-rotate 0.55s cubic-bezier(0.22, 1, 0.36, 1)  forwards,
      p10-blur   0.45s ease                             forwards,
      p10-bob    0.55s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
  }
  @keyframes p10-fade   { from { opacity: 0; }           to { opacity: 1; } }
  @keyframes p10-rotate { from { rotate: 60deg; }        to { rotate: 0deg; } }
  @keyframes p10-blur   { from { filter: blur(8px); }    to { filter: blur(0); } }
  @keyframes p10-bob    { from { translate: 0 12px; }    to { translate: 0 0; } }
  .check-path {
    stroke-dasharray: 16;
    stroke-dashoffset: 16;
  }
  .email-form-wrap.success .check-path {
    animation: p10-draw 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
  }
  @keyframes p10-draw { to { stroke-dashoffset: 0; } }
  .email-success-text {
    font-size: 14px;
    color: var(--on-dark);
    font-family: "Geist", sans-serif;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.4s ease 0.35s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
  }
  .email-form-wrap.success .email-success-text {
    opacity: 1;
    transform: translateX(0);
  }

  /* =========== SCROLL PROGRESS BAR =========== */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: var(--accent);
    z-index: 9999;
    width: 0%;
    pointer-events: none;
    will-change: width;
    transform-origin: left;
  }
  @media (prefers-reduced-motion: reduce) {
    .section-head .section-h2,
    .section-head .section-sub,
    .features-grid .feature-card,
    .tl-item,
    .cta-section h2,
    .cta-section .sub,
    .cta-section .cta-row {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
    .scroll-progress { display: none; }
  }