    /* ─── Skip Navigation ──────────────────────── */
    .skip-nav {
      position: absolute;
      top: -100%;
      left: 0;
      padding: 12px 24px;
      background: var(--orange, #d7263d);
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      z-index: 10000;
      text-decoration: none;
      border-radius: 0 0 6px 0;
      transition: top 0.2s;
    }
    .skip-nav:focus {
      top: 0;
    }

    /* ─── Variables ─────────────────────────────── */
    :root {
      --beige:        #f2f0ed;
      --beige-dark:   #e8e6e4;
      --beige-border: #d5d3d1;
      --dark:         #0c0c0c;
      --dark-card:    #141414;
      --dark-border:  rgba(255,255,255,0.09);
      --orange:       #d7263d;
      --blue:         #52acfd;
      --grey:         #666666;
      --white:        #ffffff;
      --muted-dark:   #666666;
      --font-sans:    'DM Sans', system-ui, sans-serif;
      --font-mono:    'IBM Plex Mono', 'Courier New', monospace;
    }

    /* ─── Reset ─────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-sans);
      background: var(--beige);
      color: var(--dark);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      line-height: 1.5;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    ul { list-style: none; }

    /* ─── Scroll Reveal ──────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
                  transform 0.65s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.32s; }

    /* ─── Buttons ────────────────────────────────── */
    .btn {
      display: inline-block;
      font-family: var(--font-mono);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 11px 18px;
      cursor: pointer;
      border: none;
      white-space: nowrap;
      transition: background-color .2s, color .2s, box-shadow .2s;
    }
    .btn-orange:hover { background: var(--dark); color: var(--orange); }
    .btn-blue:hover   { background: var(--dark); color: var(--blue); }

    /* Orange buttons use L-bracket corner marks (not a full outline) */
    .btn-orange {
      background: var(--orange);
      color: var(--white);
      position: relative;
    }
    .btn-orange::before {
      content: '';
      position: absolute;
      inset: -4px;
      pointer-events: none;
      background:
        linear-gradient(var(--dark),var(--dark)) top    left /10px 2px no-repeat,
        linear-gradient(var(--dark),var(--dark)) top    left /2px  10px no-repeat,
        linear-gradient(var(--dark),var(--dark)) top    right/10px 2px no-repeat,
        linear-gradient(var(--dark),var(--dark)) top    right/2px  10px no-repeat,
        linear-gradient(var(--dark),var(--dark)) bottom left /10px 2px no-repeat,
        linear-gradient(var(--dark),var(--dark)) bottom left /2px  10px no-repeat,
        linear-gradient(var(--dark),var(--dark)) bottom right/10px 2px no-repeat,
        linear-gradient(var(--dark),var(--dark)) bottom right/2px  10px no-repeat;
    }
    /* CTA sits on a dark background — make the button's corner brackets red so they show */
    .cta-section .btn-orange::before {
      background:
        linear-gradient(var(--orange),var(--orange)) top    left /10px 2px no-repeat,
        linear-gradient(var(--orange),var(--orange)) top    left /2px  10px no-repeat,
        linear-gradient(var(--orange),var(--orange)) top    right/10px 2px no-repeat,
        linear-gradient(var(--orange),var(--orange)) top    right/2px  10px no-repeat,
        linear-gradient(var(--orange),var(--orange)) bottom left /10px 2px no-repeat,
        linear-gradient(var(--orange),var(--orange)) bottom left /2px  10px no-repeat,
        linear-gradient(var(--orange),var(--orange)) bottom right/10px 2px no-repeat,
        linear-gradient(var(--orange),var(--orange)) bottom right/2px  10px no-repeat;
    }

    .btn-outline {
      background: var(--white);
      color: var(--dark);
      border: 1.5px solid var(--dark);
      box-shadow: 3px 3px 0 var(--dark);
    }
    .btn-outline:hover { box-shadow: 1px 1px 0 var(--dark); }

    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.35);
    }

    .btn-blue {
      background: var(--blue);
      color: var(--dark);
      position: relative;
    }
    .btn-blue::before {
      content: '';
      position: absolute;
      inset: -4px;
      pointer-events: none;
      background:
        linear-gradient(var(--blue),var(--blue)) top    left /10px 2px no-repeat,
        linear-gradient(var(--blue),var(--blue)) top    left /2px  10px no-repeat,
        linear-gradient(var(--blue),var(--blue)) top    right/10px 2px no-repeat,
        linear-gradient(var(--blue),var(--blue)) top    right/2px  10px no-repeat,
        linear-gradient(var(--blue),var(--blue)) bottom left /10px 2px no-repeat,
        linear-gradient(var(--blue),var(--blue)) bottom left /2px  10px no-repeat,
        linear-gradient(var(--blue),var(--blue)) bottom right/10px 2px no-repeat,
        linear-gradient(var(--blue),var(--blue)) bottom right/2px  10px no-repeat;
    }

    /* ─── Corner Registration Marks ─────────────── */
    .corners {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 5;
    }
    .corners::before, .corners::after,
    .corners .c3, .corners .c4 {
      content: '';
      position: absolute;
      width: 8px;
      height: 8px;
    }
    .corners::before { top: 0;    left: 0;  background: var(--dark); }
    .corners::after  { top: 0;    right: 0; background: var(--dark); }
    .corners .c3     { bottom: 0; right: 0; background: var(--dark); }
    .corners .c4     { bottom: 0; left: 0;  background: var(--dark); }
    /* White variant for dark sections */
    .corners-white::before, .corners-white::after,
    .corners-white .c3, .corners-white .c4 { background: var(--white); }

    /* ─── BG Circle Watermark ────────────────────── */
    .bg-watermark {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 0;
    }
    .bg-watermark svg { position: absolute; }
    .bg-watermark circle { fill: none; stroke: rgba(0,0,0,0.065); stroke-width: 1; }
    .dark-circles circle { stroke: rgba(255,255,255,0.05); }

    /* ─── Top Chrome ─────────────────────────────── */
    .top-chrome {
      height: 22px;
      background: var(--dark);
      display: flex;
      align-items: center;
      padding: 0 20px;
    }
    .chrome-favicon {
      font-family: var(--font-mono);
      font-size: 10px;
      color: #ffffff;
      margin-left: 8px;
    }

    /* ─── Navbar ──────────────────────────────────── */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--beige);
      border-bottom: 1px solid var(--beige-border);
      transition: box-shadow 0.25s;
    }
    .navbar.scrolled { box-shadow: 0 1px 16px rgba(0,0,0,0.07); }
    .nav-wrap {
      display: grid;
      grid-template-columns: 176px 1fr 176px;
      align-items: stretch;
      height: 88px;
    }
    .nav-logo-cell {
      display: flex;
      align-items: center;
      padding: 0 28px;
      border-right: 1px solid var(--beige-border);
    }
    .nav-logo { height: 28px; width: auto; max-width: none; flex-shrink: 0; object-fit: contain; }
    .nav-logo-fallback {
      font-family: var(--font-mono);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: -0.01em;
      color: var(--dark);
      display: none;
    }
    .nav-logo-fallback .marks {
      font-size: 16px;
      letter-spacing: -0.04em;
      vertical-align: middle;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0 20px;
      list-style: none;
      margin: 0;
    }
    .nav-link {
      font-family: var(--font-mono);
      font-size: 13px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      height: 36px;
      padding: 0 11px;
      border: 1.5px solid var(--beige-border);
      background: var(--white);
      color: var(--dark);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: border-color 0.15s;
    }
    .nav-link:hover { border-color: rgba(0,0,0,0.4); }
    .nav-link .drop { font-size: 8px; opacity: 0.6; }
    .nav-cta-cell {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0 28px;
      border-left: 1px solid var(--beige-border);
    }
    /* Nav Login button: match the enlarged link text without growing the box */
    .nav-cta-cell .btn {
      font-size: 13px;
      line-height: 1;
      height: 39px;
      padding: 0 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    /* ─── Hero ────────────────────────────────────── */
    .hero {
      position: relative;
      background: var(--beige);
      min-height: calc(100vh - 110px);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .hero-body {
      flex: 1;
      display: grid;
      grid-template-columns: 56% 44%;
      align-items: center;
      padding: 72px 80px 56px 80px;
      position: relative;
      z-index: 1;
    }
    .hero-eyebrow {
      display: inline-block;
      background: rgb(30, 30, 30);
      color: #fff;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 2px;
      margin-bottom: 20px;
    }
    .hero-h1 {
      font-size: 74px;
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin-bottom: 28px;
    }
    .hero-h1 .word {
      color: var(--orange);
      display: inline;
    }
    .cursor {
      display: inline-block;
      width: 2px;
      height: 0.82em;
      background: var(--orange);
      vertical-align: baseline;
      margin-left: 3px;
      border-radius: 1px;
      animation: blink 1s step-end infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

    .hero-sub {
      font-size: 16px;
      color: var(--grey);
      line-height: 1.7;
      max-width: 420px;
      margin-bottom: 36px;
      font-weight: 400;
    }
    .hero-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    /* ─── Hero phone mockup ─────────────────────── */
    .hero-phone {
      position: relative;
      width: 342px;
      max-width: 100%;
    }
    .hero-phone-bot {
      position: absolute;
      top: -58px;
      left: -82px;
      width: 176px;
      height: auto;
      z-index: 5;
      pointer-events: none;
      filter: drop-shadow(0 10px 20px rgba(0,0,0,0.16));
    }
    /* App icon floating to the lower-right of the phone (desktop hero accent) */
    .hero-app-icon {
      position: absolute;
      right: -34px;
      bottom: 120px;
      width: 104px;
      height: auto;
      z-index: 6;
      pointer-events: none;
    }
    .hero-phone-screen {
      position: relative;
      z-index: 2;
      background: #fff;
      border: 6px solid #0c0c0c;
      border-radius: 34px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.17);
      padding-top: 12px;
      display: flex;
      flex-direction: column;
      min-height: 540px;
      overflow: visible;            /* let bubbles hang off the edges */
    }
    /* iPhone-style side buttons — sit behind the frame and peek out the edges */
    .hp-btn { position: absolute; background: #0c0c0c; z-index: 1; }
    .hp-btn-volup   { left: -3px;  top: 132px; width: 5px; height: 30px; border-radius: 3px 0 0 3px; }
    .hp-btn-voldown { left: -3px;  top: 170px; width: 5px; height: 30px; border-radius: 3px 0 0 3px; }
    .hp-btn-power   { right: -3px; top: 205px; width: 5px; height: 56px; border-radius: 0 3px 3px 0; }
    .hp-status {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 4px 24px 8px;
      color: var(--dark);
    }
    .hp-time { font-weight: 700; font-size: 14px; letter-spacing: -0.01em; }
    .hp-status-icons { display: flex; align-items: center; gap: 6px; }
    .hp-status-icons svg { display: block; }
    .hp-header {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px 0 15px;
      border-bottom: 1px solid var(--beige-border);
    }
    .hp-logo { height: 27px; width: auto; }
    .hp-chat {
      position: relative;
      flex: 1;
      padding: 28px 18px;
      background: #f3f3f7;
      display: flex;
      flex-direction: column;
      gap: 20px;
      overflow: visible;
    }
    /* Question bubble — right, hangs off the right edge */
    .hp-q {
      align-self: flex-end;
      max-width: 82%;
      margin-right: -42px;
      background: #0c0c0c;
      color: #fff;
      border-left: 3px solid var(--orange);
      border-radius: 5px;
      padding: 13px 16px;
      font-size: 14px;
      line-height: 1.45;
      position: relative;
      box-shadow: 0 8px 22px rgba(0,0,0,0.20);
      opacity: 0;
      transform: translateX(30px) scale(0.95);
      transition: opacity .42s ease, transform .42s cubic-bezier(.2,.7,.3,1);
    }
    .hp-q::after {
      content: ""; position: absolute; right: 16px; bottom: -7px;
      width: 0; height: 0; border-style: solid;
      border-width: 8px 6px 0 6px;
      border-color: #0c0c0c transparent transparent transparent;
    }
    .hp-q.show { opacity: 1; transform: translateX(0) scale(1); }
    /* Answer bubble — left, hangs off the left edge */
    .hp-a {
      align-self: flex-start;
      max-width: 88%;
      margin-left: -42px;
      background: #fff;
      color: var(--dark);
      border: 1px solid var(--beige-border);
      border-radius: 5px;
      padding: 15px 17px;
      font-size: 13.5px;
      line-height: 1.55;
      position: relative;
      box-shadow: 0 10px 26px rgba(0,0,0,0.10);
      opacity: 0;
      transform: translateX(-30px) scale(0.95);
      transition: opacity .46s ease, transform .46s cubic-bezier(.2,.7,.3,1);
    }
    .hp-a::after {
      content: ""; position: absolute; left: 16px; bottom: -7px;
      width: 0; height: 0; border-style: solid;
      border-width: 8px 6px 0 6px;
      border-color: #fff transparent transparent transparent;
    }
    .hp-a.show { opacity: 1; transform: translateX(0) scale(1); }
    .hp-a b { font-weight: 700; }
    .hp-input {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 14px 16px;
      padding: 11px 11px 11px 16px;
      border: 1.5px solid var(--beige-border);
      border-radius: 13px;
      background: #fff;
    }
    .hp-input-ph { flex: 1; color: #9aa0aa; font-size: 13.5px; line-height: 1.35; }
    .hp-input-btn {
      width: 38px; height: 38px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: #eceaf0; color: #9aa0aa; border-radius: 9px;
      font-size: 17px; font-weight: 600;
    }

    /* ─── Ticker ──────────────────────────────────── */
    .ticker {
      background: var(--beige-dark);
      border-top: 1px solid var(--beige-border);
      overflow: hidden;
      padding: 11px 0;
      flex-shrink: 0;
    }
    .ticker-track {
      display: flex;
      width: max-content;
      animation: ticker 35s linear infinite;
    }
    @keyframes ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .ticker-item {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
      color: var(--dark);
    }
    .ticker-item .hi { color: var(--orange); }
    .ticker-item .sep { margin: 0 10px; opacity: 0.35; }

    /* ─── Section: News / Featured ───────────────── */
    .news-section {
      padding: 64px 80px;
      position: relative;
      background-image: url('assets/gridbg.svg');
      background-repeat: repeat;
      background-size: auto;
    }

    /* Featured + Webinar card */
    .featured-card {
      display: grid;
      grid-template-columns: 50fr 50fr;
      border: 1px solid var(--beige-border);
      border-radius: 8px;
      overflow: hidden;
      min-height: 260px;
      margin-bottom: 40px;
    }
    .featured-left {
      padding: 48px 48px 44px;
      display: flex;
      flex-direction: column;
      background: var(--beige);
    }
    .tag {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 18px;
    }
    .featured-h3 {
      font-size: 24px;
      font-weight: 700;
      line-height: 1.3;
      letter-spacing: -0.015em;
      margin-bottom: 12px;
    }
    .featured-sub {
      font-size: 13px;
      color: var(--grey);
      line-height: 1.6;
      margin-bottom: 12px;
      flex: 1;
    }
    .featured-date {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--grey);
      margin-bottom: 28px;
    }
    .webinar-img-wrap {
      overflow: hidden;
    }
    .webinar-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Series B Announcement */
    .announcement-card {
      display: grid;
      grid-template-columns: 65fr 35fr;
      gap: 80px;
      align-items: center;
      padding: 24px 0 36px;
    }
    .announcement-img-cell {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
      min-height: 150px;
    }
    .announcement-img-cell img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .announcement-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .announcement-body h3 {
      font-size: 30px;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 10px;
    }
    .ann-date {
      font-size: 14px;
      color: var(--grey);
      margin-bottom: 16px;
    }
    .announcement-body p {
      font-size: 15px;
      color: var(--grey);
      line-height: 1.7;
      margin-bottom: 28px;
      max-width: 380px;
    }

    /* ─── AI Defense Section ──────────────────────── */
    .ai-defense {
      padding: 100px 80px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .ai-defense .logo-mark {
      display: flex;
      justify-content: center;
      margin-bottom: 28px;
    }
    .ai-defense .logo-mark img { height: 22px; opacity: 0.5; }
    .ai-defense h2 {
      font-size: 62px;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      max-width: 760px;
      margin: 0 auto 24px;
    }
    .ai-defense .sub {
      font-size: 16px;
      color: var(--grey);
      line-height: 1.75;
      max-width: 600px;
      margin: 0 auto;
    }
    /* Floating icons */
    .float-icon {
      position: absolute;
      pointer-events: none;
      z-index: 1;
    }
    .float-icon img { width: 72px; height: 72px; object-fit: contain; }
    .fi-1 { top: 70px;  left: 80px;  }
    .fi-2 { top: 180px; left: 56px;  }
    .fi-3 { top: 70px;  right: 80px; }
    .fi-4 { top: 180px; right: 56px; }

    /* ─── Products ────────────────────────────────── */
    .products-wrap {
      padding: 0 80px 80px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .product-card {
      display: grid;
      grid-template-columns: 1fr 1.35fr;
      border: 1.5px solid var(--beige-border);
      background: var(--white);
      overflow: hidden;
      min-height: 500px;
    }
    .product-card.flip { grid-template-columns: 1.35fr 1fr; }
    .product-card.flip .prod-content { order: 2; }
    .product-card.flip .prod-visual  { order: 1; }

    .prod-content {
      padding: 60px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .prod-star { display: inline-block; align-self: flex-start; background: var(--orange); color: #fff; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: 3px; margin-bottom: 16px; line-height: 1; }
    .prod-h3   { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 4px; }
    .prod-sub  { font-size: 14px; color: var(--orange); font-weight: 600; letter-spacing: 0.01em; margin-bottom: 20px; }
    .prod-p    { font-size: 15px; color: var(--grey); line-height: 1.72; margin-bottom: 24px; max-width: 360px; }
    .prod-list {
      display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px;
    }
    .prod-item {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
    }
    .check {
      width: 17px; height: 17px;
      border: 1.5px solid var(--dark);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 9px; flex-shrink: 0;
      line-height: 1;
    }

    .prod-visual {
      position: relative;
      background: var(--beige);
      display: flex; align-items: center; justify-content: center;
      padding: 48px 40px;
      overflow: hidden;
    }
    .prod-visual .mockup {
      width: 100%;
      border-radius: 6px;
      box-shadow: 0 16px 48px rgba(0,0,0,0.13);
      position: relative; z-index: 1;
    }
    /* Step 1: topic list + dancing robot overlapping */
    .step1-combo {
      position: relative;
      width: 100%;
      max-width: 480px;
      display: flex;
      align-items: center;
    }
    .step1-list {
      display: block;
      width: 70%;
      height: auto;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 12px 30px rgba(0,0,0,0.10));
    }
    .step1-dance {
      position: absolute;
      right: -4%;
      top: 50%;
      transform: translateY(-50%);
      width: 58%;
      height: auto;
      z-index: 2;
      pointer-events: none;
      filter: drop-shadow(0 10px 22px rgba(0,0,0,0.16));
    }
    /* Step 2: answer card + pointing robot (flipped to face the card) */
    .step2-combo {
      position: relative;
      width: 100%;
      max-width: 500px;
      display: flex;
      align-items: center;
    }
    .step2-dash {
      display: block;
      width: 88%;
      height: auto;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 12px 30px rgba(0,0,0,0.12));
    }
    .step2-robot {
      position: absolute;
      right: -5%;
      top: 50%;
      transform: translateY(-50%) scaleX(-1);   /* flip to point at the card */
      width: 54%;
      height: auto;
      z-index: 2;
      pointer-events: none;
      filter: drop-shadow(0 10px 22px rgba(0,0,0,0.16));
    }
    /* Step 3: dashboard backdrop + jumping robot overlay */
    .step3-stage {
      position: relative;
      width: 100%;
      max-width: 560px;
    }
    .step3-dash {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 16px 48px rgba(0,0,0,0.16);
      position: relative;
      z-index: 1;
    }
    .step3-robot {
      position: absolute;
      left: 22%;
      top: 15%;
      width: 40%;
      height: auto;
      z-index: 2;
      pointer-events: none;
      filter: drop-shadow(0 12px 22px rgba(0,0,0,0.20));
    }
    .prod-drone {
      position: absolute;
      z-index: 2;
    }
    .drone-tr { top: 16px;  right: -16px; width: 170px; }
    .drone-mr { top: 50%;   right: -20px; transform: translateY(-50%); width: 150px; }

    /* ─── Dark: Stats ─────────────────────────────── */
    .stats-section {
      background: var(--dark);
      padding: 100px 80px;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .stats-section h2 {
      font-size: 62px;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: var(--white);
      text-align: center;
      max-width: 800px;
      margin: 0 auto 24px;
      position: relative; z-index: 1;
    }
    .stats-section .sub {
      text-align: center;
      font-size: 15px;
      color: rgba(255,255,255,0.45);
      line-height: 1.75;
      max-width: 620px;
      margin: 0 auto 64px;
      position: relative; z-index: 1;
    }
    .stats-drone {
      position: absolute;
      top: 24px; left: 80px;
      width: 156px; z-index: 1; opacity: 0.9;
    }
    /* Red eyebrow text for this section only */
    .stats-section .hero-eyebrow { color: var(--orange); }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative; z-index: 1;
    }
    .stat-card {
      background: var(--dark-card);
      padding: 40px 36px 40px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 8px 8px 0 0 var(--orange);
    }
    /* Subtle perspective-grid floor behind the bottom graphics */
    .stat-card::before {
      content: "";
      position: absolute;
      left: -45%; right: -45%; bottom: 0;
      height: 400px;
      z-index: -1;
      pointer-events: none;
      background-image:
        repeating-linear-gradient(to right, rgba(255,255,255,0.17) 0 1px, transparent 1px 40px),
        repeating-linear-gradient(to bottom, rgba(255,255,255,0.17) 0 1px, transparent 1px 40px);
      transform: perspective(220px) rotateX(62deg);
      transform-origin: bottom center;
      -webkit-mask-image: linear-gradient(to top, #000 18%, transparent 98%);
      mask-image: linear-gradient(to top, #000 18%, transparent 98%);
    }
    .stat-num {
      font-size: 52px;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--white);
      margin-bottom: 10px;
      display: flex; align-items: center; gap: 8px;
    }
    .stat-up { color: var(--orange); font-size: 20px; }
    .stat-label { display: inline-block; align-self: flex-start; background: var(--orange); color: #fff; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: 3px; margin-bottom: 14px; }
    .stat-ttl { font-size: 18px; font-weight: 800; color: var(--white); line-height: 1.3; margin-bottom: 14px; letter-spacing: -0.01em; }
    .stat-body { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 16px; }
    .stat-keep { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; color: var(--orange); line-height: 1.55; }
    .stat-keep span { color: rgba(255,255,255,0.4); font-weight: 500; }
    .stat-illo { margin-top: auto; padding-top: 16px; }
    .stat-illo img { width: 130px; margin-left: auto; opacity: 0.85; }
    .stat-helix {
      position: absolute;
      bottom: 40px;
      right: 120px;
      height: 172px;
      width: auto;
      z-index: 2;
      pointer-events: none;
    }
    .stat-source {
      position: absolute;
      bottom: 14px;
      left: 36px;
      z-index: 3;
      margin: 0;
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.42);
    }
    .stat-source a { color: var(--orange); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(215,38,61,0.4); transition: border-color .15s; }
    .stat-source a:hover { border-bottom-color: var(--orange); }
    .stat-src {
      font-family: var(--font-mono); font-size: 10px;
      color: rgba(255,255,255,0.25); letter-spacing: 0.06em;
      padding: 14px 0 24px;
    }
    .stat-src a { color: var(--orange); }

    /* ─── Dark: Labs ──────────────────────────────── */
    .labs-section {
      background-color: var(--beige);
      background-image:
        repeating-linear-gradient(to right, rgba(0,0,0,0.035) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(to bottom, rgba(0,0,0,0.035) 0 1px, transparent 1px 44px);
      border-top: 1px solid var(--beige-border);
      padding: 80px;
      position: relative;
    }
    .labs-center-badge {
      display: flex; justify-content: center; margin-bottom: 48px;
    }
    .badge-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(215,38,61,0.10);
      border: 1px solid rgba(215,38,61,0.30);
      padding: 6px 16px;
      font-family: var(--font-mono); font-size: 10px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange);
    }
    .badge-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

    .labs-card {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      background: var(--white);
      border: 1px solid var(--beige-border);
      overflow: hidden;
      min-height: 340px;
    }
    .labs-left {
      padding: 48px;
      display: flex; flex-direction: column;
      border-right: 1px solid var(--beige-border);
    }
    .labs-left .badge-pill { margin-bottom: 24px; align-self: flex-start; }
    .labs-title {
      font-size: 21px; font-weight: 700; line-height: 1.4;
      letter-spacing: -0.01em; color: var(--dark);
      margin-bottom: 8px;
    }
    .labs-author {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 28px;
    }
    .author-av {
      width: 36px; height: 36px; border-radius: 50%;
      overflow: hidden; background: var(--dark); flex-shrink: 0;
    }
    .author-av img { width: 72%; height: 72%; object-fit: contain; margin: 14% auto; display: block; filter: brightness(0) invert(1); }
    .author-name {
      font-family: var(--font-mono); font-size: 11px; font-weight: 700;
      letter-spacing: 0.07em; text-transform: uppercase; color: var(--dark);
    }
    .author-meta {
      font-family: var(--font-mono); font-size: 10px;
      color: var(--muted-dark); text-transform: uppercase; letter-spacing: 0.04em;
    }
    .labs-right {
      position: relative; overflow: hidden; background: #111;
    }
    .labs-right img { width: 100%; height: 100%; object-fit: cover; }
    .labs-right-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.25); }
    .labs-right-label {
      position: absolute; bottom: 24px; left: 24px; z-index: 2;
      font-family: var(--font-mono); font-size: 10px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65);
    }

    /* ─── Fleet ───────────────────────────────────── */
    .fleet-section {
      background: var(--beige);
      padding: 100px 80px;
      position: relative;
      overflow: hidden;
    }
    .fleet-section h2 {
      font-size: 56px; font-weight: 800; letter-spacing: -0.03em;
      line-height: 1.1; text-align: center;
      max-width: 720px; margin: 0 auto 20px;
    }
    .fleet-section h2 .blue { color: var(--blue); }
    .fleet-section .sub {
      text-align: center; font-size: 16px; color: var(--grey);
      line-height: 1.75; max-width: 620px; margin: 0 auto 64px;
    }
    /* Horizontal landlord-persona timeline */
    .fleet-row {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2px;
      margin-top: 40px;
    }
    .fleet-step {
      position: relative;
      aspect-ratio: 9 / 16;
      overflow: hidden;
      background: var(--dark);
    }
    .fleet-photo {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .fleet-step-overlay {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      padding: 18px 14px 16px;
      color: var(--white);
      background: linear-gradient(to top,
        rgba(12,12,12,0.96) 0%,
        rgba(12,12,12,0.92) 55%,
        rgba(12,12,12,0.55) 85%,
        rgba(12,12,12,0) 100%);
    }
    .fleet-step-title {
      font-size: 15px; font-weight: 800; color: var(--white);
      letter-spacing: -0.015em; line-height: 1.2;
      margin: 0 0 6px;
    }
    .fleet-step-desc {
      font-size: 11.5px; line-height: 1.55;
      color: rgba(255,255,255,0.85);
    }

    /* ─── FAQ ─────────────────────────────────────── */
    .faq-section {
      padding: 100px 80px;
      background: var(--beige);
      background-image: url('assets/gridbg.svg');
      background-repeat: repeat;
      background-size: auto;
      position: relative;
      border-top: 1px solid var(--beige-border);
    }
    .newsletter-section {
      position: relative;
      border-top: 1px solid var(--beige-border);
    }
    .faq-header {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; margin-bottom: 64px;
    }
    .faq-header .hero-eyebrow { margin-bottom: 20px; }
    .faq-h2 {
      font-size: 52px; font-weight: 800;
      letter-spacing: -0.03em; line-height: 1.1;
      max-width: 640px; margin: 0 auto 16px;
    }
    .faq-sub {
      font-size: 16px; color: var(--grey);
      line-height: 1.75; max-width: 520px;
    }
    .faq-list {
      max-width: 800px; margin: 0 auto;
    }
    .faq-item {
      border-top: 1.5px solid var(--beige-border);
    }
    .faq-item:last-child { border-bottom: 1.5px solid var(--beige-border); }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between;
      gap: 24px; padding: 24px 0; cursor: pointer;
      font-family: var(--font-sans); font-size: 18px; font-weight: 700;
      letter-spacing: -0.01em; color: var(--dark);
      background: none; border: none; width: 100%; text-align: left;
    }
    .faq-q:hover { color: var(--orange); }
    .faq-icon {
      flex-shrink: 0; width: 28px; height: 28px;
      border: 1.5px solid var(--beige-border);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 400; color: var(--dark);
      transition: transform .25s, background .25s, border-color .25s;
      font-family: var(--font-mono);
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--orange); border-color: var(--orange); color: #fff;
    }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
    }
    .faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }
    .faq-a p {
      font-size: 15px; color: var(--grey);
      line-height: 1.78; max-width: 680px;
    }

    @media (max-width: 991px) { .faq-section { padding: 64px 48px; } .faq-h2 { font-size: 40px; } }
    @media (max-width: 767px) { .faq-section { padding: 48px 24px; } .faq-h2 { font-size: 32px; } .faq-q { font-size: 16px; } }
    @media (max-width: 479px) { .faq-section { padding: 36px 16px; } .faq-h2 { font-size: 28px; } }

    /* ─── CTA ─────────────────────────────────────── */
    .cta-section {
      background: var(--dark);
      padding: 80px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 60px;
      position: relative; overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .cta-logo { margin-bottom: 20px; }
    .cta-logo img { height: 18px; }
    .cta-h2 {
      font-size: 40px; font-weight: 800; letter-spacing: -0.025em;
      color: var(--white); margin-bottom: 12px; line-height: 1.15;
    }
    .cta-sub { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 32px; }
    .cta-content { position: relative; z-index: 1; }
    .cta-illo { flex-shrink: 0; width: 170px; position: relative; z-index: 1; }
    .cta-illo img { width: 100%; }

    /* ─── Footer ──────────────────────────────────── */
    .footer {
      background: var(--beige);
      padding: 56px 80px 0;
      border-top: 1px solid var(--beige-border);
      position: relative; overflow: hidden;
    }
    .footer-top-row {
      display: flex; align-items: flex-end;
      justify-content: space-between; margin-bottom: 40px;
      position: relative; z-index: 1;
    }
    .footer-logo-img { height: 112px; }
    .footer-devices { display: flex; align-items: flex-end; gap: 28px; }
    .footer-devices img { height: 46px; opacity: 0.82; }

    .footer-nav {
      display: grid;
      grid-template-columns: 170px repeat(3, 1fr);
      border-top: 1px solid var(--beige-border);
      padding: 28px 0 36px;
      position: relative; z-index: 1;
    }
    .footer-label-cell { display: flex; align-items: flex-start; }
    .section-tag {
      background: var(--dark); color: var(--white);
      font-family: var(--font-mono); font-size: 10px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 6px 14px;
    }
    .footer-col {
      padding: 0 20px;
      border-left: 1px solid var(--beige-border);
      display: flex; flex-direction: column; gap: 14px;
    }
    .footer-col-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .footer-col-heading {
      font-family: var(--font-mono); font-size: 10px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey);
      margin-bottom: 2px;
    }
    .footer-link {
      display: flex; align-items: center; gap: 7px;
      font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase; color: var(--dark);
    }
    .footer-link::before { content: '↳'; color: var(--grey); font-size: 11px; }
    .footer-link:hover { color: var(--orange); }

    .footer-bottom-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 0;
      border-top: 1px solid var(--beige-border);
      position: relative; z-index: 1;
    }
    .footer-social { display: flex; gap: 10px; align-items: center; }
    .social-btn {
      width: 36px; height: 36px;
      border: 1.5px solid var(--beige-border);
      background: var(--white);
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.15s; cursor: pointer;
    }
    .social-btn:hover { border-color: var(--dark); }
    .social-btn img { width: 16px; height: 16px; }
    .soc-cert { width: 50px; height: 50px; flex-shrink: 0; }
    .footer-disclaimer {
      font-family: var(--font-mono);
      font-size: 8.5px;
      font-weight: 500;
      letter-spacing: 0.03em;
      color: var(--grey);
      line-height: 1.6;
      max-width: 480px;
    }
    .footer-disclaimer strong {
      font-weight: 700;
      color: var(--dark);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ─── Footer Bottom Bar ───────────────────────── */
    .footer-bar {
      background: var(--orange);
      padding: 5px 80px;
      display: flex; align-items: center;
      justify-content: space-between;
      position: relative;
    }
    .footer-bar-logo {
      position: absolute; left: 80px; top: 50%;
      transform: translateY(-50%);
    }
    .footer-bar-logo img {
      height: 14px;
      filter: brightness(0);
      opacity: 0.75;
    }
    .footer-bar-left {
      font-family: var(--font-mono); font-size: 10px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark);
      padding-left: 110px;
    }
    .footer-bar-right {
      font-family: var(--font-mono); font-size: 10px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark);
    }
    .copyright-bar {
      background: var(--dark);
      padding: 4px 80px;
      display: flex; align-items: center; justify-content: flex-end;
    }
    .copyright-bar span {
      font-family: var(--font-mono); font-size: 9px; font-weight: 600;
      letter-spacing: 0.06em; color: rgba(255,255,255,0.45);
      text-transform: uppercase;
    }

    /* ─── Float animations ────────────────────────── */
    @keyframes floatA {
      0%,100% { transform: translateY(0) rotate(-2deg); }
      50%      { transform: translateY(-10px) rotate(2deg); }
    }
    @keyframes floatB {
      0%,100% { transform: translateY(0) rotate(1deg); }
      50%      { transform: translateY(-7px) rotate(-2deg); }
    }
    .fi-1 { animation: floatA 4s ease-in-out infinite; }
    .fi-2 { animation: floatB 3.6s ease-in-out 0.4s infinite; }
    .fi-3 { animation: floatB 4.2s ease-in-out 0.2s infinite; }
    .fi-4 { animation: floatA 3.8s ease-in-out 0.6s infinite; }

    /* ─── Hamburger ──────────────────────────────── */
    .nav-hamburger {
      display: none; flex-direction: column; justify-content: center;
      gap: 5px; cursor: pointer; padding: 8px; background: none; border: none;
      margin-left: auto;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--dark); border-radius: 1px;
      transition: 0.25s;
    }
    .nav-mobile {
      display: none; flex-direction: column;
      background: var(--white); border-top: 1px solid var(--beige-border);
      padding: 12px 20px 16px;
      list-style: none; margin: 0;
    }
    .nav-mobile li a {
      font-family: var(--font-mono); font-size: 11px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark);
      padding: 10px 0; border-bottom: 1px solid var(--beige-border);
      text-decoration: none; display: block;
    }
    .nav-mobile li:last-child a { border-bottom: none; }
    .nav-mobile-open .nav-mobile { display: flex; }

    /* ─── Eyebrow Row ────────────────────────────── */
    .eyebrow-row {
      display: flex;
      justify-content: center;
      margin-bottom: 28px;
    }
    .eyebrow-row .hero-eyebrow { margin-bottom: 0; }

    /* ─── Mobile Nav Login Accent ────────────────── */
    .nav-mobile-login { color: var(--orange); }

    /* ─── Footer Floating Icons Column ───────────── */
    .footer-float-icons {
      position: absolute;
      right: 64px;
      top: 56px;
      display: flex;
      flex-direction: column;
      gap: 36px;
      z-index: 0;
      pointer-events: none;
    }
    .footer-float-icons img       { width: 50px; opacity: 0.7; }
    .footer-float-icons img.wide  { width: 56px; }

    /* ─── Footer Bottom Row Flex Containers ──────── */
    .footer-bottom-left,
    .footer-bottom-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    /* ─── Labs Subheadline ───────────────────────── */
    .labs-subheadline {
      font-size: 13px;
      color: var(--grey);
      line-height: 1.6;
      margin-bottom: 16px;
      font-family: var(--font-sans);
    }

    /* ─── 991px — Tablet ─────────────────────────── */
    @media (max-width: 991px) {
      /* Nav */
      .nav-wrap { grid-template-columns: auto 1fr auto; height: 72px; }
      .nav-links { gap: 0; }
      .nav-link  { padding: 0 14px; font-size: 10px; }

      /* Hero */
      .hero-body { grid-template-columns: 55% 45%; padding: 52px 48px; }
      .hero-h1   { font-size: 50px; }
      /* Center hero text + button on tablet & mobile */
      .hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
      /* App icon: smaller + tucked closer to the phone so it fits the narrower layout */
      .hero-app-icon { width: 84px; right: -10px; bottom: 96px; }

      /* Sections padding */
      .news-section    { padding: 48px 48px; }
      .ai-defense      { padding: 80px 48px 60px; }
      .ai-defense h2   { font-size: 46px; }
      .stats-section   { padding: 64px 48px; }
      .stats-section h2{ font-size: 46px; }
      .fleet-section   { padding: 64px 48px; }
      .fleet-section h2{ font-size: 42px; }
      .labs-section    { padding: 64px 48px; }
      .cta-section     { padding: 64px 48px; flex-direction: column; }
      .footer          { padding: 48px 48px 0; }
      .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 24px; }
      .footer-bottom-left { flex-wrap: wrap; align-items: flex-start !important; gap: 12px !important; }
      .footer-disclaimer { flex: 0 0 100%; max-width: 100%; }
      .footer-bar, .copyright-bar { padding-left: 48px; padding-right: 48px; }

      /* Products */
      .products-wrap { padding: 0 48px 60px; }
      .prod-grid     { grid-template-columns: 1fr 1fr; }
      .prod-card:last-child { grid-column: span 2; }
      .product-card, .product-card.flip { grid-template-columns: 1fr; min-height: auto; }
      .product-card.flip .prod-content { order: 1; }
      .product-card.flip .prod-visual  { order: 2; }
      .prod-content  { padding: 36px 36px 28px; }
      .prod-visual   { min-height: 260px; }

      /* News */
      .featured-card { grid-template-columns: 1fr; min-height: auto; }
      .webinar-img-wrap { height: 260px; }
      .announcement-card { grid-template-columns: 1fr; gap: 24px; }
      .announcement-img-cell { min-height: 220px; }

      /* Fleet */
      .fleet-row { grid-template-columns: 1fr 1fr; gap: 14px; }
      .fleet-step-hide-mobile { display: none; }

      /* Footer */
      .footer-nav { grid-template-columns: auto 1fr 1fr 1fr; }
    }

    /* ─── 767px — Mobile Landscape ──────────────── */
    @media (max-width: 767px) {
      /* Nav — show hamburger, hide links */
      .nav-wrap   { grid-template-columns: auto 1fr; height: 60px; padding: 0 20px; }
      .nav-links  { display: none; }
      .nav-cta-cell { display: none; }
      .nav-hamburger { display: flex; }

      /* Hero */
      .hero        { min-height: auto; }
      .hero-body   { grid-template-columns: 1fr; padding: 36px 24px 24px; gap: 24px; }
      .hero-h1     { font-size: 38px; }
      .hero-sub    { font-size: 15px; }
      .hero-visual { order: 0; padding-top: 0; }
      .hero-phone { width: min(322px, 100%); }
      .hero-phone-bot { width: 132px; top: -38px; left: -26px; }
      .hp-q { margin-right: -16px; font-size: 13.5px; }
      .hp-a { margin-left: -16px; }
      .ticker { display: none; }

      /* News */
      .news-section { padding: 32px 24px; }
      .featured-card { grid-template-columns: 1fr; min-height: auto; }
      .webinar-img-wrap { height: 220px; }
      .announcement-card { grid-template-columns: 1fr; gap: 20px; }
      .announcement-img-cell { min-height: 220px; }
      .announcement-body { padding: 0; }

      /* AI Defense */
      .ai-defense         { padding: 64px 24px 48px; }
      .ai-defense h2      { font-size: 36px; }
      .float-icon         { display: none; }

      /* Products */
      .products-wrap { padding: 0 24px 48px; }
      .prod-grid     { grid-template-columns: 1fr; }
      .prod-card:last-child { grid-column: span 1; }
      .prod-content  { padding: 28px 24px; }
      .prod-visual   { min-height: 220px; }

      /* Stats */
      .stats-section { padding: 48px 24px; }
      .stats-section h2 { font-size: 36px; }
      .stats-grid    { grid-template-columns: 1fr; gap: 24px; }

      /* Labs */
      .labs-section { padding: 48px 24px; }
      .labs-card    { grid-template-columns: 1fr; }
      .labs-right   { height: 200px; }

      /* Fleet */
      .fleet-section { padding: 48px 24px; }
      .fleet-section h2 { font-size: 34px; }
      .fleet-step-overlay { padding: 18px 14px 16px; }
      .fleet-step-title { font-size: 15px; }
      .fleet-step-desc { font-size: 12px; }

      /* CTA */
      .cta-section   { padding: 48px 24px; }
      .cta-content   { max-width: 100%; }
      .cta-illo { order: -1; width: 100%; max-width: 140px; }
      .cta-h2        { font-size: 36px; }

      /* Footer */
      .footer        { padding: 40px 24px 0; }
      .footer-top-row { flex-direction: column; gap: 20px; align-items: flex-start; }
      .footer-devices { gap: 12px; }
      .footer-devices img { height: 40px; }
      .footer-nav    { grid-template-columns: 1fr 1fr; gap: 28px; }
      .footer-label-cell { display: none; }
      .footer-float-icons { display: none; }
      .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 24px; }
      .footer-bottom-left { flex-wrap: wrap; align-items: flex-start !important; gap: 12px !important; }
      .footer-disclaimer { flex: 0 0 100%; max-width: 100%; }
      .footer-bar, .copyright-bar { padding-left: 24px; padding-right: 24px; }
      .footer-bar-logo { left: 24px; }
      .footer-bar-left { padding-left: 80px; font-size: 8px; }
      .footer-bar-right { font-size: 8px; }
    }

    /* ─── 479px — Mobile Portrait ────────────────── */
    @media (max-width: 479px) {
      /* Nav */
      .nav-wrap { height: 56px; }
      .nav-logo  { height: 18px; }

      /* Hero */
      .hero-body   { padding: 24px 16px 20px; }
      .hero-h1     { font-size: 32px; }
      .hero-phone { width: min(300px, 100%); }
      .hero-phone-bot { width: 116px; top: -32px; left: -20px; }
      .hero-app-icon { width: 70px; right: -4px; bottom: 112px; }

      /* News */
      .news-section { padding: 24px 16px; }
      .featured-card { border-radius: 6px; }
      .featured-left { padding: 28px 24px; }
      .featured-h3   { font-size: 20px; }

      /* AI Defense */
      .ai-defense  { padding: 48px 16px 36px; }
      .ai-defense h2 { font-size: 30px; }

      /* Stats */
      .stats-section { padding: 36px 16px; }
      .stats-section h2 { font-size: 28px; }
      .stat-num { font-size: 42px; }

      /* Labs */
      .labs-section { padding: 36px 16px; }
      .labs-title   { font-size: 18px; }

      /* Fleet */
      .fleet-section { padding: 36px 16px; }
      .fleet-section h2 { font-size: 28px; }

      /* CTA */
      .cta-section { padding: 36px 16px; }
      .cta-h2      { font-size: 28px; }

      /* Footer */
      .footer { padding: 32px 16px 0; }
      .footer-nav { grid-template-columns: 1fr; }
      .footer-logo-img { width: 100%; height: auto; }
      .footer-devices { display: none; }
      .footer-bottom-right { flex-direction: column; align-items: flex-start !important; gap: 12px !important; }
      .footer-bar, .copyright-bar { padding-left: 16px; padding-right: 16px; }
      .footer-bar-logo { left: 16px; }
      .footer-bar-left { padding-left: 70px; font-size: 7px; letter-spacing: 0.04em; }
      .footer-bar-right { font-size: 7px; letter-spacing: 0.04em; }
    }
    /* Cookie banner CSS lives in base.css (site-wide) and the JS in cookie-consent.js. */

    /* ─── Compliance Badges ─────────────────────── */
    .compliance-badge { display: flex; align-items: center; gap: 7px; background: var(--beige-dark); padding: 9px 11px; flex-shrink: 0; border: 1px solid var(--beige-border); }
    .badge-title { display: block; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); line-height: 1.3; }
    .badge-sub { display: block; font-family: var(--font-mono); font-size: 7.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); line-height: 1.3; }
  
    /* ─── Helix Badge ─────────────────────────── */
    .helix-badge { display: inline-flex; align-items: center; gap: 9px; background: var(--dark); padding: 9px 13px; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.08); position: relative; }
    .helix-badge-label { display: block; font-family: var(--font-mono); font-size: 7.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #ffffff; line-height: 1.3; }
    .helix-badge-name { display: block; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); line-height: 1.3; }
