
    @font-face {
      font-family: 'Gilroy';
      src: url('../Gilroy-Regular.woff2') format('woff2'),
           url('../Gilroy-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Gilroy';
      src: url('../Gilroy-Medium.woff2') format('woff2'),
           url('../Gilroy-Medium.ttf') format('truetype');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Gilroy';
      src: url('../Gilroy-Bold.woff2') format('woff2'),
           url('../Gilroy-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }


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

    :root {
      --bg-deep: #FFFFFF;
      --bg-alt: #F5F7FA;
      --bg-card: #F5F7FA;
      --bg-card-hover: #EDF0F5;
      --accent: #1B2A4A;
      --accent-light: rgba(27, 42, 74, .06);
      --accent-glow: rgba(27, 42, 74, .12);
      --cta-primary: #E8652B;
      --cta-primary-hover: #D4571E;
      --cta-secondary: #1B2A4A;
      --text-primary: #1B2A4A;
      --text-muted: #4A5568;
      --text-dim: #8C9BAD;
      --gradient-hero: linear-gradient(145deg, #F5F7FA 0%, #FFFFFF 50%, #F5F7FA 100%);
      --gradient-accent: linear-gradient(135deg, #1B2A4A, #2D4A7A);
      --font-display: 'Gilroy', sans-serif;
      --font-body: 'Gilroy', sans-serif;
      --max-w: 1140px;
      --section-pad: clamp(64px, 8vw, 96px);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--bg-deep);
      color: var(--text-primary);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

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

    /* --- FOCUS STATES (Accessibility) --- */
    :focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
      border-radius: 4px;
    }
    .btn-primary:focus-visible,
    .btn-ghost:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 3px;
      box-shadow: 0 0 0 5px rgba(232, 101, 43, .4);
    }

    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 40px);
    }

    /* --- UTILITY --- */
    .section-label {
      font-family: var(--font-body);
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cta-primary);
      margin-bottom: 18px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .section-label::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--cta-primary);
      border-radius: 2px;
    }

    .section-heading {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      line-height: 1.18;
      letter-spacing: 0.3px;
      color: var(--text-primary);
    }

    .section-body {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 620px;
      line-height: 1.75;
    }

    /* --- CTA BUTTONS --- */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 36px;
      background: var(--cta-primary);
      color: #fff;
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 600;
      border-radius: 60px;
      border: none;
      cursor: pointer;
      transition: all .3s ease;
      box-shadow: 0 4px 24px rgba(232, 101, 43, .3);
    }
    .btn-primary:hover {
      background: var(--cta-primary-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(232, 101, 43, .4);
    }
    .btn-primary svg { width: 18px; height: 18px; }

    .cta-reassurance {
      display: block;
      text-align: center;
      font-size: .8rem;
      color: var(--text-dim);
      margin-top: 12px;
      letter-spacing: .5px;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border: 1.5px solid rgba(27, 42, 74, .3);
      color: var(--accent);
      font-family: var(--font-body);
      font-size: .95rem;
      font-weight: 500;
      border-radius: 60px;
      cursor: pointer;
      transition: all .3s ease;
      background: transparent;
    }
    .btn-ghost:hover {
      border-color: var(--accent);
      background: rgba(27, 42, 74, .05);
      transform: translateY(-1px);
    }

    /* ===================================
       SECTION 1: HERO (THE HOOK)
    =================================== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(160deg, #1B2A4A 0%, #2D4A7A 55%, #3D5A8A 100%);
      position: relative;
      overflow: hidden;
      padding: 100px 0 80px;
    }

    /* Floating orbs */
    .hero::before {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(255,255,255,.08);
      border-radius: 50%;
      top: -80px;
      left: -100px;
      pointer-events: none;
      z-index: 0;
    }
    .hero::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: rgba(255,255,255,.06);
      border-radius: 50%;
      bottom: -60px;
      right: -80px;
      pointer-events: none;
      z-index: 0;
    }

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

    .hero-content { max-width: 560px; }

    .hero-eyebrow {
      display: inline-block;
      padding: 6px 16px;
      background: rgba(255, 255, 255, .15);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 30px;
      font-size: .78rem;
      font-weight: 600;
      color: rgba(255,255,255,.9);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 5.5vw, 4rem);
      line-height: 1.12;
      letter-spacing: -0.5px;
      margin-bottom: 24px;
      color: #ffffff;
    }
    .hero h1 .highlight {
      background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.8) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: 1.15rem;
      color: rgba(255,255,255,.75);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 480px;
    }
    .hero-subtitle strong {
      color: #ffffff;
      background: linear-gradient(135deg, #E8652B, #FF8F5C);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
    }

    .hero-cta-row {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
    }

    .hero .btn-ghost {
      border-color: rgba(255,255,255,.5);
      color: #ffffff;
    }
    .hero .btn-ghost:hover {
      border-color: #ffffff;
      background: rgba(255,255,255,.1);
    }

    .hero .cta-reassurance {
      color: rgba(255,255,255,.5);
      text-align: left;
    }

    .hero-mobile-logo {
      display: none;
      position: absolute;
      top: 28px;
      left: 0;
      right: 0;
      text-align: center;
      z-index: 2;
    }
    .hero-mobile-logo img {
      height: 30px;
      width: auto;
      filter: brightness(0) invert(1);
      opacity: .9;
      display: inline-block;
    }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .hero-video-portrait {
      width: 300px;
      aspect-ratio: 9 / 16;
      border-radius: 24px;
      overflow: hidden;
      background: rgba(0,0,0,.1);
      box-shadow:
        0 25px 60px rgba(0,0,0,.25),
        0 0 0 1px rgba(255,255,255,.1);
      position: relative;
      z-index: 2;
    }
    .hero-video-portrait video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Fixed nav — frosted white on desktop, transparent→frosted on mobile */
    .topnav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 14px 0;
      background: rgba(255, 255, 255, .85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(0,0,0,.06);
      transition: background .4s ease, border-bottom .4s ease;
      overflow: visible;
    }
    .topnav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .topnav-logo img {
      height: 32px;
      width: auto;
      filter: brightness(0) saturate(100%) invert(14%) sepia(25%) saturate(1500%) hue-rotate(185deg) brightness(95%);
      transition: filter .4s ease;
    }
    .logo-icon { display: none; }
    .topnav-links {
      display: flex;
      gap: 32px;
      align-items: center;
    }
    .topnav-links a {
      font-size: .88rem;
      font-weight: 500;
      color: var(--text-muted);
      transition: color .3s ease;
      position: relative;
    }
    .topnav-links a:not(.topnav-cta):hover {
      color: var(--text-primary);
    }
    .topnav-links a.active:not(.topnav-cta) {
      color: var(--accent);
    }
    .topnav-links a.active:not(.topnav-cta)::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 4px;
      background: var(--cta-primary);
      border-radius: 50%;
    }
    .lang-switcher { position: relative; display: inline-flex; align-items: center; }
    .lang-btn { display: inline-flex; align-items: center; gap: 6px; background: rgba(27,42,74,.04); border: 1.5px solid rgba(27,42,74,.12); border-radius: 20px; padding: 5px 12px 5px 8px; font-family: var(--font-body); font-size: .8rem; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all .25s ease; letter-spacing: .5px; }
    .lang-btn .lang-globe { width: 16px; height: 16px; opacity: .55; transition: opacity .25s ease; }
    .lang-btn .lang-chevron { width: 12px; height: 12px; opacity: .4; transition: transform .25s ease, opacity .25s ease; margin-left: 2px; }
    .lang-btn:hover { background: rgba(27,42,74,.08); border-color: rgba(27,42,74,.25); color: var(--text-primary); }
    .lang-btn:hover .lang-globe { opacity: .8; }
    .lang-btn:hover .lang-chevron { opacity: .6; }
    .lang-switcher.open .lang-chevron { transform: rotate(180deg); }
    .lang-dropdown { position: absolute; top: calc(100% + 8px); right: 0; background: #fff; border: 1px solid rgba(27,42,74,.08); border-radius: 12px; box-shadow: 0 12px 32px rgba(27,42,74,.14), 0 2px 6px rgba(27,42,74,.06); min-width: 170px; z-index: 200; padding: 6px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
    .lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .lang-dropdown a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; font-size: .85rem; color: var(--text-muted); border-radius: 8px; transition: background .15s ease, color .15s ease; text-decoration: none; }
    .lang-dropdown a .lang-flag { font-size: 1.15rem; line-height: 1; }
    .lang-dropdown a:hover { background: var(--bg-alt); color: var(--text-primary); }
    .lang-dropdown a.active { color: var(--cta-primary); font-weight: 600; background: rgba(232,101,43,.06); }
    .topnav-cta {
      padding: 10px 24px !important;
      font-size: .88rem !important;
      white-space: nowrap;
      color: #fff !important;
    }
    .topnav-cta-secondary {
      color: var(--accent) !important;
      border-color: rgba(27, 42, 74, .3) !important;
      background: transparent !important;
      box-shadow: none !important;
      padding: 9px 20px !important;
      font-size: .85rem !important;
    }
    .topnav-cta-secondary:hover {
      border-color: var(--accent) !important;
      background: rgba(27, 42, 74, .05) !important;
    }
    /* scrolled state on desktop stays white bg — keep navy text */

    /* ===================================
       SECTION 2: THE PROBLEM (STAKES)
    =================================== */
    .problem {
      padding: var(--section-pad) 0;
      background: var(--bg-alt);
      position: relative;
      overflow: hidden;
    }

    .problem .container {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .problem .section-heading {
      margin-bottom: 32px;
    }

    .problem .section-body {
      margin: 0 auto 48px;
      max-width: 680px;
      font-size: 1.1rem;
    }

    .section-philosophy {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 3vw, 1.8rem);
      line-height: 1.3;
      color: var(--text-primary);
      max-width: 620px;
      margin: 48px auto 0;
      text-align: center;
      font-style: italic;
    }

    .problem-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      max-width: 620px;
      width: 100%;
    }

    .problem-card {
      display: flex;
      gap: 18px;
      background: #FFFFFF;
      border: none;
      border-left: 3px solid transparent;
      border-radius: 12px;
      padding: 28px 28px 28px 25px;
      text-align: left;
      transition: all .3s ease;
      box-shadow: 0 2px 12px rgba(27,42,74,.06);
    }
    .problem-card:hover {
      border-left-color: var(--cta-primary);
      box-shadow: 0 8px 28px rgba(27,42,74,.1);
      transform: translateX(4px);
    }

    .problem-card-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }
    .problem-card-icon svg {
      width: 24px;
      height: 24px;
    }
    .problem-card-icon.red { background: rgba(232, 101, 43, .1); color: var(--cta-primary); }
    .problem-card-icon.amber { background: rgba(27, 42, 74, .08); color: var(--accent); }
    .problem-card-icon.purple { background: rgba(27, 42, 74, .08); color: var(--accent); }

    .problem-card h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      letter-spacing: .3px;
      margin-bottom: 10px;
    }
    .problem-card p {
      color: var(--text-muted);
      font-size: .95rem;
      line-height: 1.65;
    }

    /* ===================================
       SECTION 3: THE GUIDE
    =================================== */
    .guide {
      padding: var(--section-pad) 0;
      position: relative;
      background: var(--bg-deep);
      overflow: hidden;
    }

    .guide .container {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      align-items: center;
    }

    .guide-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .guide-avatar-ring {
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: var(--gradient-accent);
      padding: 4px;
      position: relative;
      box-shadow: 0 12px 40px rgba(27,42,74,.15);
    }
    .guide-avatar-ring::before {
      content: '';
      position: absolute;
      inset: -20px;
      border-radius: 50%;
      border: 1px dashed rgba(27,42,74,.15);
    }
    .guide-avatar-inner {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: var(--bg-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 6rem;
      overflow: hidden;
    }
    .guide-avatar-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .guide-text .section-heading {
      margin-bottom: 24px;
    }

    .guide-empathy {
      font-size: 1.08rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 24px;
      padding-left: 20px;
      border-left: 3px solid var(--cta-primary);
    }

    .guide-authority {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.75;
    }

    .guide-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      align-items: center;
      margin-top: 28px;
      opacity: .55;
      transition: opacity .3s;
    }
    .guide-logos:hover { opacity: .8; }
    .guide-logos img {
      height: 22px;
      width: auto;
      filter: grayscale(1) brightness(.3);
      object-fit: contain;
    }

    .guide-domenic {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid rgba(0,0,0,.06);
    }
    .domenic-headshot {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(27,42,74,.2);
    }
    .domenic-name {
      font-weight: 600;
      font-size: .95rem;
    }
    .domenic-title {
      font-size: .8rem;
      color: var(--text-dim);
    }

    /* ===================================
       SECTION 4: THE PLAN
    =================================== */
    .plan {
      padding: var(--section-pad) 0;
      background: var(--bg-alt);
      position: relative;
      overflow: hidden;
    }
    .plan::before {
      content: none;
      pointer-events: none;
    }

    .plan .container { text-align: center; display: flex; flex-direction: column; align-items: center; }

    .plan .section-heading { margin-bottom: 16px; }
    .plan .section-body {
      margin: 0 auto 48px;
    }

    .plan-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 1000px;
      margin: 0 auto 56px;
      position: relative;
      width: 100%;
    }

    .plan-step {
      position: relative;
      background: #FFFFFF;
      border: 1px solid rgba(27,42,74,.08);
      border-radius: 20px;
      padding: 44px 32px 36px;
      transition: all .3s ease;
      box-shadow: 0 2px 12px rgba(27,42,74,.05);
    }
    .plan-step:hover {
      border-color: rgba(232, 101, 43, .25);
      box-shadow: 0 12px 32px rgba(27,42,74,.1);
      transform: translateY(-4px);
    }

    .step-number {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 42px;
      height: 42px;
      background: var(--gradient-accent);
      color: #ffffff;
      font-family: var(--font-display);
      font-size: 1.3rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(27,42,74,.2);
    }

    .plan-step h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      letter-spacing: .3px;
      margin-bottom: 12px;
      margin-top: 8px;
    }
    .plan-step p {
      color: var(--text-muted);
      font-size: .95rem;
      line-height: 1.65;
    }

    .plan-step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -32px;
      width: 32px;
      height: 2px;
      background: linear-gradient(90deg, rgba(27,42,74,.15), rgba(27,42,74,.05));
    }
    .plan-connector {
      display: none;
    }

    /* ===================================
       SECTION 5: SUCCESS (VALUE PROP)
    =================================== */
    .success {
      padding: var(--section-pad) 0;
      position: relative;
      background: var(--bg-deep);
      overflow: hidden;
    }

    .success .container {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .success .section-heading {
      margin-bottom: 56px;
    }

    .success-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 820px;
      width: 100%;
    }

    .success-item {
      display: flex;
      gap: 18px;
      text-align: left;
      padding: 28px;
      background: var(--bg-alt);
      border: none;
      border-radius: 16px;
      transition: all .3s ease;
    }
    .success-item:hover {
      background: var(--bg-card-hover);
      transform: translateY(-2px);
    }

    .success-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(232,101,43,.12), rgba(232,101,43,.06));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--cta-primary);
    }

    .success-item h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      letter-spacing: .3px;
      margin-bottom: 6px;
    }
    .success-item p {
      color: var(--text-muted);
      font-size: .92rem;
      line-height: 1.55;
    }

    /* ===================================
       SECTION 6: FAILURE AVOIDANCE
    =================================== */
    .failure {
      padding: var(--section-pad) 0;
      position: relative;
      background: linear-gradient(160deg, #1B2A4A 0%, #2D4A7A 55%, #3D5A8A 100%);
      overflow: hidden;
    }
    .failure::before {
      content: '';
      position: absolute;
      width: 350px;
      height: 350px;
      background: rgba(255,255,255,.06);
      border-radius: 50%;
      top: -100px;
      right: -80px;
      pointer-events: none;
    }
    .failure::after {
      content: '';
      position: absolute;
      width: 250px;
      height: 250px;
      background: rgba(255,255,255,.04);
      border-radius: 50%;
      bottom: -60px;
      left: -60px;
      pointer-events: none;
    }

    .failure-inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
      padding: 0;
      background: none;
      border: none;
      border-radius: 0;
      position: relative;
      overflow: visible;
    }

    .failure .section-heading {
      margin-bottom: 20px;
      color: #FFFFFF;
    }

    .failure .section-body {
      margin: 0 auto 36px;
      max-width: 600px;
      color: rgba(255,255,255,.75);
    }
    .failure .cta-reassurance {
      color: rgba(255,255,255,.5);
    }

    /* ===================================
       SECTION 7: SOCIAL PROOF
    =================================== */
    .testimonials {
      padding: var(--section-pad) 0;
      background: var(--bg-alt);
      position: relative;
      overflow: hidden;
    }

    .testimonials .container { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .testimonials .section-heading { margin-bottom: 56px; }

    .testimonial-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      width: 100%;
    }

    .testimonial-card {
      background: #FFFFFF;
      border: 1px solid rgba(27,42,74,.06);
      border-radius: 20px;
      padding: 36px 28px 32px;
      text-align: left;
      transition: all .3s ease;
      box-shadow: 0 2px 12px rgba(27,42,74,.05);
      position: relative;
    }
    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 16px;
      right: 24px;
      font-size: 4rem;
      line-height: 1;
      color: rgba(232,101,43,.28);
      font-family: Georgia, serif;
      pointer-events: none;
    }
    .testimonial-card:hover {
      border-color: rgba(232,101,43,.2);
      box-shadow: 0 12px 32px rgba(27,42,74,.08);
      transform: translateY(-3px);
    }

    .testimonial-stars {
      display: flex;
      gap: 2px;
      margin-bottom: 16px;
    }
    .testimonial-stars svg {
      width: 16px;
      height: 16px;
      fill: #F5A623;
    }

    .testimonial-quote {
      font-size: .98rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 24px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testimonial-photo {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(27,42,74,.15);
    }
    .testimonial-name {
      font-weight: 600;
      font-size: .92rem;
    }
    .testimonial-detail {
      font-size: .78rem;
      color: var(--text-dim);
    }

    /* ===================================
       SECTION 8: FINAL CTA FOOTER
    =================================== */
    .final-cta {
      padding: var(--section-pad) 0 60px;
      position: relative;
      background: linear-gradient(160deg, #1B2A4A 0%, #2D4A7A 55%, #3D5A8A 100%);
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      width: 350px;
      height: 350px;
      background: rgba(255,255,255,.06);
      border-radius: 50%;
      top: -100px;
      right: -80px;
      pointer-events: none;
    }
    .final-cta::after {
      content: '';
      position: absolute;
      width: 250px;
      height: 250px;
      background: rgba(255,255,255,.04);
      border-radius: 50%;
      bottom: -60px;
      left: -60px;
      pointer-events: none;
    }

    .final-cta-inner {
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .final-cta .section-label { color: rgba(255,255,255,.7); }
    .final-cta .section-label::before { background: rgba(255,255,255,.4); }
    .failure .section-label { color: rgba(255,255,255,.7); }
    .failure .section-label::before { background: rgba(255,255,255,.4); }
    .final-cta .section-heading {
      margin-bottom: 20px;
      color: #ffffff;
    }
    .final-cta .section-body {
      margin: 0 auto 36px;
      color: rgba(255,255,255,.75);
    }
    .final-cta .cta-reassurance {
      color: rgba(255,255,255,.5);
    }

    .final-cta-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* Footer */
    .site-footer {
      padding: 40px 0 32px;
      background: #0F1B33;
      border-top: none;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    .footer-logo {
      height: 28px;
      width: auto;
      opacity: .5;
      filter: brightness(0) invert(1);
      transition: opacity .3s;
    }
    .footer-logo:hover { opacity: .8; }
    .footer-divider {
      width: 100%;
      height: 1px;
      background: rgba(255,255,255,.08);
      border: none;
      margin: 0;
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      padding-top: 20px;
    }
    .footer-downloads { display: flex; gap: 10px; align-items: center; }
    .footer-download { display: inline-flex; align-items: center; gap: 7px; padding: 8px 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 60px; font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.55); transition: all .25s ease; }
    .footer-download:hover { border-color: rgba(255,255,255,.5); color: rgba(255,255,255,.9); transform: translateY(-1px); }
    .footer-store-icon { width: 14px; height: 14px; flex-shrink: 0; }
    .footer-links {
      display: flex;
      gap: 28px;
    }
    .footer-links a {
      font-size: .85rem;
      color: rgba(255,255,255,.45);
      transition: color .2s;
    }
    .footer-links a:hover { color: rgba(255,255,255,.8); }

    .footer-copy {
      font-size: .82rem;
      color: rgba(255,255,255,.35);
    }
    .footer-lang { display: none; position: relative; align-items: center; }
    .footer-lang .lang-dropdown { position: absolute; bottom: calc(100% + 8px); top: auto; right: 0; background: #fff; border: 1px solid rgba(27,42,74,.08); border-radius: 12px; box-shadow: 0 12px 32px rgba(27,42,74,.14); min-width: 170px; z-index: 200; padding: 6px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
    .footer-lang.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .footer-lang.open .lang-chevron { transform: rotate(180deg); }
    .footer-lang .lang-dropdown a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; font-size: .85rem; color: var(--text-muted); border-radius: 8px; transition: background .15s ease, color .15s ease; text-decoration: none; }
    .footer-lang .lang-dropdown a:hover { background: var(--bg-alt); color: var(--text-primary); }
    .footer-lang .lang-dropdown a.active { color: var(--cta-primary); font-weight: 600; background: rgba(232,101,43,.06); }

    /* --- ANIMATIONS --- */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    @keyframes floatSlow {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .hero-video-portrait { animation: floatSlow 6s ease-in-out infinite; }
    .guide-avatar-ring { animation: floatSlow 7s ease-in-out infinite; }

    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Hero stagger */
    .hero-eyebrow { animation: fadeUp .6s .1s both; }
    .hero h1 { animation: fadeUp .6s .2s both; }
    .hero-subtitle { animation: fadeUp .6s .35s both; }
    .hero-cta-row { animation: fadeUp .6s .5s both; }
    .hero-visual { animation: fadeUp .8s .4s both; }

    /* --- REDUCED MOTION (Accessibility) --- */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .fade-up {
        opacity: 1;
        transform: none;
      }
      .hero-video-portrait,
      .guide-avatar-ring {
        animation: none;
      }
      html {
        scroll-behavior: auto;
      }
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 900px) {
      .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .hero-content { max-width: 100%; }
      .hero-subtitle { max-width: 100%; }
      .hero-cta-row { flex-direction: column; align-items: center; }
      .hero .cta-reassurance { text-align: center; }
      .hero-visual { order: -1; }
      .hero-video-portrait { width: 220px; margin: 0 auto; }

      .problem-cards { grid-template-columns: 1fr; max-width: 500px; }

      .guide .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
      }
      .guide-visual { order: -1; }
      .guide-empathy { border-left: none; padding-left: 0; border-top: 3px solid var(--cta-primary); padding-top: 20px; }
      .guide-logos { justify-content: center; }
      .guide-domenic { justify-content: center; }

      .plan-steps { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }

      .success-grid { grid-template-columns: 1fr; max-width: 500px; }

      .testimonial-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

      /* Mobile: always-visible header — frosted dark glass on hero, solid on scroll */
      .topnav {
        padding: 18px 6px;
        background: rgba(27, 42, 74, .7);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255,255,255,.1);
        transition: background .4s ease, border-bottom .4s ease;
      }
      .topnav .topnav-logo img {
        filter: brightness(0) invert(1);
      }
      .topnav.scrolled {
        background: rgba(27, 42, 74, .95);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255,255,255,.12);
      }
      .topnav.scrolled .topnav-logo img {
        filter: brightness(0) invert(1);
      }
      .hero-mobile-logo { display: none !important; }
      .topnav .container { width: 100%; padding: 0 24px; display: flex; align-items: center; }
      .topnav-logo { display: flex; align-items: center; }
      .topnav-links > a:not(.topnav-cta):not(.topnav-cta-secondary) { display: none; }
      .topnav-links { gap: 8px; }
      .topnav .lang-switcher { display: none !important; }
      .footer-lang { display: inline-flex !important; }
      .footer-lang .lang-btn {
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.2);
        padding: 5px 10px;
        font-size: .78rem;
        gap: 5px;
        border-radius: 8px;
        color: rgba(255,255,255,.6);
      }
      .footer-lang .lang-btn:hover { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.35); }
      .footer-lang .lang-dropdown { right: auto; left: 50%; transform: translateX(-50%) translateY(6px); min-width: 150px; }
      .footer-lang.open .lang-dropdown { transform: translateX(-50%) translateY(0); }
      .topnav-cta {
        padding: 7px 14px !important;
        font-size: .75rem !important;
        box-shadow: none;
      }
      .topnav-cta-secondary { padding: 6px 12px !important; font-size: .72rem !important; color: #fff !important; border-color: rgba(255,255,255,.4) !important; background: transparent !important; }
      .topnav-cta-secondary:hover { border-color: #fff !important; background: rgba(255,255,255,.1) !important; }
      .topnav-logo .logo-full { display: inline-block !important; height: auto; width: clamp(160px, 48vw, 230px); max-width: 220px; vertical-align: middle; }
      .topnav-logo .logo-icon { display: none !important; }

      .footer-inner { flex-direction: column; align-items: center; text-align: center; }
      .footer-links { justify-content: center; flex-wrap: wrap; }
      .footer-bottom { justify-content: center; }
      .plan-step:not(:last-child)::after { display: none; }
    }

    @media (max-width: 400px) {
      .topnav-logo .logo-full { max-width: 120px; }
      .topnav-cta { padding: 5px 10px !important; font-size: .65rem !important; }
      .topnav-cta-secondary { padding: 5px 8px !important; font-size: .62rem !important; }
      .topnav .container { padding: 0 12px; }
    }

    @media (max-width: 640px) {
      .success-grid { grid-template-columns: 1fr; }
      .testimonial-cards { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 2.2rem; }
      .section-heading { font-size: 1.5rem; }
      .hero-video-portrait { width: 220px; }
    }

    /* =========================================================
       OPTION A — AMBIENT-LIGHT GLASSMORPHISM
       Navy primary · violet + warm accent glows behind frosted
       white surfaces · existing light hierarchy preserved.
    ========================================================= */
    :root {
      --navy-deep: #0F1A35;
      --accent-violet: #5B6FC9;
      --glass-light: rgba(255,255,255,.62);
      --glass-light-strong: rgba(255,255,255,.80);
      --glass-border-light: rgba(255,255,255,.75);
      --glass-shadow-light: 0 8px 32px rgba(27,42,74,.08), inset 0 1px 0 rgba(255,255,255,.9);
    }

    /* Fixed ambient orb canvas — sits behind every section */
    body { background: transparent !important; }
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(720px circle at 8% 12%, rgba(27,42,74,.22), transparent 55%),
        radial-gradient(640px circle at 92% 38%, rgba(91,111,201,.22), transparent 55%),
        radial-gradient(520px circle at 22% 72%, rgba(232,101,43,.16), transparent 60%),
        radial-gradient(800px circle at 85% 92%, rgba(27,42,74,.18), transparent 60%),
        linear-gradient(180deg, #F8FAFD 0%, #EEF2F8 100%);
      filter: saturate(115%);
    }

    /* Light sections → transparent so ambient glows through */
    .problem, .guide, .plan, .success, .testimonials {
      background: transparent !important;
    }

    /* Enhance dark sections with subtle violet lift */
    .hero, .failure, .final-cta {
      background: linear-gradient(160deg, #0F1A35 0%, #1B2A4A 42%, #2D4A7A 78%, #3D4F9A 100%) !important;
    }

    /* Frosted "liquid glass" cards */
    .problem-card,
    .testimonial-card,
    .plan-step,
    .success-item {
      background: var(--glass-light) !important;
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid var(--glass-border-light) !important;
      box-shadow: var(--glass-shadow-light) !important;
      border-radius: 20px !important;
      transition: background .3s ease, transform .3s ease, box-shadow .3s ease, border-color .3s ease !important;
    }
    .problem-card:hover,
    .testimonial-card:hover,
    .plan-step:hover,
    .success-item:hover {
      background: var(--glass-light-strong) !important;
      box-shadow: 0 18px 52px rgba(27,42,74,.14), inset 0 1px 0 rgba(255,255,255,.95) !important;
      transform: translateY(-4px) !important;
    }

    /* Problem card keeps its orange left-accent cue */
    .problem-card { border-left: 3px solid transparent !important; }
    .problem-card:hover { border-left-color: var(--cta-primary) !important; }

    /* Icon chips — frosted tint */
    .problem-card-icon.red    { background: rgba(232,101,43,.14) !important; }
    .problem-card-icon.amber,
    .problem-card-icon.purple { background: rgba(91,111,201,.14) !important; color: var(--accent-violet) !important; }

    /* Hero video — glass edge (no backdrop-filter; video covers the frame) */
    .hero-video-portrait {
      border: 1px solid rgba(255,255,255,.22) !important;
      box-shadow:
        0 30px 80px rgba(15,26,53,.45),
        0 0 0 1px rgba(255,255,255,.08),
        inset 0 1px 0 rgba(255,255,255,.28) !important;
    }

    /* Hero eyebrow → glass pill */
    .hero-eyebrow {
      background: rgba(255,255,255,.10) !important;
      -webkit-backdrop-filter: blur(14px) saturate(160%);
      backdrop-filter: blur(14px) saturate(160%);
      border: 1px solid rgba(255,255,255,.22) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
    }

    /* Topnav → liquid glass (DESKTOP ONLY — mobile keeps baseline dark nav) */
    @media (min-width: 901px) {
      .topnav {
        background: rgba(255,255,255,.72) !important;
        -webkit-backdrop-filter: blur(28px) saturate(200%) !important;
        backdrop-filter: blur(28px) saturate(200%) !important;
        border-bottom: 1px solid rgba(255,255,255,.6) !important;
        box-shadow: 0 1px 0 rgba(27,42,74,.05), inset 0 1px 0 rgba(255,255,255,.75) !important;
      }
    }

    /* CTA button — soften orange glow against ambient bg */
    .btn-primary {
      box-shadow: 0 8px 28px rgba(232,101,43,.28), inset 0 1px 0 rgba(255,255,255,.25) !important;
    }

    /* Re-enable Ty's subtle float + blink crossfade even under OS reduced-motion.
       These micro-motions are non-disorienting and part of the character's life. */
    @media (prefers-reduced-motion: reduce) {
      .guide-avatar-ring {
        animation: floatSlow 7s ease-in-out infinite !important;
        animation-duration: 7s !important;
        animation-iteration-count: infinite !important;
      }
      [data-ty-blink] .ty-eyes-closed img {
        transition: opacity 90ms ease-in-out !important;
        transition-duration: 90ms !important;
      }
    }

    /* Ty blink — generic, works on any [data-ty-blink] container (homepage + get pages) */
    [data-ty-blink] { position: relative; }
    [data-ty-blink] .ty-eyes { display: contents; }
    [data-ty-blink] .ty-eyes-open img,
    [data-ty-blink] .ty-eyes-closed img {
      position: absolute;
      inset: 0;
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
      display: block;
    }
    [data-ty-blink] .ty-eyes-closed img {
      opacity: 0;
      transition: opacity 90ms ease-in-out;
      pointer-events: none;
    }

    /* Guide avatar — drop dashed orbit, add soft violet halo */
    .guide-avatar-ring::before { display: none !important; }
    .guide-avatar-ring {
      box-shadow:
        0 12px 40px rgba(27,42,74,.18),
        0 0 80px rgba(91,111,201,.28) !important;
    }

    /* Lang dropdown — match topnav glass vocabulary */
    .lang-dropdown {
      background: rgba(255,255,255,.97) !important;
      -webkit-backdrop-filter: blur(28px) saturate(200%);
      backdrop-filter: blur(28px) saturate(200%);
      border: 1px solid rgba(27,42,74,.08) !important;
      box-shadow: 0 16px 40px rgba(27,42,74,.18), inset 0 1px 0 rgba(255,255,255,.9) !important;
    }

    @media (prefers-reduced-motion: reduce) {
      .problem-card, .testimonial-card, .plan-step, .success-item {
        transition: none !important;
      }
      .problem-card:hover,
      .testimonial-card:hover,
      .plan-step:hover,
      .success-item:hover {
        transform: none !important;
      }
    }


/* Footer — subtle violet-navy lift to match new theme; stays solid for legibility */
.site-footer {
  background: linear-gradient(180deg, #0F1A35 0%, #131F3D 50%, #0E1830 100%) !important;
  box-shadow: inset 0 1px 0 rgba(91,111,201,.15), inset 0 -1px 0 rgba(0,0,0,.3) !important;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,111,201,.4), rgba(232,101,43,.25), rgba(91,111,201,.4), transparent);
  pointer-events: none;
}

/* =========================================================
   MOBILE SCROLL ARTIFACT MITIGATIONS
   - Hardware-promote fixed glass layers so they don't repaint on URL-bar collapse
   - Oversize the ambient canvas so its bottom edge never reveals during viewport resize
   - Hero uses dynamic viewport height so it doesn't resize when the URL bar hides
   - Fast-scroll fade-ups shortened on mobile so a "wave" of half-faded elements
     can't be perceived as a translucent bar
========================================================= */
body::before {
  inset: -10vh 0 -10vh 0 !important;
  will-change: transform;
  transform: translateZ(0);
}
.topnav {
  will-change: transform;
  transform: translateZ(0);
}
@supports (height: 100dvh) {
  .hero { min-height: 100dvh !important; }
}
@media (max-width: 900px) {
  .fade-up {
    transition: opacity .25s ease, transform .25s ease !important;
  }
}
