    :root {
      --navy-950: #03101f;
      --navy-900: #072954;
      --navy-800: #143e79;
      --blue-700: #0355bf;
      --blue-600: #176fd3;
      --blue-100: #eaf2fc;
      --ink: #252a31;
      --muted: #5f6977;
      --line: #dce4ed;
      --soft: #f5f8fc;
      --white: #ffffff;
      --success: #0d9f6e;
      --warning: #c78200;
      --danger: #d93b52;
      --shadow-sm: 0 10px 30px rgba(10, 19, 36, 0.08);
      --shadow-md: 0 24px 60px rgba(10, 19, 36, 0.14);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 30px;
      --container: 1220px;
      --transition: 220ms ease;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    button { cursor: pointer; }
    .container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
    .section { padding: 96px 0; }
    .section-tight { padding: 72px 0; }
    .soft-section { background: var(--soft); }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 9px; min-height: 34px; padding: 6px 12px;
      border: 1px solid rgba(3,85,191,.2); border-radius: 999px; background: var(--blue-100);
      color: var(--blue-700); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    }
    .eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-700); box-shadow: 0 0 0 4px rgba(3,85,191,.16); }
    h1,h2,h3,h4,p { margin-top: 0; }
    h1,h2,h3,h4 { line-height: 1.12; letter-spacing: -.035em; }
    h1 { font-size: clamp(3rem, 5.6vw, 5.35rem); margin-bottom: 24px; }
    h2 { font-size: clamp(2.25rem, 4vw, 3.75rem); margin-bottom: 20px; }
    h3 { font-size: clamp(1.28rem, 2vw, 1.75rem); margin-bottom: 14px; }
    p { color: var(--muted); font-size: 1rem; }
    .highlight { color: var(--blue-700); }
    .section-heading { max-width: 790px; margin-bottom: 48px; }
    .section-heading.center { margin-inline: auto; text-align: center; }
    .section-heading p { max-width: 690px; margin-bottom: 0; font-size: 1.07rem; }
    .section-heading.center p { margin-inline: auto; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px;
      padding: 13px 22px; border: 1px solid transparent; border-radius: 10px; font-weight: 800;
      letter-spacing: -.01em; transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:focus-visible, button:focus-visible, a:focus-visible { outline: 3px solid rgba(3,85,191,.28); outline-offset: 3px; }
    .btn-primary { color: var(--white); background: var(--blue-700); box-shadow: 0 12px 24px rgba(3,85,191,.24); }
    .btn-primary:hover { background: #064da8; }
    .btn-dark { color: var(--white); background: var(--ink); }
    .btn-dark:hover { background: #18243a; }
    .btn-light { color: var(--ink); background: var(--white); border-color: var(--line); }
    .btn-light:hover { border-color: var(--blue-700); }
    .btn-arrow { width: 20px; height: 20px; transition: transform var(--transition); }
    .btn:hover .btn-arrow { transform: translateX(3px); }

    .topbar { min-height: 34px; background: var(--navy-900); color: rgba(255,255,255,.88); font-size: .73rem; font-weight: 700; }
    .topbar-inner { min-height: 34px; display: flex; justify-content: flex-end; align-items: center; gap: 22px; }
    .topbar a:hover { color: var(--white); }
    .site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(223,229,239,.8); backdrop-filter: blur(14px); }
    .nav-wrap { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
    .brand-logo { display: inline-flex; align-items: center; min-width: 194px; }
    .brand-logo-image { width: 172px; height: auto; object-fit: contain; }
    .primary-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
    .primary-nav a { position: relative; color: #1a263a; font-size: .93rem; font-weight: 600; }
    .primary-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 2px; background: var(--blue-700); transform: scaleX(0); transition: transform var(--transition); }
    .primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
    .primary-nav a[aria-current="page"] { color: var(--blue-700); }
    .nav-actions { display: flex; align-items: center; gap: 18px; }
    .phone-block { display: flex; align-items: center; gap: 9px; white-space: nowrap; }
    .phone-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); display: grid; place-items: center; }
    .phone-copy strong { display: block; font-size: .88rem; line-height: 1.1; }
    .phone-copy span { display: block; color: var(--muted); font-size: .68rem; font-weight: 700; }
    .menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }

    /* ===================== BRAND HERO (Matching Home) ===================== */
    .brand-hero {
      position: relative;
      padding: 50px 0 40px;
      overflow: hidden;
      z-index: 0;
      background:
        radial-gradient(circle at 76% 14%, rgba(52, 99, 255, 0.26), transparent 30%),
        radial-gradient(circle at 88% 80%, rgba(111, 57, 255, 0.18), transparent 32%),
        linear-gradient(125deg, #050716 0%, #0a1026 53%, #090d20 100%);
    }
    .brand-hero::before,
    .brand-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: -2;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .brand-hero::before {
      -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%);
      mask-image: linear-gradient(to right, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%);
    }
    .brand-hero::after {
      z-index: -1;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
      -webkit-mask-image: radial-gradient(350px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), black 0%, transparent 100%);
      mask-image: radial-gradient(350px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), black 0%, transparent 100%);
    }
    
    .brand-hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 72px; min-height: 700px; }
    .brand-hero-copy { max-width: 620px; }
    
    /* Typography */
    .brand-hero h1 { 
      color: #ffffff;
      font-size: clamp(2.5rem, 4.5vw, 50px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.035em;
      margin-top: 0;
      margin-bottom: 24px; 
    }
    .brand-hero .hero-lead { 
      max-width: 560px;
      margin-bottom: 32px;
      font-size: 16px;
      color: #94a3b8;
      line-height: 1.7;
    }
    .brand-hero .highlight {
      background: linear-gradient(135deg, #60a5fa, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Badge */
    .brand-hero .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 20px;
      background: rgba(96, 165, 250, 0.15);
      border: 1px solid rgba(96, 165, 250, 0.3);
      color: #93c5fd;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 24px;
      box-shadow: 0 2px 10px rgba(37, 99, 235, 0.08);
    }
    .brand-hero .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 12px currentColor;
    }

    /* Buttons */
    .brand-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
    .brand-hero .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 52px;
      padding: 13px 22px;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: -0.01em;
      transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), background 300ms ease, box-shadow 300ms ease;
      border: 1px solid transparent;
    }
    .brand-hero .btn-primary {
      color: var(--white);
      background: var(--blue-600);
      box-shadow: 0 16px 32px rgba(37, 99, 235, 0.24), inset 0 1px 0 rgba(255,255,255,0.15);
    }
    .brand-hero .btn-primary:hover {
      background: var(--blue-700);
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
    }
    .brand-hero .btn-light {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .brand-hero .btn-light:hover {
      background: rgba(255, 255, 255, 0.15); 
      border-color: rgba(255, 255, 255, 0.3); 
      color: #ffffff; 
    }

        /* Points */
    .brand-hero .hero-points {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 12px;
      padding: 0;
      margin: 0;
      list-style: none;
      max-width: 100%;
    }
    .brand-hero .hero-points li {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #f1f5f9;
      font-size: 0.9rem;
      font-weight: 500;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 10px 16px 10px 12px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .brand-hero .hero-points li:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      border-color: rgba(255, 255, 255, 0.2);
    }
    .brand-hero .check {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(37, 99, 235, 0.2);
      color: #60a5fa;
      font-size: 0.85rem;
      font-weight: 700;
      flex: 0 0 24px;
    }

    .brand-console { position: relative; min-height: 570px; }
    .console-shell { position: absolute; inset: 24px 16px 30px 24px; border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(145deg,#f8fbff,#fff); box-shadow: var(--shadow-md); overflow: hidden; }
    .console-top { height: 68px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.92); }
    .console-title { display: flex; align-items: center; gap: 10px; font-weight: 850; color: #13223b; }
    .console-status { display: inline-flex; align-items: center; gap: 7px; color: var(--success); font-size: .72rem; font-weight: 800; }
    .console-grid { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 430px; }
    .console-map { position: relative; padding: 28px; background: linear-gradient(160deg,#0b2c5d,#061629); overflow: hidden; }
    .console-map::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px); background-size: 36px 36px; }
    .route-title { position: relative; z-index: 2; color: var(--white); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
    .route-line { position: absolute; left: 58px; right: 44px; top: 214px; height: 3px; background: linear-gradient(90deg,#6da8ff,#fff,#6da8ff); box-shadow: 0 0 14px rgba(109,168,255,.5); }
    .route-node { position: absolute; width: 74px; height: 74px; border-radius: 18px; display: grid; place-items: center; text-align: center; padding: 8px; color: var(--white); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(8px); font-size: .68rem; font-weight: 800; z-index: 2; }
    .route-node svg { width: 26px; height: 26px; margin: 0 auto 4px; }
    .node-brand { left: 28px; top: 174px; }
    .node-agl { left: 50%; top: 160px; transform: translateX(-50%); border-color: #6da8ff; background: var(--blue-700); }
    .node-buyers { right: 24px; top: 174px; }
    .market-chip { position: absolute; z-index: 2; padding: 10px 13px; border-radius: 11px; background: rgba(255,255,255,.95); color: #25354f; box-shadow: 0 12px 24px rgba(0,0,0,.18); font-size: .7rem; font-weight: 850; }
    .chip-one { left: 30px; bottom: 48px; }
    .chip-two { right: 28px; top: 92px; }
    .console-panel { padding: 28px 24px; }
    .panel-kicker { color: var(--blue-700); font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
    .readiness-score { display: flex; align-items: center; gap: 18px; margin: 18px 0 22px; }
    .score-ring { width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--blue-700) 0 82%, #e4eaf2 82% 100%); position: relative; }
    .score-ring::after { content:"82%"; position:absolute; inset:11px; border-radius:50%; display:grid; place-items:center; background:var(--white); color:var(--ink); font-size:1.12rem; font-weight:900; }
    .score-copy strong { display:block; color:#15223a; font-size:1.02rem; }
    .score-copy span { color:var(--muted); font-size:.74rem; }
    .readiness-list { display:grid; gap:12px; }
    .readiness-row { display:grid; grid-template-columns: 1fr auto; align-items:center; gap:10px; padding-bottom:12px; border-bottom:1px solid var(--line); font-size:.76rem; font-weight:750; color:#314057; }
    .readiness-row:last-child { border-bottom:0; }
    .readiness-tag { padding:4px 8px; border-radius:999px; background:#e9f9f3; color:var(--success); font-size:.64rem; font-weight:850; }
    .floating-note { position:absolute; z-index:5; min-width:190px; padding:14px 16px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.97); box-shadow:var(--shadow-sm); }
    .floating-note small { display:block; color:var(--muted); font-size:.66rem; font-weight:750; text-transform:uppercase; letter-spacing:.07em; }
    .floating-note strong { display:block; color:#17243a; font-size:.9rem; }
    .note-one { left:-10px; top:6px; }
    .note-two { right:-6px; bottom:0; }

    .trust-strip { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fbfcfe; }
    .trust-inner { min-height:88px; display:grid; grid-template-columns:auto 1fr; align-items:center; gap:32px; }
    .trust-label { max-width:210px; color:#26344a; font-size:.78rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
    .trust-items { display:grid; grid-template-columns:repeat(5,1fr); gap:18px; }
    .trust-item { display:flex; align-items:center; justify-content:center; gap:8px; color:#637087; font-size:.82rem; font-weight:800; text-align:center; }
    .trust-item svg { flex:0 0 18px; color:var(--blue-700); }

    .progress-layout { display:grid; grid-template-columns:.82fr 1.18fr; gap:84px; align-items:start; }
    .progress-intro { position:sticky; top:126px; }
    .progress-intro p { max-width:470px; }
    .progress-note { margin-top:28px; padding:20px; border-left:4px solid var(--blue-700); background:var(--blue-100); border-radius:0 14px 14px 0; color:#273852; font-size:.9rem; font-weight:650; }
    .progress-stack { display:grid; gap:18px; }
    .progress-card { display:grid; grid-template-columns:70px 1fr; gap:22px; padding:26px 28px; border:1px solid var(--line); border-radius:var(--radius-md); background:var(--white); box-shadow:0 8px 22px rgba(10,19,36,.055); }
    .progress-card:hover { border-color:rgba(3,85,191,.35); }
    .progress-number { width:56px; height:56px; display:grid; place-items:center; border-radius:16px; color:var(--blue-700); background:var(--blue-100); font-size:1.15rem; font-weight:900; }
    .progress-card p { margin-bottom:0; }
    .before-after { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:12px; margin-top:16px; }
    .state-pill { padding:9px 12px; border-radius:10px; background:var(--soft); color:#536176; font-size:.72rem; font-weight:800; }
    .state-pill.after { background:#e9f9f3; color:#087c58; }
    .state-arrow { color:var(--blue-700); font-weight:900; }

    .pathway { position:relative; overflow:hidden; background:var(--navy-950); color:var(--white); }
    .pathway::before { content:""; position:absolute; width:560px; height:560px; left:-280px; bottom:-340px; border-radius:50%; border:100px solid rgba(23,111,211,.09); }
    .pathway .section-heading p { color:rgba(255,255,255,.68); }
    .pathway .eyebrow { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.14); color:#a9c9ff; }
    .pathway-grid { position:relative; z-index:2; display:grid; grid-template-columns:repeat(5,1fr); gap:0; border:1px solid rgba(255,255,255,.1); border-radius:24px; overflow:hidden; }
    .path-step { min-height:300px; padding:28px 24px; border-right:1px solid rgba(255,255,255,.1); background:rgba(255,255,255,.025); transition:background var(--transition); }
    .path-step:last-child { border-right:0; }
    .path-step:hover { background:rgba(255,255,255,.055); }
    .path-index { display:block; margin-bottom:38px; color:#6fa8f5; font-size:2rem; font-weight:900; }
    .path-step h3 { color:var(--white); font-size:1.16rem; }
    .path-step p { color:rgba(255,255,255,.63); font-size:.88rem; }
    .path-output { display:inline-flex; align-items:center; gap:7px; margin-top:14px; color:#b8d4ff; font-size:.7rem; font-weight:800; text-transform:uppercase; letter-spacing:.07em; }

    #readiness {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 88% 12%, rgba(37,99,235,.08), transparent 30%),
        #f3f4f6;
    }

    /* Mobile hero: content only. Desktop hero remains unchanged. */
    @media (max-width:760px) {
      .brand-hero {
        min-height:0;
        padding:42px 0 48px !important;
      }
      .brand-hero .brand-hero-grid {
        grid-template-columns:minmax(0,1fr) !important;
        min-height:0;
        gap:0;
      }
      .brand-hero .brand-animated-pills {
        display:none !important;
      }
      .brand-hero .brand-hero-copy {
        width:100%;
        max-width:none !important;
        margin:0 !important;
        text-align:left !important;
      }
      .brand-hero .badge {
        margin-bottom:18px;
        padding:7px 12px;
        font-size:.68rem;
        line-height:1.35;
      }
      .brand-hero h1 {
        max-width:none !important;
        margin-bottom:18px;
        font-size:clamp(2.15rem,10.5vw,2.85rem) !important;
        line-height:1.08;
        letter-spacing:-.035em;
        text-align:left !important;
      }
      .brand-hero .hero-lead {
        max-width:none;
        margin:0 0 26px !important;
        font-size:.94rem;
        line-height:1.65;
      }
      .brand-hero .hero-actions {
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
        margin:0;
      }
      .brand-hero .hero-actions .btn {
        width:100%;
        min-height:50px;
        padding:12px 16px;
        font-size:.84rem;
      }
      .brand-hero .hero-points {
        display:none !important;
      }
    }
    #readiness .section-heading .eyebrow {
      border-color: rgba(37,99,235,.2);
      border-radius: 20px;
      background: #eff6ff;
      color: #2563eb;
    }
    #readiness .section-heading .eyebrow-dot {
      background: #2563eb;
      box-shadow: 0 0 0 4px rgba(37,99,235,.14);
    }
    #readiness .section-heading h2 {
      color: #0a0a23;
      font-size: clamp(2rem,3vw,2.25rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    #readiness .section-heading .highlight { color: #2563eb; }
    #readiness .section-heading p { color: #4b5563; }
    .readiness-layout { display:grid; grid-template-columns:.78fr 1.22fr; gap:70px; align-items:start; }
    .readiness-nav { padding:20px; border:1px solid #e5e7eb; border-radius:16px; background:#fff; box-shadow:0 4px 20px rgba(10,10,35,.08); }
    .readiness-tab { width:100%; display:flex; align-items:center; gap:14px; padding:16px 14px; border:0; border-bottom:1px solid #e5e7eb; background:transparent; color:#4b5563; text-align:left; font-weight:800; transition:background var(--transition),color var(--transition),box-shadow var(--transition); }
    .readiness-tab:last-child { border-bottom:0; }
    .readiness-tab:hover, .readiness-tab.active { color:#2563eb; background:#eff6ff; border-radius:8px; box-shadow:inset 3px 0 0 #2563eb; }
    .tab-icon { width:38px; height:38px; flex:0 0 38px; display:grid; place-items:center; border-radius:8px; background:#1f2937; color:#fff; transition:background var(--transition),box-shadow var(--transition); }
    .readiness-tab:hover .tab-icon, .readiness-tab.active .tab-icon { background:#2563eb; box-shadow:0 0 20px rgba(37,99,235,.28); }
    .readiness-content { position:relative; min-height:500px; isolation:isolate; }
    .readiness-content::before {
      content:"";
      position:absolute;
      inset:10px -15px -10px 10px;
      z-index:-1;
      border:1px solid rgba(255,255,255,.15);
      border-radius:24px;
      background:
        linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px),
        radial-gradient(circle at 90% 50%,rgba(37,99,235,.25),transparent 70%),
        linear-gradient(125deg,#050716 0%,#0a1026 53%,#090d20 100%);
      background-size:32px 32px,32px 32px,100% 100%,100% 100%;
      box-shadow:0 10px 20px rgba(0,0,0,.2);
    }
    .readiness-pane { display:none; position: relative; padding:38px; border:1px solid #e5e7eb; border-radius:24px; background:#fff; box-shadow:0 12px 40px rgba(10,10,35,.12); overflow: hidden; transition:transform 400ms cubic-bezier(.16,1,.3,1); }
    .readiness-pane::after { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-image: linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px); background-size: 32px 32px; }
    .readiness-pane > * { position: relative; z-index: 1; }
    .readiness-pane.active { display:block; animation:fadeIn .25s ease; }
    .readiness-content:hover .readiness-pane.active { transform:translateY(-8px); }
    @keyframes fadeIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:none; } }
    .pane-header { display:flex; align-items:flex-start; justify-content:space-between; gap:22px; margin-bottom:26px; }
    .pane-header h3 { color:#0a0a23; }
    .pane-header p { color:#4b5563; }
    .pane-badge { flex:0 0 auto; padding:7px 12px; border-radius:20px; background:#eff6ff; color:#2563eb; border:1px solid rgba(37,99,235,.15); font-size:.68rem; font-weight:800; text-transform:uppercase; letter-spacing:.04em; }
    .data-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
    .data-card { padding:18px; border:1px solid #e5e7eb; border-radius:12px; background:#fff; transition:all var(--transition); cursor:default; box-shadow:0 2px 8px rgba(0,0,0,.04); }
    .data-card:hover { transform:translateY(-4px); border-color:rgba(37,99,235,.3); box-shadow:0 12px 40px rgba(10,10,35,.12); }
    .data-card strong { display:block; margin-bottom:5px; color:#111827; font-size:.88rem; transition:color var(--transition); }
    .data-card:hover strong { color:#2563eb; }
    .data-card span { display:block; color:#4b5563; font-size:.78rem; }
    .pane-note { margin-top:20px; padding:16px 18px; border-radius:12px; background:#0a0a23; color:rgba(255,255,255,.84); font-size:.82rem; border:1px solid rgba(255,255,255,.1); position:relative; overflow:hidden; }
    .pane-note::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; z-index: 0; }
    .pane-note > * { position: relative; z-index: 1; }

    .routes-grid { display:grid; grid-template-columns:1.15fr .85fr .85fr; grid-template-rows:auto auto; gap:20px; }
    .route-card { position:relative; overflow:hidden; min-height:260px; padding:30px; border:1px solid var(--line); border-radius:var(--radius-md); background:var(--white); transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
    .route-card:hover { transform:translateY(-4px); border-color:rgba(3,85,191,.35); box-shadow:var(--shadow-sm); }
    .route-card.featured { grid-row:span 2; min-height:540px; color:var(--white); background:linear-gradient(150deg,#0a356f,#03101f); border-color:transparent; }
    .route-card.featured p { color:rgba(255,255,255,.68); }
    .route-card.featured .route-icon { background:rgba(255,255,255,.09); color:#9bc4ff; }
    .route-icon { width:50px; height:50px; display:grid; place-items:center; margin-bottom:22px; border-radius:13px; background:var(--blue-100); color:var(--blue-700); }
    .route-card ul { display:grid; gap:10px; padding:0; margin:24px 0 0; list-style:none; }
    .route-card li { display:flex; gap:8px; color:inherit; font-size:.84rem; font-weight:650; }
    .route-card:not(.featured) li { color:#46556b; }
    .route-visual { position:relative; height:360px; margin-top:28px; overflow:hidden; border:0; border-radius:18px; background:radial-gradient(circle at 50% 50%,rgba(37,99,235,.15),transparent 48%),rgba(255,255,255,.04); }
    .route-curve { position:absolute; inset:0; z-index:1; width:100%; height:100%; overflow:visible; pointer-events:none; }
    .route-curve path { fill:none; stroke:rgba(255,255,255,.92); stroke-width:4; stroke-linecap:square; stroke-linejoin:round; vector-effect:non-scaling-stroke; filter:drop-shadow(0 0 8px rgba(37,99,235,.55)); }
    .route-flow-layer { position:absolute; inset:0; z-index:3; pointer-events:none; }
    .route-stop { position:absolute; z-index:4; width:146px; display:flex; flex-direction:column; gap:9px; }
    .route-stop-source { left:20px; top:20px; }
    .route-stop-hub { left:50%; top:44%; align-items:center; text-align:center; transform:translate(-50%,-30px); }
    .route-stop-market { right:20px; bottom:0; align-items:flex-end; text-align:right; }
    .route-stop-copy { width:126px; padding:6px 8px; border-radius:8px; background:rgba(5,7,22,.74); box-shadow:0 5px 18px rgba(0,0,0,.12); line-height:1.25; }
    .route-stop-source .route-stop-copy,
    .route-stop-market .route-stop-copy { width:108px; }
    .route-stop-copy strong { display:block; color:#fff; font-size:.75rem; font-weight:800; letter-spacing:.01em; }
    .route-stop-copy span { display:block; margin-top:4px; color:rgba(255,255,255,.62); font-size:.64rem; }
    .route-stage { position:relative; z-index:4; width:60px; height:60px; flex:0 0 60px; display:grid; place-items:center; border:0; border-radius:14px; background:#fff; color:#2563eb; box-shadow:0 12px 24px rgba(0,0,0,.24); transition:transform 260ms ease,background 260ms ease,color 260ms ease,box-shadow 260ms ease; }
    .route-stage svg { width:28px; height:28px; }
    .route-stage-hub { background:#2563eb; color:#fff; }
    .route-stage.is-active { background:#2563eb; color:#fff; box-shadow:0 0 0 6px rgba(37,99,235,.15),0 0 28px rgba(37,99,235,.55); transform:scale(1.08); }
    .route-parcel { position:absolute; left:0; top:0; width:30px; height:26px; filter:drop-shadow(0 6px 8px rgba(0,0,0,.32)); transform-origin:center; }
    .route-parcel svg { display:block; width:30px; height:26px; }

    .control-band { position:relative; overflow:hidden; background:var(--navy-900); color:var(--white); }
    .control-band::after { content:""; position:absolute; inset:0 0 0 55%; background:radial-gradient(circle at 70% 40%,rgba(23,111,211,.25),transparent 55%); }
    .control-grid { position:relative; z-index:2; display:grid; grid-template-columns:.9fr 1.1fr; align-items:center; gap:72px; }
    .control-copy p { color:rgba(255,255,255,.7); }
    .control-list { display:grid; gap:16px; margin-top:28px; }
    .control-item { display:grid; grid-template-columns:44px 1fr; gap:14px; }
    .control-item-icon { width:44px; height:44px; display:grid; place-items:center; border-radius:12px; background:rgba(255,255,255,.08); color:#a9c9ff; }
    .control-item strong { display:block; color:var(--white); font-size:.9rem; }
    .control-item span { color:rgba(255,255,255,.62); font-size:.8rem; }
    .control-dashboard { position:relative; min-height:520px; }
    .control-window { position:absolute; inset:25px 0 25px 20px; border-radius:24px; background:#fff; box-shadow:0 28px 60px rgba(0,0,0,.32); overflow:hidden; }
    .window-top { height:58px; display:flex; align-items:center; gap:8px; padding:0 20px; border-bottom:1px solid var(--line); background:#f8faff; }
    .window-dot { width:9px; height:9px; border-radius:50%; background:#c8d1df; }
    .window-body { display:grid; grid-template-columns:150px 1fr; min-height:410px; }
    .window-side { padding:20px 14px; background:#082850; }
    .side-line { height:12px; margin-bottom:14px; border-radius:999px; background:rgba(255,255,255,.16); }
    .side-line.short { width:70%; }
    .window-main { padding:22px; background:#f7f9fc; }
    .window-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
    .window-metric { padding:16px; border:1px solid var(--line); border-radius:12px; background:#fff; }
    .window-metric strong { display:block; color:var(--blue-700); font-size:1.1rem; }
    .window-metric span { color:var(--muted); font-size:.66rem; }
    .window-table { margin-top:16px; border:1px solid var(--line); border-radius:14px; overflow:hidden; }
    .window-row { display:grid; grid-template-columns:1.2fr .8fr .6fr; gap:10px; align-items:center; min-height:44px; padding:0 13px; border-bottom:1px solid var(--line); background:#fff; color:#5e6c80; font-size:.67rem; }
    .window-row.head { background:#eef3f9; color:#29384f; font-weight:850; }
    .window-row:last-child { border-bottom:0; }
    .dashboard-float { position:absolute; z-index:4; padding:13px 16px; border-radius:12px; color:#223149; background:#fff; box-shadow:var(--shadow-sm); font-size:.74rem; font-weight:850; }
    .dashboard-float.one { right:-16px; top:6px; }
    .dashboard-float.two { left:-6px; bottom:4px; color:var(--success); }

    .stakeholder-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
    .stakeholder-card { min-height:310px; padding:26px; border:1px solid var(--line); border-radius:var(--radius-md); background:var(--white); }
    .stakeholder-icon { width:48px; height:48px; display:grid; place-items:center; margin-bottom:22px; border-radius:13px; color:var(--blue-700); background:var(--blue-100); }
    .stakeholder-card h3 { font-size:1.12rem; }
    .stakeholder-card p { font-size:.86rem; }
    .stakeholder-label { display:block; margin-top:18px; color:#8a97aa; font-size:.65rem; font-weight:850; text-transform:uppercase; letter-spacing:.08em; }
    .stakeholder-proof { margin-top:8px; color:#2a3a52; font-size:.78rem; font-weight:750; }

    .fit-layout { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
    .fit-card { padding:38px; border:1px solid var(--line); border-radius:28px; background:var(--white); box-shadow:var(--shadow-sm); }
    .fit-card.ready { border-top:5px solid var(--success); }
    .fit-card.prepare { border-top:5px solid var(--blue-700); }
    .fit-list { display:grid; gap:13px; padding:0; margin:24px 0 0; list-style:none; }
    .fit-list li { display:flex; gap:11px; color:#34435a; font-size:.9rem; font-weight:650; }
    .fit-list-icon { width:22px; height:22px; flex:0 0 22px; display:grid; place-items:center; border-radius:50%; background:#e9f9f3; color:var(--success); font-size:.72rem; font-weight:900; }
    .prepare .fit-list-icon { background:var(--blue-100); color:var(--blue-700); }

    .documents-layout { display:grid; grid-template-columns:.74fr 1.26fr; gap:72px; align-items:start; }
    .document-intro { position:sticky; top:126px; }
    .document-list { border-top:1px solid var(--line); }
    .document-item { border-bottom:1px solid var(--line); }
    .document-question { width:100%; min-height:82px; padding:18px 4px; display:flex; align-items:center; justify-content:space-between; gap:18px; border:0; background:transparent; color:var(--ink); text-align:left; font-weight:800; }
    .document-title { display:flex; align-items:center; gap:15px; }
    .document-number { width:38px; height:38px; flex:0 0 38px; display:grid; place-items:center; border-radius:11px; background:var(--blue-100); color:var(--blue-700); font-size:.76rem; font-weight:900; }
    .document-icon { width:34px; height:34px; flex:0 0 34px; display:grid; place-items:center; border-radius:50%; background:var(--soft); color:var(--blue-700); font-size:1.2rem; transition:transform var(--transition),background var(--transition); }
    .document-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows 260ms ease; }
    .document-answer>div { overflow:hidden; }
    .document-answer p { padding:0 56px 24px 57px; margin:0; }
    .document-item.open .document-answer { grid-template-rows:1fr; }
    .document-item.open .document-icon { transform:rotate(45deg); background:var(--blue-100); }

    .faq-layout { display:grid; grid-template-columns:.78fr 1.22fr; gap:72px; align-items:start; }
    .faq-intro { position:sticky; top:126px; }
    .faq-list { border-top:1px solid var(--line); }
    .faq-item { border-bottom:1px solid var(--line); }
    .faq-question { width:100%; min-height:82px; padding:18px 4px; display:flex; align-items:center; justify-content:space-between; gap:18px; border:0; background:transparent; color:var(--ink); text-align:left; font-weight:800; }
    .faq-icon { width:34px; height:34px; flex:0 0 34px; display:grid; place-items:center; border-radius:50%; background:var(--soft); color:var(--blue-700); font-size:1.2rem; transition:transform var(--transition),background var(--transition); }
    .faq-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows 260ms ease; }
    .faq-answer>div { overflow:hidden; }
    .faq-answer p { padding:0 56px 24px 4px; margin:0; }
    .faq-item.open .faq-answer { grid-template-rows:1fr; }
    .faq-item.open .faq-icon { transform:rotate(45deg); background:var(--blue-100); }

    .final-cta { padding:40px 0 100px; }
    .final-cta .container { width:min(calc(100% - 48px),1200px); }
    .cta-shell {
      position:relative;
      z-index:0;
      overflow:hidden;
      display:grid;
      grid-template-columns:1fr auto;
      align-items:center;
      gap:48px;
      padding:56px 64px;
      border:0;
      border-radius:24px;
      color:#fff;
      background:
        radial-gradient(circle at 100% 0%,rgba(37,99,235,.4) 0%,transparent 40%),
        radial-gradient(circle at 0% 100%,rgba(10,10,35,.9) 0%,transparent 50%),
        #0a0a23;
      box-shadow:0 24px 60px rgba(10,10,35,.14);
      transition:transform 300ms ease,box-shadow 300ms ease;
    }
    .cta-shell::before,
    .cta-shell::after {
      content:"";
      position:absolute;
      inset:0;
      z-index:-2;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
      background-size:48px 48px;
    }
    .cta-shell::before {
      -webkit-mask-image:linear-gradient(to right,rgba(0,0,0,.05) 0%,rgba(0,0,0,.6) 100%);
      mask-image:linear-gradient(to right,rgba(0,0,0,.05) 0%,rgba(0,0,0,.6) 100%);
    }
    .cta-shell::after {
      z-index:-1;
      background-image:
        linear-gradient(rgba(255,255,255,.15) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.15) 1px,transparent 1px);
      -webkit-mask-image:radial-gradient(350px circle at var(--mouse-x,-500px) var(--mouse-y,-500px),#000 0%,transparent 100%);
      mask-image:radial-gradient(350px circle at var(--mouse-x,-500px) var(--mouse-y,-500px),#000 0%,transparent 100%);
    }
    .cta-shell:hover { transform:translateY(-4px); box-shadow:0 32px 64px rgba(10,10,35,.2); }
    .cta-shell h2 {
      max-width:700px;
      margin-bottom:12px;
      color:#fff;
      font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
      font-size:clamp(1.8rem,3.2vw,2.6rem);
      font-weight:700;
      line-height:1.15;
      letter-spacing:-.03em;
    }
    .cta-shell h2 .highlight { color:#2563eb; }
    .cta-shell p { max-width:600px; margin-bottom:0; color:rgba(255,255,255,.75); font-size:1rem; line-height:1.7; }
    .cta-shell .btn {
      position:relative;
      z-index:2;
      justify-content:center;
      min-height:52px;
      padding:14px 28px;
      border-radius:8px;
      font-size:.95rem;
      font-weight:600;
      letter-spacing:-.01em;
      white-space:nowrap;
      transition:all 220ms ease;
    }
    .cta-shell .btn-light {
      border:1px solid rgba(255,255,255,.2);
      background:rgba(255,255,255,.1);
      color:#fff;
      backdrop-filter:blur(10px);
      -webkit-backdrop-filter:blur(10px);
    }
    .cta-shell .btn-light:hover { border-color:rgba(255,255,255,.3); background:rgba(255,255,255,.15); color:#fff; }

    /* ===================== HOME SECTION-TITLE ALIGNMENT =====================
       Header, hero and footer are intentionally excluded. */
    #brand-progress h2,
    #pathway h2,
    #readiness h2,
    #routes h2,
    #stakeholders h2,
    #fit h2,
    #faq h2 {
      font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
      font-size:clamp(2rem,3.5vw,2.8rem);
      font-weight:700;
      line-height:1.15;
      letter-spacing:-.03em;
      text-transform:none;
      margin-bottom:20px;
    }
    #brand-progress h2,
    #pathway h2,
    #readiness h2,
    #routes h2,
    #stakeholders h2,
    #fit h2,
    #faq h2 { color:#000; }
    #brand-progress .highlight,
    #pathway .highlight,
    #readiness .highlight,
    #routes .highlight,
    #stakeholders .highlight,
    #fit .highlight,
    #faq .highlight { color:#2563eb; }
    @media (max-width:640px) {
      #brand-progress h2,
      #pathway h2,
      #readiness h2,
      #routes h2,
      #stakeholders h2,
      #fit h2,
      #faq h2 { font-size:clamp(1.6rem,7vw,2.2rem); }
    }
    #brand-progress .eyebrow,
    #routes .eyebrow,
    #stakeholders .eyebrow,
    #fit .eyebrow,
    #documents .eyebrow,
    #faq .eyebrow {
      border-color:rgba(37,99,235,.2);
      border-radius:20px;
      background:#eff6ff;
      color:#2563eb;
    }
    #brand-progress .eyebrow-dot,
    #routes .eyebrow-dot,
    #stakeholders .eyebrow-dot,
    #fit .eyebrow-dot,
    #documents .eyebrow-dot,
    #faq .eyebrow-dot {
      background:#2563eb;
      box-shadow:0 0 0 4px rgba(37,99,235,.14);
    }
    #brand-progress p,
    #routes .section-heading p,
    #stakeholders .section-heading p,
    #fit .section-heading p,
    #documents .document-intro > p,
    #faq .faq-intro > p { color:#4b5563; }

    .trust-strip {
      border-color:#e5e7eb;
      background:#fafafa;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
    }
    .trust-label { color:#0a0a23; }
    .trust-item { color:#4b5563; }
    .trust-item svg { color:#2563eb; filter:drop-shadow(0 3px 7px rgba(37,99,235,.18)); }

    .progress-note {
      border-left-color:#2563eb;
      border-radius:0 12px 12px 0;
      background:#eff6ff;
      color:#1f2937;
    }
    .progress-card {
      position:relative;
      overflow:hidden;
      border-color:#e5e7eb;
      border-radius:16px;
      background:#fff;
      box-shadow:0 4px 20px rgba(10,10,35,.08);
      transition:transform 400ms cubic-bezier(.16,1,.3,1),border-color 300ms ease,box-shadow 300ms ease;
    }
    .progress-card::before {
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background-image:linear-gradient(rgba(0,0,0,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,.035) 1px,transparent 1px);
      background-size:32px 32px;
    }
    .progress-card > * { position:relative; z-index:1; }
    .progress-card:hover { transform:translateY(-6px); border-color:rgba(37,99,235,.3); box-shadow:0 12px 40px rgba(10,10,35,.12); }
    .progress-number,
    .path-index {
      width:52px;
      height:52px;
      display:grid;
      place-items:center;
      border-radius:14px;
      background:#1a1f2e;
      color:#fff;
      box-shadow:none;
      font-size:1rem;
      font-weight:800;
      transition:all .4s ease;
    }
    .progress-card:hover .progress-number,
    .path-step:hover .path-index {
      border-color:transparent;
      background:#2563eb;
      color:#fff;
      box-shadow:0 0 20px rgba(37,99,235,.4);
    }
    .progress-number svg { width:24px; height:24px; }
    .progress-card h3 { color:#0a0a23; }
    .state-pill { border-radius:20px; background:#f3f4f6; color:#4b5563; }
    .state-arrow { color:#2563eb; }

    .pathway {
      color:#111827;
      background:#fff;
    }
    .pathway::before { display:none; }
    #pathway h2 { color:#0a0a23; }
    #pathway h2 .highlight { color:#2563eb; }
    #control h2 { color:#fff; }
    .pathway .section-heading p { color:#4b5563; }
    .pathway .eyebrow {
      border-color:rgba(37,99,235,.2);
      border-radius:20px;
      background:#eff6ff;
      color:#2563eb;
    }
    .pathway .eyebrow-dot { background:#2563eb; box-shadow:0 0 0 4px rgba(37,99,235,.14); }
    .control-band .eyebrow {
      border-color:rgba(255,255,255,.15);
      border-radius:20px;
      background:rgba(255,255,255,.08);
      color:#93c5fd;
    }
    .control-band .eyebrow-dot { background:#60a5fa; box-shadow:0 0 0 4px rgba(96,165,250,.16); }
    .pathway-effect {
      position:relative;
      z-index:1;
      isolation:isolate;
    }
    .pathway-effect::before {
      content:"";
      position:absolute;
      top:10px;
      right:-15px;
      bottom:-10px;
      left:10px;
      z-index:0;
      border:1px solid rgba(255,255,255,.15);
      border-radius:24px;
      background:
        linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px),
        radial-gradient(circle at 90% 50%,rgba(37,99,235,.25),transparent 70%),
        linear-gradient(125deg,#050716 0%,#0a1026 53%,#090d20 100%);
      background-size:32px 32px,32px 32px,100% 100%,100% 100%;
      box-shadow:0 10px 20px rgba(0,0,0,.2);
    }
    .pathway-grid {
      position:relative;
      z-index:1;
      border-color:#e5e7eb;
      border-radius:16px;
      background:#fff;
      box-shadow:0 12px 40px rgba(10,10,35,.1);
      transition:transform 400ms cubic-bezier(.16,1,.3,1);
    }
    @media (hover:hover) {
      .pathway-effect:hover .pathway-grid { transform:translateY(-8px); }
    }
    .path-step { position:relative; overflow:hidden; border-right-color:#e5e7eb; background:#fff; transition:background 300ms ease; }
    .path-step::before {
      content:"";
      position:absolute;
      inset:0;
      z-index:0;
      pointer-events:none;
      opacity:0;
      background-image:
        linear-gradient(rgba(0,0,0,.04) 1px,transparent 1px),
        linear-gradient(90deg,rgba(0,0,0,.04) 1px,transparent 1px);
      background-size:32px 32px;
      transition:opacity 300ms ease;
    }
    .path-step > * { position:relative; z-index:1; }
    .path-step:hover { background:#eff6ff; }
    .path-step:hover::before { opacity:1; }
    .path-step h3 { color:#0a0a23; }
    .path-step p { color:#4b5563; }
    .path-output { color:#2563eb; }

    .route-card {
      border-color:#e5e7eb;
      border-radius:16px;
      box-shadow:0 4px 20px rgba(10,10,35,.08);
      transition:transform 400ms cubic-bezier(.16,1,.3,1),border-color 300ms ease,box-shadow 300ms ease;
    }
    .route-card-effect,
    .stakeholder-card-effect {
      position:relative;
      z-index:1;
      isolation:isolate;
    }
    .route-card-effect::before,
    .stakeholder-card-effect::before {
      content:"";
      position:absolute;
      z-index:0;
      top:10px;
      right:-15px;
      bottom:-10px;
      left:10px;
      border:1px solid rgba(255,255,255,.15);
      border-radius:24px;
      background:
        linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px),
        radial-gradient(circle at 90% 50%,rgba(37,99,235,.25),transparent 70%),
        linear-gradient(125deg,#050716 0%,#0a1026 53%,#090d20 100%);
      background-size:32px 32px,32px 32px,100% 100%,100% 100%;
      box-shadow:0 10px 20px rgba(0,0,0,.2);
      pointer-events:none;
    }
    .route-card-effect .route-card {
      z-index:1;
      width:100%;
      height:100%;
    }
    .route-card:not(.featured)::before {
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background-image:linear-gradient(rgba(0,0,0,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,.035) 1px,transparent 1px);
      background-size:32px 32px;
    }
    .route-card:not(.featured) > * { position:relative; z-index:1; }
    .route-card:hover { transform:translateY(-6px); border-color:rgba(37,99,235,.3); box-shadow:0 12px 40px rgba(10,10,35,.12); }
    .route-card-effect:hover .route-card { transform:translateY(-8px); }
    .route-card:not(.featured) h3 { color:#0a0a23; }
    .route-card.featured {
      background:
        linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px),
        radial-gradient(circle at 90% 20%,rgba(37,99,235,.32),transparent 55%),
        #0a0a23;
      background-size:32px 32px,32px 32px,100% 100%,100% 100%;
    }
    .route-icon {
      width:52px;
      height:52px;
      border-radius:14px;
      background:#1f2937;
      color:#fff;
      transition:all .4s ease;
    }
    .route-icon svg { width:26px; height:26px; }
    .route-card:hover .route-icon { background:#2563eb; color:#fff; box-shadow:0 0 20px rgba(37,99,235,.4); }
    .route-card.featured .route-icon { background:#1a1f2e; color:#fff; }
    .route-card.featured:hover .route-icon { background:#2563eb; color:#fff; box-shadow:0 0 20px rgba(37,99,235,.4); }

    .control-band {
      background:
        linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px),
        radial-gradient(circle at 85% 35%,rgba(37,99,235,.32),transparent 42%),
        #0a0a23;
      background-size:48px 48px,48px 48px,100% 100%,100% 100%;
    }
    .control-item-icon { background:rgba(255,255,255,.08); color:#93c5fd; transition:background 300ms ease,box-shadow 300ms ease; }
    .control-item:hover .control-item-icon { background:#2563eb; color:#fff; box-shadow:0 0 20px rgba(37,99,235,.35); }
    .control-window {
      border:1px solid rgba(255,255,255,.34);
      background:linear-gradient(180deg,rgba(255,255,255,.94),rgba(255,255,255,.82));
      box-shadow:0 46px 100px rgba(0,0,0,.32),0 0 42px rgba(37,99,235,.14),inset 0 1px 0 #fff;
      backdrop-filter:blur(19px) saturate(1.15);
      -webkit-backdrop-filter:blur(19px) saturate(1.15);
    }
    .window-side { background:#0a0a23; }
    .window-metric strong { color:#2563eb; }
    .dashboard-float { border:1px solid #e5e7eb; border-radius:12px; box-shadow:0 12px 40px rgba(10,10,35,.12); }

    .stakeholder-card {
      position:relative;
      overflow:hidden;
      border-color:#e5e7eb;
      border-radius:16px;
      background:#fff;
      box-shadow:0 4px 20px rgba(10,10,35,.08);
      transition:transform 400ms cubic-bezier(.16,1,.3,1),border-color 300ms ease,box-shadow 300ms ease;
    }
    .stakeholder-card-effect .stakeholder-card {
      z-index:1;
      width:100%;
      height:100%;
    }
    .stakeholder-card::before {
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background-image:linear-gradient(rgba(0,0,0,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,.035) 1px,transparent 1px);
      background-size:32px 32px;
    }
    .stakeholder-card > * { position:relative; z-index:1; }
    .stakeholder-card:hover { transform:translateY(-6px); border-color:rgba(37,99,235,.3); box-shadow:0 12px 40px rgba(10,10,35,.12); }
    .stakeholder-card-effect:hover .stakeholder-card { transform:translateY(-8px); }
    .stakeholder-icon {
      border-radius:12px;
      background:#1f2937;
      color:#fff;
      transition:background 300ms ease,box-shadow 300ms ease;
    }
    .stakeholder-card:hover .stakeholder-icon { background:#2563eb; box-shadow:0 0 20px rgba(37,99,235,.32); }
    .stakeholder-card h3 { color:#0a0a23; }
    .stakeholder-card p { color:#4b5563; }
    .stakeholder-label { color:#2563eb; }
    .stakeholder-proof {
      display:flex;
      flex-wrap:wrap;
      gap:7px;
      margin-top:10px;
      color:#1f2937;
    }
    .stakeholder-proof span {
      display:inline-flex;
      align-items:center;
      min-height:25px;
      padding:5px 9px;
      border:1px solid #bfdbfe;
      border-radius:999px;
      background:#eff6ff;
      color:#1d4ed8;
      font-size:.68rem;
      font-weight:750;
      line-height:1.1;
    }

    #fit { background:#f3f4f6; }
    .fit-card {
      position:relative;
      overflow:hidden;
      border-color:#e5e7eb;
      border-radius:24px;
      background:#fff;
      box-shadow:0 4px 20px rgba(10,10,35,.08);
      transition:transform 400ms cubic-bezier(.16,1,.3,1),box-shadow 300ms ease;
    }
    .fit-card::before {
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background-image:linear-gradient(rgba(0,0,0,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,.035) 1px,transparent 1px);
      background-size:32px 32px;
    }
    .fit-card > * { position:relative; z-index:1; }
    .fit-card:hover { transform:translateY(-6px); box-shadow:0 12px 40px rgba(10,10,35,.12); }
    .fit-card h3 { color:#0a0a23; }
    .fit-card.prepare { border-top-color:#2563eb; }
    .fit-list li {
      color:#374151;
      border-radius:8px;
      transition:transform 260ms cubic-bezier(.16,1,.3,1),color 220ms ease;
    }
    .fit-list li:hover { color:#111827; transform:translateY(-3px); }
    .fit-list-icon {
      border:1px solid #86efac;
      background:#dcfce7;
      color:#15803d;
      box-shadow:0 4px 12px rgba(21,128,61,.16);
      transition:transform 260ms cubic-bezier(.16,1,.3,1),background 220ms ease,box-shadow 220ms ease;
    }
    .fit-list li:hover .fit-list-icon { transform:scale(1.08); background:#bbf7d0; box-shadow:0 7px 16px rgba(21,128,61,.22); }
    .prepare .fit-list-icon {
      border-color:#93c5fd;
      background:#dbeafe;
      color:#1d4ed8;
      box-shadow:0 4px 12px rgba(37,99,235,.17);
    }
    .prepare .fit-list li:hover .fit-list-icon { background:#bfdbfe; box-shadow:0 7px 16px rgba(37,99,235,.24); }

    .document-list,
    .faq-list { display:grid; gap:12px; border-top:0; }
    .document-item,
    .faq-item {
      overflow:hidden;
      border:1px solid #e5e7eb;
      border-radius:12px;
      background:#fff;
      box-shadow:0 2px 8px rgba(0,0,0,.04);
      transition:border-color 300ms ease,box-shadow 300ms ease;
    }
    .document-item:hover,
    .faq-item:hover,
    .document-item.open,
    .faq-item.open { border-color:rgba(37,99,235,.3); box-shadow:0 10px 30px rgba(10,10,35,.08); }
    .document-question,
    .faq-question { padding-inline:18px; color:#0a0a23; transition:background 300ms ease,color 300ms ease; }
    .document-question:hover,
    .faq-question:hover,
    .document-item.open .document-question,
    .faq-item.open .faq-question { background:#eff6ff; color:#2563eb; }
    .document-number { border-radius:8px; background:#1f2937; color:#fff; transition:background 300ms ease,box-shadow 300ms ease; }
    .document-item:hover .document-number,
    .document-item.open .document-number { background:#2563eb; box-shadow:0 0 18px rgba(37,99,235,.28); }
    .document-icon,
    .faq-icon { background:#f3f4f6; color:#2563eb; }
    .document-item.open .document-icon,
    .faq-item.open .faq-icon { background:#2563eb; color:#fff; }
    .faq-item.open .faq-icon {
      position:relative;
      display:grid;
      place-items:center;
      transform:none;
      font-size:0;
      box-shadow:0 0 18px rgba(37,99,235,.28);
    }
    .faq-item.open .faq-icon::before {
      content:"";
      position:absolute;
      left:50%;
      top:50%;
      width:14px;
      height:14px;
      background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.75 8.25 6.15 11.4 13.25 4.6' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px 14px no-repeat;
      transform:translate(-50%,-50%);
    }
    .document-answer p,
    .faq-answer p { color:#4b5563; }
    .faq-answer p { padding-left:18px; }
    #faq { background:#f3f4f6; }

    /* Match the Home "Two sides. One commercial bridge." badge. */
    #brand-progress .eyebrow,
    #pathway .eyebrow,
    #readiness .eyebrow,
    #routes .eyebrow,
    #control .eyebrow,
    #stakeholders .eyebrow,
    #fit .eyebrow,
    #documents .eyebrow,
    #faq .eyebrow {
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:0;
      margin:0 0 24px;
      padding:8px 16px;
      border:1px solid rgba(37,99,235,.4);
      border-radius:20px;
      background:rgba(37,99,235,.2);
      color:#2563eb;
      box-shadow:0 2px 10px rgba(37,99,235,.08);
      font-size:.75rem;
      font-weight:700;
      line-height:1.6;
      letter-spacing:.05em;
      text-transform:uppercase;
    }
    #brand-progress .eyebrow-dot,
    #pathway .eyebrow-dot,
    #readiness .eyebrow-dot,
    #routes .eyebrow-dot,
    #control .eyebrow-dot,
    #stakeholders .eyebrow-dot,
    #fit .eyebrow-dot,
    #documents .eyebrow-dot,
    #faq .eyebrow-dot {
      width:6px;
      height:6px;
      background:currentColor;
      box-shadow:none;
    }
    .pane-badge {
      padding:8px 16px;
      border-color:rgba(37,99,235,.4);
      border-radius:20px;
      background:rgba(37,99,235,.2);
      color:#2563eb;
      box-shadow:0 2px 10px rgba(37,99,235,.08);
      font-size:.75rem;
      font-weight:700;
      letter-spacing:.05em;
    }

    .site-footer { color:rgba(255,255,255,.75); background:var(--navy-950); padding:64px 0 26px; }
    .footer-grid { display:grid; grid-template-columns:1.35fr repeat(3,.65fr); gap:54px; padding-bottom:44px; }
    .footer-logo-wrap { display:inline-flex; align-items:center; padding:9px 13px; border-radius:12px; background:var(--white); box-shadow:0 10px 28px rgba(0,0,0,.16); }
    .footer-logo-wrap .brand-logo-image { width:180px; }
    .footer-brand p { max-width:400px; margin:22px 0 0; color:rgba(255,255,255,.65); }
    .footer-title { margin-bottom:18px; color:var(--white); font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; }
    .footer-links { display:grid; gap:11px; }
    .footer-links a:hover { color:var(--white); }
    .footer-bottom { display:flex; justify-content:space-between; gap:24px; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); font-size:.78rem; }
    .footer-bottom-links { display:flex; gap:20px; }

    .reveal { opacity:0; transform:translateY(20px); transition:opacity 620ms ease,transform 620ms ease; }
    .reveal.visible { opacity:1; transform:translateY(0); }

    @media (max-width:1120px) {
      .phone-block { display:none; }
      .nav-wrap { gap:20px; }
      .primary-nav { gap:20px; }
      .brand-hero-grid { gap:42px; }
      .stakeholder-grid { grid-template-columns:repeat(2,1fr); }
    }
    @media (max-width:960px) {
      .topbar { display:none; }
      .nav-wrap { min-height:72px; grid-template-columns:auto auto; justify-content:space-between; }
      .menu-toggle { display:inline-grid; place-items:center; }
      .primary-nav, .nav-actions .btn { display:none; }
      .primary-nav.open { position:absolute; top:72px; left:0; right:0; display:grid; gap:0; padding:14px 20px 22px; background:var(--white); border-bottom:1px solid var(--line); box-shadow:var(--shadow-sm); }
      .primary-nav.open a { padding:14px 0; }
      .primary-nav a::after { display:none; }
      .brand-hero-grid,.progress-layout,.readiness-layout,.control-grid,.documents-layout,.faq-layout { grid-template-columns:1fr; }
      .brand-hero-copy { max-width:760px; }
      .brand-console { margin-top:18px; }
      .trust-inner { grid-template-columns:1fr; padding:24px 0; gap:18px; }
      .trust-label { max-width:none; text-align:center; }
      .progress-intro,.document-intro,.faq-intro { position:static; }
      .pathway-grid { grid-template-columns:repeat(2,1fr); }
      .path-step { border-bottom:1px solid #e5e7eb; }
      .path-step:nth-child(2n) { border-right:0; }
      .path-step:last-child { grid-column:1/-1; }
      .routes-grid { grid-template-columns:1fr 1fr; }
      .route-card.featured { grid-column:1/-1; grid-row:auto; min-height:520px; }
      .control-copy { order:-1; }
      .fit-layout { grid-template-columns:1fr; }
      .footer-grid { grid-template-columns:1.2fr repeat(3,1fr); gap:28px; }
    }
    @media (max-width:900px) {
      .cta-shell { grid-template-columns:1fr; padding:40px 32px; }
    }
    @media (max-width:760px) {
      .container { width:min(calc(100% - 28px),var(--container)); }
      .section { padding:74px 0; }
      .section-tight { padding:58px 0; }
      h1 { font-size:clamp(2.65rem,13vw,4rem); }
      h2 { font-size:clamp(2rem,10vw,3rem); }
      .brand-logo { min-width:0; }
      .brand-logo-image { width:148px; }
      .brand-hero { padding:48px 0 58px; }
      .hero-actions .btn { width:100%; }
      .hero-points { display:grid; grid-template-columns:1fr; }
      .brand-console { min-height:600px; }
      .console-shell { inset:28px 0 34px; }
      .console-grid { grid-template-columns:1fr; }
      .console-map { min-height:300px; }
      .console-panel { display:none; }
      .floating-note { min-width:158px; }
      .note-one { left:-2px; }
      .note-two { right:-2px; }
      .trust-items { grid-template-columns:repeat(2,1fr); }
      .trust-item:last-child { grid-column:1/-1; }
      .progress-card { grid-template-columns:52px 1fr; padding:22px 20px; }
      .progress-number { width:52px; height:52px; border-radius:14px; }
      .before-after { grid-template-columns:1fr; }
      .state-arrow { transform:rotate(90deg); justify-self:center; }
      .pathway-grid { grid-template-columns:1fr; }
      .path-step,.path-step:nth-child(2n) { border-right:0; border-bottom:1px solid #e5e7eb; }
      .path-step:last-child { grid-column:auto; border-bottom:0; }
      .readiness-pane { padding:26px 22px; }
      .pane-header { flex-direction:column; }
      .data-grid { grid-template-columns:1fr; }
      .routes-grid { grid-template-columns:1fr; }
      .route-card.featured { grid-column:auto; min-height:520px; }
      .control-dashboard { min-height:450px; }
      .control-window { inset:24px 0; }
      .window-body { grid-template-columns:1fr; }
      .window-side { display:none; }
      .window-metrics { grid-template-columns:1fr; }
      .window-metric:nth-child(n+2) { display:none; }
      .stakeholder-grid { grid-template-columns:1fr; }
      .footer-grid { grid-template-columns:1fr 1fr; }
      .footer-brand { grid-column:1/-1; }
      .footer-bottom { flex-direction:column; }
    }
    @media (max-width:640px) {
      .final-cta .container { width:min(calc(100% - 32px),1200px); }
      .cta-shell { padding:32px 24px; }
      .cta-shell .btn { width:100%; }
    }
    @media (max-width:480px) {
      .brand-logo-image { width:132px; }
      .route-line { left:44px; right:36px; }
      .route-node { width:64px; height:64px; font-size:.58rem; }
      .node-brand { left:14px; }
      .node-buyers { right:12px; }
      .market-chip { font-size:.62rem; }
      .readiness-nav { padding:12px; }
      .readiness-tab { padding:13px 10px; }
      .footer-grid { grid-template-columns:1fr; }
      .footer-brand { grid-column:auto; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior:auto; }
      *,*::before,*::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
    }
    /* ===================== BRAND HERO ANIMATED PILLS ===================== */
    .brand-animated-pills {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
      max-width: 480px;
      margin-left: auto;
      z-index: 2;
      position: relative;
    }
    .brand-pill {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 24px 28px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      animation: pillCycle 12s infinite;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      cursor: default;
    }
    
    .pill-icon {
      width: 52px;
      height: 52px;
      flex: 0 0 52px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.5);
      transition: all 0.5s ease;
    }
    .pill-icon svg {
      width: 26px;
      height: 26px;
    }
    
    .pill-copy {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .pill-title {
      color: var(--white);
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      transition: color 0.5s ease;
    }
    .pill-desc {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
      line-height: 1.4;
      transition: color 0.5s ease;
    }

    /* Active/Hover States - Only highlight one card at a time */
    .brand-pill {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .brand-pill.active,
    .brand-pill:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(96, 165, 250, 0.5);
      box-shadow: 0 16px 40px rgba(37, 99, 235, 0.2), inset 0 0 0 1px rgba(96, 165, 250, 0.2);
      transform: scale(1.03) translateX(-10px);
    }
    
    .brand-pill.active .pill-icon,
    .brand-pill:hover .pill-icon {
      background: var(--blue-600);
      color: var(--white);
      box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    }
    
    .brand-pill.active .pill-title,
    .brand-pill:hover .pill-title { color: #93c5fd; }
    
    .brand-pill.active .pill-desc,
    .brand-pill:hover .pill-desc { color: rgba(255, 255, 255, 0.9); }
    
    @media (max-width: 960px) {
      .brand-animated-pills { margin: 40px auto 0; max-width: 600px; }
      .brand-pill.active,
      .brand-pill { transform: none !important; }
      .brand-pill:hover { transform: none !important; }
      .brand-pill:hover { transform: none !important; }
    }
    
    @media (max-width: 960px) {
      .brand-animated-pills { margin: 40px auto 0; max-width: 600px; }
      .brand-pill { transform: none !important; }
      .brand-pill:hover { transform: none !important; }
      @keyframes pillCycle {
        0%, 28% {
          background: rgba(255, 255, 255, 0.08);
          border-color: rgba(96, 165, 250, 0.5);
          box-shadow: 0 16px 40px rgba(37, 99, 235, 0.2), inset 0 0 0 1px rgba(96, 165, 250, 0.2);
        }
        33%, 100% {
          background: rgba(255, 255, 255, 0.03);
          border-color: rgba(255, 255, 255, 0.08);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
      }
    }

    /* Final Brand mobile hero treatment. Desktop remains unchanged. */
    .brand-hero-title-mobile,
    .brand-hero-lead-mobile,
    .brand-progress-mobile-break {
      display:none;
    }
    @media (max-width:760px) {
      html,
      body,
      main,
      .brand-hero {
        width:100%;
        max-width:100%;
        overflow-x:hidden;
      }
      .brand-hero {
        min-height:0;
        padding:38px 0 44px !important;
      }
      .brand-hero .brand-hero-grid {
        width:100% !important;
        max-width:100% !important;
        min-height:0;
        margin-inline:0 !important;
        padding-inline:16px;
        grid-template-columns:minmax(0,1fr) !important;
        gap:0;
      }
      .brand-hero .brand-hero-copy {
        width:100%;
        min-width:0;
        max-width:100% !important;
        margin:0 !important;
        text-align:center !important;
      }
      .brand-hero .brand-animated-pills,
      .brand-hero .hero-points {
        display:none !important;
      }
      .brand-hero .badge {
        display:flex;
        width:max-content;
        max-width:100%;
        margin:0 auto 18px;
        padding:7px 12px;
        font-size:.67rem;
        font-weight:500;
        line-height:1.35;
        letter-spacing:.035em;
        text-align:center;
      }
      .brand-hero h1 {
        max-width:23ch !important;
        margin:0 auto 16px !important;
        padding-right:0;
        font-size:clamp(1.72rem,7.5vw,2.08rem) !important;
        line-height:1.13;
        text-align:center !important;
        overflow-wrap:normal;
        word-break:normal;
      }
      .brand-hero-title-desktop,
      .brand-hero-lead-desktop {
        display:none;
      }
      .brand-hero-title-mobile,
      .brand-hero-lead-mobile {
        display:inline;
      }
      .brand-hero .hero-lead {
        max-width:31rem;
        margin:0 auto 22px !important;
        font-size:.89rem;
        line-height:1.6;
        text-align:center;
      }
      .brand-hero .hero-actions {
        width:min(78%,300px);
        margin:0 auto;
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
      }
      .brand-hero .hero-actions .btn {
        width:100%;
        min-height:46px;
        padding:11px 16px;
        justify-content:center;
        font-size:.8rem;
        white-space:normal;
        text-align:center;
      }
      #brand-progress .progress-intro {
        text-align:center;
      }
      #brand-progress .progress-intro h2 {
        font-size:clamp(1.2rem,6.5vw,1.9rem);
        line-height:1.15;
      }
      #brand-progress .brand-progress-first-line {
        white-space:nowrap;
      }
      #brand-progress .brand-progress-mobile-break {
        display:inline;
      }
      #brand-progress .progress-intro .eyebrow {
        margin-inline:auto;
      }
      #brand-progress .progress-intro > p {
        margin-inline:auto;
      }
      #brand-progress .progress-note {
        text-align:center;
      }
      #readiness .section-heading {
        max-width:100%;
        margin-inline:auto;
        text-align:center;
      }
      #readiness .section-heading .eyebrow {
        margin-inline:auto;
      }
      #readiness .section-heading h2 {
        font-size:clamp(1.72rem,7.5vw,2.08rem);
        font-weight:700;
        line-height:1.13;
        letter-spacing:-.035em;
        text-transform:none;
      }
      #readiness .section-heading p {
        max-width:31rem;
        margin-inline:auto;
        font-size:.89rem;
        line-height:1.6;
      }
    }
