    :root {
      --black: #050505;
      --near-black: #0a0a0b;
      --white: #f4f5f7;
      --paper: #e8eaed;
      --blue: #1555d8;
      --blue-bright: #3978ff;
      --grey: #9b9da3;
      --line: rgba(255,255,255,.16);
      --line-dark: rgba(8,8,10,.18);
      --pad: clamp(22px, 4.2vw, 72px);
      --display: "Manrope", sans-serif;
      --body: "DM Sans", sans-serif;
      --ease: cubic-bezier(.16,1,.3,1);
    }

    *, *::before, *::after { box-sizing: border-box; }
    * { margin: 0; }
    html { scroll-behavior: smooth; background: var(--black); }
    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--body);
      font-size: 16px;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    body.menu-open { overflow: hidden; }
    main > section,
    footer { scroll-margin-top: 92px; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { color: inherit; font: inherit; }
    ::selection { background: var(--blue-bright); color: #fff; }

    .shell { padding-inline: var(--pad); }
    .eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      background: currentColor;
      border-radius: 50%;
    }
    .display {
      font-family: var(--display);
      font-weight: 300;
      letter-spacing: -.055em;
      line-height: .94;
    }
    .arrow {
      display: inline-grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,.14);
      transition: transform .35s var(--ease), background .35s;
    }
    .arrow svg { width: 13px; }
    .button {
      display: inline-flex;
      align-items: center;
      gap: 22px;
      min-height: 48px;
      padding: 7px 8px 7px 22px;
      background: var(--blue);
      border: 1px solid transparent;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      white-space: nowrap;
      transition: background .35s, border-color .35s;
    }
    .button:hover { background: var(--blue-bright); }
    .button:hover .arrow { transform: translateX(3px); background: rgba(255,255,255,.23); }
    .button.light { background: var(--white); color: var(--black); }
    .button.light .arrow { background: var(--blue); color: white; }
    .button.outline { background: transparent; border-color: rgba(255,255,255,.4); }

    /* Navigation */
    .nav {
      position: fixed;
      inset: 16px var(--pad) auto;
      z-index: 100;
      height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 10px 0 20px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 18px;
      background: rgba(255,255,255,.045);
      box-shadow: 0 12px 45px rgba(0,0,0,.18);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      transition: color .4s, background .4s, height .35s, transform .35s, border-color .4s, box-shadow .4s;
    }
    .nav.scrolled {
      height: 60px;
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.2);
    }
    .nav.nav-hidden {
      transform: translateY(calc(-100% - 24px));
      box-shadow: none;
      pointer-events: none;
    }
    .nav.on-light {
      color: #08090c;
      background: rgba(247,248,250,.24);
      border-color: rgba(8,9,12,.12);
      box-shadow: 0 12px 45px rgba(12,18,30,.10);
    }
    .nav.on-blue {
      background: rgba(4,37,118,.12);
      border-color: rgba(255,255,255,.2);
    }
    .brand { position: relative; z-index: 102; width: 168px; }
    .brand img { width: 100%; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 5px;
      list-style: none;
      padding: 0;
      font-size: 13px;
    }
    .nav-links a {
      display: block;
      padding: 9px 14px;
      border-radius: 999px;
      color: rgba(255,255,255,.68);
      transition: color .2s, background .2s;
    }
    .nav-links a:hover { color: white; background: rgba(255,255,255,.08); }
    .nav.on-light .nav-links a { color: rgba(8,9,12,.65); }
    .nav.on-light .nav-links a:hover { color: #08090c; background: rgba(8,9,12,.07); }
    .nav-side { display: flex; align-items: center; gap: 16px; }
    .nav-index {
      font-size: 9px;
      line-height: 1.25;
      color: rgba(255,255,255,.55);
      text-transform: uppercase;
      letter-spacing: .08em;
      text-align: right;
    }
    .nav.on-light .nav-index { color: rgba(8,9,12,.55); }
    .nav.on-light .button { color: white; }
    .nav.on-light .menu-button { border-color: rgba(8,9,12,.25); }
    .nav.on-light .menu-button::before,
    .nav.on-light .menu-button::after { background: #08090c; }
    .nav .button { min-height: 44px; padding-left: 18px; gap: 14px; }
    .nav .arrow { width: 30px; height: 30px; }
    .menu-button {
      position: relative;
      z-index: 102;
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,.3);
      border-radius: 50%;
      background: transparent;
      align-items: center;
      justify-content: center;
    }
    .menu-button::before,
    .menu-button::after {
      content: "";
      position: absolute;
      width: 16px;
      height: 1px;
      background: white;
      transition: transform .3s var(--ease);
    }
    .menu-button::before { transform: translateY(-3px); }
    .menu-button::after { transform: translateY(3px); }
    .menu-open .menu-button::before { transform: rotate(45deg); }
    .menu-open .menu-button::after { transform: rotate(-45deg); }
    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 101;
      background: var(--blue);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 120px var(--pad) 42px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-20px);
      transition: opacity .35s, visibility .35s, transform .5s var(--ease);
    }
    .menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
    .mobile-menu a {
      font-family: var(--display);
      font-size: clamp(38px, 12vw, 70px);
      font-weight: 300;
      letter-spacing: -.05em;
      line-height: 1.08;
      border-top: 1px solid rgba(255,255,255,.25);
      padding: 12px 0;
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: 100svh;
      overflow: hidden;
      background: #050505;
      display: flex;
      align-items: flex-end;
      isolation: isolate;
    }
    .hero-media {
      position: absolute;
      inset: 0;
      z-index: -3;
      background: #020305;
    }
    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 38% center;
      opacity: .82;
    }
    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.88) 34%, rgba(0,0,0,.36) 68%, rgba(0,0,0,.16) 100%),
        linear-gradient(0deg, rgba(0,0,0,.78) 0%, transparent 48%),
        linear-gradient(180deg, rgba(0,0,0,.44), transparent 28%);
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      background: radial-gradient(circle at 61% 55%, rgba(42,105,255,.14), transparent 12%);
    }
    .hero-content {
      width: 100%;
      min-height: 100svh;
      padding: 132px var(--pad) clamp(44px, 6vh, 66px);
      display: grid;
      grid-template-columns: minmax(0, 650px) 1fr;
      grid-template-rows: 1fr auto;
      align-items: end;
      column-gap: 6vw;
    }
    .hero h1 {
      grid-column: 1;
      grid-row: 1;
      align-self: end;
      max-width: 650px;
      margin-bottom: clamp(56px, 8vh, 100px);
      font-size: clamp(56px, 6.4vw, 98px);
      line-height: .94;
    }
    .hero h1 .accent { display: block; color: #90b5ff; }
    .hero-aside {
      grid-column: 1;
      grid-row: 2;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: end;
      gap: 32px;
      max-width: 650px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.3);
      font-size: 14px;
      color: rgba(255,255,255,.72);
    }
    .hero-aside-copy p { margin-top: 12px; max-width: 42ch; }
    .hero-foot {
      position: absolute;
      right: var(--pad);
      top: 108px;
      font-size: 10px;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
    }
    .hero-note {
      position: absolute;
      right: var(--pad);
      bottom: 45px;
      display: grid;
      grid-template-columns: auto auto;
      gap: 8px 28px;
      font-size: 10px;
      line-height: 1.3;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: rgba(255,255,255,.52);
    }
    .hero-note strong { color: white; font-weight: 500; }

    /* Intro */
    .intro {
      background: var(--paper);
      color: var(--black);
      padding: clamp(90px, 13vw, 190px) var(--pad);
      display: grid;
      grid-template-columns: 1fr 3fr;
      gap: 6vw;
    }
    .intro h2 {
      max-width: 980px;
      font-size: clamp(45px, 6.4vw, 98px);
    }
    .intro h2 em { color: var(--blue); font-style: normal; }
    .intro-copy {
      grid-column: 2;
      margin-top: 36px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 6vw, 90px);
      font-size: 17px;
      line-height: 1.65;
    }
    .intro-copy p:first-child { font-size: 22px; line-height: 1.45; }

    /* Capability chain */
    .chain { background: var(--blue); padding: clamp(90px, 11vw, 160px) var(--pad) 0; }
    .section-head {
      display: grid;
      grid-template-columns: 1fr 3fr;
      gap: 6vw;
      margin-bottom: clamp(56px, 8vw, 110px);
    }
    .section-head h2 { font-size: clamp(48px, 6vw, 92px); max-width: 900px; }
    .chain-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid rgba(255,255,255,.35);
    }
    .chain-item {
      min-height: 380px;
      padding: 26px 28px 40px 0;
      border-right: 1px solid rgba(255,255,255,.25);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      transition: padding .48s var(--ease), background .48s var(--ease), border-color .48s var(--ease);
    }
    .chain-item + .chain-item { padding-left: 28px; }
    .chain-item:last-child { border-right: 0; }
    .chain-item:hover {
      background: rgba(255,255,255,.06);
      border-color: rgba(255,255,255,.36);
    }
    .chain-no { font-size: 11px; opacity: .64; }
    .chain-item h3 {
      margin-top: auto;
      font: 300 clamp(30px, 2.7vw, 44px)/1 var(--display);
      letter-spacing: -.04em;
    }
    .chain-item p {
      margin-top: 18px;
      max-width: 27ch;
      color: rgba(255,255,255,.72);
      font-size: 14px;
    }
    .chain-line {
      position: absolute;
      top: 60px;
      left: 0;
      width: calc(100% - 28px);
      aspect-ratio: 2.3;
      opacity: .9;
      transition: transform .55s var(--ease), opacity .45s ease;
    }
    .chain-line path,
    .chain-line ellipse {
      stroke-dasharray: 100;
      stroke-dashoffset: 0;
    }
    .chain-line circle {
      transform-box: fill-box;
      transform-origin: center;
    }
    .chain-item:hover .chain-line { transform: translateY(-8px); opacity: 1; }
    .chain-item:hover .chain-line path,
    .chain-item:hover .chain-line ellipse,
    .chain-item.play .chain-line path,
    .chain-item.play .chain-line ellipse {
      animation: chain-draw .85s var(--ease) both;
    }
    .chain-item:hover .chain-line path ~ path,
    .chain-item:hover .chain-line ellipse ~ ellipse,
    .chain-item.play .chain-line path ~ path,
    .chain-item.play .chain-line ellipse ~ ellipse { animation-delay: .14s; }
    .chain-item:hover .chain-line circle,
    .chain-item.play .chain-line circle {
      animation: chain-dot .55s var(--ease) both;
      animation-delay: .52s;
    }
    .chain-item.play .chain-line { opacity: 1; }
    @keyframes chain-draw {
      from { stroke-dashoffset: 100; }
      to { stroke-dashoffset: 0; }
    }
    @keyframes chain-dot {
      0% { opacity: 0; transform: scale(.2); }
      62% { opacity: 1; transform: scale(1.3); }
      100% { opacity: 1; transform: scale(1); }
    }
    .chain-item h3,
    .chain-item p,
    .chain-no { position: relative; z-index: 1; transition: transform .48s var(--ease), opacity .48s ease; }
    .chain-item:hover h3,
    .chain-item:hover p { transform: translateY(-8px); }

    .metrics {
      margin-top: clamp(90px, 12vw, 170px);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--line);
    }
    .metric {
      padding: 32px 26px 0 0;
      border-right: 1px solid var(--line);
    }
    .metric + .metric { padding-left: 26px; }
    .metric:last-child { border-right: 0; }
    .metric strong {
      display: block;
      color: #6f9cff;
      font: 300 clamp(46px, 5.2vw, 78px)/1 var(--display);
      letter-spacing: -.055em;
    }
    .metric span { display: block; margin-top: 20px; color: #a9abb0; font-size: 13px; max-width: 22ch; }

    /* European identity */
    .europe {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(180deg, #fafbfc 0%, #eff2f7 100%);
      color: var(--black);
      min-height: 100svh;
      padding: clamp(104px, 8vw, 132px) var(--pad) clamp(34px, 4vw, 56px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-top: 1px solid rgba(8,8,10,.08);
    }
    .europe-flag-icon {
      position: absolute;
      right: clamp(-270px, -15vw, -130px);
      top: clamp(46px, 5vw, 84px);
      width: clamp(560px, 58vw, 920px);
      color: rgba(21,85,216,.085);
      pointer-events: none;
    }
    .europe .eyebrow { color: #52565f; }
    .europe-intro {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 150px minmax(0, 1.4fr) minmax(260px, .72fr);
      gap: clamp(30px, 5vw, 80px);
      align-items: start;
    }
    .europe h2 {
      max-width: 820px;
      font-size: clamp(46px, 5.5vw, 82px);
    }
    .europe h2 .accent { color: var(--blue); }
    .europe-copy {
      grid-column: 3;
      margin: 4px 0 0;
      display: block;
      color: #555a63;
      font-size: 16px;
      line-height: 1.7;
    }
    .europe-copy p + p { margin-top: 18px; }
    .europe-copy strong { color: var(--black); font-weight: 500; }
    .europe-points {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: clamp(58px, 7vw, 98px);
    }
    .europe-point {
      min-height: 210px;
      padding: 24px 24px 28px;
      border: 1px solid rgba(8,8,10,.12);
      border-radius: 8px;
      background: rgba(255,255,255,.72);
      box-shadow: 0 22px 60px rgba(18,28,44,.06);
      display: flex;
      flex-direction: column;
    }
    .europe-point + .europe-point { padding-left: 24px; }
    .europe-point small { font-size: 10px; letter-spacing: .11em; text-transform: uppercase; color: #747984; }
    .europe-point strong { margin-top: auto; font: 300 clamp(24px, 2.2vw, 34px)/1.08 var(--display); letter-spacing: -.04em; max-width: 15ch; }
    .europe-point p { margin-top: 14px; color: #6a6d74; font-size: 13px; max-width: 32ch; }

    /* Products */
    .products { background: var(--paper); color: var(--black); }
    .product {
      min-height: 100svh;
      display: grid;
      grid-template-columns: 42% 58%;
      border-top: 1px solid var(--line-dark);
    }
    .product-copy {
      padding: clamp(90px, 10vw, 150px) var(--pad) 50px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .product-copy h2 {
      margin: 32px 0;
      font-size: clamp(56px, 7vw, 110px);
    }
    .product-copy h2 small {
      display: block;
      margin-top: 8px;
      color: var(--blue);
      font-size: .28em;
      letter-spacing: -.02em;
    }
    .product-copy > p { max-width: 43ch; font-size: 16px; color: #4d4f54; }
    .product-specs {
      width: 100%;
      margin: auto 0 38px;
      border-top: 1px solid var(--line-dark);
    }
    .spec {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 13px 0;
      border-bottom: 1px solid var(--line-dark);
      font-size: 13px;
    }
    .spec span:first-child { color: #74767b; }
    .product-media {
      position: relative;
      min-height: 720px;
      overflow: hidden;
      background: #061333;
    }
    .product-media::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 55% 45%, rgba(62,123,255,.55), transparent 32%),
        linear-gradient(145deg, #092a6b 0%, #07132e 55%, #02040a 100%);
    }
    .product-media::after {
      content: attr(data-label);
      position: absolute;
      left: 36px;
      bottom: 24px;
      color: rgba(255,255,255,.55);
      font-size: 10px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .product-media img {
      position: absolute;
      width: min(88%, 850px);
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      filter: drop-shadow(0 55px 65px rgba(0,0,0,.6));
      transition: transform 1.1s var(--ease);
    }
    .product:hover .product-media img { transform: translate(-50%, -52%) scale(1.035) rotate(-1deg); }
    .product.reverse { grid-template-columns: 58% 42%; }
    .product.reverse .product-media { order: -1; background: #111; }
    .product.reverse .product-media::before {
      background:
        radial-gradient(circle at 52% 46%, rgba(38,91,209,.44), transparent 34%),
        linear-gradient(145deg, #15171d 0%, #07090e 60%, #030304 100%);
    }
    .product-cta {
      background: transparent;
      color: var(--black);
      border-color: rgba(8,8,10,.24);
      box-shadow: inset 0 0 0 1px rgba(8,8,10,.05);
    }
    .product-cta .arrow {
      background: var(--black);
      color: white;
    }
    .product-cta:hover {
      background: var(--black);
      border-color: var(--black);
      color: white;
    }
    .product-cta:hover .arrow { background: var(--blue); }

    /* Applications */
    .applications {
      position: relative;
      background:
        linear-gradient(180deg, #f6f7f9 0%, #e9edf2 100%);
      color: var(--black);
      padding: clamp(100px, 13vw, 180px) var(--pad);
      border-top: 1px solid rgba(8,8,10,.08);
    }
    .applications .section-head { margin-bottom: clamp(44px, 5vw, 68px); }
    .applications-list { border-top: 1px solid var(--line-dark); }
    .application {
      position: relative;
      display: grid;
      grid-template-columns: 70px 1fr 1fr auto;
      align-items: center;
      gap: 30px;
      min-height: 120px;
      border-bottom: 1px solid var(--line-dark);
      overflow: hidden;
      isolation: isolate;
      transition: color .38s var(--ease), padding .48s var(--ease), border-color .38s ease;
    }
    .application::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(90deg, var(--blue), #0d3fbb),
        radial-gradient(circle at 86% 50%, rgba(255,255,255,.22), transparent 30%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .58s var(--ease);
    }
    .application > * {
      transition: transform .48s var(--ease), color .38s ease, opacity .38s ease, background .38s ease;
    }
    .application:hover {
      color: white;
      padding-inline: 18px;
      border-color: rgba(21,85,216,.38);
    }
    .application:hover::before { transform: scaleX(1); }
    .application .num { font-size: 11px; }
    .application h3 { font: 300 clamp(26px, 3vw, 44px)/1 var(--display); letter-spacing: -.04em; }
    .application p { color: #686a70; font-size: 14px; max-width: 45ch; }
    .application .arrow { background: var(--blue); color: white; }
    .application:hover p,
    .application:hover .num { color: rgba(255,255,255,.72); }
    .application:hover h3 { transform: translateX(8px); }
    .application:hover .arrow {
      background: white;
      color: var(--blue);
      transform: translateX(4px) scale(1.06);
    }

    /* Contact */
    .contact {
      position: relative;
      min-height: 100svh;
      padding: clamp(74px, 6vw, 92px) var(--pad) 18px;
      display: grid;
      grid-template-rows: 1fr auto;
      gap: clamp(16px, 2vw, 28px);
      overflow: hidden;
      isolation: isolate;
    }
    .contact-bg, .contact-bg::after { position: absolute; inset: 0; }
    .contact-bg { z-index: -2; }
    .contact-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
    .contact-bg::after {
      content: "";
      background: linear-gradient(90deg, rgba(4,8,17,.93) 0%, rgba(4,8,17,.68) 48%, rgba(4,8,17,.25)), linear-gradient(0deg, rgba(0,0,0,.88), transparent 50%);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 5vw, 96px);
      align-items: stretch;
      padding-top: clamp(24px, 2.4vw, 38px);
      border-top: 1px solid rgba(255,255,255,.3);
    }
    .footer-company {
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }
    .footer-head {
      display: flex;
      align-items: flex-end;
      min-height: clamp(94px, 8vw, 128px);
      margin-bottom: clamp(24px, 2.8vw, 36px);
      padding-bottom: clamp(16px, 1.8vw, 22px);
      border-bottom: 1px solid rgba(255,255,255,.22);
    }
    .footer-brand {
      width: min(220px, 100%);
      margin: 0;
    }
    .company-data {
      display: table;
      width: 100%;
      border-collapse: collapse;
    }
    .company-line {
      display: table-row;
    }
    .company-line small,
    .company-line a,
    .company-line span {
      display: table-cell;
      padding: clamp(11px, 1.3vw, 16px) 0;
      vertical-align: baseline;
    }
    .company-line small {
      width: 38%;
      padding-right: 24px;
      color: rgba(255,255,255,.46);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .13em;
      text-transform: uppercase;
      line-height: 1.5;
    }
    .footer-form-head small {
      display: block;
      margin-bottom: 5px;
      color: rgba(255,255,255,.48);
      font-size: 9px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .company-line a,
    .company-line span {
      color: rgba(255,255,255,.9);
      font-size: 14px;
      font-weight: 400;
      line-height: 1.55;
    }
    .company-line a {
      transition: color .25s;
    }
    .company-line a:hover,
    .footer-links a:hover { color: white; }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 22px;
      margin-top: auto;
      padding-top: clamp(24px, 3vw, 40px);
      color: rgba(255,255,255,.6);
      font-size: 13px;
    }
    .footer-links a { transition: color .25s; }
    .footer-form {
      border-left: 1px solid rgba(255,255,255,.24);
      padding-left: clamp(30px, 4vw, 60px);
    }
    .footer-form-head {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: clamp(94px, 8vw, 128px);
      margin-bottom: clamp(24px, 2.8vw, 36px);
      padding-bottom: clamp(16px, 1.8vw, 22px);
      border-bottom: 1px solid rgba(255,255,255,.22);
    }
    .footer-form-head h3 {
      max-width: 14ch;
      font: 300 clamp(28px, 2.6vw, 40px)/1.03 var(--display);
      letter-spacing: -.04em;
      color: white;
    }
    .contact-form {
      display: grid;
      gap: 13px;
      max-width: none;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .field {
      display: grid;
      gap: 9px;
    }
    .field label {
      color: rgba(255,255,255,.52);
      font-size: 10px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 0;
      border-bottom: 1px solid rgba(255,255,255,.28);
      border-radius: 0;
      background: transparent;
      color: white;
      padding: 9px 0 10px;
      font: 400 14px/1.4 var(--body);
      outline: none;
      transition: border-color .25s, color .25s;
    }
    .field select { color-scheme: dark; }
    .field textarea { min-height: 92px; resize: vertical; }
    .field input::placeholder,
    .field textarea::placeholder { color: rgba(255,255,255,.38); }
    .field input:focus,
    .field select:focus,
    .field textarea:focus { border-color: rgba(134,173,255,.95); }
    .form-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 4px;
    }
    .form-status {
      color: rgba(255,255,255,.58);
      font-size: 13px;
      line-height: 1.5;
      max-width: 36ch;
    }
    .contact-submit {
      background: rgba(255,255,255,.045);
      border-color: rgba(255,255,255,.26);
      color: white;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    .contact-submit .arrow { background: rgba(255,255,255,.1); }
    .contact-submit:hover {
      background: rgba(255,255,255,.085);
      border-color: rgba(255,255,255,.42);
    }
    /* Motion */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-group > * {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .82s ease, transform .92s var(--ease);
      transition-delay: calc(var(--item-index, 0) * 105ms);
    }
    .reveal-group.reveal { opacity: 1; transform: none; }
    .reveal-group.visible > * { opacity: 1; transform: none; }

    @media (max-width: 980px) {
      .nav-links, .nav-index, .nav-side .button { display: none; }
      .menu-button { display: flex; }
      .hero-content { grid-template-columns: minmax(0, 620px) 1fr; }
      .hero-media img { object-position: 43% center; }
      .hero-aside { max-width: 580px; }
      .intro, .section-head { grid-template-columns: 1fr; }
      .intro-copy { grid-column: 1; }
      .chain-grid { grid-template-columns: 1fr 1fr; }
      .chain-item:nth-child(2) { border-right: 0; }
      .chain-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.25); }
      .europe { min-height: auto; }
      .europe-intro { grid-template-columns: 130px 1fr; }
      .europe-copy { grid-column: 2; margin: 28px 0 65px; display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
      .metrics { grid-template-columns: 1fr 1fr; }
      .metric:nth-child(2) { border-right: 0; }
      .metric:nth-child(n+3) { border-top: 1px solid var(--line); padding-top: 32px; margin-top: 30px; }
      .product, .product.reverse { grid-template-columns: 1fr; min-height: auto; }
      .product-media, .product.reverse .product-media { order: -1; min-height: 70svh; }
      .product-copy { min-height: 700px; }
      .contact-form { grid-column: 1; max-width: none; }
      .application { grid-template-columns: 50px 1fr auto; }
      .application p { display: none; }
    }

    @media (max-width: 820px) {
      .contact {
        height: 100svh;
        min-height: 0;
        overflow: hidden;
      }
      .contact-grid { grid-template-columns: 1fr; }
      .contact-grid {
        min-height: 0;
        overflow-y: auto;
        padding-right: 8px;
        scrollbar-width: thin;
      }
      .footer-company { min-height: auto; }
      .footer-head, .footer-form-head { min-height: 0; }
      .footer-form {
        border-left: 0;
        padding-left: 0;
      }
    }

    @media (max-width: 640px) {
      .nav { inset: 10px 12px auto; height: 58px; padding-left: 14px; border-radius: 15px; }
      .brand { width: 142px; }
      .nav-side { margin-left: auto; }
      .menu-button {
        position: relative;
        top: auto;
        right: auto;
        width: 40px;
        height: 40px;
        display: flex !important;
        flex: 0 0 40px;
        background: rgba(255,255,255,.04);
      }
      .hero-content {
        min-height: 100svh;
        padding: 105px 22px 32px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
      }
      .hero-media img { object-position: 47% center; opacity: .68; }
      .hero-media::after {
        background:
          linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.18)),
          linear-gradient(0deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.62) 48%, transparent 78%);
      }
      .hero h1 { margin: 0 0 36px; max-width: 460px; font-size: clamp(48px, 14vw, 68px); }
      .hero-aside { display: block; width: 100%; padding-top: 17px; }
      .hero-aside .button { margin-top: 22px; }
      .hero-foot { display: none; }
      .hero-note { display: none; }
      .intro-copy { grid-template-columns: 1fr; }
      .chain-grid { grid-template-columns: 1fr; }
      .chain-item, .chain-item + .chain-item {
        min-height: 310px;
        padding: 24px 0 32px;
        border-right: 0;
        border-top: 1px solid rgba(255,255,255,.25);
      }
      .chain-item:first-child { border-top: 0; }
      .chain-line { width: 100%; max-height: 110px; }
      .metrics { grid-template-columns: 1fr; }
      .metric, .metric + .metric {
        border-right: 0;
        border-top: 1px solid var(--line);
        padding: 28px 0;
        margin: 0;
      }
      .product-media, .product.reverse .product-media { min-height: 55svh; }
      .product-copy { min-height: 670px; }
      .product-media img { width: 108%; }
      .europe { padding-top: 116px; }
      .europe-intro, .europe-copy, .europe-points { grid-template-columns: 1fr; }
      .europe-copy { grid-column: 1; margin: 28px 0 52px; display: block; }
      .europe-point, .europe-point + .europe-point {
        min-height: 160px;
        padding: 22px 0 25px;
        border-right: 0;
        border-top: 1px solid rgba(8,8,10,.14);
      }
      .europe-point:first-child { border-top: 0; }
      .application { grid-template-columns: 38px 1fr auto; gap: 12px; min-height: 95px; }
      .application h3 { font-size: 26px; }
      .contact { min-height: 100svh; padding: 86px 20px 24px; }
      .form-row { grid-template-columns: 1fr; gap: 22px; }
      .contact-grid { gap: 48px; }
      .company-data { grid-template-columns: 1fr; }
      .footer-brand { width: min(220px, 100%); }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
      .reveal-group > * { opacity: 1; transform: none; }
    }

    /* ============================================================
       Restructure additions — reuse existing tokens & patterns only
       ============================================================ */

    /* Hero: primary + secondary action row */
    .hero-actions { display: flex; align-items: center; gap: clamp(16px, 3vw, 28px); flex-wrap: wrap; }

    /* Generic inline text link with arrow (adapts to section colour) */
    .text-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 500; color: inherit;
      border-bottom: 1px solid currentColor; padding-bottom: 3px;
      transition: gap .3s var(--ease), opacity .3s;
    }
    .text-link:hover { gap: 13px; opacity: .82; }
    .text-link svg { width: 13px; }
    .text-link:has(.arrow) { border-bottom: 0; padding-bottom: 0; gap: 14px; }
    .text-link .arrow { width: 30px; height: 30px; }

    /* Chain: trailing "See the technology" link (section has 0 bottom padding) */
    .chain-foot { padding: clamp(34px, 5vw, 56px) 0 clamp(44px, 6vw, 72px); }

    /* Trust strip under hero */
    .trust-strip {
      display: flex; flex-wrap: wrap; align-items: center;
      gap: 13px clamp(22px, 4vw, 50px);
      padding: 18px var(--pad);
      border-bottom: 1px solid var(--line);
      background: var(--near-black);
      color: rgba(255,255,255,.6);
      font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
    }
    .trust-strip span { display: inline-flex; align-items: center; gap: 9px; }
    .trust-strip span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); flex: 0 0 6px; }
    .trust-strip strong { color: #fff; font-weight: 500; }

    /* Products: section intro (reuses .section-head) + selector + actions */
    .products .section-head { padding: clamp(88px, 11vw, 150px) var(--pad) clamp(6px, 2vw, 22px); margin-bottom: 0; }
    .section-head-sub { margin-top: 16px; max-width: 48ch; color: #4d4f54; font-size: 16px; line-height: 1.6; }
    .product-actions { display: flex; align-items: center; gap: clamp(18px, 3vw, 28px); flex-wrap: wrap; margin-top: clamp(24px, 3vw, 36px); }
    .product-actions .product-cta { margin-top: 0; }

    /* Proof — dark section, reuses .section-head + .metrics */
    .proof {
      background:
        radial-gradient(90% 70% at 82% 14%, rgba(21,85,216,.16), transparent 52%),
        linear-gradient(180deg, #050505 0%, #090b11 100%);
      color: var(--white);
      padding: clamp(90px, 12vw, 165px) var(--pad);
    }
    .proof .section-head { margin-bottom: clamp(40px, 5vw, 74px); }
    .proof-lead { max-width: 58ch; color: rgba(255,255,255,.74); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.55; }
    .proof .metrics { margin-top: clamp(50px, 6vw, 84px); }

    /* Company — light section mirroring .intro / .europe patterns + pilot grid */
    .company {
      position: relative;
      background:
        linear-gradient(180deg, #f8f9fb 0%, #e8eaed 100%);
      color: var(--black);
      padding: clamp(96px, 12vw, 165px) var(--pad);
      border-top: 1px solid rgba(8,8,10,.08);
    }
    .company-intro { display: grid; grid-template-columns: 1fr 3fr; gap: 6vw; margin-bottom: clamp(46px, 6vw, 82px); }
    .company-intro h2 { font-size: clamp(40px, 5vw, 78px); max-width: 19ch; }
    .company-copy { margin-top: 28px; max-width: 66ch; color: #4d4f54; font-size: 16px; line-height: 1.68; display: grid; gap: 16px; }
    .company-hiring { margin-top: 6px; }
    .pilot-panel {
      display: grid;
      grid-template-columns: minmax(260px, .82fr) minmax(0, 1.55fr);
      gap: clamp(34px, 6vw, 92px);
      align-items: stretch;
      padding-top: clamp(30px, 4vw, 48px);
      border-top: 1px solid rgba(8,8,10,.16);
    }
    .pilot-panel-copy {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: clamp(24px, 3vw, 38px);
      max-width: 38ch;
    }
    .pilot-panel-copy small {
      color: #747984;
      font-size: 10px;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .pilot-panel-copy strong {
      font: 300 clamp(28px, 3.2vw, 46px)/1.04 var(--display);
      letter-spacing: -.04em;
    }
    .pilot-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid rgba(8,8,10,.16);
      border-bottom: 1px solid rgba(8,8,10,.16);
      border-left: 1px solid rgba(8,8,10,.16);
    }
    .pilot-step {
      min-height: 240px;
      padding: 24px 24px 28px;
      border-right: 1px solid rgba(8,8,10,.16);
      display: flex;
      flex-direction: column;
    }
    .pilot-step span {
      color: var(--blue);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .pilot-step strong {
      margin-top: auto;
      font: 300 clamp(24px, 2.1vw, 34px)/1.08 var(--display);
      letter-spacing: -.04em;
      max-width: 12ch;
    }
    .pilot-step p {
      margin-top: 14px;
      color: #62666e;
      font-size: 14px;
      line-height: 1.55;
      max-width: 28ch;
    }

    /* Subpage: full datasheet table (reuses .spec rows) */
    .datasheet { background: var(--paper); color: var(--black); padding: clamp(88px, 12vw, 160px) var(--pad); }
    .datasheet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(40px, 6vw, 90px); border-top: 1px solid var(--line-dark); }
    .datasheet-grid .spec span:first-child { color: #74767b; }
    .page-back { padding: clamp(116px, 14vh, 150px) var(--pad) 0; }
    .page-back a { color: rgba(255,255,255,.7); }
    @media (max-width: 760px) { .datasheet-grid { grid-template-columns: 1fr; } }

    @media (max-width: 980px) {
      .company-intro { grid-template-columns: 1fr; }
      .company-copy { grid-column: 1; }
      .pilot-panel { grid-template-columns: 1fr; }
      .pilot-steps { grid-template-columns: 1fr 1fr; }
      .pilot-step:nth-child(2) { border-right: 0; }
      .pilot-step:nth-child(n+3) { border-top: 1px solid rgba(8,8,10,.16); }
    }
    @media (max-width: 640px) {
      .trust-strip { font-size: 10px; gap: 11px 20px; }
      .europe-points { gap: 12px; }
      .europe-point,
      .europe-point + .europe-point {
        border: 1px solid rgba(8,8,10,.12);
        padding: 22px;
      }
      .europe-point:first-child { border-top: 1px solid rgba(8,8,10,.12); }
      .pilot-steps { grid-template-columns: 1fr; }
      .pilot-step,
      .pilot-step:nth-child(2) {
        min-height: 220px;
        border-right: 1px solid rgba(8,8,10,.16);
        border-top: 1px solid rgba(8,8,10,.16);
      }
      .pilot-step:first-child { border-top: 0; }
    }

    @media (max-width: 820px) {
      .contact {
        height: auto;
        min-height: 100svh;
        overflow: visible;
      }
      .contact-grid {
        overflow: visible;
        padding-right: 0;
      }
      .footer-form {
        border-top: 1px solid rgba(255,255,255,.22);
        padding-top: 34px;
      }
    }


    /* ---- Landing polish: density + flight imagery (appended overrides) ---- */
    .intro { position: relative; overflow: hidden; padding: clamp(86px, 11vw, 158px) var(--pad) clamp(62px, 7vw, 102px); }
    .intro > .eyebrow, .intro > h2, .intro > .intro-copy { position: relative; z-index: 1; }
    .problem-mark {
      position: absolute; right: clamp(-130px, -6vw, -50px); top: 50%;
      transform: translateY(-50%); width: clamp(330px, 40vw, 580px);
      color: rgba(21,85,216,.07); pointer-events: none; z-index: 0;
    }
    .chain { padding-top: clamp(74px, 8vw, 124px); }
    .products .section-head { padding-top: clamp(70px, 9vw, 116px); }
    .products .section-head h2 { font-size: clamp(33px, 3.6vw, 52px); }
    .proof { position: relative; isolation: isolate; overflow: hidden; }
    .proof-bg { position: absolute; inset: 0; z-index: -1; }
    .proof-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; opacity: .42; }
    .proof-bg::after {
      content: ""; position: absolute; inset: 0;
      background:
        radial-gradient(90% 70% at 82% 14%, rgba(21,85,216,.22), transparent 52%),
        linear-gradient(180deg, rgba(5,5,5,.82) 0%, rgba(7,9,14,.9) 70%, rgba(7,9,14,.96) 100%);
    }

    /* Proof imagery: make the rocket flight image read more clearly */
    .proof-bg img { opacity: .6; object-position: center 45%; }
    .proof-bg::after {
      background:
        radial-gradient(95% 75% at 84% 10%, rgba(21,85,216,.20), transparent 50%),
        linear-gradient(180deg, rgba(5,5,5,.6) 0%, rgba(6,8,13,.8) 70%, rgba(6,8,13,.92) 100%);
    }

    /* ---- Audit pass: clearer story, no clipped type, stronger CTAs ---- */
    .display {
      letter-spacing: -.025em;
      line-height: 1.04;
    }
    .hero {
      min-height: 100svh;
      align-items: stretch;
      background: #050505;
      padding: 0;
    }
    .hero-grid-bg {
      position: absolute;
      inset: 0;
      z-index: -3;
      background:
        radial-gradient(70% 70% at 73% 44%, rgba(21,85,216,.38), transparent 54%),
        radial-gradient(44% 48% at 83% 14%, rgba(255,255,255,.08), transparent 48%),
        linear-gradient(180deg, #050505 0%, #080b12 62%, #050505 100%);
    }
    .hero-grid-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .28;
      background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.09) 0 1px, transparent 1px 120px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.055) 0 1px, transparent 1px 120px);
      mask-image: linear-gradient(90deg, transparent, #000 38%, #000 88%, transparent);
    }
    .hero::after {
      background:
        linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.08) 64%),
        linear-gradient(0deg, rgba(0,0,0,.68), transparent 42%);
    }
    .hero-content {
      position: relative;
      z-index: 1;
      min-height: 100svh;
      padding: clamp(124px, 14vh, 154px) var(--pad) clamp(118px, 13vh, 150px);
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(340px, .9fr);
      gap: clamp(36px, 6vw, 96px);
      align-items: center;
    }
    .hero-copy {
      max-width: 760px;
    }
    .hero h1 {
      max-width: 12ch;
      margin: clamp(28px, 4vw, 50px) 0 0;
      font-size: clamp(58px, 7.4vw, 116px);
      line-height: 1.01;
    }
    .hero-lead {
      margin-top: clamp(24px, 3vw, 38px);
      max-width: 52ch;
      color: rgba(255,255,255,.72);
      font-size: clamp(16px, 1.35vw, 19px);
      line-height: 1.66;
    }
    .hero-actions {
      margin-top: clamp(30px, 4vw, 48px);
    }
    .hero-secondary {
      background: rgba(255,255,255,.055);
      border-color: rgba(255,255,255,.22);
      color: white;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .hero-secondary .arrow { background: rgba(255,255,255,.12); }
    .hero-visual {
      position: relative;
      min-height: clamp(420px, 50vw, 680px);
    }
    .hero-orbit {
      position: absolute;
      inset: 7% 1% 8% 0;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 50%;
      transform: rotate(-14deg);
      box-shadow: inset 0 0 80px rgba(21,85,216,.16), 0 0 80px rgba(21,85,216,.12);
    }
    .hero-orbit::before,
    .hero-orbit::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.08);
    }
    .hero-orbit::before { inset: 15%; }
    .hero-orbit::after { inset: 30%; }
    .hero-module {
      position: absolute;
      height: auto;
      filter: drop-shadow(0 42px 70px rgba(0,0,0,.58));
    }
    .hero-module-main {
      width: min(72%, 560px);
      right: 6%;
      top: 22%;
    }
    .hero-module-secondary {
      width: min(42%, 330px);
      left: 2%;
      bottom: 13%;
      opacity: .92;
    }
    .hero-tag {
      position: absolute;
      right: 0;
      bottom: 5%;
      min-width: 190px;
      padding: 15px 16px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 8px;
      background: rgba(5,7,12,.72);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .hero-tag span {
      display: block;
      color: rgba(255,255,255,.48);
      font-size: 10px;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .hero-tag strong {
      display: block;
      margin-top: 9px;
      color: white;
      font: 300 28px/1.05 var(--display);
      letter-spacing: -.035em;
    }
    .hero-rail {
      position: absolute;
      z-index: 2;
      left: var(--pad);
      right: var(--pad);
      bottom: 22px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid rgba(255,255,255,.18);
      color: rgba(255,255,255,.62);
    }
    .hero-rail span {
      min-height: 64px;
      padding: 14px 22px 10px 0;
      border-right: 1px solid rgba(255,255,255,.14);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 10px;
    }
    .hero-rail span + span { padding-left: 22px; }
    .hero-rail span:last-child { border-right: 0; }
    .hero-rail small {
      font-size: 10px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.42);
    }
    .hero-rail strong {
      color: white;
      font-size: 14px;
      font-weight: 500;
    }

    .chain {
      background:
        radial-gradient(90% 75% at 88% 10%, rgba(255,255,255,.16), transparent 52%),
        linear-gradient(180deg, #1555d8 0%, #0c43b8 100%);
      padding: clamp(86px, 9vw, 138px) var(--pad) clamp(46px, 6vw, 76px);
    }
    .chain-head {
      align-items: start;
      margin-bottom: clamp(46px, 6vw, 78px);
    }
    .chain-summary {
      margin-top: 22px;
      max-width: 58ch;
      color: rgba(255,255,255,.72);
      font-size: clamp(16px, 1.35vw, 19px);
      line-height: 1.62;
    }
    .chain-cta {
      margin-top: 30px;
      background: rgba(255,255,255,.96);
      color: var(--black);
      border-color: rgba(255,255,255,.32);
    }
    .chain-cta .arrow {
      background: var(--blue);
      color: white;
    }
    .chain-grid {
      border-top-color: rgba(255,255,255,.35);
    }
    .chain-foot {
      padding: clamp(30px, 4vw, 46px) 0 0;
    }

    .products .section-head {
      padding: clamp(74px, 8vw, 118px) var(--pad) clamp(34px, 4vw, 58px);
      border-bottom: 1px solid rgba(8,8,10,.12);
    }
    .products .section-head h2 {
      max-width: 13ch;
      font-size: clamp(40px, 5.1vw, 78px);
    }
    .section-head-sub {
      margin-top: 22px;
      max-width: 56ch;
      font-size: 17px;
      line-height: 1.64;
    }
    .product-actions {
      gap: 12px;
    }
    .product-eval {
      background: var(--blue);
      color: white;
      border-color: var(--blue);
      box-shadow: none;
    }
    .product-eval .arrow {
      background: rgba(255,255,255,.16);
      color: white;
    }
    .product-eval:hover {
      background: var(--blue-bright);
      border-color: var(--blue-bright);
    }

    .proof {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: clamp(88px, 10vw, 142px) var(--pad) clamp(58px, 7vw, 96px);
    }
    .proof-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
      gap: clamp(42px, 7vw, 112px);
      align-items: end;
    }
    .proof-copy h2 {
      margin-top: clamp(30px, 4vw, 54px);
      max-width: 12ch;
      font-size: clamp(54px, 6.4vw, 98px);
    }
    .proof-lead {
      margin-top: clamp(30px, 4vw, 52px);
      max-width: 58ch;
    }
    .proof-card {
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 8px;
      padding: clamp(24px, 3vw, 34px);
      background: rgba(255,255,255,.055);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    .proof-card small {
      color: rgba(255,255,255,.55);
      font-size: 10px;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .proof-card strong {
      display: block;
      margin-top: 22px;
      color: #77a0ff;
      font: 300 clamp(40px, 4.6vw, 68px)/.98 var(--display);
      letter-spacing: -.045em;
    }
    .proof-card p {
      margin-top: 22px;
      color: rgba(255,255,255,.72);
      font-size: 14px;
      line-height: 1.6;
    }
    .proof .metrics {
      margin-top: clamp(58px, 7vw, 96px);
    }

    .company {
      padding: clamp(86px, 10vw, 138px) var(--pad);
    }
    .company-intro h2 {
      max-width: 14ch;
      font-size: clamp(46px, 5.8vw, 88px);
    }
    .company-copy {
      max-width: 62ch;
    }
    .careers-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: clamp(28px, 5vw, 78px);
      align-items: end;
      padding: clamp(30px, 4vw, 48px);
      border-radius: 8px;
      background:
        radial-gradient(80% 120% at 90% 0%, rgba(21,85,216,.32), transparent 54%),
        #050505;
      color: white;
    }
    .careers-panel small {
      color: rgba(255,255,255,.58);
      font-size: 10px;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .careers-panel strong {
      display: block;
      margin-top: 22px;
      max-width: 16ch;
      font: 300 clamp(34px, 4vw, 60px)/1.02 var(--display);
      letter-spacing: -.04em;
    }
    .careers-panel p {
      margin-top: 22px;
      max-width: 54ch;
      color: rgba(255,255,255,.68);
      font-size: 15px;
      line-height: 1.65;
    }

    .pilot {
      min-height: 100svh;
      padding: clamp(90px, 11vw, 150px) var(--pad);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: clamp(48px, 7vw, 92px);
      background:
        radial-gradient(70% 100% at 86% 0%, rgba(255,255,255,.16), transparent 58%),
        linear-gradient(180deg, #1555d8 0%, #0b3ca8 100%);
      color: white;
    }
    .pilot-intro {
      display: grid;
      grid-template-columns: 1fr 3fr;
      gap: 6vw;
      align-items: start;
    }
    .pilot-intro h2 {
      max-width: 13ch;
      font-size: clamp(56px, 7vw, 108px);
    }
    .pilot-lead {
      margin: clamp(24px, 3vw, 38px) 0 clamp(28px, 4vw, 46px);
      max-width: 58ch;
      color: rgba(255,255,255,.74);
      font-size: clamp(16px, 1.35vw, 19px);
      line-height: 1.65;
    }
    .pilot .button {
      background: white;
      color: var(--black);
    }
    .pilot .button .arrow {
      background: var(--blue);
      color: white;
    }
    .pilot .pilot-steps {
      border-color: rgba(255,255,255,.28);
      border-top-color: rgba(255,255,255,.34);
      border-bottom-color: rgba(255,255,255,.24);
    }
    .pilot .pilot-step {
      min-height: clamp(260px, 26vw, 360px);
      border-right-color: rgba(255,255,255,.24);
      color: white;
    }
    .pilot .pilot-step span {
      color: rgba(255,255,255,.58);
    }
    .pilot .pilot-step strong {
      color: white;
      max-width: 13ch;
      font-size: clamp(30px, 3vw, 48px);
    }
    .pilot .pilot-step p {
      color: rgba(255,255,255,.68);
      font-size: 15px;
    }

    .contact {
      min-height: auto;
      padding: clamp(76px, 8vw, 116px) var(--pad) clamp(40px, 5vw, 70px);
      display: block;
      overflow: hidden;
    }
    .contact-bg::after {
      background:
        linear-gradient(90deg, rgba(4,8,17,.94), rgba(4,8,17,.76) 52%, rgba(4,8,17,.48)),
        linear-gradient(0deg, rgba(0,0,0,.9), transparent 58%);
    }
    .contact-grid {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(42px, 6vw, 76px);
      border-top: 1px solid rgba(255,255,255,.22);
      padding-top: clamp(28px, 4vw, 46px);
    }
    .footer-form {
      order: 1;
      border-left: 0;
      padding-left: 0;
    }
    .footer-form-head {
      min-height: 0;
      max-width: 760px;
      margin-bottom: clamp(30px, 4vw, 48px);
    }
    .footer-form-head h3 {
      max-width: 18ch;
      font-size: clamp(40px, 5vw, 72px);
    }
    .contact-form {
      max-width: 920px;
    }
    .footer-company {
      order: 2;
      min-height: auto;
      display: grid;
      grid-template-columns: minmax(220px, .32fr) minmax(0, 1fr);
      gap: clamp(28px, 5vw, 70px);
      padding-top: clamp(30px, 4vw, 48px);
      border-top: 1px solid rgba(255,255,255,.18);
    }
    .footer-head {
      min-height: 0;
      margin: 0;
      padding: 0;
      border: 0;
      align-items: flex-start;
    }
    .footer-brand {
      width: min(190px, 100%);
    }
    .company-data {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px 34px;
      align-content: start;
    }
    .company-line {
      display: grid;
      gap: 6px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255,255,255,.11);
    }
    .company-line small,
    .company-line a,
    .company-line span {
      display: block;
      padding: 0;
    }
    .company-line small {
      width: auto;
      padding-right: 0;
    }
    .footer-links {
      grid-column: 1 / -1;
      margin-top: 0;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.12);
    }
    @media (max-width: 980px) {
      .hero-content {
        grid-template-columns: 1fr;
        align-items: end;
      }
      .hero-copy { max-width: 720px; }
      .hero-visual {
        min-height: 360px;
        order: -1;
      }
      .hero-module-main {
        width: min(64%, 430px);
        right: 8%;
        top: 12%;
      }
      .hero-module-secondary {
        width: min(38%, 250px);
        left: 8%;
        bottom: 8%;
      }
      .chain-head,
      .pilot-intro,
      .proof-layout,
      .company-intro {
        grid-template-columns: 1fr;
      }
      .chain-cta { margin-top: 22px; }
      .careers-panel,
      .footer-company {
        grid-template-columns: 1fr;
      }
      .company-data {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .display { line-height: 1.06; }
      .hero { display: block; }
      .hero-content {
        min-height: auto;
        padding: 96px 22px 26px;
        gap: 18px;
      }
      .hero h1 {
        max-width: 10ch;
        font-size: clamp(45px, 13vw, 66px);
      }
      .hero-lead { font-size: 15px; }
      .hero-visual {
        min-height: 270px;
      }
      .hero-orbit { inset: 5% 2% 0; }
      .hero-module-main {
        width: 70%;
        right: 0;
        top: 10%;
      }
      .hero-module-secondary {
        width: 42%;
        left: 0;
        bottom: 10%;
      }
      .hero-tag { display: none; }
      .hero-rail {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0 22px 22px;
        grid-template-columns: 1fr;
      }
      .hero-rail span {
        min-height: 0;
        padding: 10px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
      }
      .hero-rail span + span { padding-left: 0; }
      .hero-rail span:last-child { border-bottom: 0; }
      .chain,
      .pilot,
      .company,
      .proof {
        padding-inline: 22px;
      }
      .chain .section-head h2,
      .proof-copy h2,
      .pilot-intro h2,
      .company-intro h2 {
        font-size: clamp(40px, 12vw, 62px);
      }
      .products .section-head h2 {
        font-size: clamp(36px, 11vw, 56px);
      }
      .product-actions {
        align-items: stretch;
      }
      .product-actions .button {
        justify-content: space-between;
        width: 100%;
      }
      .proof-card {
        padding: 22px;
      }
      .careers-panel {
        padding: 24px;
      }
      .careers-panel strong {
        font-size: clamp(30px, 10vw, 44px);
      }
      .pilot .pilot-step,
      .pilot-step,
      .pilot-step:nth-child(2) {
        min-height: 220px;
      }
      .contact {
        padding: 86px 20px 32px;
      }
      .footer-form-head h3 {
        font-size: clamp(34px, 11vw, 52px);
      }
      .company-data {
        grid-template-columns: 1fr;
      }
    }

/* ---- correction pass: tighter hierarchy, cleaner hero, integrated contact/footer ---- */
.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #050505;
}
.hero-grid-bg,
.hero-visual,
.hero-rail {
  display: none !important;
}
.hero-media {
  position: absolute;
  inset: 0;
  display: block;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .62;
  filter: saturate(.8) contrast(1.08);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.45) 48%, rgba(0,0,0,.66) 100%),
    linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.1) 45%, rgba(0,0,0,.38) 100%);
}
.hero-content {
  width: 100%;
  max-width: none;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(118px, 12vw, 170px) var(--pad) clamp(58px, 7vw, 92px);
}
.hero-copy {
  max-width: min(960px, 76vw);
}
.hero h1 {
  max-width: 13.5ch;
  margin-top: clamp(22px, 3vw, 42px);
  font-size: clamp(56px, 6.8vw, 108px);
  line-height: .98;
}
.hero-lead {
  max-width: 58ch;
  margin-top: clamp(24px, 3.2vw, 42px);
  color: rgba(255,255,255,.74);
}
.hero-actions {
  margin-top: clamp(30px, 4vw, 52px);
}
.hero-secondary {
  color: white;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}

.chain {
  min-height: auto;
  padding: clamp(58px, 7vw, 96px) var(--pad);
  background: #050505;
}
.chain-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: clamp(26px, 3.4vw, 44px);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.chain .eyebrow {
  color: rgba(255,255,255,.58);
}
.chain-cta {
  margin-top: 0 !important;
  color: white;
  background: var(--blue);
  border-color: transparent;
}
.chain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  overflow: hidden;
}
.chain-item,
.chain-item + .chain-item {
  min-height: clamp(170px, 17vw, 235px);
  padding: clamp(18px, 2.2vw, 30px);
  border-top: 0;
  border-right: 1px solid rgba(255,255,255,.16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,.035);
}
.chain-item:last-child {
  border-right: 0;
}
.chain-no {
  color: rgba(255,255,255,.62);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.chain-line {
  position: relative;
  inset: auto;
  width: 100%;
  height: 110px;
  margin-top: clamp(14px, 2vw, 26px);
  opacity: .82;
  transform: none;
}
.chain-item:hover {
  background: rgba(255,255,255,.06);
}
.chain-item:hover .chain-line {
  transform: none;
}
.chain-head,
.chain-summary,
.chain-foot {
  display: none !important;
}

.products .section-head {
  display: none !important;
}
.product {
  grid-template-columns: minmax(0, .47fr) minmax(0, .53fr);
  min-height: 100svh;
}
.product.reverse {
  grid-template-columns: minmax(0, .53fr) minmax(0, .47fr);
}
.product-copy {
  min-height: 100svh;
  padding: clamp(76px, 8vw, 118px) var(--pad) clamp(54px, 6vw, 86px);
  justify-content: space-between;
}
.product-copy h2 {
  max-width: 11ch;
  margin-top: clamp(18px, 2.6vw, 36px);
  font-size: clamp(54px, 5.6vw, 92px);
  line-height: .98;
}
.product-copy h2 small {
  margin-top: 10px;
  font-size: clamp(14px, 1.1vw, 18px);
  letter-spacing: .08em;
}
.product-copy > p {
  max-width: 48ch;
  margin-top: clamp(20px, 2.6vw, 34px);
  line-height: 1.58;
}
.product-specs {
  margin: clamp(28px, 3.4vw, 46px) 0 clamp(24px, 3vw, 38px);
}
.product-media {
  min-height: 100svh;
}
.product-media img {
  width: min(76%, 700px);
  max-height: 70%;
  object-fit: contain;
}
.product.reverse .product-media img {
  width: min(70%, 620px);
}
.product-media::after {
  bottom: clamp(28px, 4vw, 54px);
  right: clamp(24px, 4vw, 54px);
  max-width: min(420px, 74%);
}
.product-actions .button {
  min-height: 58px;
}
.product-eval {
  color: white;
  background: var(--blue);
  border-color: transparent;
}
.product-eval .arrow {
  background: rgba(255,255,255,.16);
  color: white;
}

.proof {
  min-height: auto;
  padding: clamp(76px, 9vw, 126px) var(--pad);
}
.proof-layout {
  gap: clamp(34px, 5vw, 78px);
}
.proof-copy h2 {
  max-width: 13ch;
  margin-top: clamp(24px, 3vw, 42px);
  font-size: clamp(48px, 5.4vw, 86px);
}
.proof-lead {
  margin-top: clamp(24px, 3vw, 38px);
  max-width: 62ch;
}
.proof-card strong {
  font-size: clamp(34px, 3.4vw, 56px);
}
.proof .metrics {
  margin-top: clamp(42px, 5vw, 74px);
}

.europe {
  background: #f7f8fa;
}
.europe-flag-icon {
  color: var(--blue);
  opacity: .2;
}
.europe-flag-icon g {
  opacity: .95;
}

.pilot {
  min-height: auto;
  padding: clamp(54px, 6.4vw, 88px) var(--pad);
  gap: clamp(28px, 4vw, 52px);
  background:
    linear-gradient(135deg, rgba(21,85,216,.96) 0%, rgba(10,43,116,.98) 100%);
}
.pilot-intro {
  grid-template-columns: minmax(120px, .55fr) minmax(0, 1.45fr);
  gap: clamp(28px, 5vw, 80px);
}
.pilot-intro h2 {
  max-width: 14ch;
  font-size: clamp(40px, 4.5vw, 70px);
}
.pilot-lead {
  max-width: 54ch;
  margin: clamp(16px, 2vw, 26px) 0 clamp(18px, 2.6vw, 30px);
}
.pilot .pilot-step {
  min-height: clamp(165px, 15vw, 220px);
  padding: clamp(18px, 2.2vw, 30px);
}
.pilot .pilot-step strong {
  max-width: 15ch;
  font-size: clamp(26px, 2.5vw, 40px);
}

.contact {
  min-height: auto;
  padding: 0;
  background: #eef1f6;
  color: var(--black);
  overflow: hidden;
}
.contact-bg {
  display: none;
}
.contact-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.footer-form {
  order: 1;
  min-height: auto;
  padding: clamp(76px, 9vw, 124px) var(--pad);
  background: #fff;
  color: var(--black);
  border: 0;
}
.footer-form-head {
  max-width: 920px;
  margin-bottom: clamp(34px, 4vw, 58px);
}
.footer-form-head small {
  color: #69707a;
}
.footer-form-head h3 {
  max-width: 14ch;
  color: var(--black);
  font-size: clamp(42px, 5.2vw, 84px);
}
.contact-form {
  max-width: 1050px;
}
.field label {
  color: #727782;
}
.field input,
.field select,
.field textarea {
  color: var(--black);
  border-bottom-color: rgba(8,9,12,.22);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(8,9,12,.38);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--blue);
}
.contact-submit {
  background: var(--blue);
  color: white;
  border-color: transparent;
}
.contact-submit .arrow {
  color: white;
  background: rgba(255,255,255,.16);
}
.form-status {
  color: #626873;
}
.footer-company {
  order: 2;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 6vw, 80px) var(--pad);
  background: #0e3f9f;
  color: white;
  border: 0;
}
.footer-head {
  min-height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  align-items: flex-start;
}
.footer-brand {
  width: min(230px, 100%);
}
.company-data {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px 30px;
}
.company-line {
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.company-line small {
  color: rgba(255,255,255,.56);
}
.company-line a,
.company-line span {
  color: rgba(255,255,255,.9);
}
.company-line a:hover,
.footer-links a:hover {
  color: white;
}
.footer-links {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.2);
  gap: 22px;
}
.footer-links a {
  color: rgba(255,255,255,.72);
}

@media (max-width: 1180px) {
  .product,
  .product.reverse {
    grid-template-columns: minmax(0, .5fr) minmax(0, .5fr);
  }
  .product-copy h2 {
    font-size: clamp(48px, 5.4vw, 76px);
  }
  .company-data {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-content {
    min-height: 92svh;
    padding-top: 122px;
  }
  .hero-copy {
    max-width: 760px;
  }
  .chain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .chain-item:nth-child(2n) {
    border-right: 0;
  }
  .chain-item:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .product,
  .product.reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .product-copy {
    min-height: auto;
    padding: clamp(58px, 8vw, 86px) var(--pad);
  }
  .product-media,
  .product.reverse .product-media {
    order: -1;
    min-height: 56svh;
  }
  .product-media img,
  .product.reverse .product-media img {
    width: min(72%, 560px);
    max-height: 72%;
  }
  .pilot-intro,
  .proof-layout,
  .footer-company {
    grid-template-columns: 1fr;
  }
  .company-data {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-content {
    min-height: 100svh;
    padding: 110px 22px 40px;
  }
  .hero-copy {
    max-width: none;
  }
  .hero h1 {
    max-width: 11ch;
    font-size: clamp(44px, 13vw, 68px);
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-actions {
    align-items: stretch;
  }
  .hero-actions .button,
  .chain-cta,
  .product-actions .button,
  .pilot .button,
  .contact-submit {
    width: 100%;
    justify-content: space-between;
  }
  .chain {
    padding: 58px 22px;
  }
  .chain-top {
    display: grid;
    gap: 20px;
  }
  .chain-grid {
    grid-template-columns: 1fr;
  }
  .chain-item,
  .chain-item + .chain-item {
    min-height: 170px;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .chain-item:first-child {
    border-top: 0;
  }
  .product-copy {
    padding: 50px 22px 56px;
  }
  .product-copy h2 {
    font-size: clamp(42px, 14vw, 64px);
  }
  .product-media,
  .product.reverse .product-media {
    min-height: 48svh;
  }
  .product-media img,
  .product.reverse .product-media img {
    width: 82%;
  }
  .proof,
  .pilot,
  .footer-form,
  .footer-company {
    padding-inline: 22px;
  }
  .pilot {
    padding-block: 48px 56px;
    gap: 30px;
  }
  .proof-copy h2,
  .pilot-intro h2,
  .footer-form-head h3 {
    font-size: clamp(38px, 12vw, 58px);
  }
  .pilot .pilot-step,
  .pilot-step,
  .pilot-step:nth-child(2) {
    min-height: 150px;
    padding: 20px;
  }
  .company-data {
    grid-template-columns: 1fr;
  }
  .footer-links {
    gap: 14px 20px;
  }
}


    /* ===== main2: research-optimal homepage additions ===== */
    /* Skip link (a11y) */
    .skip-link {
      position: absolute; left: 12px; top: -64px; z-index: 200;
      background: var(--blue); color: #fff; padding: 11px 18px; border-radius: 10px;
      font-size: 14px; font-weight: 500; transition: top .2s var(--ease);
    }
    .skip-link:focus { top: 12px; outline: 2px solid #fff; outline-offset: 2px; }

    /* Active nav state */
    .nav-links a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.10); }
    .nav.on-light .nav-links a[aria-current="page"] { color: #08090c; background: rgba(8,9,12,.08); }

    /* COMPOSITE vs ALLOY comparison */
    .comparison { background: var(--paper); color: var(--black); padding: clamp(60px, 7vw, 104px) var(--pad) clamp(72px, 9vw, 124px); border-top: 1px solid var(--line-dark); }
    .comparison-head { margin-bottom: clamp(26px, 3vw, 46px); max-width: 62ch; }
    .comparison-head .eyebrow { color: #74767b; }
    .comparison-head h2 { margin-top: 14px; font-size: clamp(30px, 3.6vw, 52px); }
    .comparison-head p { margin-top: 13px; color: #5f6269; font-size: 16px; line-height: 1.55; }
    .compare-table { width: 100%; border-collapse: collapse; }
    .compare-table caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
    .compare-table th, .compare-table td { text-align: left; padding: 15px clamp(14px, 2vw, 26px); border-bottom: 1px solid var(--line-dark); vertical-align: baseline; }
    .compare-table thead th { border-bottom: 1px solid rgba(8,8,10,.34); font: 400 clamp(19px, 2vw, 27px)/1.05 var(--display); letter-spacing: -.03em; color: var(--black); }
    .compare-table thead th span { display: block; margin-top: 6px; font: 500 10px/1 var(--body); letter-spacing: .12em; text-transform: uppercase; color: #74767b; }
    .compare-table th:first-child, .compare-table td:first-child { width: 34%; color: #74767b; font-size: 13px; font-weight: 400; }
    .compare-table tbody td { color: var(--black); font-size: 15px; }
    .compare-table tfoot td { border-bottom: 0; padding-top: 22px; }
    @media (max-width: 640px) {
      .compare-table th, .compare-table td { padding: 11px 10px; font-size: 13px; }
      .compare-table thead th { font-size: 16px; }
      .compare-table thead th span { font-size: 9px; }
      .compare-table th:first-child, .compare-table td:first-child { width: 40%; font-size: 12px; }
    }

    /* Smooth cross-document transitions (progressive enhancement; MPA) */
    @view-transition { navigation: auto; }
    .brand img { view-transition-name: sb-logo; }
    @media (prefers-reduced-motion: reduce) { @view-transition { navigation: none; } }


    /* ===== Rebuilt contact + footer (sb-footer) ===== */
    .sb-footer { position: relative; isolation: isolate; overflow: hidden; background: #04060c; color: var(--white); padding: clamp(80px, 9vw, 132px) var(--pad) clamp(26px, 3vw, 40px); }
    .sb-footer-bg { position: absolute; inset: 0; z-index: -1; }
    .sb-footer-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 64%; opacity: .5; }
    .sb-footer-bg::after { content: ""; position: absolute; inset: 0; background:
      radial-gradient(78% 60% at 16% 2%, rgba(21,85,216,.20), transparent 55%),
      linear-gradient(180deg, rgba(4,6,12,.74) 0%, rgba(4,6,12,.9) 58%, #04060c 100%); }

    .sb-cta { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(40px, 6vw, 104px); align-items: start; }
    .sb-cta-lead { max-width: 42ch; }
    .sb-cta-lead .eyebrow { color: rgba(255,255,255,.55); }
    .sb-cta-lead h2 { margin-top: 16px; font-size: clamp(34px, 4.4vw, 64px); }
    .sb-cta-lead > p { margin-top: 20px; max-width: 38ch; color: rgba(255,255,255,.66); font-size: 16px; line-height: 1.6; }
    .sb-assure { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 9px 22px; }
    .sb-assure li { position: relative; padding-left: 16px; color: rgba(255,255,255,.6); font-size: 12px; letter-spacing: .03em; }
    .sb-assure li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); }
    .sb-mail { display: inline-block; margin-top: 28px; color: #fff; font-size: clamp(17px, 1.6vw, 21px); border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 4px; transition: border-color .25s; }
    .sb-mail:hover { border-color: #fff; }

    .sb-form { display: grid; gap: 16px; align-self: start; }
    .sb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .sb-field { display: grid; gap: 9px; }
    .sb-field label { color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
    .sb-field input, .sb-field select, .sb-field textarea {
      width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.26); border-radius: 0;
      background: transparent; color: #fff; padding: 10px 0 11px; font: 400 15px/1.4 var(--body);
      outline: none; transition: border-color .25s; }
    .sb-field select { color-scheme: dark; }
    .sb-field textarea { resize: vertical; min-height: 96px; }
    .sb-field input::placeholder, .sb-field textarea::placeholder { color: rgba(255,255,255,.36); }
    .sb-field input:focus, .sb-field select:focus, .sb-field textarea:focus { border-color: var(--blue-bright); }
    .sb-form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
    .sb-submit { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.26); color: #fff; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
    .sb-submit .arrow { background: rgba(255,255,255,.12); }
    .sb-submit:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.45); }
    .sb-form .form-status { color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.5; max-width: 34ch; }

    .sb-bar { margin-top: clamp(54px, 7vw, 92px); padding-top: clamp(26px, 3vw, 38px); border-top: 1px solid rgba(255,255,255,.16);
      display: grid; grid-template-columns: auto 1fr auto; gap: clamp(22px, 4vw, 56px); align-items: center; }
    .sb-bar-brand img { width: 148px; }
    .sb-bar-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px 24px; font-size: 13px; }
    .sb-bar-nav a { color: rgba(255,255,255,.62); transition: color .2s; }
    .sb-bar-nav a:hover { color: #fff; }
    .sb-bar-meta { display: flex; flex-direction: column; gap: 4px; text-align: right; color: rgba(255,255,255,.44); font-size: 11px; line-height: 1.55; }
    .sb-bar-meta a { color: rgba(255,255,255,.7); }
    @media (max-width: 900px) {
      .sb-cta { grid-template-columns: 1fr; gap: clamp(34px, 6vw, 50px); }
      .sb-bar { grid-template-columns: 1fr; gap: 22px; }
      .sb-bar-nav { justify-content: flex-start; }
      .sb-bar-meta { text-align: left; }
    }
    @media (max-width: 560px) { .sb-row { grid-template-columns: 1fr; gap: 18px; } }

    /* ===== Careers panel restyle: integrated CTA row (not a floating dark box) ===== */
    .careers-panel {
      grid-template-columns: minmax(0, 1fr) auto;
      gap: clamp(24px, 5vw, 70px);
      align-items: center;
      margin-top: clamp(40px, 5vw, 72px);
      padding: clamp(30px, 4vw, 46px) 0 0;
      border-top: 1px solid var(--line-dark);
      border-radius: 0;
      background: none;
      color: inherit;
    }
    .careers-panel small { color: #74767b; }
    .careers-panel strong { display: block; margin-top: 12px; font: 300 clamp(24px, 2.6vw, 38px)/1.1 var(--display); letter-spacing: -.03em; max-width: 24ch; color: var(--black); }
    .careers-panel p { margin-top: 12px; color: #5f6269; font-size: 15px; line-height: 1.55; max-width: 48ch; }
    @media (max-width: 700px) { .careers-panel { grid-template-columns: 1fr; gap: 22px; } }

    /* ===== Evidence + technology chain combined section ===== */
    .evidence-chain {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      min-height: auto;
      padding: clamp(78px, 8vw, 124px) var(--pad);
      background: #050505;
      color: #fff;
    }
    .evidence-chain .chain-bg {
      position: absolute;
      inset: 0;
      z-index: -2;
    }
    .evidence-chain .chain-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 48%;
      opacity: .34;
      filter: saturate(.75) contrast(1.08);
    }
    .evidence-chain::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(60% 52% at 78% 16%, rgba(21,85,216,.28), transparent 56%),
        linear-gradient(180deg, rgba(5,5,5,.92) 0%, rgba(5,5,5,.78) 45%, #050505 100%);
    }
    .evidence-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.18fr) minmax(300px, .56fr);
      gap: clamp(34px, 6vw, 96px);
      align-items: end;
    }
    .evidence-copy h2 {
      margin-top: clamp(22px, 3vw, 40px);
      max-width: 13ch;
      font-size: clamp(52px, 6vw, 96px);
      line-height: .98;
    }
    .evidence-copy .proof-lead {
      margin-top: clamp(24px, 3vw, 38px);
      max-width: 66ch;
      color: rgba(255,255,255,.74);
      font-size: clamp(16px, 1.35vw, 20px);
      line-height: 1.62;
    }
    .evidence-chain .proof-card {
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 8px;
      padding: clamp(24px, 3vw, 36px);
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .evidence-chain .proof-card small {
      color: rgba(255,255,255,.52);
      font-size: 10px;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .evidence-chain .proof-card strong {
      display: block;
      margin-top: 20px;
      color: #7da4ff;
      font: 300 clamp(36px, 3.7vw, 58px)/1 var(--display);
      letter-spacing: -.045em;
    }
    .evidence-chain .proof-card p {
      margin-top: 20px;
      color: rgba(255,255,255,.7);
      font-size: 14px;
      line-height: 1.58;
    }
    .evidence-chain .metrics {
      margin-top: clamp(42px, 5vw, 74px);
      border-color: rgba(255,255,255,.18);
    }
    .evidence-chain .metric {
      border-color: rgba(255,255,255,.16);
    }
    .evidence-chain .metric strong {
      color: #78a0ff;
      font-size: clamp(42px, 4.8vw, 72px);
      white-space: nowrap;
    }
    .evidence-chain .metric span {
      color: rgba(255,255,255,.58);
    }
    .evidence-chain .chain-top {
      margin-top: clamp(56px, 7vw, 104px);
      padding-top: clamp(28px, 4vw, 48px);
      padding-bottom: clamp(24px, 3vw, 38px);
      border-top: 1px solid rgba(255,255,255,.18);
      border-bottom: 1px solid rgba(255,255,255,.16);
    }
    .evidence-chain .chain-top > div {
      max-width: 760px;
    }
    .chain-kicker {
      margin-top: 14px;
      max-width: 56ch;
      color: rgba(255,255,255,.64);
      font-size: clamp(15px, 1.2vw, 17px);
      line-height: 1.58;
    }
    .evidence-chain .chain-grid {
      margin-top: clamp(26px, 3.6vw, 48px);
      background: rgba(255,255,255,.02);
      box-shadow: 0 28px 90px rgba(0,0,0,.22);
    }
    .evidence-chain .chain-item,
    .evidence-chain .chain-item + .chain-item {
      min-height: clamp(165px, 16vw, 230px);
    }
    @media (max-width: 980px) {
      .evidence-layout {
        grid-template-columns: 1fr;
      }
      .evidence-chain .chain-top {
        display: grid;
      }
      .evidence-chain .chain-cta {
        width: max-content;
      }
    }
    @media (max-width: 640px) {
      .evidence-chain {
        padding: 62px 22px;
      }
      .evidence-copy h2 {
        font-size: clamp(42px, 13vw, 64px);
      }
      .evidence-chain .metrics {
        grid-template-columns: 1fr;
      }
      .evidence-chain .metric,
      .evidence-chain .metric + .metric {
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.14);
      }
      .evidence-chain .metric:last-child {
        border-bottom: 0;
      }
      .evidence-chain .chain-cta {
        width: 100%;
      }
    }

    /* ===== Evidence section refinement: photo + compact technology loop ===== */
    .evidence-chain {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(54px, 5.6vw, 78px) var(--pad);
      background:
        radial-gradient(72% 58% at 86% 10%, rgba(21,85,216,.18), transparent 58%),
        #050505;
    }
    .evidence-chain .chain-bg,
    .evidence-chain .metrics {
      display: none;
    }
    .evidence-chain::after {
      background:
        linear-gradient(180deg, rgba(255,255,255,.04) 0 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px);
      background-size: 120px 120px;
      opacity: .18;
      mask-image: linear-gradient(90deg, transparent, #000 24%, #000 82%, transparent);
    }
    .evidence-layout {
      grid-template-columns: minmax(0, .95fr) minmax(360px, .82fr);
      gap: clamp(34px, 5vw, 82px);
      align-items: center;
    }
    .evidence-copy h2 {
      max-width: 11ch;
      font-size: clamp(48px, 5.2vw, 82px);
      line-height: 1;
    }
    .evidence-copy .proof-lead {
      max-width: 56ch;
      font-size: clamp(15px, 1.2vw, 18px);
      line-height: 1.62;
    }
    .evidence-photo {
      position: relative;
      aspect-ratio: 16 / 10;
      min-height: 240px;
      max-height: 320px;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.04);
    }
    .evidence-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.32)),
        linear-gradient(90deg, rgba(5,5,5,.34), transparent 52%);
      pointer-events: none;
    }
    .evidence-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: saturate(.82) contrast(1.03);
    }
    .evidence-chain .chain-top {
      margin-top: clamp(28px, 4vw, 48px);
      padding: clamp(18px, 2vw, 26px) 0;
      border-color: rgba(255,255,255,.16);
    }
    .chain-kicker {
      max-width: 52ch;
      color: rgba(255,255,255,.62);
    }
    .evidence-chain .chain-grid {
      margin-top: clamp(16px, 2.2vw, 26px);
      border-color: rgba(255,255,255,.14);
      background: rgba(255,255,255,.025);
      box-shadow: none;
    }
    .evidence-chain .chain-item,
    .evidence-chain .chain-item + .chain-item {
      min-height: clamp(120px, 10vw, 152px);
      background: rgba(255,255,255,.025);
    }
    .evidence-chain .chain-line {
      height: 78px;
      margin-top: 8px;
      opacity: .78;
    }
    @media (max-width: 980px) {
      .evidence-chain {
        min-height: auto;
      }
      .evidence-layout {
        grid-template-columns: 1fr;
      }
      .evidence-photo {
        max-height: none;
      }
    }
    @media (max-width: 640px) {
      .evidence-chain {
        padding: 58px 22px;
      }
      .evidence-copy h2 {
        max-width: 10ch;
        font-size: clamp(40px, 12vw, 58px);
      }
      .evidence-photo {
        min-height: 220px;
      }
      .evidence-chain .chain-top {
        margin-top: 34px;
      }
      .evidence-chain .chain-item,
      .evidence-chain .chain-item + .chain-item {
        min-height: 150px;
      }
    }

    /* Evidence section hardening for zoomed desktop / narrow laptop viewports */
    .evidence-chain .evidence-layout {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 520px) !important;
      align-items: center !important;
    }
    .evidence-chain .evidence-photo {
      justify-self: end;
      width: 100%;
      height: clamp(220px, 22vw, 320px) !important;
      min-height: 0 !important;
      max-height: none !important;
      aspect-ratio: auto;
    }
    .evidence-chain .evidence-copy h2 {
      max-width: 10ch;
      font-size: clamp(42px, 5vw, 78px);
    }
    .evidence-chain .proof-lead {
      max-width: 54ch;
    }
    .evidence-chain .chain-top {
      display: flex !important;
      align-items: center;
      justify-content: space-between;
      gap: clamp(20px, 4vw, 60px);
    }
    .evidence-chain .chain-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
    .evidence-chain .chain-item:nth-child(n) {
      border-top: 0;
    }
    .evidence-chain .chain-item:nth-child(2n) {
      border-right: 1px solid rgba(255,255,255,.14);
    }
    .evidence-chain .chain-item:last-child {
      border-right: 0;
    }
    @media (max-width: 860px) {
      .evidence-chain .evidence-layout {
        grid-template-columns: 1fr !important;
      }
      .evidence-chain .evidence-photo {
        justify-self: stretch;
        height: auto !important;
        min-height: 220px !important;
        aspect-ratio: 16 / 10;
      }
      .evidence-chain .chain-top {
        display: grid !important;
      }
      .evidence-chain .chain-grid {
        grid-template-columns: 1fr !important;
      }
      .evidence-chain .chain-item:nth-child(n) {
        border-right: 0;
        border-top: 1px solid rgba(255,255,255,.14);
      }
      .evidence-chain .chain-item:first-child {
        border-top: 0;
      }
    }


    /* Products page: custom / common-core section */
    .custom { background: var(--paper); color: var(--black); padding: clamp(80px, 11vw, 150px) var(--pad); border-top: 1px solid var(--line-dark); }
    .custom .section-head { margin-bottom: clamp(38px, 5vw, 66px); }
    .custom-cta { margin-top: clamp(36px, 4vw, 58px); }


    /* ===== Page transition curtain (JS-driven; works in all browsers) ===== */
    @view-transition { navigation: none; }   /* use the JS curtain below instead */

    #pt {
      position: fixed; inset: 0; z-index: 1000; pointer-events: none;
      display: grid; place-items: center;
      background: #04060c;
      transform: translateY(0);
      animation: pt-reveal .9s var(--ease) .05s forwards;
    }
    #pt.pt-cover { pointer-events: all; animation: pt-cover .42s var(--ease) forwards; }
    #pt.pt-done { animation: none; transform: translateY(-100%); }
    @keyframes pt-reveal { 0%, 26% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
    @keyframes pt-cover { 0% { transform: translateY(100%); } 100% { transform: translateY(0); } }
    .pt-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
    .pt-logo { width: clamp(150px, 18vw, 196px); opacity: .96; }
    .pt-bar { position: relative; width: 92px; height: 2px; background: rgba(255,255,255,.16); overflow: hidden; }
    .pt-bar::after { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 42%; background: var(--blue-bright); animation: pt-scan 1.05s var(--ease) infinite; }
    @keyframes pt-scan { 0% { transform: translateX(-120%); } 100% { transform: translateX(260%); } }
    @media (prefers-reduced-motion: reduce) { #pt { display: none; } }

/* ===== Main page visual pass: hero/product/applications/company ===== */
.hero .eyebrow::before,
.evidence-chain .evidence-copy .eyebrow::before {
  display: none;
}
.hero-content {
  position: relative;
}
.hero-copy {
  max-width: min(820px, 58vw);
}
.hero-product-shot {
  position: absolute;
  right: var(--pad);
  bottom: clamp(96px, 9vw, 140px);
  width: min(31vw, 430px);
  pointer-events: none;
  opacity: .96;
  filter: drop-shadow(0 30px 65px rgba(0,0,0,.42));
}
.hero-product-shot img {
  width: 100%;
  height: auto;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3vw, 34px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.58);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-scroll svg {
  width: 16px;
  height: 16px;
  animation: hero-scroll-pulse 1.8s var(--ease) infinite;
}
@keyframes hero-scroll-pulse {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50% { transform: translateY(5px); opacity: 1; }
}

.evidence-chain .chain-cta {
  background: #050505;
  color: #fff;
  border-color: rgba(255,255,255,.34);
}
.evidence-chain .chain-cta .arrow {
  background: #fff;
  color: #050505;
}
.evidence-chain .chain-cta:hover {
  background: #111;
  border-color: rgba(255,255,255,.58);
}

.product-media img {
  width: min(88%, 860px);
  max-height: 80%;
}
.product.reverse .product-media img {
  width: min(84%, 760px);
  max-height: 80%;
}
.product:hover .product-media img {
  transform: translate(-50%, -52%) scale(1.055) rotate(-1deg);
}
.product-eval {
  background: rgba(8,9,12,.035);
  border-color: rgba(8,9,12,.2);
  color: var(--black);
}
.product-eval .arrow {
  background: rgba(8,9,12,.08);
  color: var(--black);
}
.product-eval:hover {
  background: rgba(8,9,12,.07);
  border-color: rgba(8,9,12,.32);
}
.product-eval:hover .arrow {
  background: var(--black);
  color: #fff;
}

.applications {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #050505;
  color: #fff;
  padding: clamp(64px, 8vw, 108px) var(--pad);
}
.applications .section-head {
  margin-bottom: clamp(28px, 4vw, 46px);
}
.applications .section-head h2 {
  max-width: 11ch;
}
.applications .eyebrow {
  color: rgba(255,255,255,.6);
}
.applications-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
  border: 0;
}
.application {
  min-height: clamp(360px, 36vw, 500px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: #101010;
}
.application::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.78)),
    linear-gradient(0deg, var(--app-tint), var(--app-tint)),
    var(--app-image) center / cover;
  transform: none;
  transition: transform .8s var(--ease), filter .8s var(--ease);
}
.application::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .38;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.22) 0 1px, transparent 1.8px),
    radial-gradient(circle at 76% 62%, rgba(255,255,255,.18) 0 1px, transparent 1.7px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 3px);
  background-size: 9px 9px, 13px 13px, 100% 4px;
  mix-blend-mode: screen;
}
.application > * {
  position: relative;
  z-index: 1;
}
.application .num {
  position: absolute;
  top: clamp(20px, 2.4vw, 30px);
  left: clamp(22px, 2.8vw, 38px);
  color: rgba(255,255,255,.54);
  font-size: 10px;
  letter-spacing: .12em;
}
.application h3 {
  max-width: 9ch;
  font: 300 clamp(30px, 3.1vw, 48px)/1.03 var(--display);
  letter-spacing: -.045em;
  transition: transform .45s var(--ease);
}
.application p {
  display: block;
  max-width: 28ch;
  margin-top: 18px;
  color: rgba(255,255,255,.72);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s var(--ease);
}
.application .app-line {
  margin-top: clamp(34px, 7vw, 92px);
  color: rgba(255,255,255,.86);
  font: 300 clamp(20px, 2vw, 28px)/1.1 var(--display);
  letter-spacing: -.025em;
}
.application .arrow {
  position: absolute;
  right: clamp(20px, 2.5vw, 34px);
  bottom: clamp(22px, 2.8vw, 38px);
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,.12);
  color: #fff;
}
.application:hover {
  padding-inline: clamp(24px, 3vw, 38px);
  color: #fff;
  border-color: rgba(255,255,255,.24);
}
.application:hover::before {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.1);
}
.application:hover h3 {
  transform: translateY(-8px);
}
.application:hover p {
  opacity: 1;
  transform: translateY(0);
}
.application:hover .arrow {
  background: #fff;
  color: #050505;
  transform: none;
}

.company {
  background: #f6f7f9;
  color: var(--black);
  padding: clamp(76px, 8vw, 118px) var(--pad);
}
.company-intro {
  display: grid;
  grid-template-columns: minmax(130px, .42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 84px);
  margin-bottom: clamp(38px, 5vw, 66px);
  align-items: start;
}
.company-intro > div:nth-child(2) {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(310px, .75fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.company-intro h2 {
  max-width: 12ch;
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: 1.02;
}
.company-copy {
  margin-top: 0;
  max-width: 48ch;
  padding-left: clamp(20px, 3vw, 38px);
  border-left: 1px solid rgba(8,9,12,.16);
  color: #4d5057;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.68;
}
.careers-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  margin-top: 0;
  padding: clamp(30px, 4vw, 48px);
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(70% 130% at 92% 0%, rgba(21,85,216,.32), transparent 58%),
    linear-gradient(180deg, #08090c 0%, #050505 100%);
  color: #fff;
}
.careers-panel small {
  color: rgba(255,255,255,.58);
}
.careers-panel strong {
  margin-top: 20px;
  max-width: 18ch;
  color: #fff;
  font: 300 clamp(34px, 4vw, 60px)/1.02 var(--display);
  letter-spacing: -.04em;
}
.careers-panel p {
  margin-top: 20px;
  max-width: 54ch;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.65;
}
.careers-panel .button {
  background: #fff;
  color: #050505;
}
.careers-panel .button .arrow {
  background: var(--blue);
  color: #fff;
}

@media (max-width: 1120px) {
  .hero-copy {
    max-width: min(760px, 64vw);
  }
  .hero-product-shot {
    width: min(32vw, 340px);
    opacity: .86;
  }
  .applications-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .application {
    min-height: 340px;
  }
  .company-intro > div:nth-child(2) {
    grid-template-columns: 1fr;
  }
  .company-copy {
    max-width: 66ch;
  }
}

@media (max-width: 760px) {
  .hero-copy {
    max-width: none;
  }
  .hero-product-shot {
    display: none;
  }
  .hero-scroll {
    display: none;
  }
  .product-media img,
  .product.reverse .product-media img {
    width: 88%;
    max-height: 76%;
  }
  .applications {
    min-height: auto;
    padding: 70px 22px;
  }
  .applications-list {
    grid-template-columns: 1fr;
  }
  .application {
    min-height: 300px;
  }
  .application p {
    opacity: 1;
    transform: none;
  }
  .application .app-line {
    margin-top: 34px;
  }
  .company {
    padding: 70px 22px;
  }
  .company-intro,
  .company-intro > div:nth-child(2),
  .careers-panel {
    grid-template-columns: 1fr;
  }
  .company-copy {
    padding-left: 0;
    border-left: 0;
  }
}

/* ===== Hero vertical fit ===== */
.hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
}
.hero-content {
  height: 100%;
  min-height: 0;
  align-items: center;
  padding: clamp(92px, 12vh, 128px) var(--pad) clamp(50px, 7vh, 72px);
}
.hero-copy {
  transform: translateY(clamp(-38px, -4vh, -22px));
}
.hero-actions {
  margin-top: clamp(24px, 3vh, 38px);
}
.hero-product-shot {
  top: 50%;
  bottom: auto;
  transform: translateY(-42%);
}
.hero-scroll {
  bottom: clamp(14px, 2.2vh, 24px);
}
@media (max-width: 1120px) {
  .hero-content {
    padding-top: clamp(86px, 11vh, 112px);
  }
  .hero-copy {
    transform: translateY(clamp(-26px, -3vh, -14px));
  }
  .hero-product-shot {
    transform: translateY(-36%);
  }
}
@media (max-width: 760px) {
  .hero {
    max-height: none;
  }
  .hero-content {
    min-height: 100svh;
    height: auto;
    align-items: flex-end;
    padding: 104px 22px 42px;
  }
  .hero-copy {
    transform: none;
  }
}

/* ===== Requested layout corrections ===== */
.hero-product-shot {
  transform: translateY(-62%);
}
@media (max-width: 1120px) {
  .hero-product-shot {
    transform: translateY(-54%);
  }
}

.evidence-chain .evidence-copy h2 {
  max-width: 16ch;
}

.applications .section-head h2 {
  max-width: none;
  font-size: clamp(44px, 5.4vw, 82px);
  white-space: nowrap;
}
.application {
  cursor: default;
}
.application::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.66)),
    linear-gradient(0deg, var(--app-tint), var(--app-tint)),
    var(--app-image) center / cover;
}
.application::after {
  opacity: .13;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.2) 0 1px, transparent 1.8px),
    radial-gradient(circle at 76% 62%, rgba(255,255,255,.14) 0 1px, transparent 1.7px);
  background-size: 11px 11px, 17px 17px;
}
.application .arrow {
  display: none;
}
.application:hover h3 {
  transform: none;
}
.application:hover::before {
  transform: scale(1.018);
  filter: none;
}

.company-intro > div:nth-child(2) {
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.38fr);
  gap: clamp(28px, 4vw, 62px);
}
.company-intro h2 {
  grid-column: 2;
  grid-row: 1;
  max-width: 24ch;
  font-size: clamp(38px, 3.8vw, 64px);
}
.company-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 52ch;
  padding-left: 0;
  padding-right: clamp(20px, 3vw, 38px);
  border-left: 0;
  border-right: 1px solid rgba(8,9,12,.16);
}
.footer-form {
  display: grid;
  justify-items: center;
}
.footer-form-head,
.contact-form {
  width: min(1120px, 100%);
  margin-inline: auto;
}
.footer-form-head {
  text-align: center;
  align-items: center;
}
.footer-form-head h3 {
  max-width: 18ch;
}
.contact-submit {
  justify-self: center;
}
.footer-form .form-actions {
  justify-content: center;
}
@media (max-width: 1120px) {
  .applications .section-head h2 {
    white-space: normal;
  }
}
@media (max-width: 760px) {
  .applications .section-head h2 {
    white-space: normal;
  }
  .company-intro,
  .company-intro > div:nth-child(2) {
    grid-template-columns: 1fr;
  }
  .company-intro h2,
  .company-copy {
    grid-column: auto;
    grid-row: auto;
  }
  .company-copy {
    padding-right: 0;
    border-right: 0;
  }
}

/* ===== Hero background, applications CTA, company editorial layout ===== */
.hero-media img {
  object-position: center 54%;
  opacity: .9;
  filter: saturate(1.04) contrast(1.08);
}
.hero-media::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.34) 50%, rgba(0,0,0,.44) 100%),
    linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.12) 46%, rgba(0,0,0,.42) 100%);
}
.hero-product-shot {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}
.hero-product-shot.visible {
  transform: translateY(-50%);
}
.applications-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 4vw, 52px);
}
.applications-cta {
  background: #050505;
  color: #fff;
  border-color: rgba(255,255,255,.34);
}
.applications-cta .arrow {
  background: #fff;
  color: #050505;
}
.applications-cta:hover {
  background: #111;
  color: #fff;
  border-color: rgba(255,255,255,.58);
}
.company-intro {
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.6vw, 34px);
  margin-bottom: clamp(42px, 5vw, 72px);
}
.company-intro > div:nth-child(2) {
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 54px);
}
.company-intro h2 {
  grid-column: auto;
  grid-row: auto;
  max-width: 900px;
  font-size: clamp(46px, 5.4vw, 86px);
}
.company-copy {
  grid-column: auto;
  grid-row: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 78px);
  max-width: 1120px;
  padding: 0;
  border: 0;
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.72;
}
@media (max-width: 1120px) {
  .hero-product-shot {
    transform: translateY(-50%);
  }
  .hero-product-shot.visible {
    transform: translateY(-50%);
  }
}
@media (max-width: 760px) {
  .hero-media img {
    object-position: 56% center;
  }
  .hero-copy {
    position: relative;
    z-index: 2;
  }
  .hero-product-shot {
    display: block;
    right: 22px;
    top: 50%;
    width: min(29vw, 112px);
    opacity: .78;
    z-index: 1;
    transform: translateY(-50%);
  }
  .hero-product-shot.visible {
    transform: translateY(-50%);
  }
  .applications-actions {
    justify-content: stretch;
  }
  .applications-cta {
    width: 100%;
    justify-content: space-between;
  }
  .company-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ===== Pilot path: horizontal placement under Europe ===== */
.pilot {
  min-height: auto;
  padding: clamp(58px, 6.5vw, 92px) var(--pad);
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: stretch;
  background:
    radial-gradient(70% 120% at 92% 0%, rgba(255,255,255,.13), transparent 58%),
    linear-gradient(135deg, #1555d8 0%, #0a2f8f 100%);
}
.pilot-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 28px);
  align-content: center;
}
.pilot-intro h2 {
  max-width: 12.5ch;
  font-size: clamp(42px, 4.8vw, 76px);
}
.pilot-lead {
  max-width: 46ch;
  margin: 0 0 clamp(18px, 2vw, 26px);
}
.pilot .pilot-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  overflow: hidden;
}
.pilot .pilot-step {
  min-height: clamp(210px, 20vw, 280px);
  padding: clamp(22px, 2.4vw, 34px);
  border-right: 1px solid rgba(255,255,255,.2);
  border-top: 0;
}
.pilot .pilot-step:last-child {
  border-right: 0;
}
.pilot .pilot-step strong {
  max-width: 12ch;
  font-size: clamp(26px, 2.4vw, 38px);
}
.pilot .pilot-step p {
  max-width: 24ch;
}
@media (max-width: 1100px) {
  .pilot {
    grid-template-columns: 1fr;
  }
  .pilot-intro h2,
  .pilot-lead {
    max-width: 720px;
  }
}
@media (max-width: 760px) {
  .pilot {
    padding: 58px 22px 64px;
    gap: 28px;
  }
  .pilot .pilot-steps {
    grid-template-columns: 1fr;
  }
  .pilot .pilot-step {
    min-height: 150px;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,.18);
  }
  .pilot .pilot-step:first-child {
    border-top: 0;
  }
}

/* ===== Contact form behavior ===== */
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-submit[disabled] {
  cursor: wait;
  opacity: .62;
}
.footer-form .contact-submit.button:hover,
.footer-form .contact-submit.button:focus-visible {
  background: #0f57df;
  color: #fff;
  border-color: transparent;
}
.footer-form .contact-submit.button:hover .arrow,
.footer-form .contact-submit.button:focus-visible .arrow {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.form-status.is-success {
  color: #1b7f45;
}
.form-status.is-error {
  color: #b42318;
}

/* ===== Careers page rebuild ===== */
.careers-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .62fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  padding: clamp(120px, 14vw, 180px) var(--pad) clamp(64px, 8vw, 110px);
  background:
    radial-gradient(60% 70% at 82% 22%, rgba(21,85,216,.28), transparent 58%),
    linear-gradient(180deg, #050505 0%, #07090e 100%);
  color: #fff;
}
.careers-hero h1 {
  max-width: 12.5ch;
  font-size: clamp(58px, 7.2vw, 116px);
  line-height: .96;
}
.careers-hero-note {
  align-self: end;
  display: grid;
  gap: 18px;
  max-width: 46ch;
  color: rgba(255,255,255,.7);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
}
.careers-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.careers-hero-actions > span {
  color: rgba(255,255,255,.52);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.careers-primary-link {
  background: #fff;
  color: #050505;
  border-color: transparent;
}
.careers-primary-link .arrow {
  background: var(--blue);
  color: #fff;
}
.careers-work {
  background: var(--paper);
  color: var(--black);
  padding: clamp(72px, 8vw, 118px) var(--pad);
}
.careers-work .section-head {
  margin-bottom: clamp(34px, 5vw, 66px);
}
.careers-work .section-head h2 {
  max-width: 14ch;
  font-size: clamp(44px, 5.4vw, 82px);
}
.careers-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(8,9,12,.12);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.careers-work-item {
  min-height: clamp(220px, 22vw, 310px);
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid rgba(8,9,12,.1);
}
.careers-work-item:last-child {
  border-right: 0;
}
.careers-work-item small,
.role-index,
.role-meta {
  color: #858892;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.careers-work-item strong {
  display: block;
  margin-top: clamp(42px, 6vw, 84px);
  max-width: 12ch;
  font: 300 clamp(28px, 3vw, 46px)/1.02 var(--display);
  letter-spacing: -.04em;
}
.careers-work-item p {
  margin-top: 18px;
  max-width: 33ch;
  color: #5c6068;
  font-size: 15px;
  line-height: 1.6;
}
.careers-roles {
  scroll-margin-top: 110px;
  min-height: 100svh;
  background:
    radial-gradient(52% 62% at 82% 16%, rgba(42,112,255,.12), transparent 62%),
    linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
  color: var(--black);
  padding: clamp(86px, 9vw, 142px) var(--pad);
}
.careers-roles-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .48fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 64px);
}
.careers-roles .eyebrow {
  color: #6d7480;
}
.careers-roles-head h2 {
  max-width: 13ch;
  font-size: clamp(56px, 7vw, 112px);
  color: var(--black);
}
.careers-roles-head p {
  max-width: 46ch;
  color: #5f6672;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.64;
}
.role-list {
  border: 1px solid rgba(8,9,12,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 24px 80px rgba(12,24,48,.08);
  overflow: hidden;
}
.role-item {
  border-bottom: 1px solid rgba(8,9,12,.1);
}
.role-item:last-child {
  border-bottom: 0;
}
.role-item summary {
  min-height: 118px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(180px, auto) 44px;
  gap: clamp(16px, 3vw, 42px);
  align-items: center;
  list-style: none;
  cursor: pointer;
  color: var(--black);
  padding-inline: clamp(18px, 2.6vw, 34px);
  transition: background .25s;
}
.role-item summary:hover {
  background: rgba(42,112,255,.055);
}
.role-item summary::-webkit-details-marker {
  display: none;
}
.careers-roles .role-index,
.careers-roles .role-meta {
  color: #7a808a;
}
.role-title {
  font: 300 clamp(34px, 4.4vw, 72px)/1.02 var(--display);
  letter-spacing: -.045em;
}
.role-meta {
  justify-self: end;
  text-align: right;
}
.role-toggle {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(8,9,12,.22);
  border-radius: 50%;
  position: relative;
}
.role-toggle::before,
.role-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.role-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity .2s;
}
.role-item[open] .role-toggle::after {
  opacity: 0;
}
.role-body {
  padding: 0 clamp(18px, 2.6vw, 34px) clamp(34px, 4vw, 58px) calc(64px + clamp(18px, 2.6vw, 34px) + clamp(16px, 3vw, 42px));
}
.role-body p {
  max-width: 70ch;
  color: #3d424c;
  font-size: clamp(16px, 1.14vw, 18px);
  line-height: 1.66;
}
.role-body ul {
  display: grid;
  gap: 10px;
  max-width: 72ch;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #626975;
  font-size: 15px;
  line-height: 1.58;
}
.role-body li {
  position: relative;
  padding-left: 18px;
}
.role-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.role-apply {
  align-self: end;
  white-space: nowrap;
}
.role-apply-note {
  margin-top: clamp(24px, 3vw, 38px);
  padding-top: clamp(18px, 2vw, 26px);
  border-top: 1px solid rgba(8,9,12,.12);
  color: #363b44;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.55;
}
.role-apply-note a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 1040px) {
  .careers-hero,
  .careers-roles-head {
    grid-template-columns: 1fr;
  }
  .careers-work-grid {
    grid-template-columns: 1fr;
  }
  .careers-work-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(8,9,12,.1);
  }
  .careers-work-item:last-child {
    border-bottom: 0;
  }
  .careers-work-item strong {
    margin-top: 34px;
  }
}
@media (max-width: 720px) {
  .careers-hero {
    min-height: auto;
    padding: 118px 22px 64px;
  }
  .careers-hero h1 {
    font-size: clamp(46px, 13vw, 68px);
  }
  .careers-work,
  .careers-roles {
    padding: 62px 22px;
  }
  .careers-hero-actions {
    align-items: stretch;
  }
  .careers-primary-link {
    width: 100%;
    justify-content: space-between;
  }
  .careers-roles-head h2 {
    font-size: clamp(46px, 13vw, 68px);
  }
  .role-item summary {
    min-height: 128px;
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    gap: 16px;
    padding-inline: 18px;
  }
  .role-title {
    font-size: clamp(32px, 11vw, 50px);
  }
  .role-meta {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
  .role-toggle {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
  .role-body {
    padding-inline: 18px;
  }
  .role-apply {
    width: 100%;
    justify-content: space-between;
  }
}


    /* ===== Technology page ===== */
    /* Plain-language explainer */
    .explainer { background: var(--paper); color: var(--black); padding: clamp(82px, 11vw, 150px) var(--pad); }
    .explainer-lead { margin-top: clamp(26px, 3vw, 44px); }
    .explainer-lead .lead-big { max-width: 30ch; font: 300 clamp(22px, 2.4vw, 34px)/1.32 var(--display); letter-spacing: -.025em; color: #14161a; }
    .explainer-lead .lead-big strong { font-weight: 500; }
    .explainer-lead .lead-sub { margin-top: 22px; max-width: 56ch; font-size: 16px; line-height: 1.72; color: #5f6269; }
    .explainer-lead .lead-sub em { color: var(--black); font-style: italic; }
    .explainer .europe-points { margin-top: clamp(46px, 5vw, 78px); }

    /* GNSS-denied diagram band */
    .gnss-diagram { position: relative; isolation: isolate; overflow: hidden; color: var(--white);
      background: radial-gradient(85% 80% at 82% 0%, rgba(21,85,216,.18), transparent 55%), linear-gradient(180deg, #070b14 0%, #04060c 100%);
      padding: clamp(82px, 11vw, 150px) var(--pad); }
    .gnss-diagram .gd-head { max-width: 62ch; }
    .gnss-diagram .accent { color: #6f9cff; }
    .gnss-diagram .gd-lead { margin-top: 20px; max-width: 56ch; color: rgba(255,255,255,.66); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.62; }
    .gnss-figure { margin: clamp(40px, 5vw, 66px) auto 0; max-width: 1040px; }
    .gnss-figure svg { width: 100%; height: auto; display: block; overflow: visible; }
    .gd-base { stroke: rgba(255,255,255,.2); }
    .gd-sat { stroke: rgba(255,255,255,.44); }
    .gd-gnss { stroke: rgba(255,255,255,.92); }
    .gd-ins { stroke: #6f9cff; }
    .gd-x { stroke: #ff7a6b; }
    .gd-label { fill: rgba(255,255,255,.5); font: 600 12px/1 var(--body); letter-spacing: .14em; text-transform: uppercase; }
    .gd-label.gd-red { fill: #ff9b8f; }
    .gd-label.gd-blue { fill: #8fb0ff; }
    .gd-draw { stroke-dasharray: 100; stroke-dashoffset: 0; }
    .gnss-figure.visible .gd-gnss.gd-draw { animation: gd-draw 1s var(--ease) both; }
    .gnss-figure.visible .gd-ins.gd-draw { animation: gd-draw .95s var(--ease) .7s both; }
    .gnss-figure.visible .gd-sat-g { animation: gd-fade .6s ease .3s both; }
    .gnss-figure.visible .gd-jam-g { animation: gd-fade .5s ease .95s both; }
    .gnss-figure.visible .gd-target { animation: gd-fade .5s ease 1.5s both; }
    @keyframes gd-draw { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }
    @keyframes gd-fade { from { opacity: 0; } to { opacity: 1; } }

    /* Chain: plain-language line (technology page) */
    .chain-plain { margin-top: 9px; color: rgba(255,255,255,.92); font-size: 15px; line-height: 1.4; max-width: 24ch; }

    /* By-the-numbers dark band */
    .techstats { background: var(--black); color: var(--white); padding: clamp(78px, 10vw, 140px) var(--pad); }
    .techstats .metrics { margin-top: clamp(40px, 5vw, 70px); }

    @media (max-width: 760px) { .explainer-lead .lead-big { font-size: clamp(21px, 6vw, 27px); } }

    @media (max-width: 760px) { .gd-label { font-size: 23px; letter-spacing: .05em; } }


    /* GNSS diagram: flying craft + radar ping (looping, alive) */
    .gd-craft { display: none; }
    @supports (offset-path: path("M0 0L1 1")) {
      .gd-craft {
        display: block; fill: #fff; opacity: 0;
        offset-path: path("M90 232 C 230 232 300 172 410 150 S 505 132 540 126 C 660 118 780 104 900 96");
        offset-distance: 0%; offset-rotate: 0deg;
        filter: drop-shadow(0 0 6px rgba(150,185,255,.95));
      }
      .gnss-figure.visible .gd-craft { animation: gd-fly 3.8s cubic-bezier(.45,0,.55,1) 1.25s infinite; }
    }
    @keyframes gd-fly {
      0%   { offset-distance: 0%;   opacity: 0; fill: #fff; }
      6%   { opacity: 1; }
      53%  { fill: #d8e6ff; }
      59%  { fill: #6f9cff; }
      88%  { opacity: 1; }
      100% { offset-distance: 100%; opacity: 0; fill: #6f9cff; }
    }
    .gd-ping { stroke: #6f9cff; stroke-width: 1.6; transform-box: fill-box; transform-origin: center; opacity: 0; }
    .gnss-figure.visible .gd-ping { animation: gd-ping 2.6s ease 2s infinite; }
    @keyframes gd-ping {
      0%   { transform: scale(.55); opacity: .85; }
      70%  { opacity: 0; }
      100% { transform: scale(2.7); opacity: 0; }
    }
    @media (prefers-reduced-motion: reduce) { .gd-craft, .gd-ping { display: none !important; } }

/* ===== Unified button system ===== */
.button,
button.button {
  --btn-bg: var(--blue);
  --btn-color: #fff;
  --btn-border: transparent;
  --btn-hover-bg: #0f57df;
  --btn-hover-color: #fff;
  --btn-hover-border: transparent;
  --btn-arrow-bg: rgba(255,255,255,.16);
  --btn-arrow-color: currentColor;
  --btn-hover-arrow-bg: rgba(255,255,255,.24);
  --btn-hover-arrow-color: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 22px);
  min-height: 48px;
  max-width: 100%;
  padding: 7px 8px 7px clamp(18px, 1.8vw, 24px);
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
  text-align: left;
  white-space: normal;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color .26s var(--ease),
    border-color .26s var(--ease),
    color .26s var(--ease),
    box-shadow .26s var(--ease);
}
.button .arrow,
button.button .arrow {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  background: var(--btn-arrow-bg);
  color: var(--btn-arrow-color);
  transition:
    transform .32s var(--ease),
    background-color .26s var(--ease),
    color .26s var(--ease);
}
.button:hover,
.button:focus-visible,
button.button:hover,
button.button:focus-visible {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-color);
  border-color: var(--btn-hover-border);
}
.button:hover .arrow,
.button:focus-visible .arrow,
button.button:hover .arrow,
button.button:focus-visible .arrow {
  transform: translateX(3px);
  background: var(--btn-hover-arrow-bg);
  color: var(--btn-hover-arrow-color);
}
.button:focus-visible,
button.button:focus-visible,
.text-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(57,120,255,.28);
}
.button[disabled],
button.button[disabled],
.contact-submit[disabled] {
  cursor: wait;
  opacity: .62;
  pointer-events: none;
}

.button.light,
.careers-primary-link {
  --btn-bg: #fff;
  --btn-color: #050505;
  --btn-border: transparent;
  --btn-hover-bg: #f3f6fb;
  --btn-hover-color: #050505;
  --btn-hover-border: transparent;
  --btn-arrow-bg: var(--blue);
  --btn-arrow-color: #fff;
  --btn-hover-arrow-bg: #0f57df;
  --btn-hover-arrow-color: #fff;
}
.button.outline,
.hero-secondary {
  --btn-bg: rgba(255,255,255,.055);
  --btn-color: #fff;
  --btn-border: rgba(255,255,255,.24);
  --btn-hover-bg: rgba(255,255,255,.11);
  --btn-hover-color: #fff;
  --btn-hover-border: rgba(255,255,255,.42);
  --btn-arrow-bg: rgba(255,255,255,.12);
  --btn-arrow-color: #fff;
  --btn-hover-arrow-bg: rgba(255,255,255,.2);
  --btn-hover-arrow-color: #fff;
}
.product-cta,
.applications-cta,
.evidence-chain .chain-cta {
  --btn-bg: #050505;
  --btn-color: #fff;
  --btn-border: #050505;
  --btn-hover-bg: #111318;
  --btn-hover-color: #fff;
  --btn-hover-border: #111318;
  --btn-arrow-bg: rgba(255,255,255,.14);
  --btn-arrow-color: #fff;
  --btn-hover-arrow-bg: var(--blue);
  --btn-hover-arrow-color: #fff;
}
.product-eval,
.button.product-eval {
  --btn-bg: rgba(8,9,12,.035);
  --btn-color: var(--black);
  --btn-border: rgba(8,9,12,.2);
  --btn-hover-bg: #050505;
  --btn-hover-color: #fff;
  --btn-hover-border: #050505;
  --btn-arrow-bg: rgba(8,9,12,.08);
  --btn-arrow-color: var(--black);
  --btn-hover-arrow-bg: var(--blue);
  --btn-hover-arrow-color: #fff;
}
.chain .chain-cta,
.pilot .button,
.contact-submit {
  --btn-bg: var(--blue);
  --btn-color: #fff;
  --btn-border: transparent;
  --btn-hover-bg: #0f57df;
  --btn-hover-color: #fff;
  --btn-hover-border: transparent;
  --btn-arrow-bg: rgba(255,255,255,.16);
  --btn-arrow-color: #fff;
  --btn-hover-arrow-bg: rgba(255,255,255,.24);
  --btn-hover-arrow-color: #fff;
}
.footer-form .contact-submit.button:hover,
.footer-form .contact-submit.button:focus-visible {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-color);
  border-color: var(--btn-hover-border);
}
.footer-form .contact-submit.button:hover .arrow,
.footer-form .contact-submit.button:focus-visible .arrow {
  background: var(--btn-hover-arrow-bg);
  color: var(--btn-hover-arrow-color);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  transition: color .26s var(--ease), border-color .26s var(--ease), gap .26s var(--ease), opacity .26s var(--ease);
}
.text-link:hover,
.text-link:focus-visible {
  gap: 11px;
  opacity: .82;
}
.product-actions .text-link {
  min-height: 48px;
  width: auto;
  padding: 0 20px;
  border: 1px solid rgba(8,9,12,.2);
  border-radius: 999px;
  color: var(--black);
  opacity: 1;
}
.product-actions .text-link:hover,
.product-actions .text-link:focus-visible {
  gap: 8px;
  background: #050505;
  border-color: #050505;
  color: #fff;
}

@media (max-width: 760px) {
  .button,
  button.button {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 8px 8px 18px;
    font-size: 14px;
  }
  .button .arrow,
  button.button .arrow {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
  .hero-actions,
  .product-actions,
  .applications-actions,
  .custom-cta,
  .form-actions {
    width: 100%;
  }
  .product-actions .text-link {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }
  .comparison .text-link {
    min-height: 40px;
  }
}

@media (hover: none) {
  .button:hover .arrow,
  button.button:hover .arrow {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  button.button,
  .button .arrow,
  button.button .arrow,
  .text-link {
    transition-duration: .01ms !important;
  }
  .button:hover .arrow,
  .button:focus-visible .arrow,
  button.button:hover .arrow,
  button.button:focus-visible .arrow {
    transform: none;
  }
}

/* Structure, SEO semantics and new product page elements */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.intro h1,
.intro h2 {
  max-width: 980px;
  font-size: clamp(45px, 6.4vw, 98px);
}
.intro h1 em,
.intro h2 em {
  color: var(--blue);
  font-style: normal;
}
.section-head h1,
.section-head h2 {
  max-width: 900px;
  font-size: clamp(48px, 6vw, 92px);
}
.product-copy h1,
.product-copy h2 {
  max-width: 11ch;
  margin-top: clamp(18px, 2.6vw, 36px);
  font-size: clamp(54px, 5.6vw, 92px);
  line-height: .98;
}
.product-copy h1 small,
.product-copy h2 small {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: clamp(14px, 1.1vw, 18px);
  letter-spacing: .08em;
}
.careers-roles-head h1,
.careers-roles-head h2 {
  max-width: 13ch;
  font-size: clamp(56px, 7vw, 112px);
  color: var(--black);
}

.product-space .product-copy h2,
.product-lattice .product-copy h2 {
  max-width: 10ch;
}
.product-media-space {
  background: #04070f;
}
.product-media-space::before {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 44%, rgba(84,132,255,.45), transparent 35%),
    radial-gradient(circle at 62% 62%, rgba(255,255,255,.12), transparent 24%),
    linear-gradient(145deg, #101722 0%, #05070d 58%, #020307 100%);
}
.product-media-space::after {
  z-index: 3;
}
.product-media-space img {
  position: absolute;
  z-index: 2;
  width: min(108%, 940px);
  height: auto;
  max-height: 92%;
  left: 50%;
  top: 50%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 58px 70px rgba(0,0,0,.64));
}
.product:hover .product-media-space img {
  transform: translate(-50%, -53%) scale(1.035) rotate(-1deg);
}
.product-soon {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 54px);
  top: clamp(24px, 4vw, 54px);
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: rgba(0,0,0,.26);
  color: rgba(255,255,255,.82);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.compare-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-scroll .compare-table {
  min-width: 920px;
}

.faq {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f6fa 100%);
  color: var(--black);
  padding: clamp(82px, 11vw, 150px) var(--pad);
  border-top: 1px solid rgba(8,9,12,.1);
}
.faq .section-head {
  margin-bottom: clamp(34px, 5vw, 68px);
}
.faq .eyebrow {
  color: #6d7480;
}
.faq .section-head-sub {
  max-width: 56ch;
}
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 1040px;
  margin-left: auto;
}
.faq-item {
  border: 1px solid rgba(8,9,12,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 20px 70px rgba(13,27,55,.06);
  overflow: hidden;
}
.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 20px clamp(54px, 5vw, 78px) 20px clamp(20px, 2.8vw, 34px);
  color: #111419;
  font: 400 clamp(18px, 1.6vw, 24px)/1.2 var(--display);
  letter-spacing: -.02em;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "";
  position: absolute;
  right: clamp(20px, 2.8vw, 34px);
  width: 16px;
  height: 16px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform .26s var(--ease);
  opacity: .55;
}
.faq-item[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}
.faq-item p {
  margin: 0;
  max-width: 78ch;
  padding: 0 clamp(20px, 2.8vw, 34px) 24px;
  color: #5f6672;
  font-size: 15px;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .product-media-space img,
  .product:hover .product-media-space img {
    width: min(104%, 680px);
    transform: translate(-50%, -50%);
  }
  .compare-scroll {
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
  }
  .faq-list {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .intro h1,
  .intro h2,
  .section-head h1,
  .section-head h2 {
    font-size: clamp(34px, 10vw, 52px);
  }
  .product-copy h1,
  .product-copy h2,
  .careers-roles-head h1,
  .careers-roles-head h2 {
    font-size: clamp(42px, 14vw, 64px);
  }
  .faq {
    padding-block: 86px;
  }
  .faq-item summary {
    min-height: 64px;
  }
}
