/* ---------- RESET & BASE ---------- */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --bg-0: #07090d;
    --bg-1: #0b0f16;
    --bg-2: #111722;
    --surface: #141b27;
    --border: #1f2937;
    --border-hi: #2a3446;
    --text-hi: #f3f6fb;
    --text: #c4ccd9;
    --text-dim: #8892a6;
    --text-muted: #5a6578;
    --accent: #1E9BE6;
    --accent-hi: #52B8F0;
    --accent-deep: #0E78BD;
    --accent-glow: rgba(30, 155, 230, 0.40);
    --danger: #ff5577;
    --warn: #ffb547;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --container: 1200px;
    --ease: cubic-bezier(.2,.8,.2,1);
  }
  /* scroll-padding-top: any anchor target (href="#foo") lands below the
     fixed navbar instead of being hidden behind it.  72 px nav + 12 px
     breathing room. */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
  }
  body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: var(--bg-0);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  img, svg { display: block; max-width: 100%; }

  .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
  .mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

  /* ---------- BG ---------- */
  .bg-grid {
    position: fixed; inset: 0; z-index: -2;
    background:
      radial-gradient(1000px 600px at 80% -10%, rgba(30, 155, 230, 0.10), transparent 60%),
      radial-gradient(800px 500px at 10% 10%, rgba(30, 155, 230, 0.04), transparent 60%),
      var(--bg-0);
  }
  .bg-grid::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 90%);
  }

  /* ---------- NAV ---------- */
  .nav {
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    background: rgba(7, 9, 13, 0.7);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .logo { display: inline-flex; align-items: center; color: var(--text-hi); }
  .logo-mark {
    display: inline-flex; align-items: center;
    height: 34px;
  }
  .logo-mark img { height: 100%; width: auto; display: block; }
  .foot-brand .logo-mark { height: 40px; }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a { color: var(--text-dim); font-size: 14px; font-weight: 500; transition: color .2s var(--ease); }
  .nav-links a:hover { color: var(--text-hi); }
  .nav-right { display: flex; align-items: center; gap: 16px; }
  .lang-switch { display: flex; background: var(--bg-2); border: 1px solid var(--border); border-radius: 999px; padding: 3px; font-size: 12px; font-weight: 600; }
  .lang-switch button { padding: 6px 12px; border-radius: 999px; color: var(--text-muted); transition: all .2s var(--ease); }
  .lang-switch button.active { background: var(--surface); color: var(--text-hi); box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset; }
  .btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; transition: all .2s var(--ease); white-space: nowrap; }
  .btn-primary { background: var(--accent); color: #ffffff; box-shadow: 0 0 0 0 var(--accent-glow); }
  .btn-primary:hover { background: var(--accent-hi); box-shadow: 0 0 24px -4px var(--accent-glow); transform: translateY(-1px); }
  .btn-primary-live { position: relative; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hi) 100%); padding-left: 22px; box-shadow: 0 0 0 0 var(--accent-glow), 0 8px 24px -10px rgba(30,155,230,0.55); animation: btnLivePulse 2.6s ease-in-out infinite; }
  .btn-primary-live:hover { box-shadow: 0 0 32px -4px var(--accent-glow), 0 10px 32px -10px rgba(30,155,230,0.8); transform: translateY(-1px); animation-play-state: paused; }
  .btn-primary-live .btn-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ffffff; box-shadow: 0 0 10px rgba(255,255,255,0.9); display: inline-block; animation: livePulse 1.2s ease-in-out infinite; margin-right: 2px; }
  @keyframes btnLivePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(30,155,230,0.55), 0 8px 24px -10px rgba(30,155,230,0.55); }
    50%     { box-shadow: 0 0 0 10px rgba(30,155,230,0),   0 8px 28px -8px rgba(30,155,230,0.85); }
  }
  .btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-hi); }
  .btn-ghost:hover { border-color: var(--accent); color: var(--text-hi); }
  /* WhatsApp secondary CTA — subtle green accent, glow on hover.  Same
     outline styling as btn-ghost but coloured in WA brand green so it
     reads instantly as "message us". */
  .btn-whatsapp {
    background: rgba(37, 211, 102, 0.10);
    border: 1px solid rgba(37, 211, 102, 0.38);
    color: #7de8a1;
  }
  .btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: #25D366;
    color: #ffffff;
    box-shadow: 0 0 24px -4px rgba(37, 211, 102, 0.35);
    transform: translateY(-1px);
  }
  .btn-whatsapp svg { opacity: 0.9; }
  .btn-whatsapp:hover svg { opacity: 1; }
  .btn-live { background: rgba(30,155,230,0.08); color: var(--text-hi); border: 1px solid rgba(30,155,230,0.35); font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.03em; text-transform: uppercase; }
  .btn-live:hover { border-color: var(--accent); background: rgba(30,155,230,0.12); box-shadow: 0 0 18px -6px var(--accent-glow); }
  .btn-live .btn-live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #1E9BE6; box-shadow: 0 0 0 0 rgba(30,155,230,0.55); animation: livePulse 1.6s ease-in-out infinite; margin-right: 2px; }
  @keyframes livePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(30,155,230,0.55); } 50% { box-shadow: 0 0 0 6px rgba(30,155,230,0); } }
  .burger { display: none; }

  /* ---------- HERO ----------
     Fluid vertical padding: on 1920 it's ~120/100 as before, on a 1366
     MacBook Air it trims ~25 px each side, on narrower viewports floors
     at a safe minimum. */
  .hero {
    position: relative;
    padding: clamp(56px, 4vw + 40px, 120px) 0 clamp(48px, 3vw + 40px, 100px);
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(32px, 3vw + 16px, 64px);
    align-items: center;
  }
  .hero-left { min-width: 0; }
  .hero-right { min-width: 0; }

  /* hero sectors widget (moved from about) */
  .hero-sectors {
    position: relative;
    background: linear-gradient(180deg, var(--surface), var(--bg-1));
    border: 1px solid var(--border-hi);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.02) inset;
  }
  .hero-sectors::before {
    content: '';
    position: absolute; left: 0; right: 0; top: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.35;
    animation: scanLine 4.2s linear infinite;
    pointer-events: none;
    z-index: 1;
  }
  @keyframes scanLine {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.35; }
    90% { opacity: 0.35; }
    100% { transform: translateY(300px); opacity: 0; }
  }
  .hero-sectors-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 18px;
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid var(--border);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.14em;
  }
  .hero-sectors-head .tag {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent-hi);
  }
  .hero-sectors-head .tag::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 8px var(--accent);
    animation: pulseDot 1.6s infinite;
  }
  .hero-sectors-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
  }
  .hero-sector {
    position: relative;
    background: var(--bg-1);
    padding: 16px 16px 12px;
    display: flex; flex-direction: column; gap: 6px;
    transition: background .3s var(--ease);
    overflow: hidden;
  }
  .hero-sector:hover { background: var(--surface); }
  .hero-sector .hs-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
  .hero-sector .hs-ico {
    width: 28px; height: 28px; border-radius: 7px;
    display: grid; place-items: center;
    background: rgba(30, 155, 230, 0.10);
    border: 1px solid rgba(30, 155, 230, 0.22);
    color: var(--accent);
    font-size: 13px;
    flex-shrink: 0;
  }
  .hero-sector .hs-live {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent);
    animation: heroPulse 2s var(--ease) infinite;
    flex-shrink: 0;
  }
  .hero-sector:nth-child(1) .hs-live { animation-delay: 0s; }
  .hero-sector:nth-child(2) .hs-live { animation-delay: 0.3s; }
  .hero-sector:nth-child(3) .hs-live { animation-delay: 0.6s; }
  .hero-sector:nth-child(4) .hs-live { animation-delay: 0.9s; }
  .hero-sector:nth-child(5) .hs-live { animation-delay: 1.2s; }
  @keyframes heroPulse {
    0%, 100% { opacity: 0.5; box-shadow: 0 0 0 0 rgba(30,155,230,0.0); }
    50% { opacity: 1; box-shadow: 0 0 10px var(--accent); }
  }
  .hero-sector .hs-name {
    color: var(--text-hi);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .hero-sector .hs-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2px;
  }
  .hero-sector .hs-spark-wrap {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    margin-top: 2px;
  }
  .hero-sector .hs-spark {
    flex: 1;
    height: 22px;
    display: block;
  }
  .hero-sector .hs-spark path {
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 3px rgba(30,155,230,0.45));
  }
  .hero-sector .hs-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-hi);
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
    min-width: 52px;
    text-align: right;
  }
  .hero-sector.full { grid-column: 1 / -1; }
  .hero-sectors-foot {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 18px;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--border);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
  }
  .hero-sectors-foot .ok { color: var(--accent); }

  /* ---------- HERO AIRSPACE PULSE (WOW) ---------- */
  .hero-airspace {
    position: relative;
    background: linear-gradient(180deg, var(--surface), var(--bg-1));
    border: 1px solid var(--border-hi);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.02) inset;
    margin-bottom: 16px;
  }
  .hero-airspace::before {
    content: '';
    position: absolute; left: 0; right: 0; top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.7;
  }
  .ha-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 16px;
    background: rgba(0,0,0,0.28);
    border-bottom: 1px solid var(--border);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.14em;
    gap: 10px; flex-wrap: wrap;
  }
  .ha-head .ha-total-wrap {
    color: var(--accent-hi);
    display: inline-flex; align-items: center; gap: 6px;
    white-space: nowrap;
  }
  .ha-head .ha-total-wrap::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 8px var(--accent);
    animation: pulseDot 1.6s infinite;
  }
  .ha-head .ha-total-wrap strong { color: var(--text-hi); font-weight: 700; font-size: 12px; }

  .ha-scope {
    position: relative;
    padding: 14px 10px 10px;
    background:
      radial-gradient(ellipse at center, rgba(30,155,230,0.08), transparent 75%),
      repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 80px);
  }
  .ha-scope::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(30,155,230,0.18), transparent);
    mix-blend-mode: screen;
    transform: translateX(-100%);
    animation: haSweep 7s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes haSweep {
    0% { transform: translateX(-100%); }
    55% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
  }

  .ha-svg { width: 100%; height: auto; display: block; }
  .ha-svg .ha-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8.5px; fill: var(--text-hi); letter-spacing: 0.16em; font-weight: 700;
  }
  .ha-svg .ha-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; fill: var(--accent); font-weight: 700;
  }

  /* pin pulse + ring */
  .ha-pin .ha-glow { animation: haPulse 2.4s ease-in-out infinite; }
  .ha-pin .ha-ring { animation: haRing 2.4s ease-in-out infinite; }
  .ha-pin[data-key="jfk"] .ha-glow, .ha-pin[data-key="jfk"] .ha-ring { animation-delay: 0s; }
  .ha-pin[data-key="cia"] .ha-glow, .ha-pin[data-key="cia"] .ha-ring { animation-delay: 0.7s; }
  .ha-pin[data-key="sin"] .ha-glow, .ha-pin[data-key="sin"] .ha-ring { animation-delay: 1.4s; }
  @keyframes haPulse {
    0%, 100% { opacity: 0.35; }
    50%      { opacity: 1; }
  }
  @keyframes haRing {
    0%, 100% { opacity: 0.25; }
    50%      { opacity: 0.85; }
  }

  /* arc dashed flow */
  .ha-arc-1 { animation: haArcFlow 3.2s linear infinite; }
  .ha-arc-2 { animation: haArcFlow 4.1s linear infinite; animation-delay: 0.8s; }
  .ha-arc-3 { animation: haArcFlow 5.0s linear infinite; animation-delay: 1.6s; }
  @keyframes haArcFlow {
    0%   { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -40; }
  }

  .ha-foot {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 16px;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--border);
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    gap: 10px; flex-wrap: wrap;
    text-transform: uppercase;
  }
  .ha-foot .ha-legend { display: inline-flex; gap: 14px; align-items: center; color: var(--text-dim); }
  .ha-foot .ha-dot {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); margin-right: 5px;
    vertical-align: middle; box-shadow: 0 0 5px var(--accent);
  }

  .status-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px 6px 10px;
    background: rgba(30, 155, 230, 0.10);
    border: 1px solid rgba(30, 155, 230, 0.28);
    border-radius: 999px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
    color: var(--accent-hi); text-transform: uppercase;
  }
  .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); position: relative; box-shadow: 0 0 10px var(--accent); }
  .pulse-dot::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--accent); animation: pulse 2s var(--ease) infinite; }
  @keyframes pulse { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(2.2); opacity: 0; } }
  .hero h1 { margin-top: clamp(16px, 1.5vw, 24px); font-size: clamp(34px, 4.4vw, 60px); line-height: 1.03; font-weight: 700; letter-spacing: -0.03em; color: var(--text-hi); max-width: 720px; }
  .hero h1 .accent { background: linear-gradient(180deg, var(--accent-hi), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hero p.lead { margin-top: clamp(16px, 1.4vw, 24px); max-width: 560px; font-size: clamp(15px, 1.1vw, 18px); color: var(--text-dim); line-height: 1.6; }
  .hero-ctas { display: flex; gap: 12px; margin-top: clamp(20px, 2vw, 36px); flex-wrap: wrap; }

  .hero-stats { margin-top: clamp(36px, 4.5vw, 72px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
  .hero-stat { background: var(--bg-1); padding: 24px; }
  .hero-stat .k { font-family: 'JetBrains Mono', monospace; font-size: 28px; font-weight: 600; color: var(--text-hi); letter-spacing: -0.02em; }
  .hero-stat .k .unit { color: var(--accent); }
  .hero-stat .v { margin-top: 6px; font-size: 13px; color: var(--text-muted); }

  /* ---------- MONITOR ---------- */
  .monitor { position: relative; margin-top: 80px; background: linear-gradient(180deg, var(--surface), var(--bg-1)); border: 1px solid var(--border-hi); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.02) inset; }
  .monitor-head { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1px solid var(--border); background: rgba(0,0,0,0.2); font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-muted); }
  .dots { display: flex; gap: 6px; }
  .dots span { width: 10px; height: 10px; border-radius: 50%; background: #2a3446; }
  .dots span:nth-child(1) { background: #ff5f57; }
  .dots span:nth-child(2) { background: #febc2e; }
  .dots span:nth-child(3) { background: #28c840; }
  .monitor-body { display: grid; grid-template-columns: 1.3fr 1fr; min-height: 280px; }
  .monitor-left { padding: 24px; border-right: 1px solid var(--border); }
  .monitor-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 14px; font-family: 'JetBrains Mono', monospace; }
  .svc-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 13px; }
  .svc-row:last-child { border-bottom: none; }
  .svc-name { font-family: 'JetBrains Mono', monospace; color: var(--text); }
  .svc-ok { color: var(--accent); display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; }
  .svc-ok::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
  .monitor-right { padding: 24px; }
  .wave { width: 100%; height: 200px; }

  /* ---------- SECTIONS ----------
     Fluid vertical padding: 100 px on 1920+, ~72 on 1366 MacBook Air,
     down to 48 on narrow. */
  section { padding: clamp(48px, 3.5vw + 30px, 100px) 0; position: relative; }
  .eyebrow { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 16px; }
  .section-title { font-size: clamp(26px, 3vw + 8px, 46px); line-height: 1.1; letter-spacing: -0.02em; color: var(--text-hi); font-weight: 700; max-width: 780px; }
  .section-sub { margin-top: 18px; max-width: 680px; color: var(--text-dim); font-size: 17px; }

  /* ---------- TRUST ---------- */
  .trust { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .trust-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 24px; text-align: center; }
  .trust-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; align-items: center; }
  .trust-row div { font-family: 'JetBrains Mono', monospace; color: var(--text-muted); font-size: 13px; text-align: center; letter-spacing: 0.04em; opacity: .7; transition: opacity .2s var(--ease), color .2s var(--ease); }
  .trust-row div:hover { opacity: 1; color: var(--text-hi); }

  /* ---------- ABOUT (unified) ---------- */
  .about-head { text-align: center; max-width: 820px; margin: 0 auto 48px; }
  .about-head .eyebrow { display: inline-block; }
  .about-head .section-title { margin: 0 auto; }
  .about-story { max-width: 780px; margin: 0 auto; text-align: center; }
  .about-story p { color: var(--text-dim); font-size: 17px; line-height: 1.75; }
  .about-story p + p { margin-top: 18px; }
  .about-story strong { color: var(--text); font-weight: 600; }

  .about-block { margin-top: 72px; }
  .about-block:first-of-type { margin-top: 0; }
  .mono-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
  }
  .mono-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
  }
  .mono-label .accent { color: var(--accent); }

  /* compact offer tiles · uniform grid, divider always at the same height
     across every card regardless of title/description length.
     Layout:  [icon] [title ~2 lines]  [description flex-grow]  [divider + stack] */
  .offer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: stretch; }
  .offer-card {
    position: relative;
    padding: 22px 20px 18px;
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .3s var(--ease);
    display: flex;
    flex-direction: column;
    min-height: 250px;
  }
  .offer-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity .3s var(--ease);
  }
  .offer-card:hover { border-color: var(--accent); background: var(--surface); transform: translateY(-2px); }
  .offer-card:hover::before { opacity: 1; }
  .offer-icon {
    width: 34px; height: 34px; border-radius: 8px;
    display: grid; place-items: center;
    background: rgba(30, 155, 230, 0.10);
    border: 1px solid rgba(30, 155, 230, 0.22);
    color: var(--accent);
    flex-shrink: 0;
    margin-bottom: 14px;
  }
  .offer-card h4 {
    font-size: 15px;
    color: var(--text-hi);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    min-height: 2.6em;           /* always reserves room for two lines */
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    flex-shrink: 0;
  }
  .offer-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.55;
    flex: 1;                     /* grows to fill → pushes stack to bottom */
  }
  .offer-stack {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    flex-shrink: 0;
  }
  .offer-stack::before { content: '› '; color: var(--accent); }

  /* legacy */
  .about-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
  .about-bio p { color: var(--text-dim); font-size: 16px; line-height: 1.75; }
  .about-bio p + p { margin-top: 16px; }
  .about-bio strong { color: var(--text); font-weight: 600; }
  .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 64px; }
  .value-card { padding: 28px 24px; background: linear-gradient(180deg, var(--surface), var(--bg-1)); border: 1px solid var(--border); border-radius: var(--radius); transition: all .3s var(--ease); }
  .value-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
  .value-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--accent); letter-spacing: 0.12em; }
  .value-card h4 { color: var(--text-hi); font-size: 17px; font-weight: 600; margin-top: 8px; margin-bottom: 8px; }
  .value-card p { color: var(--text-dim); font-size: 14px; }

  /* ---------- WHY ---------- */
  .why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .why-points { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
  .why-point { display: flex; gap: 18px; }
  .why-num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border-hi); display: grid; place-items: center; font-family: 'JetBrains Mono', monospace; color: var(--accent); font-weight: 600; font-size: 13px; }
  .why-point h4 { color: var(--text-hi); font-size: 17px; font-weight: 600; margin-bottom: 6px; }
  .why-point p { color: var(--text-dim); font-size: 15px; }

  .why-panel { position: relative; padding: 28px; background: linear-gradient(180deg, var(--surface), var(--bg-1)); border: 1px solid var(--border-hi); border-radius: var(--radius-lg); }
  .why-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
  .why-panel-head .mono { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.14em; }
  .metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  /* ---------- SECTORS ---------- */
  .sectors-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .sector { padding: 28px 20px; text-align: center; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius); transition: all .3s var(--ease); }
  .sector:hover { border-color: var(--accent); background: var(--surface); }
  .sector .ico { font-size: 26px; color: var(--accent); margin-bottom: 10px; }
  .sector .name { color: var(--text); font-size: 14px; font-weight: 500; }

  /* ---------- CTA ---------- */
  .cta {
    position: relative; padding: clamp(44px, 4vw + 20px, 80px) clamp(24px, 3vw + 10px, 48px);
    background: radial-gradient(600px 300px at 85% 0%, rgba(30, 155, 230, 0.15), transparent 60%), linear-gradient(180deg, var(--surface), var(--bg-1));
    border: 1px solid var(--border-hi); border-radius: var(--radius-lg);
    overflow: hidden; text-align: center;
  }
  .cta::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; }
  .cta h2 { position: relative; font-size: clamp(28px, 3.5vw, 44px); color: var(--text-hi); letter-spacing: -0.02em; font-weight: 700; max-width: 720px; margin: 0 auto; line-height: 1.15; }
  .cta p { position: relative; margin: 18px auto 32px; max-width: 580px; color: var(--text-dim); font-size: 17px; }
  .cta .btns { position: relative; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

  /* ---------- FOOTER ---------- */
  footer { padding: 60px 0 40px; border-top: 1px solid var(--border); margin-top: 80px; }
  .foot-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .foot-row h5 { font-size: 12px; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
  .foot-row ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .foot-row ul a { color: var(--text-dim); font-size: 14px; transition: color .2s var(--ease); }
  .foot-row ul a:hover { color: var(--text-hi); }
  .foot-brand p { margin-top: 16px; color: var(--text-dim); font-size: 14px; max-width: 340px; }
  .italian-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(30, 155, 230, 0.28);
    background: rgba(30, 155, 230, 0.08);
  }
  .italian-badge::before {
    content: '';
    display: inline-block;
    width: 12px; height: 8px;
    background: linear-gradient(to right, #009246 0%, #009246 33.33%, #F1F2F1 33.33%, #F1F2F1 66.66%, #CE2B37 66.66%, #CE2B37 100%);
    border-radius: 1px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
  }
  .foot-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }

  /* ---------- TELEMETRY ---------- */
  .telem-intro {
    margin-top: 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 22px 26px;
    background: linear-gradient(180deg, rgba(30,155,230,0.06), rgba(30,155,230,0.02));
    border: 1px solid rgba(30,155,230,0.22);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
  }
  .telem-intro .ti-ico {
    width: 44px; height: 44px; border-radius: 10px;
    display: grid; place-items: center;
    background: rgba(30,155,230,0.10);
    border: 1px solid rgba(30,155,230,0.28);
    color: var(--accent);
  }
  .telem-intro .ti-body { min-width: 0; }
  .telem-intro .ti-eye {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
  }
  .telem-intro .ti-text {
    margin-top: 4px;
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.55;
  }
  .telem-intro .ti-chips {
    display: flex; gap: 6px; flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 280px;
  }
  .telem-intro .ti-chip {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid var(--border-hi);
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--bg-1);
    white-space: nowrap;
  }
  .telem-intro .ti-chip.real { color: var(--accent); border-color: rgba(30,155,230,0.4); background: rgba(30,155,230,0.06); }
  @media (max-width: 900px) {
    .telem-intro { grid-template-columns: 1fr; gap: 14px; }
    .telem-intro .ti-chips { justify-content: flex-start; max-width: 100%; }
  }

  /* ==========================================================================
     Telemetry preview cards — three clickable tiles above the live dashboard.
     Styled in the same idiom as the "Cosa facciamo" offer cards, but with a
     per-tab accent colour (blue for Aerei, accent for Dorsali, red for F1) so
     the hand-off to the dashboard below is visually obvious.
     Clicking the card activates the corresponding tab and smooth-scrolls
     the live panel into view.
     ========================================================================== */
  .telem-previews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
  }
  .telem-preview {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 22px 20px;
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    color: var(--text);
    transition: all .25s var(--ease);
    overflow: hidden;
  }
  .telem-preview::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity .25s var(--ease);
  }
  .telem-preview:hover {
    background: var(--surface);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -12px rgba(0,0,0,0.6);
  }
  .telem-preview:hover::before { opacity: 1; }

  /* Per-tab accent colour when active or hovered */
  .tpv-flights:hover  { border-color: rgba(30,155,230,0.55); }
  .tpv-flights::before{ background: linear-gradient(90deg, transparent, #1E9BE6, transparent); }
  .tpv-internet:hover { border-color: rgba(82,184,240,0.55); }
  .tpv-internet::before{ background: linear-gradient(90deg, transparent, #52B8F0, transparent); }
  .tpv-f1:hover       { border-color: rgba(220,30,45,0.55); }
  .tpv-f1::before     { background: linear-gradient(90deg, transparent, #DC1E2D, transparent); }

  .telem-preview .tpv-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
  }
  .telem-preview .tpv-ico {
    width: 34px; height: 34px;
    border-radius: 8px;
    display: grid; place-items: center;
    background: rgba(30,155,230,0.10);
    border: 1px solid rgba(30,155,230,0.22);
    color: var(--accent);
    font-size: 18px;
    line-height: 1;
    transition: all .25s var(--ease);
  }
  .tpv-flights  .tpv-ico { background: rgba(30,155,230,0.10); border-color: rgba(30,155,230,0.32); color: #52B8F0; }
  .tpv-internet .tpv-ico { background: rgba(82,184,240,0.10); border-color: rgba(82,184,240,0.32); color: #52B8F0; }
  .tpv-f1       .tpv-ico { background: rgba(220,30,45,0.10); border-color: rgba(220,30,45,0.32); color: #FF5D6A; }

  .telem-preview .tpv-eye {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .telem-preview h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-hi);
    letter-spacing: -0.005em;
    line-height: 1.3;
    margin: 0;
  }
  .telem-preview p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-dim);
    flex: 1;
    margin: 0;
  }
  .telem-preview .tpv-cta {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color .2s var(--ease), letter-spacing .2s var(--ease);
  }
  .telem-preview:hover .tpv-cta { color: var(--text-hi); letter-spacing: 0.12em; }
  .tpv-flights:hover  .tpv-cta { color: #52B8F0; }
  .tpv-internet:hover .tpv-cta { color: #52B8F0; }
  .tpv-f1:hover       .tpv-cta { color: #FF5D6A; }

  @media (max-width: 1000px) {
    .telem-previews { grid-template-columns: 1fr; gap: 10px; }
  }

  /* ==========================================================================
     Condense-on-scroll sticky nav — appears below the main nav when the
     visitor engages with the telemetry panel.  Stronger visual than a plain
     blur-bar: accent top-border, soft bottom glow, a radar-scan line that
     drifts left-to-right forever, and a subtle bounce on entry.  The active
     tab glows gently in its own accent colour.
     ========================================================================== */
  .telem-sticky {
    position: fixed;
    left: 0; right: 0; top: 72px;
    z-index: 50;
    background: linear-gradient(180deg, rgba(11, 15, 22, 0.96), rgba(7, 9, 13, 0.92));
    backdrop-filter: blur(18px) saturate(1.35);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
    border-top: 1px solid rgba(30, 155, 230, 0.45);
    border-bottom: 1px solid rgba(30, 155, 230, 0.15);
    box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.8),
                0 2px 0 0 rgba(30, 155, 230, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .45s cubic-bezier(0.34, 1.4, 0.64, 1),
                opacity .3s var(--ease);
    overflow: hidden;
  }
  .telem-sticky.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  /* Radar-scan line that drifts across the top edge of the bar — subtle but
     constant, signals "this thing is alive". */
  .telem-sticky::before {
    content: '';
    position: absolute;
    top: 0; left: -35%;
    width: 35%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(82,184,240,0.85), transparent);
    animation: tskScan 4.2s linear infinite;
    pointer-events: none;
  }
  @keyframes tskScan {
    0%   { transform: translateX(0); }
    100% { transform: translateX(385%); }
  }
  /* Subtle pulsing glow strip on the underside — makes the bar feel less
     "flat" and more like something lit by its own accent. */
  .telem-sticky::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 20%; right: 20%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30,155,230,0.5), transparent);
    animation: tskUnderlineGlow 3s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes tskUnderlineGlow {
    0%, 100% { opacity: 0.35; transform: scaleX(0.9); }
    50%      { opacity: 1;    transform: scaleX(1); }
  }

  .telem-sticky-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    height: 56px;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
  }
  .tsk-eye {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--accent-hi);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .tsk-eye::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: tskEyeDot 1.6s ease-in-out infinite;
  }
  @keyframes tskEyeDot {
    0%, 100% { opacity: 1;   box-shadow: 0 0 10px var(--accent); }
    50%      { opacity: 0.4; box-shadow: 0 0 2px  var(--accent); }
  }
  .tsk-btns {
    display: flex;
    gap: 6px;
    flex: 1;
    justify-content: flex-end;
  }
  .tsk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: color .15s var(--ease), background .15s var(--ease),
                border-color .25s var(--ease), box-shadow .25s var(--ease),
                transform .15s var(--ease);
  }
  .tsk-btn:hover {
    color: var(--text-hi);
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-1px);
  }
  .tsk-btn .tsk-ico {
    font-size: 14px;
    line-height: 1;
    opacity: 0.75;
    transition: opacity .15s var(--ease), transform .2s var(--ease);
  }
  .tsk-btn:hover .tsk-ico { opacity: 1; }
  .tsk-btn .tsk-lbl { font-weight: 500; letter-spacing: 0.01em; }

  /* Active state — glowing pill in the tab's accent colour, gentle pulse */
  .tsk-btn.active {
    color: var(--text-hi);
    transform: translateY(0);
  }
  .tsk-btn.active .tsk-ico { opacity: 1; }
  .tsk-flights.active  {
    background: rgba(30,155,230,0.14);
    border-color: rgba(30,155,230,0.55);
    box-shadow: 0 0 22px -4px rgba(30,155,230,0.55),
                inset 0 0 0 1px rgba(30,155,230,0.2);
    animation: tskActiveFlights 2.2s ease-in-out infinite;
  }
  .tsk-flights.active  .tsk-ico { color: #52B8F0; }
  @keyframes tskActiveFlights {
    0%,100% { box-shadow: 0 0 22px -4px rgba(30,155,230,0.55), inset 0 0 0 1px rgba(30,155,230,0.2); }
    50%     { box-shadow: 0 0 32px -2px rgba(30,155,230,0.85), inset 0 0 0 1px rgba(30,155,230,0.35); }
  }
  .tsk-internet.active {
    background: rgba(82,184,240,0.14);
    border-color: rgba(82,184,240,0.55);
    box-shadow: 0 0 22px -4px rgba(82,184,240,0.55),
                inset 0 0 0 1px rgba(82,184,240,0.2);
    animation: tskActiveInternet 2.2s ease-in-out infinite;
  }
  .tsk-internet.active .tsk-ico { color: #52B8F0; }
  @keyframes tskActiveInternet {
    0%,100% { box-shadow: 0 0 22px -4px rgba(82,184,240,0.55), inset 0 0 0 1px rgba(82,184,240,0.2); }
    50%     { box-shadow: 0 0 32px -2px rgba(82,184,240,0.85), inset 0 0 0 1px rgba(82,184,240,0.35); }
  }
  .tsk-f1.active {
    background: rgba(220,30,45,0.14);
    border-color: rgba(220,30,45,0.6);
    box-shadow: 0 0 22px -4px rgba(220,30,45,0.6),
                inset 0 0 0 1px rgba(220,30,45,0.22);
    animation: tskActiveF1 2.2s ease-in-out infinite;
  }
  .tsk-f1.active .tsk-ico { color: #FF5D6A; }
  @keyframes tskActiveF1 {
    0%,100% { box-shadow: 0 0 22px -4px rgba(220,30,45,0.6),  inset 0 0 0 1px rgba(220,30,45,0.22); }
    50%     { box-shadow: 0 0 32px -2px rgba(220,30,45,0.95), inset 0 0 0 1px rgba(220,30,45,0.4); }
  }

  @media (max-width: 720px) {
    .telem-sticky { top: 60px; }
    .telem-sticky-inner { height: 52px; gap: 12px; }
    .tsk-eye { display: none; }
    .tsk-btns { justify-content: space-between; gap: 6px; width: 100%; }
    .tsk-btn { flex: 1; justify-content: center; padding: 7px 10px; font-size: 12.5px; gap: 6px; min-width: 0; }
    .tsk-btn .tsk-lbl { font-size: 12.5px; }
  }
  @media (max-width: 380px) {
    .telem-sticky-inner { height: 48px; gap: 6px; }
    .tsk-btn { padding: 6px 6px; font-size: 11.5px; gap: 4px; }
    .tsk-btn .tsk-ico { font-size: 12px; }
    .tsk-btn .tsk-lbl { font-size: 11.5px; }
  }

  /* (legacy .telem-tabs / .telem-tab rules removed — replaced by
     .telem-previews cards above + .telem-sticky condense nav on scroll) */
  /* scroll-margin-top = main nav (72) + sticky bar (54) + breathing room (14).
     Used by scrollIntoView when activating from preview cards OR sticky nav,
     so the panel's top edge always lands below both bars, never under them. */
  .telem-panel {
    margin-top: 20px;
    scroll-margin-top: 140px;
  }
  @media (max-width: 720px) {
    .telem-panel { scroll-margin-top: 120px; }
  }

  /* ==========================================================================
     Tab panels — each tab takes its own natural height; the inactive tabs
     are removed from the flow with display:none.  This produces a small
     layout shift on switch but kills the dead space we'd get by grid-
     stacking with MAX(three-heights).  Aerei is noticeably taller than
     Dorsali/F1, so the stacked approach left ugly empty tails in the
     shorter tabs.
     ========================================================================== */
  .telem-stack {
    display: block;
  }
  .tab-panel {
    display: none;
    padding: 22px 26px;
  }
  .tab-panel.active {
    display: block;
    animation: tabFade .25s var(--ease);
  }
  @keyframes tabFade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .tab-head { margin: 0 0 22px; }
  .tab-head h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--text-hi);
    margin-bottom: 8px;
  }
  .tab-head p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-dim);
    max-width: 820px;
  }
  @media (max-width: 700px) {
    .tab-panel { padding: 18px 16px 18px; }
  }

  /* ===== TAB 1 · Internet tiles ===== */
  .int-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .int-tile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 18px 16px;
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
  }
  .int-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(30,155,230,0.5) 50%, transparent 100%);
  }
  .it-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
  .it-label { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); }
  .it-tag { font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); }
  .it-value {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-hi);
    line-height: 1;
    letter-spacing: -0.01em;
    margin-top: 4px;
    min-height: 34px;
  }
  .it-value .unit { font-size: 14px; margin-left: 4px; color: var(--text-dim); font-weight: 400; }
  .it-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--text); display: flex; flex-wrap: wrap; gap: 8px; }
  .it-meta.doh-meta { flex-direction: column; gap: 4px; }
  .dohrow { display: flex; justify-content: space-between; gap: 10px; font-size: 11px; }
  .dohname { color: var(--text-dim); }
  .dohval { color: var(--text-hi); font-variant-numeric: tabular-nums; }
  .dohval.fastest { color: var(--accent); }
  .it-spark-wrap { margin: 2px 0 -2px; }
  .it-spark { width: 100%; height: 30px; display: block; }
  .it-explain {
    font-size: 11.5px;
    line-height: 1.5;
    color: var(--text-dim);
    font-style: italic;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px dashed rgba(255,255,255,0.06);
  }
  @media (max-width: 1024px) { .int-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px)  { .int-grid { grid-template-columns: 1fr; } }

  /* ===== TAB 2 · F1 ===== */
  .f1-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 1fr;
    gap: 14px;
  }
  .f1-next, .f1-standings, .f1-ferrari {
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    position: relative;
  }
  .f1-next-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
  .f1-next-eye, .f1-fr-title, .f1-ss-head > span:first-child {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
  }
  .f1-next-tag { font-family: var(--font-mono); font-size: 10px; color: var(--accent); }
  .f1-count {
    font-family: var(--font-mono);
    font-size: 38px;
    font-weight: 600;
    color: var(--text-hi);
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 8px 0 6px;
  }
  .f1-meta { font-family: var(--font-mono); font-size: 12px; color: var(--accent); margin-bottom: 4px; }
  .f1-where { font-size: 13px; color: var(--text); padding-bottom: 14px; border-bottom: 1px dashed rgba(255,255,255,0.06); }
  .f1-wx { margin-top: 14px; }
  .f1-wx-eye { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }

  .f1-ss-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
  .f1-ss-meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-dim); }
  .f1-ss-list { display: flex; flex-direction: column; gap: 3px; font-family: var(--font-mono); font-size: 12px; }
  .f1-ss-row {
    display: grid;
    grid-template-columns: 32px 1fr 100px 60px;
    gap: 8px;
    align-items: center;
    padding: 6px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.015);
    transition: background .15s var(--ease);
  }
  .f1-ss-row:hover { background: rgba(30,155,230,0.06); }
  .f1-ss-row.muted { opacity: 0.55; }
  .f1-ss-pos { font-weight: 700; color: var(--accent); }
  .f1-ss-drv { color: var(--text-hi); font-weight: 600; letter-spacing: 0.02em; }
  .f1-ss-team { color: var(--text-dim); font-size: 10.5px; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .f1-ss-gap { color: var(--text); text-align: right; font-variant-numeric: tabular-nums; }
  .f1-ss-row.f1-ferrari-row { background: rgba(220, 20, 40, 0.08); border-left: 2px solid #DC1E2D; padding-left: 6px; }

  .f1-fr-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(220,20,40,0.2); }
  .f1-fr-title {
    color: #DC1E2D !important;
    font-weight: 700;
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .f1-fr-tag { font-family: var(--font-mono); font-size: 10px; color: var(--text-dim); }
  .f1-fr-tag.live { color: var(--accent); }
  .f1-fr-cars { display: flex; flex-direction: column; gap: 10px; }
  .f1-fr-car { background: rgba(220,20,40,0.05); border: 1px solid rgba(220,20,40,0.15); border-radius: 8px; padding: 12px 14px; }
  .ffc-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
  .ffc-code {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    color: #DC1E2D;
    letter-spacing: 0.08em;
    line-height: 1;
    text-shadow: 0 0 18px rgba(220,20,40,0.35);
  }
  .ffc-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    font-weight: 500;
  }
  .ffc-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .ffc-m { text-align: center; padding: 4px 2px; background: rgba(0,0,0,0.25); border-radius: 4px; }
  .ffc-ml { font-family: var(--font-mono); font-size: 9px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
  .ffc-mv { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--text-hi); line-height: 1; font-variant-numeric: tabular-nums; }
  .ffc-mv.drs-on { color: #3ecf57; }
  .ffc-mv.drs-off { color: var(--text-dim); }
  .f1-fr-note { font-size: 10.5px; color: var(--text-dim); font-style: italic; margin-top: 10px; text-align: center; }
  .f1-fr-trends { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; padding-top: 12px; border-top: 1px dashed rgba(255,255,255,0.06); }
  .trend-sm .tlabel { font-size: 10px; }
  .trend-sm svg { height: 28px; }

  @media (max-width: 1024px) {
    .f1-grid { grid-template-columns: 1fr; }
  }

  /* ==========================================================================
     TAB 1 · Flights · Atlanta ATL radar scope
     ==========================================================================
     Layout:
       .atl-main  → 4 KPI tiles  +  radar scope & side lists grid
       .atl-scope-wrap  → [radar SVG]  [arr + dep cards stacked on right]

     Mobile: everything stacks.  Radar goes full-width (max ~360px) centered,
     then side cards one after the other.
     ========================================================================== */
  .atl-main {
    display: grid;
    grid-template-rows: auto;
    gap: 14px;
    margin-bottom: 14px;
  }

  /* Radar scope + Atlanta side feed.  Two-column on desktop: radar fills
     the larger left, the aside (KATL info + live counters + weather) lives
     on the right in a fixed 280 px column.  Below 1000 px the aside stacks
     under the radar. */
  /* Radar (wide card, fills the available left space) + aside stack on
     the right (3 cards one under the other).  Aside column width clamps
     so on smaller viewports we claw back horizontal space for the radar. */
  .atl-scope-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 14px;
    align-items: stretch;
  }
  .atl-scope {
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  .atl-scope::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.55;
  }
  .atl-radar {
    width: 100%;
    height: auto;
    max-width: 460px;
    margin: 0 auto;
    display: block;
    aspect-ratio: 1 / 1;
  }

  /* Static radar elements ------------------------------------------------- */
  .atl-ring {
    fill: none;
    stroke: #2a3446;
    stroke-width: 0.7;
  }
  .atl-cross {
    stroke: #1f2937;
    stroke-width: 0.5;
  }
  .atl-card-lbl {
    fill: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .atl-rng-lbl {
    fill: #3b4455;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.04em;
  }
  .atl-sweep {
    transform-origin: 210px 210px;
    animation: atlSweep 9s linear infinite;
  }
  @keyframes atlSweep {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  .atl-center-dot {
    fill: var(--accent);
  }
  .atl-center-ring {
    fill: none;
    stroke: var(--accent);
    stroke-width: 0.6;
    opacity: 0.45;
    animation: atlCenterPulse 2.4s ease-in-out infinite;
  }
  @keyframes atlCenterPulse {
    0%,100% { opacity: 0.25; transform: scale(1); transform-origin: 210px 210px; }
    50%     { opacity: 0.65; transform: scale(1.25); transform-origin: 210px 210px; }
  }
  .atl-center-lbl {
    fill: var(--text-hi);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  /* Dynamic aircraft layer ----------------------------------------------- */
  /* Each plane is wrapped in an SVG <a> that opens FR24/FlightAware.  We add
     an invisible .rp-hit circle behind the visible dot to widen the click
     target (the 4px dot itself is too small for fingers + cursor precision).
     On hover, the dot grows slightly and the label brightens. */
  .atl-radar a { cursor: pointer; }
  .atl-radar a:hover .rp-dot { r: 5.5; filter: brightness(1.4); }
  .atl-radar a:hover .rp-lbl { fill: #f3f6fb; }
  .rp-hit { fill: transparent; pointer-events: auto; }
  .rp-group { transition: opacity .3s var(--ease); }
  .rp-dot {
    stroke: var(--bg-1);
    stroke-width: 1;
    transition: r .15s var(--ease), filter .15s var(--ease);
  }
  .rp-trail {
    fill: currentColor;
  }
  .rp-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .rp-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    fill: var(--text-dim);
    letter-spacing: 0.02em;
  }
  /* phase colors */
  .rp-arr  .rp-dot { fill: #1E9BE6; }
  .rp-arr  .rp-lbl { fill: #52B8F0; }
  .rp-arr  .rp-trail { color: #1E9BE6; }
  .rp-dep  .rp-dot { fill: #F59E0B; }
  .rp-dep  .rp-lbl { fill: #FFC147; }
  .rp-dep  .rp-trail { color: #F59E0B; }
  .rp-xfer .rp-dot { fill: #9fb0c7; opacity: 0.75; }
  .rp-xfer .rp-lbl { fill: #9fb0c7; opacity: 0.7; }
  .rp-xfer .rp-sub { opacity: 0.55; }
  .rp-xfer .rp-trail { color: #9fb0c7; opacity: 0.4; }

  /* Legend below the radar */
  .atl-scope-legend {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding-top: 8px;
    border-top: 1px dashed var(--border);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-wrap: wrap;
  }
  .alg {
    display: inline-flex; align-items: center; gap: 6px;
  }
  .alg-dot {
    display: inline-block;
    width: 8px; height: 8px; border-radius: 50%;
  }
  .alg-arr   .alg-dot { background: #1E9BE6; }
  .alg-dep   .alg-dot { background: #F59E0B; }
  .alg-other .alg-dot { background: #9fb0c7; }

  /* ==========================================================================
     Atlanta side feed (.atl-aside) — to the right of the radar scope.
     Three cards STACKED VERTICALLY: airport info, live counters, weather
     from Open-Meteo.  With flex:1 on each card, they share the column
     height (which matches the radar scope card via grid align stretch).
     ========================================================================== */
  .atl-aside {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .aside-card {
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .aside-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.45;
  }
  .aside-info::before    { background: linear-gradient(90deg, transparent, #52B8F0, transparent); }
  .aside-live::before    { background: linear-gradient(90deg, transparent, #3ecf57, transparent); opacity: 0.55; }
  .aside-weather::before { background: linear-gradient(90deg, transparent, #F59E0B, transparent); }

  .aside-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .aside-eye {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .aside-info .aside-eye    { color: #52B8F0; }
  .aside-live .aside-eye    { color: #7de8a1; }
  .aside-weather .aside-eye { color: #FFC147; }
  .aside-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 7px;
    border: 1px solid var(--border);
    border-radius: 999px;
    white-space: nowrap;
  }
  .aside-pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: #3ecf57;
    box-shadow: 0 0 10px rgba(62,207,87,0.6);
    animation: asidePulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes asidePulse {
    0%,100% { opacity: 1;   box-shadow: 0 0 10px rgba(62,207,87,0.65); }
    50%     { opacity: 0.4; box-shadow: 0 0 2px  rgba(62,207,87,0.2); }
  }

  /* Definition list used for all three cards — label left, value right. */
  .aside-dl {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    row-gap: 8px;
    align-items: baseline;
    margin: 0;
  }
  .aside-dl dt {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
  .aside-dl dd {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-hi);
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
    text-align: right;
    margin: 0;
  }

  /* Weather card: the big temperature line at the top */
  .aside-weather .wx-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(255,255,255,0.06);
  }
  .aside-weather .wx-icon {
    font-size: 28px;
    line-height: 1;
    color: #FFC147;
  }
  .aside-weather .wx-temp {
    font-family: 'JetBrains Mono', monospace;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-hi);
    line-height: 1;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
  }

  /* Tablet window: aside drops below the radar as a 3-col band. */
  @media (max-width: 1000px) {
    .atl-scope-wrap {
      grid-template-columns: 1fr;
      height: auto;
    }
    .atl-aside {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
      height: auto;
    }
    .aside-card { flex: 1 1 0; }
  }

  /* Narrow tablet / large phone: aside collapses to 2-col so the cards
     breathe instead of squeezing 3 tall dl stacks side-by-side. */
  @media (max-width: 820px) {
    .atl-aside { grid-template-columns: 1fr 1fr; }
    .atl-aside .aside-weather { grid-column: 1 / -1; }
  }

  /* Mobile: aside stacks to single column, radar goes full-width. */
  @media (max-width: 640px) {
    .atl-aside { grid-template-columns: 1fr; gap: 10px; }
    .atl-aside .aside-weather { grid-column: auto; }
    .atl-radar { max-width: 380px; }
    .atl-scope { padding: 14px; gap: 10px; }
    .atl-scope-legend { gap: 10px 14px; font-size: 9.5px; }
    .aside-card { padding: 12px 14px; }
    .aside-head { margin-bottom: 10px; }
    .aside-dl { font-size: 12px; }
    .aside-weather .wx-temp { font-size: 26px; }
    .aside-weather .wx-icon { font-size: 22px; }
  }

  /* ===== TAB 2 · F1 · new single-card layout ===== */
  .f1-main {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 14px;
    align-items: stretch;
  }
  .f1-main > .f1-status,
  .f1-main > .f1-standings,
  .f1-main > .f1-ferrari { display: flex; flex-direction: column; height: 100%; }
  .f1-status {
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .f1-status[data-mode="live"] {
    border-color: rgba(62, 207, 87, 0.35);
    background: linear-gradient(180deg, rgba(62, 207, 87, 0.05), var(--bg-1));
  }
  .f1-status[data-mode="next"] {
    border-color: rgba(30, 155, 230, 0.3);
    background: linear-gradient(180deg, rgba(30, 155, 230, 0.03), var(--bg-1));
  }
  .f1s-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
  .f1s-modewrap { display: inline-flex; align-items: center; gap: 8px; }
  .f1s-led {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    background: #e23b3b;
    box-shadow: 0 0 6px rgba(226, 59, 59, 0.55);
    flex-shrink: 0;
  }
  .f1-status[data-mode="live"] .f1s-led {
    background: #3ecf57;
    box-shadow: 0 0 12px rgba(62, 207, 87, 0.85);
    animation: f1LedLive 1.6s ease-in-out infinite;
  }
  @keyframes f1LedLive {
    0%, 100% { opacity: 1;   box-shadow: 0 0 14px rgba(62, 207, 87, 0.95); }
    50%      { opacity: 0.25; box-shadow: 0 0 4px  rgba(62, 207, 87, 0.25); }
  }
  .f1s-mode {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  .f1-status[data-mode="live"] .f1s-mode { color: #3ecf57; }
  .f1-status[data-mode="next"] .f1s-mode { color: var(--accent); }
  .f1s-tag { font-family: var(--font-mono); font-size: 10px; color: var(--accent); opacity: 0.9; }
  .f1s-name {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-hi);
    line-height: 1.35;
    letter-spacing: -0.005em;
    padding-bottom: 14px;
    margin-bottom: 4px;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
  }
  .f1s-timerlbl {
    font-family: var(--font-mono);
    font-size: 9.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 8px;
  }
  .f1-status[data-mode="live"] .f1s-timerlbl { color: #3ecf57; }
  .f1-status[data-mode="next"] .f1s-timerlbl { color: var(--accent); }
  .f1s-timer {
    font-family: var(--font-mono);
    font-size: 34px;
    font-weight: 600;
    color: var(--text-hi);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    margin-top: 4px;
  }
  .f1-status[data-mode="live"] .f1s-timer { color: #3ecf57; }
  .f1-status[data-mode="next"] .f1s-timer { color: var(--accent); }
  .f1s-where { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-dim); letter-spacing: 0.02em; margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(255,255,255,0.06); }

  @media (max-width: 1024px) { .f1-main { grid-template-columns: 1fr; gap: 12px; } }
  @media (max-width: 640px) {
    .f1-status { padding: 14px 16px; }
    .f1s-timer { font-size: 28px; }
    .f1s-name { font-size: 14px; }
    .ffc-metrics { grid-template-columns: repeat(4, 1fr); gap: 4px; }
    .ffc-m { padding: 4px 1px; }
    .ffc-mv { font-size: 12px; }
    .ffc-ml { font-size: 8.5px; }
    .ffc-code { font-size: 19px; }
    .f1-fr-car { padding: 10px 12px; }
    /* Hide the team column on narrow screens — driver + gap are what matter,
       team name ellipsis'd to 2 chars helps no one. */
    .f1-ss-row { grid-template-columns: 24px 1fr 52px; padding: 5px 6px; font-size: 11px; }
    .f1-ss-team { display: none; }
    .f1-next, .f1-standings, .f1-ferrari { padding: 14px 14px 12px; }
  }
  /* Really narrow phones: swap ferrari metrics to 2×2 so values don't clip. */
  @media (max-width: 380px) {
    .ffc-metrics { grid-template-columns: repeat(2, 1fr); gap: 5px; }
    .ffc-mv { font-size: 13px; }
    .ffc-ml { font-size: 9px; }
  }

  /* ===== TAB 3 · Internet · Cloudflare trace row on top, 3 corridor cards below ===== */
  .int-main {
    display: grid;
    grid-template-areas:
      "trace"
      "corridors";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    margin-bottom: 0;
  }
  .int-main > .int-trace      { grid-area: trace; }
  .int-main > .int-corridors  { grid-area: corridors; align-items: stretch; }
  .int-corridors > .int-corr  { display: flex; flex-direction: column; }

  .int-trace {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .int-tt {
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    overflow: hidden;
  }
  .int-tt::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.45;
  }
  .itt-lbl {
    font-family: var(--font-mono);
    font-size: 9.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .itt-val {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-hi);
    letter-spacing: 0.02em;
    line-height: 1.1;
    word-break: break-all;
  }
  .itt-val.itt-small { font-size: 14px; }
  .itt-val.itt-ip { font-size: 13px; }
  .itt-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
  }
  @media (max-width: 1024px) {
    .int-trace { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .int-trace { grid-template-columns: 1fr; }
  }

  .int-corridors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .int-corr {
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
  }
  .int-corr::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.45;
  }
  @media (max-width: 900px) {
    .int-corridors { grid-template-columns: 1fr; }
  }
  .ic-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .ic-name {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-hi);
    letter-spacing: 0.02em;
  }
  .ic-tag { font-family: var(--font-mono); font-size: 9.5px; color: var(--accent); letter-spacing: 0.06em; }
  .ic-meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-dim); letter-spacing: 0.04em; line-height: 1.5; }

  /* Big RTT block */
  .ic-big {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 10px 0 6px;
    border-top: 1px dashed rgba(255,255,255,0.08);
    border-bottom: 1px dashed rgba(255,255,255,0.08);
  }
  .ic-big-v {
    font-family: var(--font-mono);
    font-size: 34px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
  }
  .ic-big-v .ic-unit { font-size: 13px; color: var(--text-dim); font-weight: 400; margin-left: 4px; }
  .ic-big-l { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; }

  /* Secondary metrics row: jitter · min · max · loss */
  .ic-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .ic-mini .ic-stat { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; }
  .ic-sl { font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
  .ic-sv { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--text-hi); font-variant-numeric: tabular-nums; line-height: 1; }
  .ic-sv .ic-unit { font-size: 10px; color: var(--text-dim); font-weight: 400; margin-left: 2px; }

  .ic-cap {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 4px;
  }
  .ic-cap-l { font-family: var(--font-mono); font-size: 9.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
  .ic-cap-v { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-hi); letter-spacing: 0.02em; }

  /* three-line fact list under each corridor (replaces the single capacity row) */
  .ic-facts {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 6px;
    border-top: 1px dashed rgba(255,255,255,0.06);
  }
  .ic-fact {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--font-mono);
    font-size: 10.5px;
    gap: 10px;
  }
  .ic-fact > span:first-child { color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 9.5px; }
  .ic-fact-v { color: var(--text-hi); letter-spacing: 0.02em; font-variant-numeric: tabular-nums; }

  .ic-spark { width: 100%; height: 44px; display: block; margin-top: auto; }

  .int-foot {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-dim);
  }
  .int-foot-src { font-style: italic; letter-spacing: 0.02em; }

  @media (max-width: 900px) {
    .int-main { grid-template-columns: 1fr; }
  }

  /* Ticker sectioning */
  .tk-sec { display: inline-flex; align-items: center; gap: 6px; }
  .tk-sec-lbl { color: var(--accent); font-weight: 700; opacity: 0.9; padding: 1px 6px; border: 1px solid rgba(30,155,230,0.3); border-radius: 3px; font-size: 10px; }

  .telem-panel {
    position: relative; margin-top: 24px;
    background: linear-gradient(180deg, var(--surface), var(--bg-1));
    border: 1px solid var(--border-hi);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.02) inset;
  }
  .telem-head {
    display: flex; align-items: center; gap: 16px;
    padding: 14px 22px;
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid var(--border);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }
  .telem-head .dots { display: flex; gap: 6px; }
  .telem-head .dots span { width: 10px; height: 10px; border-radius: 50%; background: #2a3446; }
  .telem-head .dots span:nth-child(1) { background: #ff5f57; }
  .telem-head .dots span:nth-child(2) { background: #febc2e; }
  .telem-head .dots span:nth-child(3) { background: #28c840; }
  .telem-head .uri { color: var(--text-dim); }
  .telem-head .live-tag { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--accent-hi); text-transform: uppercase; letter-spacing: 0.1em; }
  .telem-head .live-tag::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulseDot 1.4s infinite; }
  @keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

  .telem-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-bottom: 1px solid var(--border);
  }
  .telem-kpi {
    background: var(--bg-1);
    padding: 22px 20px;
    position: relative;
  }
  .telem-kpi .klabel {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  .telem-kpi .kvalue {
    font-family: 'JetBrains Mono', monospace;
    font-size: 30px;
    font-weight: 600;
    color: var(--text-hi);
    letter-spacing: -0.02em;
    margin-top: 10px;
    line-height: 1;
  }
  .telem-kpi .kvalue .unit { color: var(--accent); font-size: 20px; margin-left: 2px; }
  .telem-kpi .ksub {
    margin-top: 12px;
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    display: flex; align-items: center; gap: 8px;
  }
  .telem-kpi .trend { color: var(--accent); }
  .telem-kpi .gauge-bar {
    margin-top: 14px;
    height: 3px;
    background: var(--bg-2);
    border-radius: 2px;
    overflow: hidden;
  }
  .telem-kpi .gauge-bar span {
    display: block; height: 100%;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent-hi));
  }

  /* KPI trend pill variants */
  .telem-kpi .trend.real { color: var(--accent); }
  .telem-kpi .trend.sim { color: var(--text-muted); }

  /* Mix panels: broadcast | real feeds | contour trends */
  .telem-mix {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border-bottom: 1px solid var(--border);
  }
  .mix-col {
    background: var(--bg-1);
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    display: flex;
    flex-direction: column;
  }
  .mix-head {
    display: flex; justify-content: space-between; align-items: center;
    color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.12em; font-size: 10px;
    padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 16px;
  }
  .mix-tag {
    font-family: 'JetBrains Mono', monospace; font-size: 9px;
    letter-spacing: 0.1em; padding: 2px 8px; border-radius: 999px;
    border: 1px solid var(--border-hi);
    text-transform: uppercase;
  }
  .mix-tag.real { color: var(--accent); border-color: rgba(30,155,230,0.4); background: rgba(30,155,230,0.08); }
  .mix-tag.sim { color: var(--text-muted); }
  .mix-tag.mixed { color: var(--text-dim); }

  .fl-label {
    padding-top: 12px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
  }
  .fl-list { display: flex; flex-direction: column; flex: 1; }
  .fl-row {
    display: grid;
    grid-template-columns: 62px 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 11px;
  }
  .fl-row:last-child { border-bottom: none; }
  .fl-row .fl-call { color: var(--accent); font-weight: 700; letter-spacing: 0.03em; }
  .fl-row .fl-origin { color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; }
  .fl-row .fl-metrics { color: var(--text-muted); text-align: right; font-size: 10px; white-space: nowrap; }
  .fl-row.muted {
    display: block;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 16px 0;
  }
  .fl-foot {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9.5px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
  }
  .fl-age { color: var(--accent); font-family: 'JetBrains Mono', monospace; }

  /* Real-feeds column */
  .wx-label, .iss-label {
    display: block;
    color: var(--text-muted); font-size: 10px;
    text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 8px;
  }
  .wx-grid { display: flex; flex-direction: column; gap: 2px; }
  .wx-row {
    display: grid; grid-template-columns: 70px 1fr 1fr; gap: 8px;
    padding: 7px 0; border-bottom: 1px dashed var(--border);
    align-items: center;
  }
  .wx-row:last-child { border-bottom: none; }
  .wx-c { color: var(--accent); font-weight: 600; letter-spacing: 0.05em; font-size: 11px; }
  .wx-t { color: var(--text-hi); font-weight: 600; }
  .wx-w { color: var(--text-dim); text-align: right; font-size: 11px; }

  .iss-row {
    margin-top: 18px; padding: 14px 0 14px;
    border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 4px;
  }
  .iss-pos { color: var(--text-hi); font-weight: 600; }
  .iss-over { color: var(--text-dim); font-size: 11px; }

  /* Network pulse feed (Cloudflare + API edges) */
  .np-feed { margin-top: 4px; padding-top: 14px; border-top: 1px solid var(--border); }
  .np-label {
    display: flex; justify-content: space-between; align-items: center;
    color: var(--text-muted); font-size: 10px;
    text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 8px;
    gap: 10px;
  }
  .np-label .np-colo {
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase; letter-spacing: 0.18em;
    font-size: 9.5px;
    padding: 2px 8px;
    background: rgba(30,155,230,0.08);
    border: 1px solid rgba(30,155,230,0.22);
    border-radius: 999px;
  }
  .np-list { display: flex; flex-direction: column; }
  .np-row {
    display: grid; grid-template-columns: 1fr auto; gap: 8px;
    padding: 6px 0; border-bottom: 1px dashed var(--border);
    font-size: 11px; align-items: center;
  }
  .np-row:last-child { border-bottom: none; }
  .np-src { color: var(--text); }
  .np-src small { color: var(--text-muted); font-size: 9.5px; margin-left: 4px; }
  .np-rtt { color: var(--accent); font-family: 'JetBrains Mono', monospace; font-weight: 700; letter-spacing: -0.02em; }
  .np-rtt.slow { color: #f59e0b; }
  .np-rtt.bad  { color: #f87171; }
  .np-rtt.fail { color: var(--text-muted); font-style: italic; font-weight: 400; }

  /* Contour trends column */
  .trend { margin-bottom: 14px; }
  .trend:last-child { margin-bottom: 0; }
  .tlabel { display: flex; justify-content: space-between; color: var(--text-muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
  .tval { color: var(--text-hi); font-weight: 600; text-transform: none; letter-spacing: 0; font-size: 12px; }
  .trend svg { width: 100%; height: 46px; margin-top: 4px; display: block; }
  .tsource { font-size: 9px; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }
  .tsource.real { color: var(--accent); }

  /* Mixed event feed */
  .telem-feed {
    padding: 20px 22px;
    background: var(--bg-1);
    border-bottom: 1px solid var(--border);
  }
  .telem-feed .blabel {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.14em;
    padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 10px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .telem-feed .blabel .rval { color: var(--text-dim); text-transform: none; letter-spacing: 0; font-size: 11px; }
  .event-list { display: flex; flex-direction: column; }
  .event-list .event-row {
    display: grid; grid-template-columns: 70px 14px 60px 1fr;
    gap: 10px; align-items: center;
    padding: 8px 0; border-bottom: 1px dashed var(--border);
    font-family: 'JetBrains Mono', monospace; font-size: 11.5px;
  }
  .event-list .event-row:last-child { border-bottom: none; }
  .event-list .t { color: var(--text-muted); }
  .event-list .s { color: var(--accent); }
  .event-list .src {
    color: var(--text-muted); font-size: 9px;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 2px 6px; border: 1px solid var(--border-hi);
    border-radius: 4px; text-align: center;
  }
  .event-list .src.real { color: var(--accent); border-color: rgba(30,155,230,0.4); background: rgba(30,155,230,0.06); }
  .event-list .src.sim { color: var(--text-muted); }
  .event-list .m { color: var(--text-dim); }
  .event-row.muted { color: var(--text-muted); font-style: italic; text-align: center; display: block !important; padding: 18px 0 !important; }

  .telem-ticker {
    display: flex;
    align-items: center;
    padding: 12px 0;
    background: rgba(0,0,0,0.3);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.04em;
  }
  .ticker-track {
    display: inline-flex; gap: 42px;
    padding-left: 42px;
    animation: ticker 48s linear infinite;
  }
  .ticker-track .ok { color: var(--accent); font-weight: 600; }
  .ticker-track .sep { color: var(--border-hi); }
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ---------- REVEAL ---------- */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ==========================================================================
     RESPONSIVE · Mobile overhaul
     ==========================================================================
     Breakpoints:
       1200px  desktop L       offer cards 3-col, hero gap tightened
       1000px  tablet/desktop  hero stacks, nav still horizontal
        900px  tablet          burger menu on, trust 3-col, offer 2-col, footer 2-col
        640px  mobile L        most grids → 1-col, hero padding tight, buttons full-width
        420px  mobile S        super-compact: KPI 1-col, headings tighter
     ========================================================================== */

  @media (max-width: 1200px) {
    .offer-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-grid { gap: 40px; }
    section { padding: 88px 0; }
  }

  @media (max-width: 1000px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero p.lead { max-width: 100%; }
    .hero h1 { max-width: 100%; }
    .hero-sector .hs-name { font-size: 12px; }
  }

  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-right .btn { display: none; }                 /* hide CTA in nav on mobile */
    .nav-right .lang-switch { order: 2; }
    .burger { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--border-hi); border-radius: 8px; color: var(--text); order: 3; }
    .nav-inner { height: 60px; }
    .container { padding: 0 20px; }
    section { padding: 72px 0; }

    .hero { padding: 56px 0 48px; }
    .hero h1 { font-size: clamp(32px, 8vw, 48px); }
    .hero p.lead { font-size: 15.5px; }
    .hero-sectors-head, .hero-sectors-foot { padding: 10px 14px; font-size: 9.5px; }
    .hero-sector { padding: 12px 12px 10px; }
    .hero-sectors-body { grid-template-columns: 1fr 1fr; }

    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .offer-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .offer-card { min-height: 220px; padding: 20px 18px 16px; }
    .offer-card h4 { font-size: 14.5px; min-height: 2.4em; }
    .offer-card p { font-size: 12.5px; }

    .about-wrap { grid-template-columns: 1fr; gap: 40px; }
    .value-grid { grid-template-columns: 1fr; }
    .why-wrap { grid-template-columns: 1fr; gap: 40px; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .monitor-body { grid-template-columns: 1fr; }
    .monitor-left { border-right: none; border-bottom: 1px solid var(--border); }
    .trust-row { grid-template-columns: repeat(3, 1fr); gap: 16px 10px; }
    .trust-row div { font-size: 11px; }

    .foot-row { grid-template-columns: 1fr 1fr; gap: 28px; }
    .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cta { padding: 48px 20px; }
    .cta h2 { font-size: clamp(24px, 5vw, 36px); }
    .cta p { font-size: 15px; }

    .telem-kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .telem-mix { grid-template-columns: 1fr; }
    .section-title { font-size: clamp(26px, 5.5vw, 38px); }
    .section-sub { font-size: 15px; }

    /* nav below 900 is 60 px — adjust anchor landing offset to match */
    html { scroll-padding-top: 72px; }
  }

  @media (max-width: 640px) {
    .container { padding: 0 16px; }
    section { padding: 56px 0; }
    .hero { padding: 40px 0 36px; }
    .hero h1 { font-size: clamp(28px, 9vw, 40px); }
    .hero-ctas { flex-direction: column; gap: 10px; }
    .hero-ctas .btn { width: 100%; justify-content: center; }

    .offer-grid { grid-template-columns: 1fr; gap: 10px; }
    .offer-card { min-height: 0; }
    .offer-card h4 { min-height: 0; }

    .trust-row { grid-template-columns: repeat(2, 1fr); }

    .tab-panel { padding: 18px 14px; }

    .foot-row { grid-template-columns: 1fr; gap: 24px; }
    .cta { padding: 36px 18px; }
  }

  @media (max-width: 420px) {
    .hero-sectors-body { grid-template-columns: 1fr; }
    .hero-sector.full { grid-column: 1; }
    .trust-row { grid-template-columns: 1fr 1fr; }
    .telem-head { padding: 10px 14px; font-size: 10px; gap: 10px; flex-wrap: wrap; }
    .telem-head .uri { display: none; }
    .fl-foot { flex-direction: column; gap: 6px; align-items: flex-start; font-size: 9.5px; }
    /* Extra-narrow: tighten telem panel chrome so the tab content isn't
       squeezed to oblivion between the glass card frame. */
    .telem-panel { border-radius: 14px; }
    .tab-panel { padding: 14px 12px; }
    .atl-main, .int-main, .f1-main { gap: 10px; }
    .atl-scope { padding: 12px; }
    .atl-radar { max-width: 340px; }
    .atl-scope-legend { gap: 8px 12px; }
    .int-corr { padding: 12px 14px; }
    .ic-name { font-size: 11px; }
    .itt-val { font-size: 17px; }
    .itt-val.itt-small, .itt-val.itt-ip { font-size: 12.5px; }
  }

  /* ==========================================================================
     Cookie banner — slim sticky bar at the bottom, dismissed once and
     remembered via localStorage.  Site uses no tracking cookies; the
     banner is informative only.
     ========================================================================== */
  .cookie-banner {
    position: fixed;
    left: 16px; right: 16px; bottom: 16px;
    z-index: 100;
    background: linear-gradient(180deg, rgba(20, 27, 39, 0.96), rgba(11, 15, 22, 0.96));
    backdrop-filter: blur(14px) saturate(1.3);
    -webkit-backdrop-filter: blur(14px) saturate(1.3);
    border: 1px solid var(--border-hi);
    border-radius: var(--radius);
    box-shadow: 0 24px 50px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(30,155,230,0.08) inset;
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .45s var(--ease), opacity .3s var(--ease);
  }
  .cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 20px;
    flex-wrap: wrap;
  }
  .cookie-text {
    flex: 1;
    min-width: 220px;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-dim);
  }
  .cookie-text a {
    color: var(--accent-hi);
    text-decoration: underline;
    text-decoration-color: rgba(82,184,240,0.4);
    text-underline-offset: 2px;
  }
  .cookie-text a:hover { color: var(--text-hi); text-decoration-color: var(--accent-hi); }
  .cookie-banner .cookie-ok {
    flex-shrink: 0;
    padding: 9px 18px;
    font-size: 13px;
  }
  @media (max-width: 640px) {
    .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
    .cookie-banner-inner { padding: 12px 14px; gap: 12px; }
    .cookie-text { font-size: 12.5px; min-width: 100%; }
    .cookie-banner .cookie-ok { width: 100%; justify-content: center; }
  }

  /* Footer privacy link separator */
  .foot-sep { color: var(--text-muted); margin: 0 4px; }
  .foot-bottom a { color: var(--text-dim); text-decoration: none; transition: color .15s var(--ease); }
  .foot-bottom a:hover { color: var(--accent-hi); }
