
  :root {
    --ink: #080B10;
    --ink-soft: #10151C;
    --ink-line: rgba(255,255,255,0.1);
    --on-dark: #F4F6F8;
    --on-dark-muted: #9CA6B2;
    --paper: #FFFFFF;
    --paper-sunk: #F3F5F7;
    --text: #12161C;
    --text-muted: #566070;
    --text-faint: #88919C;
    --line: #E6E9ED;
    --blue: #0A6E97;
    --blue-ink: #075171;
    --blue-soft: #E4F1F7;
    --pink: #E2295F;
    --pink-soft: #FCE7ED;
    --good: #1C8A5A;
    --shadow: 0 1px 2px rgba(10,13,17,0.04), 0 12px 28px -14px rgba(10,13,17,0.16);
    --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-mono: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  }
  body {
    margin: 0; background: var(--paper); color: var(--text);
    font-family: var(--font-body); font-size: 16px; line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; }
  .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
  section { padding: 84px 0; }
  @media (max-width: 720px) { section { padding: 52px 0; } }
  h1, h2, h3 { font-family: var(--font-display); text-wrap: balance; margin: 0; letter-spacing: -0.01em; }

  .eyebrow {
    font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase;
    color: var(--pink); display: inline-flex; align-items: center; gap: 8px; margin: 0 0 16px;
  }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
  .eyebrow.on-dark { color: #5FE3CE; }
  .eyebrow.on-dark .dot { background: #5FE3CE; }
  .eyebrow.blue { color: var(--blue); }
  .eyebrow.blue .dot { background: var(--blue); }

  .btn {
    display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600;
    font-size: 14.5px; padding: 12px 22px; border-radius: 8px; text-decoration: none;
    border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  }
  .btn-primary { background: var(--pink); color: #fff; }
  .btn-primary:hover { filter: brightness(1.08); }
  .btn-blue { background: var(--blue); color: #fff; }
  .btn-blue:hover { filter: brightness(1.1); }
  .btn-onDark { border-color: rgba(255,255,255,0.28); color: var(--on-dark); background: transparent; }
  .btn-onDark:hover { border-color: rgba(255,255,255,0.55); }
  .btn-ghost { border-color: var(--line); color: var(--text); background: var(--paper); }
  .btn-ghost:hover { border-color: var(--text-faint); }
  .btn-sm { padding: 8px 14px; font-size: 13px; }

  /* ---------- BRAND STRIP (ecosystem, mirrors proton-grp.com tabs) ---------- */
  .brand-strip { background: var(--ink); border-bottom: 1px solid var(--ink-line); position: relative; }
  .brand-strip .container { display: flex; align-items: center; gap: 2px; padding: 8px 24px; overflow-x: auto; }
  @media (max-width: 640px) {
    /* Row doesn't fit five items on a phone; fade the right edge so the
       scrollable overflow reads as intentional, not a cut-off link. */
    .brand-strip::after {
      content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 28px; pointer-events: none;
      background: linear-gradient(to right, transparent, var(--ink));
    }
  }
  .brand-strip a {
    font-family: var(--font-mono); font-size: 11.5px; color: var(--on-dark-muted); text-decoration: none;
    padding: 5px 12px; border-radius: 20px; white-space: nowrap;
  }
  .brand-strip a:hover { color: #fff; background: rgba(255,255,255,0.08); }
  .brand-strip a.current { color: var(--ink); background: #5FE3CE; font-weight: 600; }

  /* ---------- NAV ---------- */
  header.nav { position: sticky; top: 0; z-index: 60; background: var(--paper); border-bottom: 1px solid var(--line); }
  .nav-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
  .brand img { height: 26px; width: auto; display: block; }
  .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
  .nav-item { position: relative; }
  .nav-item > a, .nav-item > span {
    display: flex; align-items: center; gap: 5px; text-decoration: none; font-size: 14.5px; font-weight: 500;
    color: var(--text); padding: 10px 14px; border-radius: 6px; cursor: pointer;
  }
  .nav-item.is-active > a, .nav-item.is-active > span { color: var(--blue); }
  .nav-item:hover > a, .nav-item:hover > span { background: var(--paper-sunk); }
  .nav-item .chev { width: 13px; height: 13px; color: var(--text-faint); transition: transform 0.15s; }
  .nav-item:hover .chev { transform: rotate(180deg); }
  .dropdown {
    position: absolute; top: 100%; left: 0; margin-top: 6px; background: var(--paper); border: 1px solid var(--line);
    border-radius: 10px; box-shadow: var(--shadow); padding: 10px; width: 320px;
    opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all 0.15s ease;
  }
  .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown a { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: 7px; text-decoration: none; color: var(--text); }
  .dropdown a:hover { background: var(--paper-sunk); }
  .dropdown a b { font-size: 14px; font-weight: 600; }
  .dropdown a span { font-size: 12.5px; color: var(--text-muted); }
  .login-dd { position: relative; }
  .login-dd:hover .dropdown, .login-dd:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .login-dd .dropdown { left: auto; right: 0; width: 220px; }
  .login-dd .btn .chev { width: 12px; height: 12px; margin-left: -2px; }
  .nav-cta { display: flex; align-items: center; gap: 10px; }
  .menu-toggle { display: none; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; width: 40px; height: 40px; align-items: center; justify-content: center; cursor: pointer; }
  .menu-toggle svg { width: 18px; height: 18px; }
  @media (max-width: 980px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
  }
  @media (max-width: 520px) {
    .nav-cta { gap: 6px; }
    .nav-cta .btn { padding: 9px 12px; font-size: 12.5px; }
  }
  #mobile-panel { display: none; border-top: 1px solid var(--line); padding: 14px 0; }
  #mobile-panel.open { display: block; }
  #mobile-panel a { display: block; padding: 10px 0; text-decoration: none; color: var(--text); font-weight: 500; }

  /* ---------- ROUTER PAGES ---------- */
  .page { display: none; }
  .page.active { display: block; animation: pagein 0.35s ease both; }
  @keyframes pagein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

  /* ---------- HERO (dark, futuristic network bg) ---------- */
  .hero { position: relative; background: var(--ink); color: var(--on-dark); padding: 84px 0 72px; overflow: hidden; }
  .hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }
  .hero .container { position: relative; z-index: 1; }
  .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }
  h1.hero-title { font-size: clamp(32px, 4.4vw, 54px); line-height: 1.05; font-weight: 700; color: #fff; }
  .hero-title .accent { color: #5FE3CE; }
  .hero-dek { font-size: 18px; color: var(--on-dark-muted); max-width: 48ch; margin: 20px 0 30px; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
  .hero-facts { display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12.5px; color: var(--on-dark-muted); border-top: 1px solid var(--ink-line); padding-top: 20px; }
  @media (max-width: 640px) {
    /* Tighter hero rhythm on phones: keeps hero-facts clear of the fixed
       fleet-advisor button, which always sits 20px from the viewport
       bottom regardless of scroll position. */
    .hero { padding: 52px 0 32px; }
    .hero-dek { margin: 14px 0 22px; }
    .hero-actions { margin-bottom: 24px; }
    .hero-facts { margin-bottom: 56px; }
  }
  .hero-facts b { color: #fff; font-weight: 500; }

  .hero-panel { background: var(--ink-soft); border: 1px solid var(--ink-line); border-radius: 12px; padding: 20px; backdrop-filter: blur(6px); }
  .hero-panel-top { display: flex; align-items: center; gap: 8px; padding-bottom: 12px; margin-bottom: 16px; border-bottom: 1px solid var(--ink-line); font-family: var(--font-mono); font-size: 11.5px; color: var(--on-dark-muted); }
  .hp-dot { width: 8px; height: 8px; border-radius: 50%; }
  .hero-map { position: relative; border-radius: 8px; overflow: hidden; background: rgba(255,255,255,0.02); aspect-ratio: 4/3; }
  .hero-map .map-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .hero-map .map-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,9,13,0.55) 0%, rgba(6,9,13,0.35) 45%, rgba(6,9,13,0.75) 100%); }
  .map-attrib { position: absolute; left: 8px; bottom: 6px; font-family: var(--font-mono); font-size: 8.5px; color: rgba(255,255,255,0.55); text-decoration: none; z-index: 2; }
  .map-attrib:hover { color: rgba(255,255,255,0.85); }
  .hero-grid-bg { position: absolute; inset: 0; opacity: 0.5;
    background-image: linear-gradient(var(--ink-line) 1px, transparent 1px), linear-gradient(90deg, var(--ink-line) 1px, transparent 1px);
    background-size: 26px 26px;
  }
  .route-path { stroke: #5FE3CE; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-dasharray: 6 8; animation: dash 22s linear infinite; }
  @keyframes dash { to { stroke-dashoffset: -400; } }
  .ping { animation: ping 2.4s ease-out infinite; }
  @keyframes ping { 0% { r: 5; opacity: 0.85; } 100% { r: 22; opacity: 0; } }
  .hp-live { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--ink-line); font-family: var(--font-mono); font-size: 11.5px; color: var(--on-dark-muted); }
  .hp-live .live { color: #5FE3CE; display: flex; align-items: center; gap: 6px; }
  .hp-live .live .dot { width: 6px; height: 6px; border-radius: 50%; background: #5FE3CE; animation: blink 1.6s ease-in-out infinite; }
  @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
  .hp-badge { position: absolute; background: rgba(6,9,13,0.92); border: 1px solid var(--ink-line); border-radius: 8px; padding: 9px 12px; font-size: 12px; color: var(--on-dark); }
  .hp-badge .b-title { font-weight: 600; margin-bottom: 2px; }
  .hp-badge .b-sub { color: var(--on-dark-muted); font-size: 11px; }

  /* ---------- SUB-PAGE HERO (compact dark band) ---------- */
  .subhero { background: var(--ink); color: var(--on-dark); padding: 52px 0; }
  .subhero h1 { font-size: clamp(28px, 3.6vw, 42px); color: #fff; font-weight: 700; }
  .subhero p { color: var(--on-dark-muted); font-size: 16px; max-width: 62ch; margin: 14px 0 0; }
  .crumb { font-family: var(--font-mono); font-size: 12px; color: var(--on-dark-muted); margin-bottom: 14px; }
  .crumb a { color: var(--on-dark-muted); text-decoration: none; } .crumb a:hover { color: #fff; }

  /* ---------- VALUE PROPS ---------- */
  .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  @media (max-width: 800px) { .value-grid { grid-template-columns: 1fr; } }
  .value-grid-4 { grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 900px) { .value-grid-4 { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 520px) { .value-grid-4 { grid-template-columns: 1fr; } }
  .value-icon { width: 36px; height: 36px; color: var(--blue); margin-bottom: 16px; }
  .value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
  .value-card p { font-size: 14.5px; color: var(--text-muted); margin: 0; }

  .section-head { max-width: 64ch; margin-bottom: 44px; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .section-head h2 { font-size: clamp(26px, 3.2vw, 34px); font-weight: 700; }
  .section-head p { color: var(--text-muted); font-size: 16px; margin-top: 12px; }

  /* ---------- SERVICES ---------- */
  .svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
  @media (max-width: 940px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .svc-grid { grid-template-columns: 1fr; } }
  .svc-card { background: var(--paper); padding: 26px 22px; display: flex; flex-direction: column; text-decoration: none; color: var(--text); cursor: pointer; }
  .svc-card:hover { background: var(--paper-sunk); }
  .svc-icon { width: 34px; height: 34px; color: var(--blue); margin-bottom: 14px; }
  .svc-name { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
  .svc-desc { font-size: 13.5px; color: var(--text-muted); margin: 0 0 14px; flex: 1; }
  .svc-more { font-size: 12.5px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 4px; }
  .svc-more svg { width: 13px; height: 13px; }

  /* ---------- SERVICE DETAIL ---------- */
  .detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
  @media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; gap: 32px; } }
  .detail-desc { font-size: 17px; color: var(--text-muted); margin: 0 0 30px; max-width: 62ch; }
  .detail-block { margin-bottom: 30px; }
  .detail-block h3 { font-size: 15px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue); margin-bottom: 16px; }
  .chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
  .chip { background: var(--paper-sunk); border: 1px solid var(--line); border-radius: 20px; padding: 6px 14px; font-size: 13px; }
  .adv-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .adv-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text); }
  .adv-list svg { width: 16px; height: 16px; color: var(--good); flex-shrink: 0; margin-top: 3px; }
  .app-grid { display: flex; flex-direction: column; gap: 14px; }
  .app-card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; }
  .app-card b { display: block; font-size: 14px; margin-bottom: 4px; }
  .app-card span { font-size: 13.5px; color: var(--text-muted); }
  .svc-sidebar { background: var(--paper-sunk); border: 1px solid var(--line); border-radius: 10px; padding: 22px; position: sticky; top: 90px; }
  .svc-sidebar h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); margin: 0 0 12px; }
  .svc-sidebar ul { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 4px; }
  .svc-sidebar a.side-link { display: block; padding: 8px 10px; border-radius: 6px; text-decoration: none; color: var(--text-muted); font-size: 13.5px; }
  .svc-sidebar a.side-link:hover { background: var(--paper); color: var(--text); }
  .svc-sidebar a.side-link.active { background: var(--blue-soft); color: var(--blue-ink); font-weight: 600; }

  /* ---------- TECHNOLOGY PAGE ---------- */
  .tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  @media (max-width: 860px) { .tech-grid { grid-template-columns: 1fr; } }
  .tech-grid-3 { grid-template-columns: repeat(3, 1fr); }
  @media (max-width: 900px) { .tech-grid-3 { grid-template-columns: 1fr; } }
  .tech-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 30px; }
  .tech-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
  .tech-badge { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; flex-shrink: 0; }
  .tech-card h3 { font-size: 19px; font-weight: 700; }
  .tech-card .sub { font-size: 12.5px; color: var(--text-faint); font-family: var(--font-mono); }
  .tech-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
  .tech-list li { display: flex; gap: 10px; font-size: 14px; color: var(--text-muted); }
  .tech-list svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
  .tech-list b { color: var(--text); }
  .device-strip { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
  .device-chip { font-family: var(--font-mono); font-size: 11.5px; background: var(--paper-sunk); border: 1px solid var(--line); border-radius: 6px; padding: 6px 10px; }
  .stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; margin-top: 40px; }
  @media (max-width: 760px) { .stat-strip { grid-template-columns: repeat(2,1fr); } }
  .stat-strip-3 { grid-template-columns: repeat(3,1fr); }
  @media (max-width: 560px) { .stat-strip-3 { grid-template-columns: 1fr; } }
  .stat-cell { background: var(--paper); padding: 22px; text-align: center; }
  .stat-cell b { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--blue); }
  .stat-cell span { font-size: 12px; color: var(--text-muted); }

  /* ---------- PRODUCT VIDEO ---------- */
  .video-block { margin-top: 56px; }
  .video-frame { position: relative; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; background: var(--ink); box-shadow: var(--shadow); }
  .video-frame img.video-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
  .video-play-btn {
    position: absolute; inset: 0; width: 100%; height: 100%; border: none; cursor: pointer; background: rgba(6,9,13,0.18);
    display: flex; align-items: center; justify-content: center; padding: 0;
  }
  .video-play-btn .vp-circle {
    width: 74px; height: 74px; border-radius: 50%; background: rgba(6,9,13,0.75); border: 1.5px solid rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease, background 0.2s ease;
  }
  .video-play-btn:hover .vp-circle { transform: scale(1.08); background: var(--pink); border-color: var(--pink); }
  .video-play-btn svg { width: 26px; height: 26px; color: #fff; margin-left: 4px; }
  .video-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
  .video-meta p { font-size: 13.5px; color: var(--text-muted); margin: 0; max-width: 56ch; }
  .video-meta a.yt-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none; white-space: nowrap; }
  .video-meta a.yt-link:hover { text-decoration: underline; }
  .video-meta a.yt-link svg { width: 14px; height: 14px; }

  /* ---------- ABOUT / WHY ---------- */
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  @media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 32px; } }
  .why-text p { color: var(--text-muted); font-size: 15.5px; margin: 0 0 16px; }
  .mv-card { background: var(--paper-sunk); border-left: 3px solid var(--pink); border-radius: 6px; padding: 20px 22px; margin-top: 22px; }
  .mv-card b { display: block; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--pink); margin-bottom: 6px; }
  .mv-card p { font-size: 14.5px; color: var(--text); margin: 0 0 12px; }
  .mv-card p:last-child { margin-bottom: 0; }
  .why-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
  .why-list li { display: flex; gap: 12px; font-size: 14.5px; color: var(--text-muted); }
  .why-list svg { width: 18px; height: 18px; color: var(--good); flex-shrink: 0; margin-top: 2px; }
  .why-list b { color: var(--text); }
  .timeline { list-style: none; margin: 40px 0 0; padding: 0; display: flex; flex-direction: column; gap: 0; border-left: 2px solid var(--line); }
  .timeline li { position: relative; padding: 0 0 28px 26px; }
  .timeline li:last-child { padding-bottom: 0; }
  .timeline li::before { content: ""; position: absolute; left: -6px; top: 3px; width: 10px; height: 10px; border-radius: 50%; background: var(--pink); border: 2px solid var(--paper); }
  .timeline b { font-family: var(--font-mono); font-size: 12.5px; color: var(--pink); display: block; margin-bottom: 4px; }
  .timeline span { font-size: 14.5px; color: var(--text-muted); }

  /* ---------- PACKAGES ---------- */
  .pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  @media (max-width: 900px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .pkg-grid { grid-template-columns: 1fr; } }
  .pkg-grid-2 { grid-template-columns: repeat(2, 1fr); }
  @media (max-width: 560px) { .pkg-grid-2 { grid-template-columns: 1fr; } }
  .pkg-card { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 24px 22px; display: flex; flex-direction: column; }
  .pkg-card.feature { border-color: var(--pink); }
  .pkg-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 6px; }
  .pkg-desc { font-size: 13.5px; color: var(--text-muted); margin: 0 0 18px; flex: 1; }
  .pkg-card .btn { justify-content: center; width: 100%; }

  /* ---------- COMPARISON TABLE ---------- */
  .table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 20px; }
  table.compare { border-collapse: collapse; width: 100%; min-width: 640px; font-size: 13.5px; background: var(--paper); }
  table.compare th, table.compare td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
  table.compare thead th { font-family: var(--font-display); font-weight: 700; font-size: 14px; background: var(--paper-sunk); position: sticky; top: 0; }
  table.compare thead th.feat-col { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-faint); font-weight: 500; }
  table.compare td.feat { color: var(--text); }
  table.compare td.mark, table.compare th.mark { text-align: center; width: 90px; }
  table.compare .yes { color: #1C8A5A; }
  table.compare .yes svg { width: 17px; height: 17px; }
  table.compare .no { color: var(--line); font-size: 16px; }
  table.compare tbody tr:last-child td { border-bottom: none; }
  table.compare tr.request-row td { background: var(--blue-soft); font-style: italic; }

  /* ---------- GROUP STRIP (real logos) ---------- */
  .group-strip { display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap; padding: 40px; background: var(--paper-sunk); border: 1px solid var(--line); border-radius: 10px; }
  .group-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; opacity: 0.85; transition: opacity 0.15s; }
  a.group-logo:hover { opacity: 1; }
  .group-logo img { height: 28px; width: auto; }
  .group-logo.vf { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #E60000; letter-spacing: -0.01em; }

  /* ---------- CONTACT ---------- */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  @media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 28px; }
  .contact-card h3 { font-size: 15px; margin-bottom: 4px; }
  .contact-card .role { font-size: 13px; color: var(--text-faint); margin-bottom: 18px; font-family: var(--font-mono); }
  .contact-line { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .contact-line:last-child { border-bottom: none; }
  .contact-line svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
  .contact-line .label { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-faint); margin-bottom: 3px; }
  .contact-line a, .contact-line span.val { font-size: 14px; font-weight: 500; text-decoration: none; }
  .contact-line a:hover { color: var(--blue); }

  /* ---------- LOCATOR MAP ---------- */
  .locator { background: var(--ink); border-radius: 12px; overflow: hidden; margin-top: 20px; }
  .locator-scene { position: relative; aspect-ratio: 1200/857; overflow: hidden; }
  .locator-scene .map-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .locator-scene .map-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,9,13,0.35) 0%, rgba(6,9,13,0.15) 40%, rgba(6,9,13,0.55) 100%); }
  .locator-scene svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
  .locator-pin-label { font-family: var(--font-mono); font-size: 10.5px; fill: var(--on-dark); }
  .locator-pin-sub { font-family: var(--font-mono); font-size: 9px; fill: var(--on-dark-muted); }
  .locator-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .locator-cards > div { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
  @media (max-width: 700px) { .locator-cards { grid-template-columns: 1fr; } }
  .locator-card { background: var(--ink-soft); padding: 20px 22px; }
  .locator-card h4 { font-size: 14.5px; color: #fff; margin: 0 0 4px; }
  .locator-card .lc-sub { font-size: 12px; color: var(--on-dark-muted); margin-bottom: 12px; }
  .locator-card .lc-coords { font-family: var(--font-mono); font-size: 11px; color: var(--on-dark-muted); margin-bottom: 14px; }
  .locator-card a.lc-open { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: #5FE3CE; text-decoration: none; }
  .locator-card a.lc-open:hover { text-decoration: underline; }
  .locator-card a.lc-open svg { width: 13px; height: 13px; }

  /* ---------- FOOTER ---------- */
  footer.site-footer { background: var(--ink); color: var(--on-dark); padding: 52px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
  @media (max-width: 760px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
  .footer-logo-badge { display: inline-flex; align-items: center; background: #fff; border-radius: 8px; padding: 8px 14px; }
  .footer-brand img { height: 26px; width: auto; display: block; }
  .footer-brand p { color: var(--on-dark-muted); font-size: 13.5px; max-width: 30ch; margin: 14px 0 0; }
  .footer-col h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: #5A6572; margin: 0 0 14px; font-weight: 500; }
  .footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { text-decoration: none; font-size: 13.5px; color: var(--on-dark-muted); cursor: pointer; }
  .footer-col a:hover { color: #fff; }
  .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; border-top: 1px solid var(--ink-line); font-size: 12.5px; color: #5A6572; font-family: var(--font-mono); }

  /* ---------- WELCOME POPUP (static, no AI backend) ---------- */
  #welcomePopup {
    position: fixed; left: 20px; bottom: 20px; z-index: 80; width: 300px; max-width: calc(100vw - 40px);
    background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
    padding: 18px 18px 16px; transform: translateY(16px) scale(0.98); opacity: 0; pointer-events: none;
    transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  }
  @media (max-width: 640px) {
    /* Leaves clearance on the right so the popup's corner doesn't sit under
       the circular fleet-advisor button, which is fixed to the same corner. */
    #welcomePopup { max-width: calc(100vw - 112px); }
  }
  #welcomePopup.show { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
  #welcomePopup .wp-close { position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; border-radius: 50%; border: none; background: var(--paper-sunk); color: var(--text-muted); cursor: pointer; font-size: 13px; line-height: 1; }
  #welcomePopup .wp-wave { font-size: 22px; margin-bottom: 8px; display: inline-block; animation: wave 2.4s ease-in-out infinite; transform-origin: 70% 70%; }
  @keyframes wave { 0%,100% { transform: rotate(0deg);} 15% { transform: rotate(14deg);} 30% { transform: rotate(-8deg);} 45% { transform: rotate(14deg);} 60% { transform: rotate(0deg);} }
  #welcomePopup h4 { font-size: 15px; margin: 0 0 6px; }
  #welcomePopup p { font-size: 13px; color: var(--text-muted); margin: 0 0 14px; }
  #welcomePopup .wp-actions { display: flex; flex-direction: column; gap: 8px; }
  #welcomePopup .wp-actions a {
    display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; text-decoration: none;
    padding: 9px 12px; border-radius: 8px; background: var(--paper-sunk); color: var(--text);
  }
  #welcomePopup .wp-actions a:hover { background: var(--line); }
  #welcomePopup .wp-actions a svg { width: 15px; height: 15px; color: var(--blue); }
  #welcomePopup .wp-actions a.primary { background: var(--pink); color: #fff; }
  #welcomePopup .wp-actions a.primary svg { color: #fff; }
  #popupLauncher {
    position: fixed; left: 20px; bottom: 20px; z-index: 79; width: 52px; height: 52px; border-radius: 50%;
    background: var(--ink); color: #fff; border: none; font-size: 22px; cursor: pointer; box-shadow: var(--shadow);
    display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.8); pointer-events: none;
    transition: all 0.3s ease;
  }
  #popupLauncher.show { opacity: 1; transform: scale(1); pointer-events: auto; }

  /* ---------- FLEET ADVISOR (rule-based recommender, no AI backend) ---------- */
  #advisorLauncher {
    position: fixed; right: 20px; bottom: 20px; z-index: 79; height: 52px; padding: 0 20px 0 18px; border-radius: 26px;
    background: var(--blue); color: #fff; border: none; font-family: var(--font-body); font-weight: 600; font-size: 13.5px;
    cursor: pointer; box-shadow: var(--shadow); display: flex; align-items: center; gap: 9px;
    opacity: 1; transform: scale(1); transition: all 0.25s ease;
  }
  #advisorLauncher.hide { opacity: 0; transform: scale(0.8); pointer-events: none; }
  #advisorLauncher svg { width: 19px; height: 19px; flex-shrink: 0; }
  @media (max-width: 640px) {
    #advisorLauncher { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
    #advisorLauncher .al-label { display: none; }
  }
  #advisorPanel {
    position: fixed; right: 20px; bottom: 20px; z-index: 80; width: 340px; max-width: calc(100vw - 40px); max-height: min(560px, calc(100vh - 40px));
    overflow-y: auto; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
    padding: 20px 20px 18px; transform: translateY(16px) scale(0.98); opacity: 0; pointer-events: none;
    transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  }
  #advisorPanel.show { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
  #advisorPanel .ap-close { position: absolute; top: 12px; right: 12px; width: 26px; height: 26px; border-radius: 50%; border: none; background: var(--paper-sunk); color: var(--text-muted); cursor: pointer; font-size: 13px; line-height: 1; }
  #advisorPanel .ap-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
  #advisorPanel h4 { font-size: 16.5px; margin: 0 0 4px; padding-right: 20px; }
  #advisorPanel .ap-sub { font-size: 12.5px; color: var(--text-faint); margin: 0 0 16px; }
  #advisorPanel label.ap-field { display: block; font-size: 12.5px; font-weight: 600; color: var(--text); margin: 14px 0 7px; }
  #advisorPanel label.ap-field:first-of-type { margin-top: 0; }
  #advisorPanel input[type="number"] {
    width: 100%; padding: 9px 11px; border: 1px solid var(--line); border-radius: 7px; font-family: var(--font-body);
    font-size: 13.5px; color: var(--text); background: var(--paper);
  }
  #advisorPanel .ap-check-grid { display: flex; flex-direction: column; gap: 7px; }
  #advisorPanel .ap-check {
    display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text); cursor: pointer;
    padding: 7px 9px; border-radius: 7px; background: var(--paper-sunk); border: 1px solid transparent;
  }
  #advisorPanel .ap-check:hover { border-color: var(--line); }
  #advisorPanel .ap-check input { accent-color: var(--blue); width: 15px; height: 15px; flex-shrink: 0; }
  #advisorPanel .ap-submit { width: 100%; justify-content: center; margin-top: 18px; }
  #advisorResult { display: none; }
  #advisorResult.show { display: block; }
  #advisorResult .ar-badge {
    display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.06em; color: var(--good); margin-bottom: 10px;
  }
  #advisorResult .ar-pkg { background: var(--blue-soft); border: 1px solid var(--blue); border-radius: 10px; padding: 14px 16px; margin-bottom: 14px; }
  #advisorResult .ar-pkg b { display: block; font-family: var(--font-display); font-size: 17px; margin-bottom: 4px; }
  #advisorResult .ar-pkg span { font-size: 12.5px; color: var(--text-muted); }
  #advisorResult .ar-services { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 6px; }
  #advisorResult .ar-services a { display: flex; align-items: center; justify-content: space-between; font-size: 13px; padding: 8px 10px; border-radius: 7px; background: var(--paper-sunk); text-decoration: none; color: var(--text); }
  #advisorResult .ar-services a:hover { background: var(--line); }
  #advisorResult .ar-note { font-size: 11.5px; color: var(--text-faint); margin: 0 0 14px; }
  #advisorResult .ar-back { font-size: 12px; color: var(--text-faint); background: none; border: none; cursor: pointer; text-decoration: underline; padding: 0; margin-top: 4px; }
