/* Rusianto Bersaudara Website Styles — extracted from original index.html. */
:root {
      --bg: #020812;
      --bg-2: #04182a;
      --bg-3: #06315a;
      --ink: #f6fbff;
      --muted: rgba(229, 240, 248, .72);
      --soft: rgba(229, 240, 248, .52);
      --line: rgba(0, 116, 213, .20);
      --line-strong: rgba(0, 116, 213, .44);
      --primary: #00437E;
      --secondary: #0074D5;
      --primary-rgb: 0, 67, 126;
      --secondary-rgb: 0, 116, 213;
      --cyan: #0074D5;
      --blue: #00437E;
      --teal: #00437E;
      --green: #0074D5;
      --gold: #0074D5;
      --danger: #0074D5;
      --glass: rgba(255,255,255,.075);
      --glass-strong: rgba(255,255,255,.12);
      --shadow: 0 30px 90px rgba(0,0,0,.42);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 16px;
      --max: 1240px;
      --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --display: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
    }

    @font-face {
      font-family: "Space Grotesk";
      font-style: normal;
      font-weight: 300 700;
      src: local("Space Grotesk");
      font-display: swap;
    }

    @font-face {
      font-family: Inter;
      font-style: normal;
      font-weight: 100 900;
      src: local("Inter");
      font-display: swap;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
      color: var(--ink);
    }

    body {
      margin: 0;
      font-family: var(--font);
      color: var(--ink);
      background:
        radial-gradient(circle at 18% 8%, rgba(0,116,213,.16), transparent 32%),
        radial-gradient(circle at 82% 12%, rgba(0,67,126,.09), transparent 30%),
        radial-gradient(circle at 60% 72%, rgba(0,67,126,.12), transparent 36%),
        linear-gradient(180deg, #03070d 0%, #061424 42%, #050b14 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -3;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
      opacity: .45;
      background: linear-gradient(130deg, transparent, rgba(255,255,255,.04), transparent 58%);
      animation: ambientShift 14s linear infinite;
    }

    @keyframes ambientShift {
      0% { transform: translateX(-20%) translateY(-10%) rotate(0deg); }
      50% { transform: translateX(16%) translateY(8%) rotate(3deg); }
      100% { transform: translateX(-20%) translateY(-10%) rotate(0deg); }
    }

    ::selection {
      color: #03101d;
      background: var(--cyan);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    .page-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 3px;
      z-index: 9999;
      background: linear-gradient(90deg, var(--cyan), var(--teal), var(--blue));
      box-shadow: 0 0 20px rgba(0,116,213,.8);
    }

    .cursor-glow {
      position: fixed;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
      opacity: .18;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(0,116,213,.42), rgba(0,67,126,.16) 42%, transparent 70%);
      filter: blur(18px);
      mix-blend-mode: screen;
    }

    .loader {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 50% 45%, rgba(0,116,213,.12), transparent 38%),
        linear-gradient(180deg, #02060c, #061424);
      transition: opacity .8s ease, visibility .8s ease;
    }

    .loader.is-hidden {
      opacity: 0;
      visibility: hidden;
    }

    .loader-card {
      width: min(92vw, 460px);
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: 30px;
      background: rgba(255,255,255,.055);
      backdrop-filter: blur(22px);
      box-shadow: var(--shadow);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .loader-card::before {
      content: "";
      position: absolute;
      inset: -2px;
      background: conic-gradient(from 180deg, transparent, rgba(0,116,213,.7), transparent, rgba(0,67,126,.5), transparent);
      animation: spin 2.6s linear infinite;
      z-index: -2;
    }

    .loader-card::after {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: 29px;
      background: #061424;
      z-index: -1;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .loader-mark {
      width: 76px;
      height: 76px;
      margin: 0 auto 18px;
      display: grid;
      place-items: center;
      border-radius: 24px;
      color: #03101d;
      font-weight: 900;
      letter-spacing: -.12em;
      background: linear-gradient(135deg, var(--cyan), var(--teal));
      box-shadow: 0 0 60px rgba(0,116,213,.34);
    }

    .loader-card h1 {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(1.3rem, 4vw, 2.1rem);
      letter-spacing: -.04em;
    }

    .loader-line {
      height: 4px;
      margin-top: 22px;
      overflow: hidden;
      border-radius: 99px;
      background: rgba(255,255,255,.08);
    }

    .loader-line span {
      display: block;
      width: 45%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, transparent, var(--cyan), var(--teal));
      animation: loading 1.4s ease-in-out infinite;
    }

    @keyframes loading {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(245%); }
    }

    .container {
      width: min(calc(100% - 40px), var(--max));
      margin-inline: auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: .76rem;
      font-weight: 800;
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 16px var(--cyan);
    }

    .section {
      padding: 110px 0;
      position: relative;
    }

    .section.compact {
      padding: 72px 0;
    }

    .section-header {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(280px, .65fr);
      gap: 34px;
      align-items: end;
      margin-bottom: 44px;
    }

    .section-kicker {
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: .78rem;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .section-title {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(2.4rem, 6vw, 5.65rem);
      line-height: .92;
      letter-spacing: -.075em;
    }

    .section-title span {
      color: transparent;
      -webkit-text-stroke: 1px rgba(235,250,255,.7);
    }

    .section-lead {
      margin: 0;
      color: var(--muted);
      font-size: clamp(1rem, 1.3vw, 1.17rem);
      line-height: 1.8;
    }

    .glass {
      border: 1px solid var(--line);
      background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
      backdrop-filter: blur(22px);
      box-shadow: var(--shadow);
    }

    .shine {
      position: relative;
      overflow: hidden;
    }

    .shine::after {
      content: "";
      position: absolute;
      inset: -120% -50%;
      background: linear-gradient(120deg, transparent 42%, rgba(255,255,255,.16) 50%, transparent 58%);
      transform: translateX(-60%);
      transition: transform .9s ease;
      pointer-events: none;
    }

    .shine:hover::after {
      transform: translateX(60%);
    }

    .nav {
      position: fixed;
      inset: 18px 0 auto 0;
      z-index: 900;
      pointer-events: none;
    }

    .nav-inner {
      width: min(calc(100% - 38px), 1320px);
      margin-inline: auto;
      pointer-events: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 13px 14px 13px 16px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 999px;
      background: rgba(3,10,18,.56);
      backdrop-filter: blur(28px);
      box-shadow: 0 18px 60px rgba(0,0,0,.32);
      transition: transform .35s ease, background .35s ease, border-color .35s ease;
    }

    .nav.is-scrolled .nav-inner {
      background: rgba(3,10,18,.78);
      border-color: rgba(0,116,213,.22);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 13px;
      min-width: max-content;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      color: #03101d;
      font-family: var(--display);
      font-weight: 900;
      font-size: 1rem;
      letter-spacing: -.13em;
      background:
        linear-gradient(135deg, rgba(0,116,213,1), rgba(0,67,126,1));
      box-shadow: 0 0 34px rgba(0,116,213,.28);
      position: relative;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 8px -8px -8px 8px;
      z-index: -1;
      border-radius: 17px;
      background: rgba(0,116,213,.12);
      filter: blur(8px);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
    }

    .brand-text strong {
      font-family: var(--display);
      font-size: .98rem;
      letter-spacing: -.03em;
    }

    .brand-text small {
      color: var(--soft);
      font-size: .68rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-top: 5px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 4px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 999px;
      background: rgba(255,255,255,.035);
    }

    .nav-links a {
      padding: 10px 14px;
      color: rgba(239,248,255,.78);
      font-size: .85rem;
      font-weight: 700;
      border-radius: 999px;
      transition: color .2s ease, background .2s ease;
    }

    .nav-links a:hover,
    .nav-links a.is-active {
      color: #04101d;
      background: linear-gradient(135deg, var(--cyan), var(--teal));
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 42px;
      padding: 0 17px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 999px;
      color: var(--ink);
      background: rgba(255,255,255,.06);
      font-size: .85rem;
      font-weight: 800;
      cursor: pointer;
      transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
    }

    .pill:hover {
      transform: translateY(-2px);
      border-color: rgba(0,116,213,.5);
      box-shadow: 0 0 36px rgba(0,116,213,.16);
      background: rgba(0,116,213,.10);
    }

    .pill.primary {
      color: #03101d;
      border: 0;
      background: linear-gradient(135deg, var(--cyan), var(--teal));
      box-shadow: 0 0 36px rgba(0,116,213,.20);
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: var(--ink);
      cursor: pointer;
    }

    .hero {
      min-height: 100svh;
      display: grid;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 128px 0 72px;
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(6px);
      pointer-events: none;
      opacity: .55;
    }

    .hero-orb.one {
      width: 420px;
      height: 420px;
      right: -120px;
      top: 130px;
      background: radial-gradient(circle, rgba(0,116,213,.26), transparent 68%);
      animation: floatOrb 13s ease-in-out infinite;
    }

    .hero-orb.two {
      width: 360px;
      height: 360px;
      left: -120px;
      bottom: 60px;
      background: radial-gradient(circle, rgba(0,67,126,.16), transparent 68%);
      animation: floatOrb 16s ease-in-out infinite reverse;
    }

    @keyframes floatOrb {
      0%, 100% { transform: translate3d(0,0,0) scale(1); }
      50% { transform: translate3d(28px,-24px,0) scale(1.1); }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, .96fr) minmax(420px, .74fr);
      gap: 48px;
      align-items: center;
    }

    .hero-copy {
      position: relative;
      z-index: 4;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 12px;
      margin-bottom: 26px;
      border: 1px solid rgba(0,116,213,.28);
      border-radius: 999px;
      color: rgba(238,248,255,.86);
      background: rgba(0,116,213,.08);
      backdrop-filter: blur(18px);
      font-size: .82rem;
      font-weight: 800;
    }

    .hero-badge span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 14px var(--green);
      animation: pulse 1.8s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(.9); opacity: .72; }
      50% { transform: scale(1.25); opacity: 1; }
    }

    .hero h1 {
      margin: 0;
      max-width: 920px;
      font-family: var(--display);
      font-size: clamp(4.1rem, 10vw, 10.6rem);
      line-height: .82;
      letter-spacing: -.105em;
    }

    .hero h1 .line {
      display: block;
      overflow: hidden;
    }

    .hero h1 .word {
      display: inline-block;
      transform: translateY(110%);
      animation: textRise .9s cubic-bezier(.2,.8,.2,1) forwards;
    }

    .hero h1 .line:nth-child(2) .word { animation-delay: .12s; }
    .hero h1 .line:nth-child(3) .word { animation-delay: .22s; }

    @keyframes textRise {
      to { transform: translateY(0); }
    }

    .gradient-text {
      color: transparent;
      background: linear-gradient(100deg, #fff, #aaf4ff 35%, var(--cyan) 68%, var(--teal));
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero-lead {
      max-width: 710px;
      margin: 30px 0 0;
      color: rgba(235,246,255,.77);
      font-size: clamp(1.02rem, 1.45vw, 1.28rem);
      line-height: 1.85;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 34px;
    }

    .hero-note {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      margin-top: 34px;
      color: var(--soft);
      font-size: .86rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .12em;
    }

    .hero-note span {
      display: inline-flex;
      align-items: center;
      gap: 9px;
    }

    .hero-note span::before {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 12px rgba(0,116,213,.7);
    }

    .hero-visual {
      min-height: 670px;
      position: relative;
      perspective: 1000px;
    }

    .command {
      position: absolute;
      inset: 0;
      border-radius: 42px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.13);
      background:
        radial-gradient(circle at 50% 45%, rgba(0,116,213,.11), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
      backdrop-filter: blur(24px);
      box-shadow: var(--shadow);
      transform: rotateY(-7deg) rotateX(4deg);
      transform-origin: center;
    }

    .command::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 34px 34px;
      opacity: .48;
    }

    .command-top {
      position: relative;
      z-index: 4;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding: 24px;
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .command-title {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .command-title strong {
      font-family: var(--display);
      font-size: 1rem;
      letter-spacing: -.02em;
    }

    .command-title small {
      color: var(--soft);
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: .68rem;
      font-weight: 900;
    }

    .status-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 11px;
      border-radius: 999px;
      border: 1px solid rgba(0,116,213,.26);
      color: rgba(220,255,246,.9);
      background: rgba(0,116,213,.08);
      font-size: .72rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .12em;
    }

    .status-chip::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 12px var(--green);
    }

    .radar {
      position: absolute;
      width: 540px;
      height: 540px;
      top: 86px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 50%;
      border: 1px solid rgba(0,116,213,.18);
      background:
        radial-gradient(circle, transparent 0 17%, rgba(0,116,213,.04) 17.4% 17.8%, transparent 18.2% 33%, rgba(0,116,213,.045) 33.4% 33.8%, transparent 34.2% 49%, rgba(0,116,213,.04) 49.4% 49.8%, transparent 50.2% 65%, rgba(0,116,213,.045) 65.4% 65.8%, transparent 66.2%),
        conic-gradient(from 20deg, rgba(0,116,213,.32), transparent 18%, transparent 100%);
      opacity: .9;
      animation: radarRotate 8s linear infinite;
    }

    .radar::before,
    .radar::after {
      content: "";
      position: absolute;
      inset: 50% auto auto 0;
      width: 100%;
      height: 1px;
      background: rgba(0,116,213,.15);
    }

    .radar::after {
      transform: rotate(90deg);
    }

    @keyframes radarRotate {
      to { transform: translateX(-50%) rotate(360deg); }
    }

    .map-svg {
      position: absolute;
      inset: 110px 18px 120px;
      z-index: 3;
      opacity: .95;
    }

    .route {
      fill: none;
      stroke: rgba(0,116,213,.74);
      stroke-width: 2.5;
      stroke-dasharray: 8 12;
      filter: drop-shadow(0 0 9px rgba(0,116,213,.8));
      animation: dash 3s linear infinite;
    }

    @keyframes dash {
      to { stroke-dashoffset: -120; }
    }

    .island {
      fill: rgba(255,255,255,.07);
      stroke: rgba(255,255,255,.14);
      stroke-width: 1;
    }

    .pin {
      position: absolute;
      z-index: 5;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 0 8px rgba(0,116,213,.09), 0 0 24px rgba(0,116,213,.8);
      cursor: pointer;
    }

    .pin::after {
      content: attr(data-label);
      position: absolute;
      left: 22px;
      top: 50%;
      transform: translateY(-50%);
      min-width: max-content;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.14);
      color: rgba(238,248,255,.9);
      background: rgba(1,10,19,.78);
      backdrop-filter: blur(18px);
      font-size: .68rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .12em;
    }

    .pin.jakarta { left: 34%; top: 56%; }
    .pin.samarinda { left: 62%; top: 43%; background: var(--teal); box-shadow: 0 0 0 8px rgba(0,67,126,.09), 0 0 24px rgba(0,67,126,.8); }
    .pin.waters { left: 52%; top: 70%; background: var(--gold); box-shadow: 0 0 0 8px rgba(0,116,213,.09), 0 0 24px rgba(0,116,213,.75); }

    .vessel {
      position: absolute;
      z-index: 6;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.14);
      color: rgba(244,251,255,.90);
      background: rgba(255,255,255,.075);
      backdrop-filter: blur(18px);
      font-size: .68rem;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      box-shadow: 0 18px 45px rgba(0,0,0,.22);
    }

    .vessel::before {
      content: "";
      width: 10px;
      height: 10px;
      clip-path: polygon(50% 0, 100% 100%, 50% 72%, 0 100%);
      background: var(--cyan);
      filter: drop-shadow(0 0 9px var(--cyan));
    }

    .vessel.one {
      left: 47%;
      top: 40%;
      animation: driftOne 9s ease-in-out infinite;
    }

    .vessel.two {
      left: 29%;
      top: 66%;
      animation: driftTwo 10s ease-in-out infinite;
    }

    @keyframes driftOne {
      0%,100% { transform: translate(0,0); }
      50% { transform: translate(34px, 18px); }
    }

    @keyframes driftTwo {
      0%,100% { transform: translate(0,0); }
      50% { transform: translate(-26px, -16px); }
    }

    .command-stats {
      position: absolute;
      z-index: 7;
      left: 22px;
      right: 22px;
      bottom: 22px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .stat {
      padding: 18px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 22px;
      background: rgba(3,12,22,.62);
      backdrop-filter: blur(24px);
      position: relative;
      overflow: hidden;
    }

    .stat::before {
      content: "";
      position: absolute;
      inset: auto auto 0 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--cyan), transparent);
      opacity: .65;
    }

    .stat strong {
      display: block;
      font-family: var(--display);
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: -.08em;
      line-height: .9;
    }

    .stat small {
      display: block;
      margin-top: 9px;
      color: var(--soft);
      font-size: .72rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .14em;
    }

    .floating-card {
      position: absolute;
      z-index: 8;
      width: 230px;
      padding: 16px;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.09);
      backdrop-filter: blur(24px);
      box-shadow: var(--shadow);
    }

    .floating-card.one {
      top: 118px;
      right: -34px;
      animation: floatSmall 5.5s ease-in-out infinite;
    }

    .floating-card.two {
      top: 410px;
      left: -42px;
      animation: floatSmall 6.2s ease-in-out infinite reverse;
    }

    @keyframes floatSmall {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }

    .floating-card small {
      display: block;
      color: var(--soft);
      text-transform: uppercase;
      letter-spacing: .13em;
      font-size: .65rem;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .floating-card strong {
      display: block;
      font-family: var(--display);
      font-size: 1.24rem;
      line-height: 1.12;
      letter-spacing: -.04em;
    }

    .floating-meter {
      height: 7px;
      margin-top: 14px;
      border-radius: 99px;
      overflow: hidden;
      background: rgba(255,255,255,.10);
    }

    .floating-meter span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--cyan), var(--teal));
      animation: meter 2.8s ease-in-out infinite;
    }

    @keyframes meter {
      0%,100% { width: 68%; }
      50% { width: 94%; }
    }

    .logo-row {
      position: relative;
      overflow: hidden;
      padding: 18px 0;
      border-block: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.035);
    }

    .ticker {
      display: flex;
      gap: 14px;
      width: max-content;
      animation: ticker 26s linear infinite;
    }

    .ticker span {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: rgba(235,248,255,.68);
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: .78rem;
      font-weight: 900;
    }

    .ticker span::after {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 12px rgba(0,116,213,.7);
    }

    @keyframes ticker {
      to { transform: translateX(-50%); }
    }

    .intro-grid {
      display: grid;
      grid-template-columns: .8fr 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .intro-card {
      padding: 34px;
      border-radius: var(--radius-xl);
    }

    .intro-card h2 {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(2.4rem, 5vw, 4.6rem);
      line-height: .92;
      letter-spacing: -.08em;
    }

    .intro-card p {
      margin: 26px 0 0;
      color: var(--muted);
      font-size: 1.06rem;
      line-height: 1.85;
    }

    .mini-facts {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 28px;
    }

    .mini-fact {
      padding: 17px;
      border-radius: 19px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.055);
    }

    .mini-fact strong {
      display: block;
      font-family: var(--display);
      font-size: 1.9rem;
      letter-spacing: -.07em;
      line-height: .95;
    }

    .mini-fact small {
      display: block;
      margin-top: 7px;
      color: var(--soft);
      text-transform: uppercase;
      letter-spacing: .13em;
      font-size: .66rem;
      font-weight: 900;
    }

    .timeline-card {
      padding: 34px;
      border-radius: var(--radius-xl);
      position: relative;
      overflow: hidden;
    }

    .timeline-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 92% 0%, rgba(0,116,213,.16), transparent 34%);
      pointer-events: none;
    }

    .timeline {
      position: relative;
      display: grid;
      gap: 18px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 12px;
      top: 10px;
      bottom: 10px;
      width: 2px;
      background: linear-gradient(var(--cyan), rgba(0,116,213,.08));
    }

    .milestone {
      position: relative;
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 18px;
      padding-left: 2px;
    }

    .milestone-dot {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1px solid rgba(0,116,213,.42);
      background: #061424;
      box-shadow: 0 0 0 7px rgba(0,116,213,.08);
    }

    .milestone strong {
      display: block;
      color: var(--cyan);
      font-family: var(--display);
      font-size: 1.45rem;
      letter-spacing: -.04em;
      margin-bottom: 6px;
    }

    .milestone p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .fleet-shell {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 22px;
      align-items: stretch;
    }

    .fleet-menu {
      padding: 20px;
      border-radius: var(--radius-xl);
    }

    .fleet-menu h3 {
      margin: 4px 0 18px;
      font-family: var(--display);
      font-size: 1.7rem;
      letter-spacing: -.06em;
    }

    .fleet-tab {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 18px;
      margin-bottom: 10px;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 18px;
      color: var(--ink);
      background: rgba(255,255,255,.045);
      cursor: pointer;
      text-align: left;
      transition: transform .25s ease, background .25s ease, border-color .25s ease;
    }

    .fleet-tab:hover,
    .fleet-tab.is-active {
      transform: translateX(6px);
      background: rgba(0,116,213,.11);
      border-color: rgba(0,116,213,.35);
    }

    .fleet-tab span {
      display: block;
      color: var(--soft);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .64rem;
      font-weight: 900;
      margin-bottom: 5px;
    }

    .fleet-tab strong {
      font-family: var(--display);
      font-size: 1.1rem;
      letter-spacing: -.03em;
    }

    .fleet-tab i {
      font-style: normal;
      color: var(--cyan);
      font-weight: 900;
    }

    .fleet-display {
      min-height: 560px;
      padding: 28px;
      border-radius: var(--radius-xl);
      position: relative;
      overflow: hidden;
    }

    .fleet-display::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 70% 30%, rgba(0,116,213,.16), transparent 36%),
        radial-gradient(circle at 20% 80%, rgba(0,67,126,.10), transparent 32%);
      pointer-events: none;
    }

    .fleet-panel {
      position: relative;
      z-index: 2;
      min-height: 500px;
      display: grid;
      grid-template-columns: 1fr .88fr;
      gap: 24px;
      align-items: center;
    }

    .fleet-panel[hidden] {
      display: none;
    }

    .fleet-big {
      padding: 30px;
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(2,10,18,.48);
    }

    .fleet-big .eyebrow {
      margin-bottom: 18px;
    }

    .fleet-big h3 {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(2.3rem, 4.8vw, 5.4rem);
      line-height: .88;
      letter-spacing: -.09em;
    }

    .fleet-big p {
      margin: 24px 0 0;
      color: var(--muted);
      line-height: 1.82;
      font-size: 1.02rem;
    }

    .spec-list {
      display: grid;
      gap: 13px;
    }

    .spec-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 19px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 20px;
      background: rgba(255,255,255,.055);
      transition: transform .25s ease, border-color .25s ease, background .25s ease;
    }

    .spec-item:hover {
      transform: translateY(-4px);
      border-color: rgba(0,116,213,.34);
      background: rgba(0,116,213,.08);
    }

    .spec-item span {
      color: var(--muted);
      font-size: .88rem;
      font-weight: 800;
    }

    .spec-item strong {
      font-family: var(--display);
      font-size: 1.5rem;
      letter-spacing: -.05em;
      color: var(--cyan);
    }

    .ship-visual {
      position: relative;
      height: 260px;
      margin-top: 26px;
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,.10);
      background:
        linear-gradient(180deg, rgba(0,116,213,.055), rgba(0,116,213,.02)),
        radial-gradient(circle at 50% 110%, rgba(0,116,213,.18), transparent 50%);
      overflow: hidden;
    }

    .ship-visual::before {
      content: "";
      position: absolute;
      left: 10%;
      right: 10%;
      bottom: 44px;
      height: 48px;
      border-radius: 12px 42px 30px 42px;
      background: linear-gradient(135deg, rgba(245,250,255,.82), rgba(97,221,255,.46));
      clip-path: polygon(0 18%, 80% 18%, 100% 54%, 92% 100%, 10% 100%);
      box-shadow: 0 0 42px rgba(0,116,213,.2);
    }

    .ship-visual::after {
      content: "";
      position: absolute;
      left: -15%;
      right: -15%;
      bottom: 20px;
      height: 24px;
      background: repeating-linear-gradient(90deg, rgba(0,116,213,.28) 0 30px, transparent 30px 60px);
      filter: blur(.3px);
      animation: waveMove 5s linear infinite;
    }

    @keyframes waveMove {
      to { transform: translateX(-60px); }
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .service-card {
      min-height: 380px;
      padding: 24px;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,.11);
      background:
        radial-gradient(circle at 18% 12%, rgba(0,116,213,.14), transparent 36%),
        linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.04));
      backdrop-filter: blur(22px);
      position: relative;
      overflow: hidden;
      transform-style: preserve-3d;
      transition: transform .2s ease, border-color .25s ease, background .25s ease;
    }

    .service-card:hover {
      border-color: rgba(0,116,213,.36);
      background:
        radial-gradient(circle at 18% 12%, rgba(0,116,213,.22), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
    }

    .service-card::before {
      content: attr(data-index);
      position: absolute;
      right: 18px;
      top: 14px;
      color: rgba(255,255,255,.06);
      font-family: var(--display);
      font-size: 5.8rem;
      font-weight: 800;
      letter-spacing: -.08em;
    }

    .service-icon {
      width: 96px;
      height: 96px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 64px;
      position: relative;
      z-index: 2;
      background: none !important;
      border: none !important;
      box-shadow: none !important;
      filter: drop-shadow(0 10px 24px rgba(0,0,0,.22)) drop-shadow(0 0 18px rgba(0,116,213,.10));
      transform: translateZ(22px);
      transition: transform .3s ease, filter .3s ease;
      overflow: visible;
    }

    .service-icon::before,
    .service-icon::after {
      display: none !important;
      content: none !important;
    }

    .service-icon img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
      image-rendering: auto;
      user-select: none;
      pointer-events: none;
    }

    .service-card:hover .service-icon {
      transform: translateY(-4px) translateZ(26px) scale(1.035);
      filter: drop-shadow(0 14px 28px rgba(0,0,0,.24)) drop-shadow(0 0 28px rgba(0,116,213,.22));
    }

    .service-icon svg {
      width: 100%;
      height: 100%;
      display: block;
      overflow: visible;
    }

    .service-icon .tile-outer {
      fill: rgba(0,116,213, 0.08);
      stroke: rgba(117, 246, 255, 0.78);
      stroke-width: 2;
    }

    .service-icon .tile-inner {
      fill: rgba(8, 24, 42, 0.68);
      stroke: rgba(96, 236, 255, 0.22);
      stroke-width: 1.2;
    }

    .service-icon .tile-highlight {
      fill: none;
      stroke: rgba(170, 250, 255, 0.14);
      stroke-width: 1;
    }

    .service-icon .outline,
    .service-icon .outline-thin,
    .service-icon .accent,
    .service-icon .accent-dash {
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      vector-effect: non-scaling-stroke;
      filter: drop-shadow(0 0 6px rgba(72, 236, 255, 0.52)) drop-shadow(0 0 12px rgba(72, 236, 255, 0.18));
    }

    .service-icon .outline {
      stroke: rgba(0,116,213, 0.98);
      stroke-width: 2.4;
    }

    .service-icon .outline-thin {
      stroke: rgba(0,116,213, 0.78);
      stroke-width: 1.6;
    }

    .service-icon .accent {
      stroke: rgba(0,67,126, 0.98);
      stroke-width: 2.2;
    }

    .service-icon .accent-dash {
      stroke: rgba(0,116,213, 0.88);
      stroke-width: 1.8;
      stroke-dasharray: 4 6;
      animation: serviceDash 4.8s linear infinite;
    }

    .service-icon .glow-dot {
      fill: rgba(0,116,213, 0.98);
      filter: drop-shadow(0 0 6px rgba(0,116,213, 0.75)) drop-shadow(0 0 12px rgba(0,116,213, 0.35));
      animation: servicePulse 2.1s ease-in-out infinite;
    }

    .service-icon .soft-glow {
      fill: rgba(0,116,213, 0.16);
      filter: blur(6px);
      animation: servicePulse 2.6s ease-in-out infinite;
    }

    .service-icon .spin-slow {
      transform-origin: 48px 48px;
      animation: serviceRotate 10s linear infinite;
    }

    .service-icon .spin-reverse {
      transform-origin: 48px 48px;
      animation: serviceRotateReverse 7.5s linear infinite;
    }

    .service-icon .bob {
      animation: serviceBob 2.8s ease-in-out infinite;
    }

    .service-icon .swing {
      transform-origin: 50px 34px;
      animation: serviceSwing 2.8s ease-in-out infinite;
    }

    .service-icon .draw {
      stroke-dasharray: 160;
      stroke-dashoffset: 160;
      animation: serviceDraw 2.4s ease forwards;
    }

    .service-icon .blink-a { animation-delay: .2s; }
    .service-icon .blink-b { animation-delay: .5s; }
    .service-icon .blink-c { animation-delay: .8s; }

    @keyframes servicePulse {
      0%, 100% { opacity: .72; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.12); }
    }

    @keyframes serviceDash {
      from { stroke-dashoffset: 0; }
      to { stroke-dashoffset: -40; }
    }

    @keyframes serviceRotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes serviceRotateReverse {
      from { transform: rotate(360deg); }
      to { transform: rotate(0deg); }
    }

    @keyframes serviceBob {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-2.5px); }
    }

    @keyframes serviceSwing {
      0%, 100% { transform: rotate(4deg); }
      50% { transform: rotate(-4deg); }
    }

    @keyframes serviceDraw {
      to { stroke-dashoffset: 0; }
    }

    .service-card h3 {
      margin: 0;
      font-family: var(--display);
      font-size: 1.45rem;
      line-height: 1.05;
      letter-spacing: -.055em;
    }

    .service-card p {
      margin: 17px 0 0;
      color: var(--muted);
      line-height: 1.68;
      font-size: .94rem;
    }

    .service-tag {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--cyan);
      font-size: .72rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .14em;
    }

    .service-tag::after {
      content: "→";
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(0,116,213,.35);
      color: var(--ink);
    }

    .ops-grid {
      display: grid;
      grid-template-columns: .86fr 1fr;
      gap: 24px;
      align-items: center;
    }

    .ops-copy {
      padding: 38px;
      border-radius: var(--radius-xl);
    }

    .ops-copy h2 {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(2.8rem, 6vw, 6rem);
      line-height: .86;
      letter-spacing: -.09em;
    }

    .ops-copy p {
      margin: 25px 0 0;
      color: var(--muted);
      line-height: 1.86;
    }

    .ops-list {
      display: grid;
      gap: 12px;
      margin-top: 28px;
    }

    .ops-list div {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 15px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.045);
      color: rgba(240,248,255,.84);
      line-height: 1.55;
    }

    .ops-list div::before {
      content: "";
      flex: 0 0 auto;
      width: 10px;
      height: 10px;
      margin-top: 7px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(0,116,213,.7);
    }

    .ops-dashboard {
      min-height: 620px;
      border-radius: var(--radius-xl);
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .ops-dashboard::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 70% 18%, rgba(0,116,213,.18), transparent 35%),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: auto, 40px 40px, 40px 40px;
      pointer-events: none;
    }

    .ops-board-top {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin-bottom: 18px;
    }

    .ops-board-top strong {
      font-family: var(--display);
      font-size: 1.28rem;
      letter-spacing: -.04em;
    }

    .ops-board {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .ops-widget {
      padding: 18px;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.11);
      background: rgba(4,14,25,.60);
      backdrop-filter: blur(22px);
    }

    .ops-widget.large {
      grid-column: 1 / -1;
      min-height: 210px;
    }

    .ops-widget.media-wide {
      grid-column: 1 / -1;
      min-height: 250px;
      padding: 0;
      overflow: hidden;
      position: relative;
      background:
        linear-gradient(180deg, rgba(4,14,25,.18), rgba(4,14,25,.06) 26%, rgba(4,14,25,.28) 100%),
        linear-gradient(90deg, rgba(4,14,25,.86) 0%, rgba(4,14,25,.36) 36%, rgba(4,14,25,.12) 100%),
        url('img/bg_services.png') center center / cover no-repeat;
      border: 1px solid rgba(255,255,255,.10);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.06), inset 0 0 0 1px rgba(0,116,213,.05);
    }

    .ops-widget.media-wide::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 78% 50%, rgba(0,116,213,.10), transparent 32%),
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: auto, 32px 32px, 32px 32px;
      pointer-events: none;
    }

    .ops-widget.media-wide::after {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 20px;
      border: 1px solid rgba(0,116,213,.16);
      pointer-events: none;
      box-shadow: inset 0 0 40px rgba(0,116,213,.04);
    }

    .ops-media-overlay {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 22px;
      z-index: 2;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .ops-media-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(0,116,213,.18);
      background: rgba(4,14,25,.58);
      backdrop-filter: blur(14px);
      color: rgba(242,249,255,.88);
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .ops-media-tag::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(0,116,213,.85);
    }

    .ops-media-caption {
      max-width: 420px;
      padding: 14px 16px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(4,14,25,.52);
      backdrop-filter: blur(14px);
      color: rgba(240,248,255,.76);
      font-size: .92rem;
      line-height: 1.58;
    }

    .ops-widget small {
      display: block;
      color: var(--soft);
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: .65rem;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .ops-widget strong {
      display: block;
      font-family: var(--display);
      font-size: 1.95rem;
      letter-spacing: -.07em;
      line-height: .94;
    }

    .ops-widget p {
      margin: 12px 0 0;
      color: var(--muted);
      line-height: 1.58;
      font-size: .9rem;
    }

    .signal-bars {
      display: flex;
      align-items: end;
      gap: 8px;
      height: 76px;
      margin-top: 18px;
    }

    .signal-bars i {
      flex: 1;
      display: block;
      border-radius: 999px 999px 0 0;
      background: linear-gradient(180deg, var(--cyan), rgba(0,116,213,.14));
      animation: bars 1.8s ease-in-out infinite;
    }

    .signal-bars i:nth-child(1) { height: 32%; }
    .signal-bars i:nth-child(2) { height: 54%; animation-delay: .12s; }
    .signal-bars i:nth-child(3) { height: 78%; animation-delay: .24s; }
    .signal-bars i:nth-child(4) { height: 48%; animation-delay: .36s; }
    .signal-bars i:nth-child(5) { height: 88%; animation-delay: .48s; }

    @keyframes bars {
      0%,100% { transform: scaleY(.78); opacity: .65; }
      50% { transform: scaleY(1.08); opacity: 1; }
    }

    .route-board {
      position: relative;
      height: 206px;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      overflow: hidden;
    }

    .route-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .route-line {
      position: absolute;
      left: 12%;
      top: 54%;
      width: 76%;
      height: 2px;
      background: linear-gradient(90deg, var(--cyan), var(--teal));
      box-shadow: 0 0 18px rgba(0,116,213,.75);
      transform: rotate(-11deg);
    }

    .route-dot {
      position: absolute;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 0 7px rgba(0,116,213,.11), 0 0 20px rgba(0,116,213,.8);
    }

    .route-dot.a { left: 16%; top: 60%; }
    .route-dot.b { left: 50%; top: 47%; background: var(--gold); box-shadow: 0 0 0 7px rgba(0,116,213,.11), 0 0 20px rgba(0,116,213,.8); }
    .route-dot.c { left: 82%; top: 37%; background: var(--teal); box-shadow: 0 0 0 7px rgba(0,67,126,.11), 0 0 20px rgba(0,67,126,.8); }

    .route-ship {
      position: absolute;
      left: 24%;
      top: 51%;
      width: 24px;
      height: 24px;
      transform: rotate(80deg);
      clip-path: polygon(50% 0, 100% 100%, 50% 70%, 0 100%);
      background: #fff;
      filter: drop-shadow(0 0 12px rgba(255,255,255,.8));
      animation: shipMove 5.8s ease-in-out infinite;
    }

    @keyframes shipMove {
      0%,100% { transform: translate(0,0) rotate(80deg); }
      50% { transform: translate(190px,-56px) rotate(80deg); }
    }

    .coverage-shell {
      display: grid;
      grid-template-columns: 1fr .72fr;
      gap: 24px;
      align-items: stretch;
    }

    .coverage-map {
      min-height: 620px;
      border-radius: var(--radius-xl);
      position: relative;
      overflow: hidden;
      padding: 28px;
    }

    .coverage-map::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 42% 48%, rgba(0,116,213,.18), transparent 33%),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: auto, 42px 42px, 42px 42px;
    }

    .coverage-title {
      position: relative;
      z-index: 2;
      max-width: 600px;
    }

    .coverage-title h2 {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(2.5rem, 5.6vw, 5.7rem);
      line-height: .88;
      letter-spacing: -.09em;
    }

    .coverage-title p {
      margin: 22px 0 0;
      color: var(--muted);
      line-height: 1.82;
    }

    .coverage-svg {
      position: absolute;
      inset: 130px 22px 34px;
      z-index: 1;
    }

    .office-stack {
      display: grid;
      gap: 18px;
    }

    .office-card {
      padding: 26px;
      border-radius: var(--radius-xl);
      position: relative;
      overflow: hidden;
    }

    .office-card::before {
      content: "";
      position: absolute;
      inset: -50% -20% auto auto;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,116,213,.16), transparent 70%);
      pointer-events: none;
    }

    .office-card h3 {
      margin: 0;
      font-family: var(--display);
      font-size: 1.7rem;
      letter-spacing: -.055em;
    }

    .office-card .type {
      display: inline-flex;
      margin-bottom: 16px;
      padding: 7px 10px;
      border-radius: 999px;
      color: var(--cyan);
      border: 1px solid rgba(0,116,213,.25);
      background: rgba(0,116,213,.08);
      text-transform: uppercase;
      letter-spacing: .13em;
      font-size: .64rem;
      font-weight: 900;
    }

    .office-card p {
      margin: 15px 0 0;
      color: var(--muted);
      line-height: 1.72;
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 18px;
    }

    .copy-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 38px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      color: rgba(240,248,255,.86);
      background: rgba(255,255,255,.055);
      cursor: pointer;
      font-size: .77rem;
      font-weight: 800;
      transition: transform .22s ease, background .22s ease, border-color .22s ease;
    }

    .copy-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(0,116,213,.35);
      background: rgba(0,116,213,.09);
    }

    .quality-grid {
      display: grid;
      grid-template-columns: .8fr 1fr;
      gap: 24px;
      align-items: stretch;
    }

    .iso-card {
      min-height: 540px;
      border-radius: var(--radius-xl);
      padding: 36px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .iso-card::before {
      content: "ISO";
      position: absolute;
      right: -20px;
      bottom: -38px;
      color: rgba(255,255,255,.04);
      font-family: var(--display);
      font-size: 16rem;
      font-weight: 900;
      letter-spacing: -.12em;
    }

    .iso-card h2 {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(4rem, 9vw, 9rem);
      line-height: .8;
      letter-spacing: -.1em;
    }

    .iso-card h2 span {
      color: var(--cyan);
    }

    .iso-card p {
      max-width: 480px;
      margin: 24px 0 0;
      color: var(--muted);
      line-height: 1.82;
      font-size: 1.05rem;
    }

    .quality-list {
      display: grid;
      gap: 15px;
    }

    .quality-item {
      padding: 24px;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.055);
    }

    .quality-item strong {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--display);
      font-size: 1.35rem;
      letter-spacing: -.04em;
    }

    .quality-item strong::before {
      content: "✓";
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #03101d;
      background: linear-gradient(135deg, var(--cyan), var(--teal));
      font-size: .92rem;
    }

    .quality-item p {
      margin: 12px 0 0 40px;
      color: var(--muted);
      line-height: 1.7;
    }

    .cards-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .principle-card {
      min-height: 360px;
      padding: 30px;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(255,255,255,.10);
      background:
        linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
      position: relative;
      overflow: hidden;
    }

    .principle-card::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -70px;
      top: -70px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,116,213,.18), transparent 70%);
    }

    .principle-card small {
      display: block;
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: .15em;
      font-size: .68rem;
      font-weight: 900;
      margin-bottom: 19px;
    }

    .principle-card h3 {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(2rem, 3.5vw, 3.4rem);
      line-height: .95;
      letter-spacing: -.08em;
    }

    .principle-card p {
      margin: 24px 0 0;
      color: var(--muted);
      line-height: 1.76;
    }

    .commitment {
      border-radius: 44px;
      padding: 48px;
      position: relative;
      overflow: hidden;
    }

    .commitment::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 88% 14%, rgba(0,116,213,.12), transparent 32%),
        radial-gradient(circle at 10% 80%, rgba(0,116,213,.14), transparent 34%);
      pointer-events: none;
    }

    .commitment-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: .75fr 1fr;
      gap: 34px;
      align-items: center;
    }

    .commitment h2 {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(2.8rem, 6vw, 5.8rem);
      line-height: .88;
      letter-spacing: -.09em;
    }

    .commitment-list {
      display: grid;
      gap: 14px;
    }

    .commitment-list div {
      padding: 20px 22px;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 22px;
      background: rgba(255,255,255,.052);
      color: var(--muted);
      line-height: 1.66;
    }

    .news-grid {
      display: grid;
      grid-template-columns: .8fr 1fr 1fr;
      gap: 18px;
    }

    .news-card {
      min-height: 260px;
      padding: 26px;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.055);
    }

    .news-card.accent {
      background:
        radial-gradient(circle at 15% 12%, rgba(0,116,213,.20), transparent 40%),
        linear-gradient(145deg, rgba(0,116,213,.14), rgba(255,255,255,.045));
    }

    .news-card small {
      display: block;
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: .66rem;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .news-card h3 {
      margin: 0;
      font-family: var(--display);
      font-size: 1.65rem;
      line-height: 1.06;
      letter-spacing: -.055em;
    }

    .news-card p,
    .news-card li {
      color: var(--muted);
      line-height: 1.68;
    }

    .news-card ul {
      margin: 18px 0 0;
      padding-left: 20px;
    }

    .cta {
      padding: 56px;
      border-radius: 46px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 50% 0%, rgba(0,116,213,.18), transparent 48%),
        linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
      pointer-events: none;
    }

    .cta > * {
      position: relative;
      z-index: 2;
    }

    .cta h2 {
      max-width: 900px;
      margin: 0 auto;
      font-family: var(--display);
      font-size: clamp(3rem, 7vw, 7.2rem);
      line-height: .84;
      letter-spacing: -.1em;
    }

    .cta p {
      max-width: 720px;
      margin: 26px auto 0;
      color: var(--muted);
      line-height: 1.82;
      font-size: 1.08rem;
    }

    .cta .hero-actions {
      justify-content: center;
    }

    .footer {
      padding: 72px 0 34px;
      color: var(--muted);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr .6fr .6fr .8fr;
      gap: 28px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .footer h3 {
      margin: 0 0 14px;
      color: var(--ink);
      font-family: var(--display);
      letter-spacing: -.04em;
    }

    .footer p {
      margin: 0;
      line-height: 1.72;
    }

    .footer a {
      display: block;
      margin-bottom: 10px;
      color: var(--muted);
      transition: color .2s ease;
    }

    .footer a:hover {
      color: var(--cyan);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 24px;
      font-size: .85rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    [data-split] {
      overflow: hidden;
    }

    .toast {
      position: fixed;
      left: 50%;
      bottom: 26px;
      z-index: 9999;
      transform: translate(-50%, 120%);
      padding: 13px 16px;
      border-radius: 999px;
      color: #03101d;
      background: linear-gradient(135deg, var(--cyan), var(--teal));
      box-shadow: 0 18px 55px rgba(0,0,0,.28);
      font-weight: 900;
      transition: transform .35s ease;
    }

    .toast.show {
      transform: translate(-50%, 0);
    }

    @media (max-width: 1180px) {
      .hero-grid,
      .intro-grid,
      .ops-grid,
      .coverage-shell,
      .quality-grid,
      .commitment-grid,
      .section-header {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 600px;
      }

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

      .service-card:last-child {
        grid-column: 1 / -1;
      }

      .fleet-shell {
        grid-template-columns: 1fr;
      }

      .fleet-panel {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 900px) {
      .nav-links,
      .nav-cta {
        display: none;
      }

      .menu-toggle {
        display: grid;
        place-items: center;
      }

      .nav-inner.is-open {
        border-radius: 28px;
        align-items: flex-start;
        flex-wrap: wrap;
      }

      .nav-inner.is-open .nav-links,
      .nav-inner.is-open .nav-cta {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 22px;
      }

      .nav-inner.is-open .nav-links a {
        text-align: center;
      }

      .hero {
        padding-top: 118px;
      }

      .hero-grid {
        gap: 30px;
      }

      .hero-visual {
        min-height: 540px;
      }

      .command {
        transform: none;
      }

      .floating-card {
        display: none;
      }

      .command-stats,
      .mini-facts,
      .ops-board,
      .cards-3,
      .news-grid {
        grid-template-columns: 1fr;
      }

      .coverage-map,
      .ops-dashboard,
      .iso-card {
        min-height: 520px;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

    @media (max-width: 680px) {
      .container {
        width: min(calc(100% - 28px), var(--max));
      }

      .section {
        padding: 78px 0;
      }

      .hero h1 {
        font-size: clamp(3.4rem, 19vw, 6rem);
      }

      .hero-actions,
      .contact-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .pill,
      .copy-btn {
        width: 100%;
      }

      .hero-visual {
        min-height: 500px;
      }

      .radar {
        width: 420px;
        height: 420px;
        top: 92px;
      }

      .command-top {
        padding: 18px;
      }

      .map-svg {
        inset: 94px 8px 148px;
      }

      .vessel {
        display: none;
      }

      .pin::after {
        display: none;
      }

      .command-stats {
        grid-template-columns: 1fr 1fr;
        left: 12px;
        right: 12px;
        bottom: 12px;
        gap: 8px;
      }

      .stat {
        padding: 12px;
        border-radius: 16px;
      }

      .stat strong {
        font-size: 1.8rem;
      }

      .stat small {
        font-size: .56rem;
      }

      .intro-card,
      .timeline-card,
      .fleet-display,
      .ops-copy,
      .ops-dashboard,
      .coverage-map,
      .office-card,
      .iso-card,
      .commitment,
      .cta {
        padding: 24px;
        border-radius: 28px;
      }

      .service-grid {
        grid-template-columns: 1fr;
      }

      .service-card {
        min-height: 300px;
      }

      .service-icon {
        margin-bottom: 58px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .brand-text small {
        display: none;
      }

      .cursor-glow {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }
    }


    /* ================================
       V3 Premium Revision — Deep Water + Hologram
       ================================ */
    :root {
      --depth: 0;
      --hero-dive: 0;
      --surface-glow: calc(1 - var(--depth));
      --deep-glow: var(--depth);
    }

    html {
      text-rendering: geometricPrecision;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      position: relative;
      isolation: isolate;
      background:
        radial-gradient(circle at 18% 6%, rgba(0,116,213, calc(.22 - (.11 * var(--depth)))), transparent 34%),
        radial-gradient(circle at 82% 12%, rgba(0,67,126, calc(.12 - (.06 * var(--depth)))), transparent 32%),
        radial-gradient(circle at 52% 84%, rgba(6,20,44, calc(.25 + (.35 * var(--depth)))), transparent 42%),
        linear-gradient(180deg,
          #00315c 0%,
          #061424 26%,
          #04101d 48%,
          #020912 70%,
          #000309 100%);
    }

    /* Keep fixed UI layers fixed. Only the document content sits above the ocean layers. */
    main,
    footer {
      position: relative;
      z-index: 2;
    }

    .deep-water-canvas,
    .depth-gradient {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .deep-water-canvas {
      z-index: 0;
      opacity: calc(.48 + (.26 * var(--depth)));
      mix-blend-mode: screen;
      filter: saturate(calc(1.25 - (.45 * var(--depth)))) brightness(calc(1 - (.16 * var(--depth))));
    }

    .depth-gradient {
      z-index: 1;
      background:
        radial-gradient(circle at 50% -12%, rgba(0,116,213, calc(.17 - (.10 * var(--depth)))), transparent 38%),
        linear-gradient(180deg,
          rgba(2,45,70, calc(.16 * (1 - var(--depth)))) 0%,
          rgba(3,15,31, calc(.20 + (.15 * var(--depth)))) 44%,
          rgba(0,4,12, calc(.28 + (.44 * var(--depth)))) 100%);
      opacity: .92;
    }

    .depth-gradient::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, transparent 0%, rgba(0,0,0, calc(.05 + (.45 * var(--depth)))) 72%, rgba(0,0,0, calc(.24 + (.42 * var(--depth)))) 100%),
        radial-gradient(circle at 50% calc(20% + (50% * var(--depth))), rgba(0,116,213,.08), transparent 34%);
      transition: opacity .2s linear;
    }

    .depth-meter {
      position: fixed !important;
      right: 22px;
      bottom: 22px;
      z-index: 9400 !important;
      width: 178px;
      padding: 12px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 18px;
      background: rgba(2, 12, 24, .52);
      backdrop-filter: blur(20px);
      box-shadow: 0 20px 70px rgba(0,0,0,.35);
    }

    .depth-meter span,
    .depth-meter strong {
      display: block;
    }

    .depth-meter span {
      color: rgba(235,248,255,.58);
      font-size: .62rem;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .depth-meter strong {
      margin-top: 5px;
      font-family: var(--display);
      font-size: 1.18rem;
      line-height: 1;
      letter-spacing: -.035em;
      color: var(--ink);
    }

    .depth-meter i {
      display: block;
      width: 100%;
      height: 6px;
      margin-top: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.10);
      overflow: hidden;
    }

    .depth-meter i::before {
      content: "";
      display: block;
      width: calc(var(--depth) * 100%);
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--cyan), var(--blue), var(--teal));
      box-shadow: 0 0 18px rgba(0,116,213,.65);
    }

    .hero h1 {
      letter-spacing: -.086em;
    }

    .section-title {
      line-height: .96;
      letter-spacing: -.062em;
    }

    .section-lead,
    .intro-card p,
    .commitment p,
    .principle-card p,
    .service-card p {
      text-wrap: pretty;
    }

    .command {
      transform-style: preserve-3d;
      transform: rotateY(calc(-7deg + (var(--hero-dive) * 3deg))) rotateX(calc(4deg - (var(--hero-dive) * 1.4deg))) translate3d(0, calc(var(--hero-dive) * -10px), 0);
    }

    .hologram-core {
      position: absolute;
      z-index: 6;
      left: 50%;
      top: 53%;
      width: 290px;
      height: 268px;
      transform-style: preserve-3d;
      transform: translate(-50%, -50%) rotateX(calc(58deg - (var(--hero-dive) * 8deg))) rotateZ(calc(-13deg + (var(--hero-dive) * 9deg)));
      pointer-events: none;
      opacity: 0;
      animation: holoMaterialize 1.15s cubic-bezier(.2,.8,.2,1) .82s forwards, holoBreathe 5.8s ease-in-out 2s infinite;
    }

    @keyframes holoMaterialize {
      0% { opacity: 0; filter: blur(10px); transform: translate(-50%, -42%) rotateX(72deg) rotateZ(-22deg) scale(.72); }
      64% { opacity: 1; filter: blur(1px); }
      100% { opacity: .95; filter: blur(0); }
    }

    @keyframes holoBreathe {
      0%, 100% { translate: 0 0; filter: drop-shadow(0 0 16px rgba(0,116,213,.48)); }
      50% { translate: 0 -10px; filter: drop-shadow(0 0 30px rgba(0,67,126,.62)); }
    }

    .holo-beam {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 270px;
      height: 270px;
      transform: translate(-50%, -50%) rotateX(0deg);
      border-radius: 50%;
      background:
        radial-gradient(circle, rgba(0,116,213,.22), rgba(0,116,213,.06) 38%, transparent 69%),
        conic-gradient(from 0deg, transparent, rgba(0,116,213,.28), transparent 38%, rgba(0,67,126,.18), transparent 72%);
      border: 1px solid rgba(0,116,213,.22);
      box-shadow: inset 0 0 40px rgba(0,116,213,.08), 0 0 42px rgba(0,116,213,.14);
      animation: holoSpin 9s linear infinite;
    }

    .holo-ring {
      position: absolute;
      left: 50%;
      top: 50%;
      border-radius: 50%;
      border: 1px solid rgba(133,247,255,.55);
      transform: translate(-50%, -50%);
      box-shadow: 0 0 22px rgba(0,116,213,.20);
    }

    .holo-ring.r1 { width: 250px; height: 250px; animation: holoSpin 12s linear infinite reverse; }
    .holo-ring.r2 { width: 180px; height: 180px; border-style: dashed; animation: holoSpin 7s linear infinite; }
    .holo-ring.r3 { width: 112px; height: 112px; opacity: .7; animation: holoSpin 5s linear infinite reverse; }

    @keyframes holoSpin { to { rotate: 360deg; } }

    .holo-vessel {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 148px;
      height: 64px;
      transform-style: preserve-3d;
      transform: translate(-50%, -54%) rotateX(8deg) rotateZ(2deg) translateZ(44px);
      border-radius: 12px 22px 22px 12px;
      border: 1px solid rgba(220,253,255,.78);
      background:
        linear-gradient(90deg, rgba(255,255,255,.10) 0 12%, transparent 12% 18%, rgba(0,116,213,.18) 18% 24%, transparent 24% 32%, rgba(255,255,255,.10) 32% 40%, transparent 40% 50%, rgba(0,67,126,.18) 50% 58%, transparent 58% 68%, rgba(255,255,255,.12) 68% 76%, transparent 76% 100%),
        linear-gradient(135deg, rgba(0,116,213,.40), rgba(8,25,42,.72));
      box-shadow: 0 0 24px rgba(0,116,213,.42), inset 0 0 22px rgba(255,255,255,.08);
      animation: vesselHover 3.6s ease-in-out infinite;
    }

    .holo-vessel::before {
      content: "";
      position: absolute;
      right: -26px;
      top: 0;
      width: 38px;
      height: 64px;
      clip-path: polygon(0 0, 100% 50%, 0 100%);
      background: linear-gradient(135deg, rgba(0,116,213,.42), rgba(0,67,126,.22));
      border-right: 1px solid rgba(220,253,255,.72);
      filter: drop-shadow(0 0 12px rgba(0,116,213,.32));
    }

    .holo-vessel::after {
      content: "";
      position: absolute;
      left: 12px;
      top: -26px;
      width: 42px;
      height: 22px;
      border-radius: 7px 7px 4px 4px;
      border: 1px solid rgba(220,253,255,.62);
      background: rgba(255,255,255,.18);
      box-shadow: 0 0 18px rgba(0,116,213,.22);
    }

    @keyframes vesselHover {
      0%,100% { translate: 0 0 0; }
      50% { translate: 0 -8px 16px; }
    }

    .holo-scanlines {
      position: absolute;
      inset: 12px 20px;
      border-radius: 50%;
      background: repeating-linear-gradient(0deg, transparent 0 10px, rgba(120,245,255,.11) 10px 11px);
      transform: translateZ(22px);
      opacity: .55;
      animation: scanDrift 2.6s linear infinite;
    }

    @keyframes scanDrift { to { background-position-y: 42px; } }

    .holo-label {
      position: absolute;
      left: 50%;
      bottom: -28px;
      transform: translateX(-50%) rotateX(-58deg) rotateZ(13deg);
      min-width: 190px;
      padding: 7px 10px;
      border: 1px solid rgba(0,116,213,.24);
      border-radius: 999px;
      color: rgba(222,252,255,.88);
      background: rgba(1,12,24,.54);
      backdrop-filter: blur(12px);
      font-size: .58rem;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
      text-align: center;
    }

    .holo-depth-column {
      position: absolute;
      left: 50%;
      top: 12%;
      width: 2px;
      height: 78%;
      transform: translateX(-50%) translateZ(12px);
      background: linear-gradient(180deg, transparent, rgba(0,116,213,.65), transparent);
      box-shadow: 0 0 16px rgba(0,116,213,.65);
      opacity: .62;
    }

    .scroll-3d-ready {
      transform-style: preserve-3d;
      will-change: transform;
      transform: perspective(1100px) translate3d(0, var(--scroll-y, 0px), 0) rotateX(var(--scroll-rx, 0deg));
    }

    @media (max-width: 760px) {
      .depth-meter { display: none; }
      .hologram-core { width: 240px; height: 228px; top: 52%; }
      .holo-beam { width: 220px; height: 220px; }
      .holo-ring.r1 { width: 210px; height: 210px; }
      .holo-ring.r2 { width: 152px; height: 152px; }
      .holo-vessel { width: 122px; height: 54px; }
      .holo-vessel::before { right: -22px; height: 54px; width: 32px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .deep-water-canvas,
      .hologram-core,
      .holo-beam,
      .holo-ring,
      .holo-vessel,
      .holo-scanlines {
        animation: none !important;
      }
    }


    /* =========================================================
       V5 Premium Asset Layer — PNG assets in /img/
       Purpose: hero radar gets real holographic assets, and the
       ocean-depth background becomes richer while staying clean.
    ========================================================= */
    .hero-asset,
    .holo-asset,
    .depth-asset {
      display: block;
      max-width: none;
      user-select: none;
      -webkit-user-drag: none;
      pointer-events: none;
    }

    .hero-asset {
      position: absolute;
      z-index: 4;
      left: 50%;
      top: 50%;
      object-fit: contain;
      transform-style: preserve-3d;
      will-change: transform, opacity, filter;
    }

    .hero-radar-main-img {
      width: min(610px, 92%);
      top: 46%;
      opacity: .34;
      mix-blend-mode: screen;
      transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg) scale(.98);
      filter: saturate(1.22) brightness(1.05) drop-shadow(0 0 36px rgba(0,116,213,.22));
      animation: heroRadarAssetSpin 28s linear infinite;
    }

    .hero-radar-sweep-img {
      width: min(560px, 86%);
      top: 43%;
      opacity: .54;
      mix-blend-mode: screen;
      transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-18deg) scale(.94);
      filter: saturate(1.35) brightness(1.18) drop-shadow(0 0 42px rgba(0,116,213,.28));
      animation: heroSweepOrbit 8.5s linear infinite;
    }

    .hero-radar-network-img {
      width: min(680px, 104%);
      top: 47%;
      opacity: .20;
      mix-blend-mode: screen;
      transform: translate(-50%, -50%) rotateX(58deg) rotateZ(8deg) scale(.98);
      filter: saturate(1.10) blur(.15px) drop-shadow(0 0 32px rgba(0,116,213,.16));
      animation: networkFloat 12s ease-in-out infinite;
    }

    .hero-radar-projector-img {
      width: min(205px, 34%);
      top: auto;
      bottom: 120px;
      opacity: .84;
      z-index: 8;
      transform: translateX(-50%) translateZ(70px) scale(.95);
      filter: saturate(1.18) brightness(.92) drop-shadow(0 22px 32px rgba(0,0,0,.38)) drop-shadow(0 0 34px rgba(0,116,213,.28));
      animation: projectorBreathe 5.2s ease-in-out infinite;
    }

    .hero-tugboat-img {
      width: min(275px, 44%);
      top: auto;
      left: 38%;
      bottom: 168px;
      opacity: .80;
      z-index: 7;
      transform: translateX(-50%) translateZ(90px) rotateZ(-3deg) scale(.92);
      filter: saturate(1.04) brightness(.86) drop-shadow(0 26px 38px rgba(0,0,0,.38)) drop-shadow(0 0 30px rgba(0,116,213,.22));
      animation: tugboatHeroDrift 6.8s ease-in-out infinite;
    }

    @keyframes heroRadarAssetSpin {
      to { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg) scale(.98); }
    }

    @keyframes heroSweepOrbit {
      0% { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-18deg) scale(.94); opacity: .38; }
      45% { opacity: .64; }
      100% { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(342deg) scale(.94); opacity: .38; }
    }

    @keyframes networkFloat {
      0%, 100% { translate: 0 0; opacity: .18; }
      50% { translate: 0 -12px; opacity: .25; }
    }

    @keyframes projectorBreathe {
      0%, 100% { translate: 0 0; filter: saturate(1.18) brightness(.92) drop-shadow(0 22px 32px rgba(0,0,0,.38)) drop-shadow(0 0 34px rgba(0,116,213,.24)); }
      50% { translate: 0 -8px; filter: saturate(1.28) brightness(1.05) drop-shadow(0 26px 38px rgba(0,0,0,.42)) drop-shadow(0 0 48px rgba(0,67,126,.34)); }
    }

    @keyframes tugboatHeroDrift {
      0%, 100% { translate: 0 0; rotate: -1deg; }
      50% { translate: 18px -12px; rotate: 1.8deg; }
    }

    .hologram-core .holo-vessel {
      opacity: .34;
    }

    .holo-tugboat-img {
      position: absolute;
      left: 50%;
      top: 48%;
      z-index: 8;
      width: 168px;
      transform: translate(-50%, -50%) rotateX(8deg) rotateZ(-4deg) translateZ(56px);
      opacity: .88;
      mix-blend-mode: screen;
      filter: hue-rotate(6deg) saturate(1.25) brightness(1.16) drop-shadow(0 0 24px rgba(0,116,213,.54));
      animation: holoTugboatFloat 4.2s ease-in-out infinite;
    }

    @keyframes holoTugboatFloat {
      0%, 100% { translate: 0 0; }
      50% { translate: 0 -10px; }
    }

    .ocean-depth-assets {
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
      perspective: 900px;
      transform-style: preserve-3d;
      opacity: .98;
    }

    .depth-asset {
      position: absolute;
      object-fit: contain;
      transform-style: preserve-3d;
      will-change: transform, opacity, filter;
    }

    .depth-plankton-a,
    .depth-plankton-b {
      mix-blend-mode: screen;
      filter: saturate(1.25) brightness(1.1) drop-shadow(0 0 30px rgba(0,116,213,.16));
      animation: planktonFloat 11s ease-in-out infinite;
    }

    .depth-plankton-a {
      width: clamp(260px, 33vw, 560px);
      left: -5vw;
      top: 10vh;
      opacity: calc(.08 + (var(--depth) * .34));
      transform: translate3d(calc(var(--depth) * 62px), calc(var(--depth) * -58px), -80px) rotateZ(-10deg) scale(calc(.76 + (var(--depth) * .20)));
    }

    .depth-plankton-b {
      width: clamp(260px, 34vw, 590px);
      right: -9vw;
      top: 42vh;
      opacity: calc(.02 + (var(--depth) * .28));
      transform: translate3d(calc(var(--depth) * -72px), calc(var(--depth) * -40px), -100px) rotateZ(16deg) scale(calc(.70 + (var(--depth) * .22)));
      animation-delay: -4s;
    }

    .depth-rock {
      width: clamp(300px, 38vw, 680px);
      left: -6vw;
      bottom: -9vh;
      opacity: calc(var(--depth) * .52);
      transform: translate3d(calc(var(--depth) * 45px), calc(70px - (var(--depth) * 92px)), -90px) rotateY(-11deg) scale(calc(.72 + (var(--depth) * .24)));
      filter: brightness(calc(.46 + (var(--depth) * .34))) saturate(1.08) drop-shadow(0 22px 60px rgba(0,0,0,.35));
    }

    .depth-coral {
      width: clamp(320px, 42vw, 720px);
      right: -8vw;
      bottom: -12vh;
      opacity: calc(var(--depth) * .58);
      transform: translate3d(calc(var(--depth) * -34px), calc(88px - (var(--depth) * 108px)), -70px) rotateY(10deg) scale(calc(.70 + (var(--depth) * .26)));
      filter: brightness(calc(.48 + (var(--depth) * .38))) saturate(1.12) drop-shadow(0 18px 62px rgba(0,0,0,.36));
    }

    .depth-anchor {
      width: clamp(180px, 20vw, 345px);
      right: 7vw;
      top: 26vh;
      opacity: calc(var(--depth) * .26);
      transform: translate3d(calc(var(--depth) * -58px), calc(var(--depth) * 46px), -30px) rotateZ(calc(-12deg + (var(--depth) * 18deg))) scale(calc(.70 + (var(--depth) * .18)));
      filter: brightness(calc(.40 + (var(--depth) * .30))) drop-shadow(0 24px 45px rgba(0,0,0,.36)) drop-shadow(0 0 20px rgba(0,116,213,.10));
    }

    .depth-engine {
      width: clamp(280px, 34vw, 585px);
      left: 3vw;
      top: 45vh;
      opacity: calc(var(--depth) * .30);
      transform: translate3d(calc(var(--depth) * 34px), calc(var(--depth) * -30px), -130px) rotateZ(-4deg) scale(calc(.64 + (var(--depth) * .22)));
      filter: brightness(calc(.38 + (var(--depth) * .32))) saturate(1.05) drop-shadow(0 26px 58px rgba(0,0,0,.34));
    }

    .depth-propeller {
      width: clamp(185px, 24vw, 410px);
      right: 15vw;
      bottom: 8vh;
      opacity: calc(var(--depth) * .34);
      transform: translate3d(calc(var(--depth) * -44px), calc(46px - (var(--depth) * 72px)), -45px) rotateZ(calc(18deg + (var(--depth) * 36deg))) scale(calc(.66 + (var(--depth) * .18)));
      filter: brightness(calc(.42 + (var(--depth) * .36))) saturate(1.06) drop-shadow(0 22px 50px rgba(0,0,0,.34));
      animation: propellerSlowSpin 24s linear infinite;
    }

    .depth-beacon {
      width: clamp(145px, 16vw, 285px);
      left: 53vw;
      bottom: 4vh;
      opacity: calc(var(--depth) * .36);
      transform: translate3d(-50%, calc(52px - (var(--depth) * 80px)), 30px) scale(calc(.68 + (var(--depth) * .22)));
      mix-blend-mode: screen;
      filter: brightness(calc(.64 + (var(--depth) * .48))) saturate(1.18) drop-shadow(0 0 34px rgba(0,116,213,.22));
      animation: beaconPulse 5.6s ease-in-out infinite;
    }

    .depth-sonar-orb {
      width: clamp(150px, 18vw, 310px);
      left: 13vw;
      top: 22vh;
      opacity: calc(var(--depth) * .18);
      transform: translate3d(calc(var(--depth) * 22px), calc(var(--depth) * 42px), -60px) rotateZ(5deg) scale(calc(.60 + (var(--depth) * .16)));
      mix-blend-mode: screen;
      filter: brightness(.78) saturate(1.15) drop-shadow(0 0 22px rgba(0,116,213,.14));
    }

    @keyframes planktonFloat {
      0%, 100% { translate: 0 0; }
      50% { translate: 0 -24px; }
    }

    @keyframes propellerSlowSpin {
      0% { rotate: 0deg; }
      100% { rotate: 360deg; }
    }

    @keyframes beaconPulse {
      0%,100% { opacity: calc(var(--depth) * .30); }
      50% { opacity: calc(var(--depth) * .46); }
    }

    .section,
    .hero-copy,
    .hero-visual,
    .footer {
      isolation: isolate;
    }

    @media (max-width: 980px) {
      .hero-radar-projector-img { bottom: 108px; width: min(185px, 38%); }
      .hero-tugboat-img { bottom: 150px; width: min(245px, 48%); left: 37%; }
      .depth-engine { display: none; }
      .depth-anchor { top: 34vh; right: -2vw; }
      .depth-rock { left: -18vw; }
      .depth-coral { right: -23vw; }
    }

    @media (max-width: 760px) {
      .hero-radar-main-img,
      .hero-radar-network-img { width: 112%; }
      .hero-radar-sweep-img { width: 98%; }
      .hero-radar-projector-img { bottom: 96px; width: min(150px, 42%); }
      .hero-tugboat-img { width: min(190px, 54%); bottom: 132px; left: 36%; }
      .holo-tugboat-img { width: 126px; }
      .ocean-depth-assets { opacity: .62; }
      .depth-plankton-b,
      .depth-propeller,
      .depth-sonar-orb { display: none; }
      .depth-rock { width: 430px; left: -210px; bottom: -95px; }
      .depth-coral { width: 430px; right: -230px; bottom: -105px; }
      .depth-anchor { width: 180px; right: -65px; top: 44vh; }
      .depth-beacon { width: 150px; left: 58vw; }
    }

  
    /* ===========================
       HERO CLEANUP — V7 PRO
       =========================== */
    .hero-grid-clean {
      grid-template-columns: minmax(0, .98fr) minmax(390px, .78fr);
      gap: clamp(34px, 5vw, 70px);
      align-items: center;
    }

    .hero-grid-clean .hero-copy {
      max-width: 760px;
    }

    .hero-grid-clean .hero-badge {
      margin-bottom: 22px;
    }

    .hero-grid-clean .hero h1,
    .hero-grid-clean h1 {
      font-size: clamp(4rem, 8.6vw, 9.45rem);
      line-height: .84;
      letter-spacing: -.105em;
    }

    .hero-grid-clean .hero-lead {
      max-width: 660px;
      margin-top: 26px;
      color: rgba(235, 246, 255, .76);
    }

    .hero-visual-clean {
      min-height: clamp(560px, 68vh, 690px);
      display: grid;
      place-items: center;
      perspective: 1400px;
      isolation: isolate;
    }

    .hero-clean-panel {
      width: min(100%, 570px);
      min-height: 620px;
      position: relative;
      overflow: hidden;
      border-radius: 38px;
      padding: 22px;
      transform-style: preserve-3d;
      transform: rotateY(-5deg) rotateX(3deg);
      border-color: rgba(188, 244, 255, .18);
      background:
        radial-gradient(circle at 50% 35%, rgba(0,116,213,.15), transparent 40%),
        radial-gradient(circle at 78% 82%, rgba(0,67,126,.10), transparent 32%),
        linear-gradient(145deg, rgba(255,255,255,.112), rgba(255,255,255,.044));
      box-shadow:
        0 34px 110px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.13);
    }

    .hero-clean-panel::before {
      content: "";
      position: absolute;
      inset: -30%;
      pointer-events: none;
      background:
        radial-gradient(circle at 50% 40%, rgba(0,116,213,.18), transparent 28%),
        linear-gradient(130deg, transparent 30%, rgba(255,255,255,.13) 50%, transparent 68%);
      opacity: .52;
      filter: blur(18px);
      transform: translateZ(-80px);
      animation: cleanPanelGlow 8s ease-in-out infinite;
    }

    .hero-clean-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 34px 34px;
      opacity: .36;
      mask-image: radial-gradient(circle at 50% 42%, black, transparent 76%);
    }

    @keyframes cleanPanelGlow {
      0%,100% { transform: translate3d(-2%, -1%, -80px) rotate(0deg); opacity: .42; }
      50% { transform: translate3d(2%, 1%, -80px) rotate(2deg); opacity: .66; }
    }

    .hero-clean-header {
      position: relative;
      z-index: 6;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      padding: 4px 2px 18px;
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .hero-clean-header span {
      display: block;
      color: rgba(232,248,255,.86);
      font-weight: 900;
      font-size: .86rem;
      letter-spacing: -.02em;
      margin-bottom: 5px;
    }

    .hero-clean-header strong {
      display: block;
      color: rgba(216,238,248,.54);
      font-size: .66rem;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .hero-clean-header em {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 11px;
      border-radius: 999px;
      border: 1px solid rgba(0,116,213,.30);
      background: rgba(0,116,213,.08);
      color: rgba(225,255,246,.92);
      font-style: normal;
      font-size: .65rem;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .hero-clean-header em::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 14px var(--green);
    }

    .hero-holo-scene {
      position: relative;
      z-index: 4;
      height: 410px;
      margin: 8px 0 18px;
      transform-style: preserve-3d;
      perspective: 1200px;
      overflow: visible;
    }

    .hero-depth-grid {
      position: absolute;
      inset: 28px 12px 40px;
      z-index: 1;
      border-radius: 50%;
      opacity: .42;
      transform: rotateX(66deg) translateZ(-95px) scale(.96);
      background:
        radial-gradient(circle, transparent 0 18%, rgba(0,116,213,.12) 18.3% 18.7%, transparent 19% 35%, rgba(0,116,213,.10) 35.3% 35.7%, transparent 36% 52%, rgba(0,116,213,.08) 52.3% 52.7%, transparent 53%),
        linear-gradient(rgba(0,116,213,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,116,213,.08) 1px, transparent 1px);
      background-size: auto, 38px 38px, 38px 38px;
      filter: blur(.25px);
    }

    .hero-depth-blur {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      filter: blur(38px);
      transform: translateZ(-140px);
    }

    .hero-depth-blur.blur-a {
      width: 300px;
      height: 300px;
      left: 50%;
      top: 48%;
      translate: -50% -50%;
      background: rgba(0,116,213,.18);
    }

    .hero-depth-blur.blur-b {
      width: 220px;
      height: 220px;
      right: 0;
      bottom: 18px;
      background: rgba(0,67,126,.10);
    }

    .clean-radar,
    .clean-tugboat,
    .clean-projector {
      position: absolute;
      left: 50%;
      top: 50%;
      display: block;
      max-width: none;
      object-fit: contain;
      user-select: none;
      pointer-events: none;
      -webkit-user-drag: none;
      transform-style: preserve-3d;
    }

    .clean-network {
      width: min(520px, 112%);
      opacity: .18;
      mix-blend-mode: screen;
      transform: translate(-50%, -54%) rotateX(63deg) rotateZ(5deg) translateZ(-70px) scale(.92);
      filter: saturate(1.08) brightness(.95) blur(1.15px) drop-shadow(0 0 28px rgba(0,116,213,.14));
      animation: cleanNetworkFloat 11s ease-in-out infinite;
    }

    .clean-main {
      width: min(470px, 96%);
      opacity: .42;
      mix-blend-mode: screen;
      transform: translate(-50%, -54%) rotateX(64deg) rotateZ(0deg) translateZ(-34px) scale(.95);
      filter: saturate(1.20) brightness(1.02) blur(.18px) drop-shadow(0 0 34px rgba(0,116,213,.18));
      animation: cleanRadarSpin 32s linear infinite;
    }

    .clean-sweep {
      width: min(430px, 84%);
      opacity: .50;
      mix-blend-mode: screen;
      transform: translate(-50%, -55%) rotateX(64deg) rotateZ(-22deg) translateZ(6px) scale(.92);
      filter: saturate(1.35) brightness(1.16) blur(.08px) drop-shadow(0 0 38px rgba(0,116,213,.24));
      animation: cleanSweepSpin 8.8s linear infinite;
    }

    .clean-projector {
      width: min(135px, 30%);
      top: auto;
      bottom: 8px;
      z-index: 7;
      opacity: .82;
      transform: translateX(-50%) translateZ(80px) scale(.86);
      filter: saturate(1.08) brightness(.88) drop-shadow(0 24px 28px rgba(0,0,0,.40)) drop-shadow(0 0 28px rgba(0,116,213,.22));
      animation: cleanProjectorFloat 5.8s ease-in-out infinite;
    }

    .clean-tugboat {
      width: min(245px, 49%);
      top: auto;
      bottom: 88px;
      z-index: 8;
      opacity: .92;
      transform: translateX(-50%) translateZ(116px) rotateZ(-2deg) scale(.93);
      filter:
        saturate(1.03)
        brightness(.86)
        contrast(1.03)
        drop-shadow(0 30px 34px rgba(0,0,0,.46))
        drop-shadow(0 0 22px rgba(0,116,213,.24));
      animation: cleanTugFloat 6.6s ease-in-out infinite;
    }

    .clean-route {
      position: absolute;
      z-index: 6;
      left: 50%;
      top: 52%;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, rgba(0,116,213,.84), rgba(0,67,126,.65), transparent);
      box-shadow: 0 0 18px rgba(0,116,213,.42);
      transform-origin: left center;
      opacity: .55;
      filter: blur(.15px);
    }

    .clean-route.route-one {
      width: 260px;
      transform: translate(-18%, 4px) rotate(-17deg) translateZ(60px);
      animation: cleanRoutePulse 3.4s ease-in-out infinite;
    }

    .clean-route.route-two {
      width: 220px;
      transform: translate(-70%, 44px) rotate(19deg) translateZ(58px);
      opacity: .38;
      animation: cleanRoutePulse 3.7s ease-in-out infinite .4s;
    }

    .clean-node {
      position: absolute;
      z-index: 9;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 0 7px rgba(0,116,213,.09), 0 0 20px rgba(0,116,213,.70);
    }

    .clean-node span {
      position: absolute;
      left: 18px;
      top: 50%;
      translate: 0 -50%;
      min-width: max-content;
      padding: 6px 9px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      color: rgba(242,250,255,.78);
      background: rgba(1,9,18,.56);
      backdrop-filter: blur(14px);
      font-size: .58rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .12em;
    }

    .node-a { left: 62%; top: 37%; background: var(--teal); }
    .node-b { left: 34%; top: 61%; }
    .node-c { left: 53%; top: 57%; background: var(--gold); box-shadow: 0 0 0 7px rgba(0,116,213,.08), 0 0 20px rgba(0,116,213,.60); }

    .hero-clean-stats {
      position: relative;
      z-index: 8;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      transform: translateZ(86px);
    }

    .clean-stat {
      min-height: 92px;
      padding: 15px 13px;
      border: 1px solid rgba(255,255,255,.105);
      border-radius: 20px;
      background:
        linear-gradient(180deg, rgba(2,10,18,.58), rgba(2,10,18,.38));
      backdrop-filter: blur(18px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
      overflow: hidden;
      position: relative;
    }

    .clean-stat::after {
      content: "";
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 10px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--cyan), transparent);
      opacity: .48;
    }

    .clean-stat strong {
      display: block;
      font-family: var(--display);
      font-size: clamp(1.56rem, 2.5vw, 2.28rem);
      letter-spacing: -.08em;
      line-height: .92;
    }

    .clean-stat small {
      display: block;
      margin-top: 8px;
      color: rgba(220,238,248,.55);
      font-size: .58rem;
      font-weight: 900;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    @keyframes cleanRadarSpin {
      to { transform: translate(-50%, -54%) rotateX(64deg) rotateZ(360deg) translateZ(-34px) scale(.95); }
    }

    @keyframes cleanSweepSpin {
      0% { transform: translate(-50%, -55%) rotateX(64deg) rotateZ(-22deg) translateZ(6px) scale(.92); opacity: .32; }
      45% { opacity: .56; }
      100% { transform: translate(-50%, -55%) rotateX(64deg) rotateZ(338deg) translateZ(6px) scale(.92); opacity: .32; }
    }

    @keyframes cleanNetworkFloat {
      0%,100% { translate: 0 0; opacity: .15; filter: saturate(1.08) brightness(.92) blur(1.4px) drop-shadow(0 0 22px rgba(0,116,213,.12)); }
      50% { translate: 0 -10px; opacity: .22; filter: saturate(1.12) brightness(1.02) blur(.95px) drop-shadow(0 0 32px rgba(0,116,213,.18)); }
    }

    @keyframes cleanProjectorFloat {
      0%,100% { translate: 0 0; }
      50% { translate: 0 -7px; }
    }

    @keyframes cleanTugFloat {
      0%,100% { translate: 0 0; rotate: -1deg; }
      50% { translate: 12px -10px; rotate: 1.4deg; }
    }

    @keyframes cleanRoutePulse {
      0%,100% { opacity: .30; filter: blur(.4px); }
      50% { opacity: .72; filter: blur(0); }
    }

    @media (max-width: 1180px) {
      .hero-grid-clean {
        grid-template-columns: 1fr;
      }

      .hero-grid-clean .hero-copy {
        max-width: 900px;
      }

      .hero-visual-clean {
        min-height: 620px;
      }

      .hero-clean-panel {
        width: min(100%, 680px);
        transform: none;
      }
    }

    @media (max-width: 760px) {
      .hero-grid-clean h1 {
        font-size: clamp(3.2rem, 18vw, 5.8rem);
      }

      .hero-visual-clean {
        min-height: 520px;
      }

      .hero-clean-panel {
        min-height: 510px;
        border-radius: 28px;
        padding: 16px;
      }

      .hero-holo-scene {
        height: 330px;
      }

      .clean-tugboat {
        width: min(208px, 58%);
        bottom: 76px;
      }

      .clean-projector {
        width: min(106px, 32%);
      }

      .clean-node span {
        display: none;
      }

      .hero-clean-stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .clean-stat {
        min-height: 76px;
        border-radius: 16px;
      }
    }



    /* ================================
       V8 Hero Ocean BG + CSS Neon Radar + Depth Timeline
       ================================ */
    .hero {
      min-height: 100svh;
      isolation: isolate;
      background: #04111c;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -3;
      background:
        linear-gradient(90deg, rgba(2,8,16,.92) 0%, rgba(2,8,16,.70) 32%, rgba(2,8,16,.36) 58%, rgba(2,8,16,.62) 100%),
        linear-gradient(180deg, rgba(2,8,16,.72) 0%, rgba(2,8,16,.14) 36%, rgba(2,8,16,.76) 100%),
        url("img/bg_hero.png") center center / cover no-repeat;
      transform: scale(1.025);
      filter: saturate(1.08) contrast(1.05) brightness(.82);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      background:
        radial-gradient(circle at 18% 42%, rgba(0,116,213,.18), transparent 28%),
        radial-gradient(circle at 76% 36%, rgba(0,67,126,.12), transparent 30%),
        linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.023) 1px, transparent 1px);
      background-size: auto, auto, 72px 72px, 72px 72px;
      opacity: .78;
      mix-blend-mode: screen;
    }

    .hero-orb.one,
    .hero-orb.two { display: none; }

    .hero-grid-clean {
      grid-template-columns: minmax(0, .98fr) minmax(380px, .56fr);
      gap: clamp(28px, 5vw, 72px);
    }

    .hero-copy {
      max-width: 820px;
      text-shadow: 0 22px 70px rgba(0,0,0,.46);
    }

    .hero h1 {
      filter: drop-shadow(0 24px 48px rgba(0,0,0,.42));
    }

    .hero-lead {
      max-width: 720px;
      color: rgba(235,246,255,.84);
    }

    .hero-badge {
      border-color: rgba(0,116,213,.36);
      background: rgba(2, 18, 30, .46);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 38px rgba(0,116,213,.12);
    }

    .hero-visual-clean {
      min-height: min(62vh, 620px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-css-panel {
      width: min(100%, 520px);
      min-height: 590px;
      padding: 20px;
      border-radius: 34px;
      transform: rotateY(-8deg) rotateX(5deg) translateZ(0);
      background:
        linear-gradient(145deg, rgba(5,24,38,.58), rgba(255,255,255,.055)),
        radial-gradient(circle at 52% 40%, rgba(0,116,213,.13), transparent 42%);
      border: 1px solid rgba(186,244,255,.20);
      box-shadow:
        0 40px 110px rgba(0,0,0,.44),
        inset 0 1px 0 rgba(255,255,255,.11),
        0 0 80px rgba(0,116,213,.13);
      backdrop-filter: blur(24px) saturate(135%);
    }

    .hero-css-panel::before {
      opacity: .42;
      background:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 36px 36px;
    }

    .hero-css-panel::after {
      content: "";
      position: absolute;
      inset: 12px;
      border-radius: 28px;
      border: 1px solid rgba(0,116,213,.10);
      background: radial-gradient(circle at 50% 8%, rgba(0,116,213,.10), transparent 38%);
      pointer-events: none;
    }

    .css-radar-scene {
      position: relative;
      z-index: 2;
      height: 390px;
      margin-top: 18px;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.10);
      background:
        radial-gradient(circle at 50% 52%, rgba(0,116,213,.12), transparent 48%),
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
      transform-style: preserve-3d;
    }

    .css-radar-scene::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.030) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 78%);
      opacity: .78;
    }

    .neon-radar {
      position: absolute;
      left: 50%;
      top: 48%;
      width: 330px;
      height: 330px;
      border-radius: 50%;
      transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-14deg);
      transform-style: preserve-3d;
      background:
        radial-gradient(circle, rgba(255,255,255,.9) 0 1px, rgba(0,116,213,.65) 2px, transparent 4px),
        repeating-radial-gradient(circle, transparent 0 42px, rgba(0,116,213,.22) 43px 44px),
        conic-gradient(from 0deg, rgba(0,116,213,.04), rgba(0,116,213,.18), transparent 24%, transparent 100%);
      border: 1px solid rgba(112,245,255,.36);
      box-shadow:
        0 0 36px rgba(0,116,213,.28),
        inset 0 0 42px rgba(0,116,213,.07);
      animation: radarFloat 5.5s ease-in-out infinite;
    }

    @keyframes radarFloat {
      0%,100% { translate: 0 0; filter: drop-shadow(0 0 16px rgba(0,116,213,.32)); }
      50% { translate: 0 -10px; filter: drop-shadow(0 0 30px rgba(0,67,126,.42)); }
    }

    .radar-ring,
    .radar-cross,
    .radar-scan,
    .radar-glow,
    .radar-blip,
    .radar-route { position: absolute; display: block; }

    .radar-ring {
      inset: var(--ring-inset);
      border-radius: 50%;
      border: 1px solid rgba(140,248,255,var(--ring-opacity));
      box-shadow: 0 0 16px rgba(0,116,213,.16);
    }
    .ring-1 { --ring-inset: 22px; --ring-opacity:.40; }
    .ring-2 { --ring-inset: 78px; --ring-opacity:.32; border-style: dashed; }
    .ring-3 { --ring-inset: 124px; --ring-opacity:.42; }

    .radar-cross {
      left: 50%; top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(transparent, rgba(0,116,213,.35), transparent);
    }
    .radar-cross.x { transform: translateX(-50%); }
    .radar-cross.y { transform: translateX(-50%) rotate(90deg); }

    .radar-scan {
      left: 50%; top: 50%;
      width: 50%; height: 50%;
      transform-origin: left top;
      background: conic-gradient(from -18deg at 0 0, rgba(0,116,213,.62), rgba(0,116,213,.12) 24deg, transparent 38deg);
      border-top: 1px solid rgba(183,253,255,.7);
      filter: blur(.2px) drop-shadow(0 0 18px rgba(0,116,213,.56));
      animation: cssRadarSweep 5.4s linear infinite;
    }

    @keyframes cssRadarSweep { to { transform: rotate(360deg); } }

    .radar-glow {
      left: 50%; top: 50%;
      width: 10px; height: 10px;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      background: #dffcff;
      box-shadow: 0 0 10px #fff, 0 0 30px var(--cyan), 0 0 62px var(--teal);
    }

    .radar-blip {
      width: 13px; height: 13px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 0 8px rgba(0,116,213,.11), 0 0 22px rgba(0,116,213,.95);
      animation: blipPulse 1.9s ease-in-out infinite;
    }

    .radar-blip b {
      position: absolute;
      left: 18px;
      top: -6px;
      padding: 4px 7px;
      border-radius: 999px;
      color: rgba(240,253,255,.9);
      background: rgba(0,8,16,.62);
      border: 1px solid rgba(255,255,255,.12);
      font-size: 9px;
      line-height: 1;
      letter-spacing: .12em;
      transform: rotateZ(14deg) rotateX(-60deg);
      white-space: nowrap;
    }

    .blip-a { left: 62%; top: 28%; }
    .blip-b { left: 31%; top: 64%; animation-delay:.45s; }
    .blip-c { left: 68%; top: 72%; animation-delay:.9s; background: var(--teal); }

    @keyframes blipPulse {
      0%,100% { opacity:.65; scale:.86; }
      50% { opacity:1; scale:1.16; }
    }

    .radar-route {
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(0,116,213,.9), transparent);
      box-shadow: 0 0 18px rgba(0,116,213,.55);
      transform-origin: left center;
      opacity: .78;
    }
    .route-a { left: 36%; top: 66%; width: 128px; rotate: -34deg; }
    .route-b { left: 52%; top: 34%; width: 104px; rotate: 42deg; animation: routeFlash 2.6s ease-in-out infinite; }

    @keyframes routeFlash { 50% { opacity:.28; } }

    .css-operation-card {
      position: absolute;
      z-index: 4;
      width: min(220px, 46%);
      padding: 15px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.15);
      background: rgba(8,31,45,.56);
      backdrop-filter: blur(18px);
      box-shadow: 0 22px 56px rgba(0,0,0,.32);
      animation: cardFloat 5s ease-in-out infinite;
    }

    .css-operation-card.card-a { right: 18px; top: 72px; }
    .css-operation-card.card-b { left: 18px; bottom: 34px; animation-delay: .7s; }

    @keyframes cardFloat {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .css-operation-card small {
      display:block;
      color: rgba(207,241,255,.58);
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size:.62rem;
      font-weight:900;
      margin-bottom:8px;
    }

    .css-operation-card strong {
      display:block;
      font-family:var(--display);
      font-size:1.05rem;
      line-height:1.12;
      letter-spacing:-.04em;
    }

    .css-operation-card i {
      display:block;
      height:5px;
      margin-top:12px;
      border-radius:99px;
      background:linear-gradient(90deg,var(--cyan),var(--teal),rgba(255,255,255,.12));
      box-shadow:0 0 18px rgba(0,116,213,.45);
    }

    .ocean-ruler {
      position: fixed;
      left: 24px;
      top: 50%;
      z-index: 9300;
      width: 92px;
      height: min(64vh, 620px);
      transform: translateY(-50%);
      pointer-events: none;
      opacity: .9;
      transition: opacity .25s ease;
    }

    .ocean-ruler-label {
      position: absolute;
      left: -29px;
      top: 50%;
      transform: translateY(-50%) rotate(-90deg);
      transform-origin: center;
      color: rgba(216,242,255,.52);
      font-size: .60rem;
      font-weight: 900;
      letter-spacing: .22em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .ocean-ruler-track {
      position: absolute;
      left: 34px;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(180deg, rgba(0,116,213,.65), rgba(0,116,213,.18), rgba(0,67,126,.45));
      box-shadow: 0 0 22px rgba(0,116,213,.34);
    }

    .ruler-fill {
      position: absolute;
      left: -1px;
      top: 0;
      width: 3px;
      height: calc(var(--depth) * 100%);
      border-radius: 99px;
      background: linear-gradient(180deg, var(--cyan), var(--blue), var(--teal));
      box-shadow: 0 0 18px rgba(0,116,213,.65);
    }

    .ruler-probe {
      position: absolute;
      left: -8px;
      top: calc(var(--depth) * 100%);
      width: 17px;
      height: 17px;
      transform: translateY(-50%);
      border-radius: 50%;
      background: #dfffff;
      box-shadow: 0 0 0 8px rgba(0,116,213,.12), 0 0 26px rgba(0,116,213,.95);
    }

    .ruler-probe b {
      position: absolute;
      left: 26px;
      top: 50%;
      transform: translateY(-50%);
      padding: 5px 8px;
      border-radius: 999px;
      color: rgba(236,251,255,.90);
      background: rgba(2,12,24,.48);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(14px);
      font-size: .68rem;
      letter-spacing: .03em;
      white-space: nowrap;
    }

    .ocean-ruler-track i {
      position: absolute;
      left: -6px;
      top: var(--y);
      width: 16px;
      height: 1px;
      background: rgba(226,250,255,.55);
      box-shadow: 0 0 10px rgba(0,116,213,.34);
    }

    .ocean-ruler-track i::after {
      content: attr(data-depth);
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(216,242,255,.52);
      font-size: .58rem;
      font-weight: 800;
      letter-spacing: .06em;
      white-space: nowrap;
    }

    @media (max-width: 1180px) {
      .hero-grid-clean { grid-template-columns: 1fr; }
      .hero-visual-clean { min-height: 560px; }
      .hero-css-panel { transform: none; width: min(100%, 680px); }
      .ocean-ruler { opacity: .48; }
    }

    @media (max-width: 760px) {
      .hero::before {
        background-position: 62% center;
        filter: saturate(1.05) contrast(1.02) brightness(.72);
      }
      .hero-visual-clean { min-height: 430px; }
      .hero-css-panel { min-height: 470px; border-radius: 26px; }
      .css-radar-scene { height: 280px; border-radius: 22px; }
      .neon-radar { width: 245px; height: 245px; }
      .css-operation-card { width: min(178px, 50%); padding: 12px; }
      .css-operation-card strong { font-size: .88rem; }
      .hero-clean-stats { grid-template-columns: repeat(2, 1fr); }
      .ocean-ruler { display: none; }
      .depth-meter { right: 12px; bottom: 12px; transform: scale(.86); transform-origin: right bottom; }
    }



    /* ================================
       V11 Pointer Polish: spin-only compact radar cursor
       ================================ */
    .hero {
      overflow: hidden;
    }

    .hero::before {
      transform: scale(1.075) translate3d(0, 0, 0);
      transform-origin: 62% 46%;
      background-position: 0 0, 0 0, 50% 50%;
      animation: heroOceanDrift 24s ease-in-out infinite alternate;
      will-change: transform, background-position, filter;
    }

    @keyframes heroOceanDrift {
      0% {
        transform: scale(1.075) translate3d(-.6%, -.5%, 0);
        background-position: 0 0, 0 0, 48% 49%;
        filter: saturate(1.08) contrast(1.06) brightness(.78);
      }
      45% {
        transform: scale(1.105) translate3d(1.2%, -.9%, 0);
        background-position: 0 0, 0 0, 54% 46%;
        filter: saturate(1.16) contrast(1.08) brightness(.84);
      }
      100% {
        transform: scale(1.09) translate3d(-1.1%, .9%, 0);
        background-position: 0 0, 0 0, 51% 53%;
        filter: saturate(1.12) contrast(1.07) brightness(.80);
      }
    }

    .hero::after {
      animation: heroGridGlow 9s ease-in-out infinite alternate;
      will-change: opacity, transform;
    }

    @keyframes heroGridGlow {
      0% { opacity: .52; transform: translate3d(0, 0, 0); }
      100% { opacity: .84; transform: translate3d(-10px, 6px, 0); }
    }

    .hero-grid-clean {
      grid-template-columns: minmax(0, .90fr) minmax(420px, .54fr);
      gap: clamp(34px, 5vw, 78px);
      align-items: center;
    }

    .hero-copy {
      max-width: 790px;
      padding-top: clamp(16px, 3.2vh, 48px);
    }

    .hero h1 {
      max-width: 790px;
      font-size: clamp(3.95rem, 7.8vw, 8.75rem);
      line-height: .895;
      letter-spacing: -.082em;
      overflow: visible;
      filter: drop-shadow(0 26px 52px rgba(0,0,0,.48));
    }

    .hero h1 .line {
      display: block;
      overflow: visible;
      padding: .018em 0 .055em;
    }

    .hero h1 .line + .line {
      margin-top: -.015em;
    }

    .hero h1 .word {
      padding-right: .035em;
      padding-bottom: .04em;
      will-change: transform;
    }

    .hero h1 .line:nth-child(2) .word {
      letter-spacing: -.088em;
    }

    .hero h1 .line:nth-child(3) .word {
      letter-spacing: -.086em;
    }

    .hero-lead {
      max-width: 660px;
      margin-top: 22px;
      font-size: clamp(.98rem, 1.16vw, 1.13rem);
      line-height: 1.78;
    }

    .hero-actions {
      margin-top: 28px;
    }

    .hero-visual-clean {
      min-height: min(62vh, 610px);
    }

    .hero-css-panel {
      width: min(100%, 558px);
      min-height: 552px;
      padding: 18px;
      border-radius: 34px;
      transform: rotateY(-5.5deg) rotateX(4deg) translateZ(0);
      box-shadow:
        0 46px 120px rgba(0,0,0,.50),
        inset 0 1px 0 rgba(255,255,255,.12),
        0 0 86px rgba(0,116,213,.15);
    }

    .hero-clean-header {
      position: relative;
      z-index: 8;
    }

    .css-radar-scene {
      height: 342px;
      margin-top: 14px;
      border-radius: 26px;
      box-shadow: inset 0 0 60px rgba(0,116,213,.06);
    }

    .neon-radar {
      width: 292px;
      height: 292px;
      top: 50%;
      opacity: .96;
    }

    .css-operation-card {
      width: min(206px, 46%);
      padding: 13px 14px;
      border-radius: 18px;
    }

    .css-operation-card.card-a { right: 16px; top: 58px; }
    .css-operation-card.card-b { left: 16px; bottom: 26px; }

    .css-operation-card strong {
      font-size: .94rem;
      line-height: 1.13;
    }

    .css-operation-card small {
      font-size: .56rem;
    }

    .hero-clean-stats {
      gap: 12px;
      margin-top: 14px;
      transform: translateZ(76px);
    }

    .clean-stat {
      min-width: 0;
      min-height: 86px;
      padding: 14px 10px 18px;
      border-radius: 20px;
      overflow: hidden;
    }

    .clean-stat strong {
      display: block;
      max-width: 100%;
      white-space: nowrap;
      font-size: clamp(1.42rem, 2vw, 2.08rem);
      letter-spacing: -.058em;
      line-height: .98;
    }

    .clean-stat small {
      margin-top: 7px;
      font-size: .54rem;
      line-height: 1.18;
      letter-spacing: .115em;
      overflow-wrap: anywhere;
    }

    .clean-stat:nth-child(3) strong {
      font-size: clamp(1.36rem, 1.86vw, 1.95rem);
      letter-spacing: -.06em;
    }

    .depth-meter {
      backdrop-filter: blur(18px) saturate(140%);
    }

    .ocean-ruler {
      opacity: .82;
      filter: drop-shadow(0 0 18px rgba(0,116,213,.16));
    }

    .ocean-ruler-track {
      animation: rulerPulse 2.8s ease-in-out infinite;
    }

    @keyframes rulerPulse {
      0%,100% { opacity: .72; }
      50% { opacity: 1; }
    }

    @media (pointer: fine) {
      html, body,
      a, button, .pill, .fleet-tab, .copy-btn,
      input, textarea, select, [role="button"] {
        cursor: none !important;
      }

      .cursor-glow {
        width: 24px;
        height: 24px;
        left: -80px;
        top: -80px;
        z-index: 99999;
        opacity: 0;
        border-radius: 50%;
        background:
          conic-gradient(from 0deg, rgba(0,116,213,.98) 0 46deg, transparent 48deg 172deg, rgba(0,67,126,.76) 174deg 204deg, transparent 206deg 360deg),
          radial-gradient(circle at center, rgba(235,255,255,1) 0 1.8px, rgba(0,116,213,.50) 2.6px 4.3px, rgba(0,116,213,.08) 5px 10px, transparent 11px);
        border: 1px solid rgba(190,250,255,.58);
        box-shadow:
          0 0 6px rgba(255,255,255,.30),
          0 0 14px rgba(0,116,213,.48),
          0 0 22px rgba(0,67,126,.14);
        filter: none;
        mix-blend-mode: screen;
        transform: translate(-50%, -50%) rotate(0deg);
        transition: opacity .12s linear;
        animation: cursorRadarSpin 1.45s linear infinite;
        will-change: transform;
      }

      body:hover .cursor-glow {
        opacity: .78;
      }

      .cursor-glow::before,
      .cursor-glow::after {
        content: "";
        position: absolute;
        inset: 4.5px;
        border-radius: 50%;
        pointer-events: none;
        border: 1px dashed rgba(223,255,255,.46);
        box-shadow: inset 0 0 6px rgba(0,116,213,.14);
      }

      .cursor-glow::after {
        inset: 9px;
        border-style: solid;
        border-color: rgba(0,116,213,.38);
        box-shadow: 0 0 7px rgba(0,116,213,.18);
      }

      .cursor-glow.is-clicking {
        opacity: .78;
      }
    }

    @keyframes cursorRadarSpin {
      from { transform: translate(-50%, -50%) rotate(0deg); }
      to { transform: translate(-50%, -50%) rotate(360deg); }
    }

    @media (max-width: 1180px) {
      .hero-grid-clean { grid-template-columns: 1fr; }
      .hero-copy { max-width: 900px; }
      .hero h1 { max-width: 900px; font-size: clamp(4rem, 12vw, 8.2rem); }
      .hero-css-panel { transform: none; width: min(100%, 680px); }
      .hero-clean-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    }

    @media (max-width: 760px) {
      .hero h1 {
        font-size: clamp(3.25rem, 17vw, 5.9rem);
        line-height: .92;
        letter-spacing: -.074em;
      }
      .hero h1 .line { padding-bottom: .08em; }
      .hero-css-panel { min-height: 448px; }
      .css-radar-scene { height: 260px; }
      .hero-clean-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .clean-stat strong { font-size: 1.72rem; }
      .clean-stat:nth-child(3) strong { font-size: 1.58rem; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
      .hero-copy { padding-top: 10px; }
      .hero-lead { font-size: .95rem; line-height: 1.72; }
    }

  

    /* ================================
       V12 Hero Radar Gimmick Premium
       Keep latest V11 pointer + V8 hero, enrich only radar card.
    ================================= */
    .hero-css-panel {
      min-height: 640px;
      isolation: isolate;
    }

    .hero-clean-header {
      position: relative;
      z-index: 8;
    }

    .css-radar-scene {
      height: 430px;
      isolation: isolate;
      background:
        radial-gradient(circle at 50% 48%, rgba(0,116,213,.22), transparent 34%),
        radial-gradient(circle at 50% 78%, rgba(0,67,126,.10), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.040), rgba(255,255,255,.014));
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.025),
        inset 0 0 80px rgba(0,116,213,.065),
        0 24px 72px rgba(0,0,0,.18);
    }

    .css-radar-scene::before {
      background:
        linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px),
        linear-gradient(45deg, transparent 49.7%, rgba(0,116,213,.05) 50%, transparent 50.3%),
        linear-gradient(-45deg, transparent 49.7%, rgba(0,116,213,.035) 50%, transparent 50.3%);
      background-size: 32px 32px, 32px 32px, 92px 92px, 92px 92px;
      mask-image: radial-gradient(circle at 50% 52%, black 0%, transparent 78%);
      animation: radarGridDrift 14s linear infinite;
    }

    @keyframes radarGridDrift {
      to { background-position: 32px 32px, 32px 32px, 92px 92px, -92px 92px; }
    }

    .radar-scene-grid,
    .radar-scanlines,
    .radar-corner,
    .radar-data-strip,
    .radar-side-readout,
    .radar-micro-label { position:absolute; z-index:2; pointer-events:none; }

    .radar-scene-grid {
      inset: 18px;
      border-radius: 24px;
      border: 1px solid rgba(0,116,213,.08);
      background:
        radial-gradient(circle at 50% 54%, transparent 0 18%, rgba(0,116,213,.055) 18.3% 18.6%, transparent 19% 32%, rgba(0,116,213,.05) 32.3% 32.6%, transparent 33% 47%, rgba(0,116,213,.045) 47.3% 47.6%, transparent 48%),
        conic-gradient(from 0deg at 50% 54%, transparent 0 9deg, rgba(0,116,213,.085) 9deg 10deg, transparent 10deg 29deg, rgba(0,116,213,.06) 29deg 30deg, transparent 30deg 360deg);
      opacity: .82;
      transform: perspective(800px) rotateX(58deg) translateY(8px) scale(1.18);
      filter: drop-shadow(0 0 28px rgba(0,116,213,.09));
    }

    .radar-scanlines {
      inset: 0;
      z-index: 7;
      background: repeating-linear-gradient(180deg, rgba(255,255,255,.035) 0 1px, transparent 1px 8px);
      mix-blend-mode: screen;
      opacity: .18;
      animation: radarScanlineMove 7s linear infinite;
    }

    @keyframes radarScanlineMove { to { transform: translateY(56px); } }

    .radar-corner {
      width: 54px;
      height: 54px;
      opacity: .55;
      border-color: rgba(0,116,213,.42);
      filter: drop-shadow(0 0 12px rgba(0,116,213,.24));
    }
    .corner-tl { left: 18px; top: 18px; border-left: 1px solid; border-top: 1px solid; border-radius: 18px 0 0 0; }
    .corner-tr { right: 18px; top: 18px; border-right: 1px solid; border-top: 1px solid; border-radius: 0 18px 0 0; }
    .corner-bl { left: 18px; bottom: 18px; border-left: 1px solid; border-bottom: 1px solid; border-radius: 0 0 0 18px; }
    .corner-br { right: 18px; bottom: 18px; border-right: 1px solid; border-bottom: 1px solid; border-radius: 0 0 18px 0; }

    .radar-data-strip {
      left: 22px;
      right: 22px;
      top: 18px;
      display: flex;
      justify-content: center;
      gap: 8px;
      z-index: 9;
    }

    .radar-data-strip span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      min-width: 0;
      padding: 7px 9px;
      border-radius: 999px;
      color: rgba(226,250,255,.72);
      background: rgba(2,13,24,.38);
      border: 1px solid rgba(0,116,213,.14);
      backdrop-filter: blur(14px);
      font-size: .49rem;
      line-height: 1;
      font-weight: 900;
      letter-spacing: .105em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .radar-data-strip span::before {
      content:"";
      flex: 0 0 auto;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 12px rgba(0,116,213,.9);
    }

    @media (max-width: 680px) {
      .radar-data-strip span {
        font-size: .45rem;
        letter-spacing: .075em;
        padding-inline: 7px;
        gap: 5px;
      }
    }

    .radar-side-readout {
      width: 104px;
      padding: 10px 11px;
      border-radius: 17px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(3,14,26,.48);
      backdrop-filter: blur(16px);
      box-shadow: 0 16px 44px rgba(0,0,0,.20);
      z-index: 6;
    }
    .readout-left { left: 22px; top: 68px; }
    .readout-right { right: 22px; bottom: 42px; }

    .radar-side-readout small,
    .radar-side-readout em {
      display: block;
      color: rgba(207,241,255,.56);
      font-size: .55rem;
      font-weight: 900;
      font-style: normal;
      letter-spacing: .15em;
      text-transform: uppercase;
    }
    .radar-side-readout strong {
      display: block;
      margin: 4px 0 7px;
      font-family: var(--display);
      font-size: 1.18rem;
      line-height: 1;
      letter-spacing: -.05em;
    }
    .radar-side-readout i {
      display:inline-block;
      width: 7px;
      height: 24px;
      margin-right: 4px;
      border-radius: 99px 99px 3px 3px;
      background: linear-gradient(180deg, var(--cyan), rgba(0,116,213,.1));
      box-shadow: 0 0 12px rgba(0,116,213,.28);
      animation: signalMini 1.8s ease-in-out infinite;
    }
    .radar-side-readout i:nth-of-type(2) { height: 32px; animation-delay:.12s; }
    .radar-side-readout i:nth-of-type(3) { height: 18px; animation-delay:.24s; }
    .radar-side-readout i:nth-of-type(4) { height: 38px; animation-delay:.36s; }
    @keyframes signalMini { 50% { opacity:.48; transform: scaleY(.72); } }

    .radar-micro-label {
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(0,116,213,.22);
      color: rgba(231,252,255,.62);
      background: rgba(2,13,24,.35);
      font-size: .58rem;
      font-weight: 900;
      letter-spacing: .08em;
      z-index: 5;
    }
    .label-n { left: 50%; top: 64px; transform: translateX(-50%); }
    .label-e { right: 90px; top: 50%; transform: translateY(-50%); }
    .label-s { left: 50%; bottom: 52px; transform: translateX(-50%); }
    .label-w { left: 90px; top: 50%; transform: translateY(-50%); }

    .neon-radar {
      width: 360px;
      height: 360px;
      top: 53%;
      background:
        radial-gradient(circle, rgba(255,255,255,.95) 0 1px, rgba(0,116,213,.82) 2px, transparent 4px),
        repeating-radial-gradient(circle, transparent 0 28px, rgba(0,116,213,.18) 29px 30px),
        repeating-conic-gradient(from 0deg, rgba(0,116,213,.16) 0deg 1deg, transparent 1deg 10deg),
        conic-gradient(from 0deg, rgba(0,116,213,.04), rgba(0,116,213,.20), transparent 28%, transparent 100%);
      border-color: rgba(112,245,255,.42);
      animation: premiumRadarBreath 6.5s ease-in-out infinite;
    }

    @keyframes premiumRadarBreath {
      0%, 100% { filter: drop-shadow(0 0 18px rgba(0,116,213,.32)); }
      50% { filter: drop-shadow(0 0 34px rgba(0,67,126,.36)); }
    }

    .ring-4 { --ring-inset: 44px; --ring-opacity:.20; border-style: dotted; }
    .ring-5 { --ring-inset: 102px; --ring-opacity:.24; }

    .radar-orbit {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(0,116,213,.14);
    }
    .radar-orbit::after {
      content:"";
      position:absolute;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #e8feff;
      box-shadow: 0 0 16px rgba(0,116,213,.95);
    }
    .orbit-1 { inset: 58px; animation: orbitSpin 10s linear infinite; }
    .orbit-1::after { left: 18%; top: 8%; }
    .orbit-2 { inset: 118px; animation: orbitSpin 7s linear infinite reverse; }
    .orbit-2::after { right: 6%; bottom: 22%; background: var(--teal); }
    @keyframes orbitSpin { to { transform: rotate(360deg); } }

    .radar-cross.d1 { transform: translateX(-50%) rotate(45deg); opacity:.46; }
    .radar-cross.d2 { transform: translateX(-50%) rotate(-45deg); opacity:.34; }

    .radar-blip.blip-d { left: 42%; top: 20%; animation-delay:1.1s; background:#dffcff; }
    .radar-blip.blip-e { left: 25%; top: 39%; animation-delay:1.45s; width:10px; height:10px; }
    .radar-blip.blip-f { left: 78%; top: 46%; animation-delay:1.8s; width:10px; height:10px; background:var(--teal); }

    .route-c { left: 28%; top: 42%; width: 155px; rotate: 16deg; opacity:.42; animation: routeFlash 3.1s ease-in-out infinite; }
    .route-d { left: 55%; top: 70%; width: 118px; rotate: -19deg; opacity:.50; animation: routeFlash 2.4s ease-in-out infinite reverse; }

    .css-operation-card {
      z-index: 10;
      box-shadow:
        0 22px 56px rgba(0,0,0,.32),
        inset 0 1px 0 rgba(255,255,255,.08),
        0 0 34px rgba(0,116,213,.055);
    }

    .css-operation-card.card-a { right: 26px; top: 104px; }
    .css-operation-card.card-b { left: 26px; bottom: 42px; }

    @media (max-width: 680px) {
      .css-radar-scene { height: 340px; }
      .neon-radar { width: 270px; height: 270px; }
      .radar-data-strip { display:none; }
      .radar-side-readout { display:none; }
      .radar-micro-label { display:none; }
      .css-operation-card { width: min(210px, 58%); }
      .css-operation-card.card-a { right: 12px; top: 80px; }
      .css-operation-card.card-b { left: 12px; bottom: 24px; }
    }

  

    /* ================================
       V13 Radar Card Proportional Fix
       Minor positioning polish: cleaner spacing, proportional radar overlays,
       no layout disruption outside hero.
    ================================= */
    .hero-css-panel {
      width: min(100%, 560px);
      min-height: 635px;
      padding: 22px;
    }

    .css-radar-scene {
      height: 420px;
      margin-top: 16px;
      border-radius: 30px;
    }

    .radar-scene-grid {
      inset: 32px 24px 34px;
      border-radius: 30px;
      opacity: .70;
      transform: perspective(860px) rotateX(58deg) translateY(22px) scale(1.10);
    }

    .radar-data-strip {
      left: 26px;
      right: 26px;
      top: 18px;
      gap: 12px;
      justify-content: space-between;
      align-items: center;
    }

    .radar-data-strip span {
      flex: 1 1 0;
      justify-content: center;
      min-height: 36px;
      padding: 8px 12px;
      font-size: .53rem;
      letter-spacing: .15em;
      text-align: center;
      white-space: nowrap;
    }

    .neon-radar {
      width: 338px;
      height: 338px;
      top: 55%;
      transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-14deg);
    }

    .radar-side-readout {
      width: 108px;
      padding: 12px;
      border-radius: 18px;
    }

    .readout-left {
      left: 30px;
      top: 86px;
    }

    .readout-right {
      right: 30px;
      bottom: 56px;
      width: 118px;
    }

    .radar-side-readout strong {
      font-size: 1.08rem;
      letter-spacing: -.04em;
    }

    .radar-side-readout i {
      width: 7px;
      margin-right: 3px;
    }

    .radar-micro-label {
      width: 24px;
      height: 24px;
      font-size: .58rem;
      background: rgba(2,13,24,.44);
      border-color: rgba(0,116,213,.26);
    }

    .label-n { top: 78px; }
    .label-e { right: 108px; top: 52%; }
    .label-s { bottom: 66px; }
    .label-w { left: 108px; top: 52%; }

    .css-operation-card {
      width: min(235px, 43%);
      padding: 16px;
      border-radius: 22px;
    }

    .css-operation-card.card-a {
      right: 34px;
      top: 128px;
    }

    .css-operation-card.card-b {
      left: 34px;
      bottom: 68px;
    }

    .css-operation-card strong {
      font-size: 1rem;
      line-height: 1.14;
    }

    .css-operation-card small {
      font-size: .58rem;
      letter-spacing: .15em;
    }

    .radar-blip b {
      font-size: 8px;
      padding: 4px 6px;
      opacity: .78;
    }

    .hero-clean-stats {
      gap: 12px;
    }

    .clean-stat {
      min-height: 94px;
      padding: 14px 11px;
      border-radius: 21px;
    }

    .clean-stat strong {
      font-size: clamp(1.52rem, 2.25vw, 2.14rem);
      line-height: .94;
    }

    .clean-stat small {
      font-size: .48rem;
      letter-spacing: .075em;
      white-space: nowrap;
    }

    @media (max-width: 1180px) {
      .hero-css-panel {
        width: min(100%, 540px);
      }
      .clean-stat small {
        font-size: .47rem;
        letter-spacing: .065em;
      }
    }

    @media (max-width: 680px) {
      .hero-css-panel {
        min-height: 560px;
        padding: 16px;
      }
      .css-radar-scene {
        height: 330px;
        border-radius: 24px;
      }
      .neon-radar {
        width: 260px;
        height: 260px;
        top: 54%;
      }
      .css-operation-card {
        width: min(190px, 58%);
        padding: 12px;
      }
      .css-operation-card.card-a {
        right: 12px;
        top: 82px;
      }
      .css-operation-card.card-b {
        left: 12px;
        bottom: 30px;
      }
      .hero-clean-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .clean-stat small {
        white-space: normal;
      }
    }


    /* ================================
       V14 Radar Badge Precision Fix
       Top HUD badges aligned cleanly away from target corner lines.
    ================================= */
    .radar-data-strip {
      top: 30px;
      left: 42px;
      right: 42px;
      display: grid;
      grid-template-columns: 1fr 1.58fr 1fr;
      gap: 14px;
      align-items: center;
      justify-content: center;
      z-index: 14;
    }

    .radar-data-strip span {
      min-width: 0;
      min-height: 36px;
      height: 36px;
      padding: 0 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: rgba(2, 13, 24, .66);
      border-color: rgba(0,116,213,.20);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.075),
        0 0 0 1px rgba(255,255,255,.018),
        0 13px 34px rgba(0,0,0,.16),
        0 0 24px rgba(0,116,213,.045);
      backdrop-filter: blur(18px) saturate(145%);
      font-size: .52rem;
      line-height: 1;
      letter-spacing: .145em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .radar-data-strip span::before {
      flex: 0 0 auto;
      width: 5px;
      height: 5px;
      margin-right: 2px;
    }

    .radar-corner {
      z-index: 3;
      opacity: .38;
    }

    .corner-tl,
    .corner-tr {
      top: 22px;
    }

    .corner-tl { left: 28px; }
    .corner-tr { right: 28px; }

    .readout-left {
      top: 100px;
    }

    .label-n {
      top: 91px;
    }

    .css-operation-card.card-a {
      top: 138px;
    }

    .neon-radar {
      top: 56%;
    }

    @media (max-width: 680px) {
      .radar-data-strip {
        display: none;
      }
      .readout-left {
        top: 82px;
      }
      .label-n {
        top: 72px;
      }
      .css-operation-card.card-a {
        top: 82px;
      }
    }



    /* ===========================
       V16 Cockpit Header + Footer Polish
       =========================== */
    .nav-cockpit {
      inset: 16px 0 auto 0;
    }

    .cockpit-nav-inner {
      position: relative;
      min-height: 72px;
      padding: 10px 14px 10px 16px;
      border-color: rgba(150, 222, 255, .22);
      background:
        radial-gradient(circle at 16% 0%, rgba(0,116,213,.16), transparent 36%),
        linear-gradient(180deg, rgba(5,16,29,.78), rgba(1,9,17,.68));
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        inset 0 -1px 0 rgba(0,116,213,.08),
        0 22px 70px rgba(0,0,0,.44),
        0 0 0 1px rgba(255,255,255,.02);
      overflow: hidden;
    }

    .cockpit-nav-inner::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(rgba(0,116,213,.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,116,213,.034) 1px, transparent 1px);
      background-size: 42px 42px, 42px 42px;
      opacity: .42;
      mask-image: linear-gradient(90deg, transparent, black 13%, black 87%, transparent);
    }

    .cockpit-nav-inner::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 7px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0,116,213,.35), rgba(0,67,126,.28), transparent);
      opacity: .78;
      pointer-events: none;
    }

    .cockpit-brand,
    .cockpit-links,
    .cockpit-actions,
    .nav-hud-center,
    .menu-toggle {
      position: relative;
      z-index: 2;
    }

    .brand-logo {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      padding: 0;
      background: linear-gradient(135deg, rgba(0,116,213,.96), rgba(0,67,126,.96));
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.22),
        0 0 34px rgba(0,116,213,.28),
        0 14px 36px rgba(0,0,0,.24);
      overflow: hidden;
    }

    .brand-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 8px;
      filter: drop-shadow(0 1px 0 rgba(255,255,255,.16));
    }

    .brand-logo .brand-fallback {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      font-family: var(--display);
      font-size: .92rem;
      font-weight: 900;
      color: #03101d;
      letter-spacing: -.13em;
      opacity: 0;
      pointer-events: none;
    }

    .brand-logo img[src=""],
    .brand-logo img:not([src]) {
      display: none;
    }

    .brand-logo img[src=""] + .brand-fallback,
    .brand-logo img:not([src]) + .brand-fallback {
      opacity: 1;
    }

    .cockpit-brand {
      gap: 15px;
      padding-right: 18px;
    }

    .cockpit-brand::after {
      content: "";
      position: absolute;
      right: 0;
      top: 9px;
      bottom: 9px;
      width: 1px;
      background: linear-gradient(transparent, rgba(0,116,213,.30), transparent);
    }

    .cockpit-brand .brand-text strong {
      font-size: 1rem;
      letter-spacing: -.035em;
    }

    .cockpit-brand .brand-text small {
      letter-spacing: .22em;
      color: rgba(210,230,241,.58);
    }

    .nav-hud-center {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 0 1 auto;
      padding: 0 8px;
    }

    .hud-node {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 30px;
      padding: 0 11px;
      border-radius: 999px;
      border: 1px solid rgba(0,116,213,.18);
      background: rgba(255,255,255,.035);
      color: rgba(229,240,248,.62);
      font-size: .63rem;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .hud-node i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(0,116,213,.85);
    }

    .hud-node.is-live {
      color: rgba(224,255,249,.78);
      border-color: rgba(0,67,126,.24);
      background: rgba(0,67,126,.055);
    }

    .cockpit-links {
      gap: 2px;
      padding: 6px;
      background: rgba(2,10,18,.52);
      border-color: rgba(166,225,255,.15);
      box-shadow: inset 0 0 28px rgba(0,116,213,.045);
    }

    .cockpit-links a {
      position: relative;
      padding: 12px 17px;
      color: rgba(239,248,255,.72);
      font-size: .84rem;
      letter-spacing: -.01em;
    }

    .cockpit-links a::before {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 5px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      transform: translateX(-50%) scale(.45);
      background: var(--cyan);
      opacity: 0;
      box-shadow: 0 0 12px rgba(0,116,213,.9);
      transition: opacity .22s ease, transform .22s ease;
    }

    .cockpit-links a:hover::before,
    .cockpit-links a.is-active::before {
      opacity: 1;
      transform: translateX(-50%) scale(1);
    }

    .cockpit-links a:hover,
    .cockpit-links a.is-active {
      color: #03101d;
      background: linear-gradient(135deg, rgba(0,116,213,.92), rgba(0,67,126,.92));
      box-shadow: 0 0 24px rgba(0,116,213,.16);
    }

    .cockpit-actions .pill {
      min-height: 44px;
      padding-inline: 19px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.045);
    }

    .cockpit-footer {
      position: relative;
      padding: 92px 0 42px;
      overflow: hidden;
      color: rgba(229,240,248,.74);
    }

    .cockpit-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 10% 20%, rgba(0,116,213,.16), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(0,67,126,.11), transparent 32%),
        linear-gradient(rgba(0,116,213,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,116,213,.032) 1px, transparent 1px);
      background-size: auto, auto, 64px 64px, 64px 64px;
      mask-image: linear-gradient(180deg, transparent, black 12%, black 92%, transparent);
    }

    .cockpit-footer::after {
      content: "";
      position: absolute;
      width: 60vw;
      height: 60vw;
      right: -22vw;
      bottom: -38vw;
      border-radius: 50%;
      border: 1px solid rgba(0,116,213,.12);
      background: repeating-radial-gradient(circle, rgba(0,116,213,.10) 0 1px, transparent 1px 56px);
      opacity: .45;
      animation: footerRadarTurn 28s linear infinite;
      pointer-events: none;
    }

    @keyframes footerRadarTurn {
      to { transform: rotate(360deg); }
    }

    .footer-console {
      position: relative;
      padding: 28px;
      border-radius: 40px;
      overflow: hidden;
      border-color: rgba(150,222,255,.18);
      background:
        radial-gradient(circle at 18% 0%, rgba(0,116,213,.12), transparent 36%),
        linear-gradient(180deg, rgba(7,24,40,.55), rgba(1,8,16,.72));
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        inset 0 -1px 0 rgba(0,116,213,.08),
        0 28px 95px rgba(0,0,0,.35);
    }

    .footer-console::before,
    .footer-console::after {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      pointer-events: none;
      opacity: .8;
    }

    .footer-console::before {
      left: 18px;
      top: 18px;
      border-left: 1px solid rgba(0,116,213,.42);
      border-top: 1px solid rgba(0,116,213,.42);
      border-radius: 28px 0 0 0;
    }

    .footer-console::after {
      right: 18px;
      bottom: 18px;
      border-right: 1px solid rgba(0,116,213,.42);
      border-bottom: 1px solid rgba(0,116,213,.42);
      border-radius: 0 0 28px 0;
    }

    .footer-radar-rail {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.25fr .7fr 1fr .9fr;
      gap: 10px;
      margin-bottom: 26px;
    }

    .footer-radar-rail span {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(0,116,213,.18);
      background: rgba(2,10,18,.42);
      color: rgba(232,246,255,.68);
      text-transform: uppercase;
      font-size: .66rem;
      font-weight: 900;
      letter-spacing: .14em;
      white-space: nowrap;
    }

    .footer-radar-rail i {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 14px rgba(0,67,126,.85);
    }

    .footer-grid-cockpit {
      position: relative;
      z-index: 2;
      grid-template-columns: 1.25fr .72fr .72fr .92fr;
      gap: 16px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255,255,255,.09);
    }

    .footer-panel,
    .footer-brand-panel {
      position: relative;
      min-height: 265px;
      padding: 24px;
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.062), rgba(255,255,255,.032));
      box-shadow: inset 0 0 28px rgba(0,116,213,.035);
      overflow: hidden;
    }

    .footer-panel::before,
    .footer-brand-panel::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 2px;
      background: linear-gradient(90deg, rgba(0,116,213,.72), rgba(0,67,126,.18), transparent);
      opacity: .65;
    }

    .footer-panel::after,
    .footer-brand-panel::after {
      content: "";
      position: absolute;
      width: 130px;
      height: 130px;
      right: -54px;
      top: -56px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,116,213,.12), transparent 68%);
      pointer-events: none;
    }

    .footer-brand {
      margin-bottom: 18px;
    }

    .footer-logo {
      width: 58px;
      height: 58px;
      border-radius: 20px;
      flex: 0 0 auto;
    }

    .footer-panel-main p {
      max-width: 430px;
      color: rgba(229,240,248,.70);
    }

    .panel-label {
      display: inline-flex;
      margin-bottom: 14px;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(0,116,213,.18);
      background: rgba(0,116,213,.055);
      color: rgba(123,238,255,.86);
      font-size: .62rem;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .footer-panel h3 {
      margin-bottom: 18px;
      font-size: 1.45rem;
    }

    .footer-panel a {
      position: relative;
      width: fit-content;
      margin-bottom: 13px;
      padding-left: 16px;
      color: rgba(229,240,248,.64);
      font-weight: 700;
    }

    .footer-panel a::before {
      content: "";
      position: absolute;
      left: 0;
      top: .68em;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(0,116,213,.55);
      box-shadow: 0 0 10px rgba(0,116,213,.42);
      transition: transform .22s ease, background .22s ease;
    }

    .footer-panel a:hover {
      color: var(--cyan);
    }

    .footer-panel a:hover::before {
      transform: scale(1.25);
      background: var(--teal);
    }

    .footer-office-panel p {
      margin-top: 12px;
      color: rgba(229,240,248,.66);
    }

    .footer-mini-dashboard {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 22px;
    }

    .footer-mini-dashboard span {
      padding: 12px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(2,10,18,.42);
    }

    .footer-mini-dashboard b {
      display: block;
      font-family: var(--display);
      font-size: 1.55rem;
      letter-spacing: -.07em;
      color: var(--ink);
    }

    .footer-mini-dashboard small {
      display: block;
      margin-top: 4px;
      color: rgba(229,240,248,.50);
      text-transform: uppercase;
      font-size: .58rem;
      font-weight: 900;
      letter-spacing: .13em;
    }

    .footer-signal-widget {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 26px;
      padding: 14px;
      border-radius: 20px;
      border: 1px solid rgba(0,116,213,.16);
      background: rgba(0,116,213,.045);
      color: rgba(229,240,248,.70);
      font-size: .72rem;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .footer-radar-dot {
      width: 38px;
      height: 38px;
      flex: 0 0 auto;
      border-radius: 50%;
      border: 1px solid rgba(0,116,213,.38);
      background:
        radial-gradient(circle, var(--cyan) 0 8%, transparent 9% 100%),
        conic-gradient(from 0deg, rgba(0,116,213,.55), transparent 23%, transparent 100%);
      box-shadow: 0 0 18px rgba(0,116,213,.18);
      animation: footerDotSpin 2.8s linear infinite;
    }

    @keyframes footerDotSpin {
      to { transform: rotate(360deg); }
    }

    .cockpit-footer-bottom {
      position: relative;
      z-index: 2;
      color: rgba(229,240,248,.60);
      font-weight: 700;
    }

    @media (max-width: 1260px) {
      .nav-hud-center { display: none; }
      .cockpit-links a { padding-inline: 14px; }
    }

    @media (max-width: 1180px) {
      .footer-radar-rail,
      .footer-grid-cockpit {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 900px) {
      .cockpit-nav-inner { min-height: 66px; }
      .cockpit-brand::after { display: none; }
      .nav-inner.is-open .nav-hud-center {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        order: 2;
      }
      .nav-inner.is-open .cockpit-links { order: 3; }
      .nav-inner.is-open .cockpit-actions { order: 4; }
      .brand-logo { width: 46px; height: 46px; border-radius: 16px; }
      .footer-console { padding: 20px; border-radius: 32px; }
    }

    @media (max-width: 680px) {
      .cockpit-nav-inner {
        width: min(calc(100% - 22px), 1320px);
        padding: 9px 10px;
      }
      .cockpit-brand .brand-text strong { font-size: .88rem; }
      .cockpit-brand .brand-text small { font-size: .56rem; }
      .footer-radar-rail,
      .footer-grid-cockpit,
      .footer-mini-dashboard {
        grid-template-columns: 1fr;
      }
      .footer-panel,
      .footer-brand-panel { min-height: auto; }
      .footer-radar-rail span { justify-content: flex-start; }
    }

  

    /* ================================
       V17 Cleanup + Premium Cockpit Loader
       - Remove footer bleed CTA section in HTML.
       - Loader upgraded to vessel cockpit boot sequence.
    ================================= */
    .loader-cockpit {
      display: grid;
      place-items: center;
      padding: 22px;
      background:
        radial-gradient(circle at 50% 42%, rgba(0,116,213,.18), transparent 36%),
        radial-gradient(circle at 18% 82%, rgba(0,67,126,.10), transparent 28%),
        linear-gradient(180deg, #01050b 0%, #04101d 48%, #02070d 100%);
      overflow: hidden;
      cursor: none;
    }

    .loader-cockpit::before {
      content: "";
      position: absolute;
      inset: -20%;
      background:
        conic-gradient(from 210deg at 50% 50%, transparent 0 62deg, rgba(0,116,213,.10) 76deg, transparent 92deg 360deg),
        radial-gradient(circle at 50% 50%, transparent 0 16%, rgba(0,116,213,.08) 16.4% 16.8%, transparent 17.2% 31%, rgba(0,116,213,.06) 31.4% 31.8%, transparent 32.2%);
      opacity: .76;
      animation: loaderSeaSweep 10s linear infinite;
      pointer-events: none;
    }

    .loader-cockpit::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255,255,255,.030) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.030) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,.58) 84%);
      background-size: 52px 52px, 52px 52px, auto;
      opacity: .70;
      pointer-events: none;
    }

    @keyframes loaderSeaSweep {
      to { transform: rotate(360deg); }
    }

    .loader-water-grid {
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(90deg, transparent 0 76px, rgba(0,116,213,.035) 77px 78px, transparent 79px 154px),
        linear-gradient(120deg, transparent 20%, rgba(0,116,213,.07) 48%, transparent 76%);
      transform: translate3d(-4%, 0, 0);
      animation: loaderWaterDrift 7s ease-in-out infinite alternate;
      opacity: .54;
      pointer-events: none;
    }

    @keyframes loaderWaterDrift {
      0% { transform: translate3d(-4%, -2%, 0) scale(1.02); opacity: .42; }
      100% { transform: translate3d(4%, 2%, 0) scale(1.08); opacity: .70; }
    }

    .loader-console {
      position: relative;
      z-index: 2;
      width: min(94vw, 840px);
      padding: clamp(18px, 3vw, 26px);
      border-radius: 38px;
      border: 1px solid rgba(170,230,255,.20);
      background:
        radial-gradient(circle at 50% 0%, rgba(0,116,213,.14), transparent 42%),
        linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
      backdrop-filter: blur(28px) saturate(150%);
      box-shadow:
        0 40px 120px rgba(0,0,0,.56),
        inset 0 1px 0 rgba(255,255,255,.12),
        0 0 90px rgba(0,116,213,.14);
      overflow: hidden;
    }

    .loader-console::before,
    .loader-console::after {
      content: "";
      position: absolute;
      width: 110px;
      height: 110px;
      border-color: rgba(201,244,255,.48);
      opacity: .62;
      pointer-events: none;
    }

    .loader-console::before {
      left: 18px; top: 18px;
      border-left: 2px solid; border-top: 2px solid;
      border-radius: 24px 0 0 0;
    }

    .loader-console::after {
      right: 18px; bottom: 18px;
      border-right: 2px solid; border-bottom: 2px solid;
      border-radius: 0 0 24px 0;
    }

    .loader-console-top {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 18px;
    }

    .loader-console-top span {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 999px;
      border: 1px solid rgba(0,116,213,.18);
      background: rgba(2,13,24,.56);
      color: rgba(235,250,255,.76);
      font-size: .62rem;
      font-weight: 900;
      letter-spacing: .15em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .loader-console-top i {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 14px rgba(0,67,126,.88);
    }

    .loader-console-body {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(260px, .82fr) minmax(280px, 1fr);
      gap: 20px;
      align-items: stretch;
    }

    .loader-scope {
      min-height: 320px;
      position: relative;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(circle at 50% 50%, rgba(0,116,213,.15), transparent 48%),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        rgba(3,12,22,.62);
      background-size: auto, 34px 34px, 34px 34px, auto;
      overflow: hidden;
      box-shadow: inset 0 0 70px rgba(0,116,213,.08);
    }

    .loader-scope::before {
      content: "";
      position: absolute;
      inset: 28px;
      border-radius: 50%;
      background:
        radial-gradient(circle, transparent 0 16%, rgba(0,116,213,.22) 16.5% 17%, transparent 17.4% 32%, rgba(0,116,213,.18) 32.5% 33%, transparent 33.4% 49%, rgba(0,116,213,.14) 49.5% 50%, transparent 50.4% 66%, rgba(0,116,213,.10) 66.5% 67%, transparent 67.4%),
        repeating-conic-gradient(from 0deg, rgba(0,116,213,.24) 0deg 1deg, transparent 1deg 10deg);
      opacity: .85;
      animation: loaderScopeBreathe 2.8s ease-in-out infinite;
    }

    @keyframes loaderScopeBreathe {
      0%,100% { transform: scale(.985); opacity: .68; }
      50% { transform: scale(1.02); opacity: .96; }
    }

    .loader-ring {
      position: absolute;
      inset: 48px;
      border-radius: 50%;
      border: 1px dashed rgba(0,116,213,.30);
      animation: loaderRingSpin 8s linear infinite;
    }
    .loader-ring.ring-2 { inset: 86px; animation-duration: 5.6s; animation-direction: reverse; opacity: .70; }
    .loader-ring.ring-3 { inset: 124px; animation-duration: 3.8s; opacity: .55; }

    @keyframes loaderRingSpin { to { transform: rotate(360deg); } }

    .loader-sweep {
      position: absolute;
      left: 50%; top: 50%;
      width: 46%; height: 46%;
      transform-origin: 0 0;
      background: conic-gradient(from -12deg, rgba(0,116,213,.52), rgba(0,116,213,.14) 30deg, transparent 68deg);
      clip-path: polygon(0 0, 100% 12%, 100% 78%, 0 0);
      filter: blur(.2px) drop-shadow(0 0 18px rgba(0,116,213,.45));
      animation: loaderSweepSpin 2.4s linear infinite;
    }

    @keyframes loaderSweepSpin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .loader-axis {
      position: absolute;
      left: 50%; top: 50%;
      background: rgba(0,116,213,.18);
      transform: translate(-50%, -50%);
    }
    .axis-x { width: 78%; height: 1px; }
    .axis-y { width: 1px; height: 78%; }

    .loader-compass {
      position: absolute;
      color: rgba(235,250,255,.64);
      font-size: .66rem;
      font-weight: 900;
      letter-spacing: .12em;
    }
    .loader-compass.north { top: 20px; left: 50%; transform: translateX(-50%); }
    .loader-compass.east { right: 22px; top: 50%; transform: translateY(-50%); }
    .loader-compass.south { bottom: 20px; left: 50%; transform: translateX(-50%); }
    .loader-compass.west { left: 22px; top: 50%; transform: translateY(-50%); }

    .loader-blip {
      position: absolute;
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 0 8px rgba(0,116,213,.08), 0 0 20px rgba(0,116,213,.8);
      animation: loaderBlipPulse 1.8s ease-in-out infinite;
    }
    .loader-blip.b1 { left: 32%; top: 38%; }
    .loader-blip.b2 { right: 26%; top: 31%; animation-delay: .35s; background: var(--teal); }
    .loader-blip.b3 { right: 34%; bottom: 28%; animation-delay: .65s; }
    .loader-blip.b4 { left: 25%; bottom: 33%; animation-delay: .95s; background: var(--gold); }

    @keyframes loaderBlipPulse {
      0%,100% { transform: scale(.82); opacity: .55; }
      50% { transform: scale(1.18); opacity: 1; }
    }

    .loader-logo-core {
      position: absolute;
      left: 50%; top: 50%;
      width: 66px; height: 66px;
      transform: translate(-50%, -50%);
      display: grid;
      place-items: center;
      border-radius: 23px;
      background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,.18), transparent 62%),
        linear-gradient(135deg, rgba(0,116,213,.98), rgba(0,67,126,.98));
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.24),
        0 0 34px rgba(0,116,213,.46),
        0 0 72px rgba(0,67,126,.18);
      overflow: hidden;
    }
    .loader-logo-core img, .loader-brand-logo img {
      width: 100%; height: 100%; object-fit: contain; padding: 8px;
      filter: drop-shadow(0 1px 0 rgba(255,255,255,.18));
    }
    .loader-logo-core img[src=""], .loader-brand-logo img[src=""] { display:none; }
    .loader-logo-core span, .loader-brand-logo span { display:none; }

    .loader-status-panel {
      min-height: 320px;
      padding: 24px;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,.12);
      background:
        linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.035)),
        rgba(3,12,22,.60);
      box-shadow: inset 0 0 60px rgba(0,116,213,.045);
    }

    .loader-brand-line {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-bottom: 18px;
      margin-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .loader-brand-logo {
      width: 58px; height: 58px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 20px;
      background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,.18), transparent 62%),
        linear-gradient(135deg, var(--cyan), var(--teal));
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.20),
        0 0 32px rgba(0,116,213,.28);
      position: relative;
      overflow: hidden;
    }

    .loader-brand-line strong {
      display:block;
      font-family: var(--display);
      font-size: clamp(1.3rem, 3vw, 2.05rem);
      line-height: .95;
      letter-spacing: -.06em;
    }

    .loader-brand-line small {
      display:block;
      margin-top: 7px;
      color: rgba(235,250,255,.58);
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: .64rem;
      font-weight: 900;
    }

    .loader-status-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 16px;
    }

    .loader-status-grid span,
    .loader-readouts div {
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 18px;
      background: rgba(2,13,24,.58);
      padding: 14px;
      position: relative;
      overflow: hidden;
    }

    .loader-status-grid span::after,
    .loader-readouts div::after {
      content: "";
      position: absolute;
      left: 12px; right: 12px; bottom: 9px;
      height: 2px;
      background: linear-gradient(90deg, var(--cyan), var(--teal), transparent);
      opacity: .70;
    }

    .loader-status-grid b {
      display:block;
      font-family: var(--display);
      font-size: 1.72rem;
      line-height: .92;
      letter-spacing: -.07em;
    }

    .loader-status-grid small, .loader-readouts small {
      display:block;
      margin-top: 7px;
      color: rgba(235,250,255,.54);
      font-size: .56rem;
      font-weight: 900;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .loader-readouts {
      display:grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .loader-readouts div {
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      min-height: 48px;
    }

    .loader-readouts strong {
      font-family: var(--display);
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    .loader-progress-cockpit {
      position: relative;
      z-index: 2;
      height: 8px;
      margin-top: 18px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(255,255,255,.075);
    }

    .loader-progress-cockpit span {
      display:block;
      width: 42%;
      height:100%;
      border-radius: inherit;
      background: linear-gradient(90deg, transparent, var(--cyan), var(--teal), transparent);
      box-shadow: 0 0 20px rgba(0,116,213,.60);
      animation: loaderProgress 1.45s ease-in-out infinite;
    }

    @keyframes loaderProgress {
      0% { transform: translateX(-105%); }
      100% { transform: translateX(255%); }
    }

    .cockpit-footer {
      padding-bottom: 0;
      margin-bottom: 0;
      overflow: hidden;
    }

    .cockpit-footer-bottom {
      margin-bottom: 0;
    }

    @media (max-width: 720px) {
      .loader-console-top { grid-template-columns: 1fr; }
      .loader-console-body { grid-template-columns: 1fr; }
      .loader-scope { min-height: 270px; }
      .loader-status-panel { min-height: auto; }
      .loader-status-grid { grid-template-columns: 1fr; }
      .loader-console { border-radius: 28px; }
    }

    /* =========================================================
       V22: LEGACY COMPACT PRO — same visual language as the
       cockpit reference, but sized to fit the viewport cleanly.
       ========================================================= */
    #legacy.legacy-section {
      min-height: 100svh;
      padding: 126px 0 72px;
      scroll-margin-top: 108px;
      isolation: isolate;
      display: flex;
      align-items: center;
    }

    #legacy .container {
      width: min(calc(100% - 36px), 1500px);
    }

    #legacy .legacy-cockpit,
    #legacy .legacy-cockpit.reveal {
      opacity: 1 !important;
      transform: none !important;
    }

    .legacy-cockpit {
      position: relative;
      display: grid;
      grid-template-columns: minmax(310px, .86fr) minmax(330px, .82fr) minmax(450px, 1.32fr);
      grid-template-rows: 456px 178px 34px;
      gap: 16px;
      padding: 18px;
      border-radius: 30px;
      border: 1px solid rgba(0,116,213,.22);
      background:
        radial-gradient(circle at 24% 10%, rgba(0,116,213,.13), transparent 34%),
        radial-gradient(circle at 72% 42%, rgba(0,67,126,.08), transparent 35%),
        linear-gradient(145deg, rgba(1, 12, 22, .82), rgba(8, 39, 54, .50));
      backdrop-filter: blur(24px);
      box-shadow: 0 28px 100px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
      overflow: hidden;
      max-height: calc(100svh - 154px);
      min-height: 690px;
    }

    .legacy-cockpit::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px),
        radial-gradient(circle at 50% 48%, transparent 0 54%, rgba(0,116,213,.06) 55%, transparent 56%);
      background-size: 40px 40px, 40px 40px, 100% 100%;
      opacity: .64;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.95), rgba(0,0,0,.72));
    }

    .legacy-cockpit::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      border-radius: inherit;
      background:
        linear-gradient(90deg, var(--cyan), transparent 12% 88%, var(--teal)) top / 100% 1px no-repeat,
        linear-gradient(90deg, var(--cyan), transparent 12% 88%, var(--teal)) bottom / 100% 1px no-repeat,
        linear-gradient(180deg, var(--cyan), transparent 18% 82%, var(--teal)) left / 1px 100% no-repeat,
        linear-gradient(180deg, var(--cyan), transparent 18% 82%, var(--teal)) right / 1px 100% no-repeat;
      opacity: .46;
    }

    .legacy-cockpit > * { position: relative; z-index: 2; }

    .legacy-copy,
    .legacy-visual,
    .legacy-journey,
    .legacy-pillars,
    .legacy-numbers {
      border: 1px solid rgba(176, 235, 255, .14);
      background: linear-gradient(145deg, rgba(0, 15, 27, .74), rgba(18, 70, 82, .35));
      backdrop-filter: blur(22px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.062), 0 22px 60px rgba(0,0,0,.22);
      overflow: hidden;
    }

    .legacy-copy {
      grid-column: 1 / 2;
      grid-row: 1 / 2;
      padding: 30px 32px;
      border-radius: 28px;
    }

    .legacy-copy::before {
      content: "DEPTH 565M";
      position: absolute;
      left: 22px;
      bottom: 22px;
      color: rgba(190,230,255,.18);
      font-weight: 900;
      letter-spacing: .18em;
      font-size: .56rem;
      writing-mode: vertical-rl;
      text-transform: uppercase;
    }

    .legacy-headline {
      margin: 12px 0 22px;
      max-width: 430px;
      font-family: var(--display);
      font-size: clamp(3.05rem, 4.5vw, 4.45rem);
      line-height: .89;
      letter-spacing: -.105em;
      color: #f5fbff;
    }

    .legacy-headline .accent {
      color: transparent;
      background: linear-gradient(105deg, #e9fdff, var(--cyan) 52%, var(--teal));
      -webkit-background-clip: text;
      background-clip: text;
      text-shadow: 0 0 34px rgba(0,116,213,.18);
    }

    .legacy-copy p {
      max-width: 410px;
      margin: 0 0 14px;
      color: rgba(229,240,248,.74);
      font-size: .92rem;
      line-height: 1.74;
    }

    .legacy-copy p:nth-of-type(2) { display: none; }

    .legacy-trust-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
    }

    .legacy-trust-strip span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 11px;
      border-radius: 999px;
      color: rgba(235,250,255,.86);
      border: 1px solid rgba(0,116,213,.22);
      background: rgba(0,116,213,.055);
      font-size: .61rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .13em;
    }

    .legacy-trust-strip span::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(0,116,213,.84);
    }

    .legacy-visual {
      grid-column: 2 / 3;
      grid-row: 1 / 2;
      min-height: 0;
      margin: 0;
      padding: 0;
      border-radius: 28px;
      isolation: isolate;
    }

    .legacy-photo-frame {
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(180deg, rgba(3,10,18,.06), rgba(3,10,18,.74)),
        url('img/bg_hero.png') center / cover no-repeat;
      transform: scale(1.06);
      filter: saturate(1.13) contrast(1.08);
      animation: legacyOceanDrift 18s ease-in-out infinite alternate;
    }

    @keyframes legacyOceanDrift {
      0% { transform: scale(1.07) translate3d(-1.1%, -1%, 0); }
      100% { transform: scale(1.12) translate3d(1.2%, .9%, 0); }
    }

    .legacy-visual::before,
    .legacy-visual::after {
      content: "";
      position: absolute;
      pointer-events: none;
      z-index: 3;
    }

    .legacy-visual::before {
      inset: 16px;
      border-radius: 22px;
      border: 1px solid rgba(0,116,213,.34);
      clip-path: polygon(0 0, 30% 0, 30% 1px, 1px 1px, 1px 30%, 0 30%, 0 0, 100% 0, 100% 30%, calc(100% - 1px) 30%, calc(100% - 1px) 1px, 70% 1px, 70% 0, 100% 0, 100% 100%, 70% 100%, 70% calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) 70%, 100% 70%, 100% 100%, 0 100%, 0 70%, 1px 70%, 1px calc(100% - 1px), 30% calc(100% - 1px), 30% 100%, 0 100%);
    }

    .legacy-visual::after {
      inset: 0;
      background: radial-gradient(circle at 50% 42%, rgba(0,116,213,.20), transparent 34%);
      mix-blend-mode: screen;
      opacity: .62;
    }

    .legacy-tugboat-img {
      position: absolute;
      z-index: 2;
      left: 50%;
      bottom: 16px;
      width: min(95%, 430px);
      transform: translateX(-50%) translateY(6px);
      filter: drop-shadow(0 24px 50px rgba(0,0,0,.58)) drop-shadow(0 0 28px rgba(0,116,213,.22));
      animation: legacyVesselFloat 6.2s ease-in-out infinite;
    }

    @keyframes legacyVesselFloat {
      0%, 100% { transform: translateX(-50%) translateY(7px) rotate(-.45deg); }
      50% { transform: translateX(-50%) translateY(-8px) rotate(.45deg); }
    }

    .legacy-coordinate {
      position: absolute;
      z-index: 5;
      right: 28px;
      top: 34px;
      padding: 11px 14px;
      border-left: 1px solid rgba(0,116,213,.46);
      color: rgba(220,247,255,.68);
      text-align: right;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .58rem;
      line-height: 1.65;
    }

    .legacy-coordinate strong {
      display: block;
      color: var(--cyan);
      font-size: .62rem;
      margin-bottom: 4px;
    }

    .legacy-radar-ring {
      position: absolute;
      z-index: 4;
      right: 22px;
      bottom: 22px;
      width: 136px;
      aspect-ratio: 1;
      border-radius: 50%;
      border: 1px solid rgba(0,116,213,.32);
      background:
        radial-gradient(circle, rgba(0,116,213,.18) 0 4px, transparent 5px),
        repeating-radial-gradient(circle, rgba(0,116,213,.26) 0 1px, transparent 1px 22px),
        conic-gradient(from 10deg, rgba(0,116,213,.55), transparent 18%, transparent 100%);
      opacity: .70;
      animation: legacyRadarSpin 8s linear infinite;
    }

    @keyframes legacyRadarSpin { to { transform: rotate(360deg); } }

    .legacy-journey {
      grid-column: 3 / 4;
      grid-row: 1 / 2;
      min-height: 0;
      padding: 30px 36px;
      border-radius: 28px;
    }

    .legacy-journey::before {
      content: "";
      position: absolute;
      left: 48px;
      top: 96px;
      bottom: 96px;
      width: 2px;
      background: linear-gradient(180deg, var(--cyan), rgba(0,116,213,.13));
      box-shadow: 0 0 20px rgba(0,116,213,.30);
    }

    .legacy-journey-list {
      display: grid;
      gap: 13px;
      margin-top: 22px;
    }

    .legacy-step {
      position: relative;
      display: grid;
      grid-template-columns: 138px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
      padding: 0 0 14px 58px;
      border-bottom: 1px solid rgba(255,255,255,.075);
    }

    .legacy-step:last-child { border-bottom: 0; }

    .legacy-step::before {
      content: "";
      position: absolute;
      left: 10px;
      top: 1px;
      width: 21px;
      height: 21px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 0 8px rgba(0,116,213,.10), 0 0 24px rgba(0,116,213,.62);
    }

    .legacy-step time {
      display: block;
      color: var(--cyan);
      font-family: var(--display);
      font-size: 1.14rem;
      font-weight: 800;
      letter-spacing: -.04em;
      line-height: 1.05;
      white-space: nowrap;
    }

    .legacy-step small {
      display: block;
      margin-top: 6px;
      color: rgba(229,240,248,.56);
      text-transform: uppercase;
      letter-spacing: .15em;
      font-size: .55rem;
      font-weight: 900;
    }

    .legacy-step p {
      margin: 0;
      color: rgba(229,240,248,.74);
      line-height: 1.55;
      font-size: .86rem;
    }

    .legacy-iso-chip {
      position: absolute;
      right: 28px;
      bottom: 26px;
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 196px;
      padding: 12px 14px;
      border-radius: 16px;
      border: 1px solid rgba(0,116,213,.20);
      background: rgba(0,116,213,.055);
    }

    .legacy-iso-chip i {
      flex: 0 0 auto;
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--cyan);
      border: 1px solid rgba(0,116,213,.42);
      font-style: normal;
      font-weight: 900;
      font-size: .68rem;
      box-shadow: 0 0 22px rgba(0,116,213,.12);
    }

    .legacy-iso-chip strong,
    .legacy-iso-chip span {
      display: block;
      text-transform: uppercase;
      letter-spacing: .13em;
      font-size: .61rem;
    }

    .legacy-iso-chip strong { color: var(--ink); }
    .legacy-iso-chip span { color: var(--soft); margin-top: 4px; }

    .legacy-pillars {
      grid-column: 1 / 3;
      grid-row: 2 / 3;
      padding: 22px 26px;
      border-radius: 26px;
    }

    .legacy-pillar-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 18px;
    }

    .legacy-pillar {
      min-height: 112px;
      padding: 16px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.085);
      background: rgba(255,255,255,.035);
      transition: transform .24s ease, border-color .24s ease, background .24s ease;
    }

    .legacy-pillar:hover {
      transform: translateY(-4px);
      border-color: rgba(0,116,213,.28);
      background: rgba(0,116,213,.075);
    }

    .legacy-pillar svg {
      width: 24px;
      height: 24px;
      color: var(--cyan);
      margin-bottom: 11px;
      filter: drop-shadow(0 0 12px rgba(0,116,213,.34));
    }

    .legacy-pillar strong {
      display: block;
      color: rgba(239,248,255,.92);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .58rem;
      font-weight: 900;
    }

    .legacy-pillar p {
      margin: 8px 0 0;
      color: rgba(229,240,248,.66);
      line-height: 1.45;
      font-size: .75rem;
    }

    .legacy-numbers {
      grid-column: 3 / 4;
      grid-row: 2 / 3;
      padding: 22px 26px;
      border-radius: 26px;
    }

    .legacy-number-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;
    }

    .legacy-number {
      min-height: 116px;
      padding: 14px 12px;
      border-radius: 18px;
      border: 1px solid rgba(0,116,213,.16);
      background: rgba(3,12,22,.55);
      position: relative;
      overflow: hidden;
    }

    .legacy-number i {
      display: block;
      width: 31px;
      height: 18px;
      margin-bottom: 14px;
      opacity: .9;
      background:
        linear-gradient(90deg, transparent 0 10%, var(--cyan) 10% 18%, transparent 18% 32%, var(--cyan) 32% 40%, transparent 40% 52%, var(--cyan) 52% 60%, transparent 60% 100%);
      filter: drop-shadow(0 0 10px rgba(0,116,213,.34));
    }

    .legacy-number::after {
      content: "";
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 9px;
      height: 28px;
      background: linear-gradient(135deg, transparent 0 22%, rgba(0,116,213,.9) 22% 25%, transparent 25% 42%, rgba(0,67,126,.72) 42% 45%, transparent 45% 58%, rgba(0,116,213,.86) 58% 61%, transparent 61%);
      opacity: .50;
      clip-path: polygon(0 70%, 18% 38%, 34% 55%, 50% 26%, 70% 62%, 100% 22%, 100% 100%, 0 100%);
    }

    .legacy-number strong {
      display: block;
      color: #f8fcff;
      font-family: var(--display);
      font-size: clamp(1.55rem, 2.15vw, 2.42rem);
      line-height: .9;
      letter-spacing: -.075em;
      position: relative;
      z-index: 2;
      white-space: nowrap;
    }

    .legacy-number small {
      display: block;
      margin-top: 7px;
      color: rgba(229,240,248,.62);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .52rem;
      font-weight: 900;
      position: relative;
      z-index: 2;
    }

    .legacy-status-bar {
      grid-column: 1 / -1;
      grid-row: 3 / 4;
      min-height: 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 0 20px;
      border-radius: 0 0 20px 20px;
      color: rgba(229,240,248,.45);
      border-top: 1px solid rgba(255,255,255,.085);
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: .58rem;
      font-weight: 900;
    }

    .legacy-status-bar span:last-child {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(0,116,213,.74);
    }

    .legacy-status-bar span:last-child::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 14px rgba(0,116,213,.75);
    }

    @media (max-width: 1280px) {
      #legacy.legacy-section { min-height: auto; align-items: flex-start; }
      .legacy-cockpit {
        max-height: none;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
      .legacy-copy { grid-column: 1 / 2; grid-row: auto; min-height: 520px; }
      .legacy-visual { grid-column: 2 / 3; grid-row: auto; min-height: 520px; }
      .legacy-journey { grid-column: 1 / -1; grid-row: auto; min-height: auto; }
      .legacy-pillars { grid-column: 1 / -1; grid-row: auto; }
      .legacy-numbers { grid-column: 1 / -1; grid-row: auto; }
      .legacy-status-bar { grid-column: 1 / -1; grid-row: auto; }
      .legacy-number-grid { grid-template-columns: repeat(4, 1fr); }
      .legacy-copy p:nth-of-type(2) { display: block; }
    }

    @media (max-width: 820px) {
      #legacy.legacy-section { padding: 96px 0 78px; }
      .legacy-cockpit {
        padding: 14px;
        border-radius: 28px;
        grid-template-columns: 1fr;
      }
      .legacy-copy,
      .legacy-visual,
      .legacy-journey,
      .legacy-pillars,
      .legacy-numbers {
        grid-column: 1 / -1;
        border-radius: 24px;
      }
      .legacy-copy { min-height: auto; }
      .legacy-headline { font-size: clamp(3.1rem, 14vw, 5.1rem); }
      .legacy-visual { min-height: 360px; }
      .legacy-step {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-left: 54px;
      }
      .legacy-journey::before { left: 42px; }
      .legacy-step::before { left: 6px; }
      .legacy-pillar-grid,
      .legacy-number-grid { grid-template-columns: 1fr 1fr; }
      .legacy-status-bar { flex-direction: column; justify-content: center; align-items: flex-start; padding: 14px 16px; }
    }

    @media (max-width: 520px) {
      .legacy-pillar-grid,
      .legacy-number-grid { grid-template-columns: 1fr; }
      .legacy-iso-chip { position: relative; right: auto; bottom: auto; margin-top: 20px; }
    }



    /* =========================================================
       V23: LEGACY REFINED — tighter container, cleaner grid,
       improved typography and more proportional card sizing.
       ========================================================= */
    #legacy.legacy-section {
      padding: 122px 0 78px;
    }

    #legacy .container {
      width: min(calc(100% - 72px), 1368px);
    }

    .legacy-cockpit {
      grid-template-columns: minmax(310px, 0.92fr) minmax(320px, 0.82fr) minmax(430px, 1.10fr);
      grid-template-rows: 420px 168px 34px;
      gap: 14px;
      padding: 14px;
      min-height: 706px;
      max-height: none;
      border-radius: 28px;
    }

    .legacy-copy,
    .legacy-visual,
    .legacy-journey,
    .legacy-pillars,
    .legacy-numbers {
      border-radius: 24px;
    }

    .legacy-copy {
      padding: 26px 28px 24px;
    }

    .legacy-headline {
      max-width: 350px;
      margin: 10px 0 18px;
      font-size: clamp(2.9rem, 4vw, 4rem);
      line-height: .9;
      letter-spacing: -.09em;
    }

    .legacy-copy p {
      max-width: 370px;
      margin: 0 0 12px;
      font-size: .87rem;
      line-height: 1.66;
    }

    .legacy-trust-strip {
      margin-top: 16px;
      gap: 7px;
    }

    .legacy-trust-strip span {
      padding: 7px 10px;
      font-size: .58rem;
      letter-spacing: .12em;
    }

    .legacy-visual {
      min-height: 0;
    }

    .legacy-photo-frame {
      transform: scale(1.03);
    }

    .legacy-tugboat-img {
      width: min(92%, 388px);
      bottom: 10px;
    }

    .legacy-coordinate {
      right: 20px;
      top: 24px;
      padding: 10px 12px;
      font-size: .55rem;
    }

    .legacy-radar-ring {
      right: 18px;
      bottom: 18px;
      width: 118px;
    }

    .legacy-journey {
      padding: 26px 28px 20px;
    }

    .legacy-journey::before {
      left: 42px;
      top: 82px;
      bottom: 84px;
    }

    .legacy-journey-list {
      gap: 9px;
      margin-top: 18px;
    }

    .legacy-step {
      grid-template-columns: 136px minmax(0, 1fr);
      gap: 16px;
      padding: 0 0 11px 52px;
    }

    .legacy-step::before {
      left: 8px;
      width: 19px;
      height: 19px;
    }

    .legacy-step time {
      font-size: 1.05rem;
    }

    .legacy-step small {
      margin-top: 5px;
      font-size: .53rem;
    }

    .legacy-step p {
      font-size: .83rem;
      line-height: 1.5;
    }

    .legacy-iso-chip {
      right: 22px;
      bottom: 22px;
      min-width: 190px;
      padding: 11px 13px;
    }

    .legacy-pillars,
    .legacy-numbers {
      padding: 18px 20px;
    }

    .legacy-pillar-grid,
    .legacy-number-grid {
      gap: 10px;
      margin-top: 14px;
    }

    .legacy-pillar {
      min-height: 96px;
      padding: 14px 14px 12px;
    }

    .legacy-pillar strong {
      font-size: .55rem;
    }

    .legacy-pillar p {
      margin-top: 7px;
      font-size: .71rem;
      line-height: 1.38;
    }

    .legacy-number {
      min-height: 106px;
      padding: 14px 12px;
    }

    .legacy-number strong {
      font-size: clamp(1.45rem, 1.85vw, 2.15rem);
      letter-spacing: -.06em;
    }

    .legacy-number small {
      margin-top: 6px;
      font-size: .50rem;
      letter-spacing: .11em;
    }

    .legacy-status-bar {
      padding: 0 18px;
      font-size: .64rem;
    }

    @media (max-width: 1280px) {
      #legacy .container { width: min(calc(100% - 40px), 1200px); }
      .legacy-cockpit {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        min-height: auto;
      }
      .legacy-copy { min-height: 500px; }
      .legacy-visual { min-height: 500px; }
    }

    @media (max-width: 820px) {
      #legacy .container { width: min(calc(100% - 24px), 100%); }
      .legacy-cockpit { padding: 14px; gap: 12px; }
      .legacy-headline {
        max-width: none;
        font-size: clamp(2.7rem, 13vw, 4.4rem);
        letter-spacing: -.07em;
      }
      .legacy-copy p { max-width: none; }
      .legacy-step {
        grid-template-columns: 1fr;
        gap: 9px;
      }
    }



    /* =========================================================
       V24: LEGACY FINAL POLISH — height, ISO chip, and number
       cards refined to avoid clipping/overlap.
       ========================================================= */
    #legacy.legacy-section {
      padding: 124px 0 92px;
    }

    #legacy .container {
      width: min(calc(100% - 72px), 1368px);
    }

    .legacy-cockpit {
      grid-template-rows: 470px 186px 34px;
      min-height: 752px;
      gap: 15px;
      padding: 15px;
    }

    .legacy-copy {
      padding: 28px 30px 28px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .legacy-headline {
      max-width: 378px;
      margin: 10px 0 20px;
      font-size: clamp(2.85rem, 3.65vw, 3.82rem);
      line-height: .94;
      letter-spacing: -.082em;
      text-wrap: balance;
    }

    .legacy-copy p {
      max-width: 390px;
      margin-bottom: 12px;
      font-size: .88rem;
      line-height: 1.68;
    }

    .legacy-copy::before {
      opacity: .58;
      bottom: 28px;
    }

    .legacy-journey {
      padding: 28px 32px 24px;
    }

    .legacy-journey::before {
      top: 86px;
      bottom: 118px;
    }

    .legacy-journey-list {
      gap: 10px;
      margin-top: 18px;
      padding-bottom: 0;
    }

    .legacy-step {
      grid-template-columns: 132px minmax(0, 1fr);
      gap: 18px;
      padding-bottom: 11px;
    }

    .legacy-step p {
      font-size: .84rem;
      line-height: 1.48;
      max-width: 440px;
    }

    .legacy-step time {
      font-size: 1.07rem;
    }

    .legacy-iso-chip {
      position: relative;
      right: auto;
      bottom: auto;
      margin: 14px 0 0 auto;
      min-width: 238px;
      width: fit-content;
      padding: 11px 14px;
      border-radius: 17px;
      background: rgba(0,116,213,.075);
      box-shadow: inset 0 0 0 1px rgba(0,116,213,.08), 0 0 26px rgba(0,116,213,.08);
    }

    .legacy-iso-chip i {
      width: 36px;
      height: 36px;
      font-size: .64rem;
    }

    .legacy-iso-chip strong,
    .legacy-iso-chip span {
      white-space: nowrap;
    }

    .legacy-pillars,
    .legacy-numbers {
      padding: 19px 22px;
    }

    .legacy-pillar-grid,
    .legacy-number-grid {
      margin-top: 13px;
    }

    .legacy-pillar {
      min-height: 106px;
      padding: 14px 14px 13px;
    }

    .legacy-pillar p {
      font-size: .72rem;
      line-height: 1.42;
    }

    .legacy-number {
      min-height: 116px;
      padding: 14px 14px 16px;
      isolation: isolate;
    }

    .legacy-number i,
    .legacy-number strong,
    .legacy-number small {
      position: relative;
      z-index: 2;
    }

    .legacy-number i {
      margin-bottom: 15px;
      opacity: .88;
    }

    .legacy-number strong {
      font-size: clamp(1.6rem, 1.92vw, 2.22rem);
      line-height: .92;
      letter-spacing: -.058em;
    }

    .legacy-number small {
      margin-top: 8px;
      color: rgba(229,240,248,.72);
      font-size: .49rem;
      letter-spacing: .105em;
      line-height: 1.15;
    }

    .legacy-number::after {
      z-index: 0;
      left: 14px;
      right: 14px;
      bottom: 4px;
      height: 18px;
      opacity: .30;
      transform: translateY(0);
    }

    .legacy-status-bar {
      padding: 0 20px;
    }

    @media (max-width: 1280px) {
      .legacy-cockpit {
        grid-template-rows: auto;
        min-height: auto;
      }

      .legacy-copy,
      .legacy-visual {
        min-height: 540px;
      }

      .legacy-iso-chip {
        margin-left: 0;
      }
    }

    @media (max-width: 820px) {
      #legacy.legacy-section {
        padding: 96px 0 82px;
      }

      .legacy-copy,
      .legacy-visual {
        min-height: auto;
      }

      .legacy-headline {
        max-width: none;
        font-size: clamp(2.65rem, 12.5vw, 4.15rem);
        line-height: .95;
      }

      .legacy-iso-chip {
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
      }

      .legacy-number {
        min-height: 108px;
      }
    }



    /* =========================================================
       V25: LEGACY SPACING POLISH — more breathing room for text,
       ISO badge, and number cards.
       ========================================================= */
    #legacy.legacy-section {
      padding: 124px 0 108px;
    }

    .legacy-cockpit {
      grid-template-rows: 510px 196px 34px;
      min-height: 812px;
      gap: 16px;
    }

    .legacy-copy {
      padding: 30px 34px 44px;
    }

    .legacy-headline {
      max-width: 398px;
      margin: 10px 0 24px;
      font-size: clamp(2.75rem, 3.45vw, 3.62rem);
      line-height: .96;
      letter-spacing: -.078em;
    }

    .legacy-copy p {
      max-width: 408px;
      margin-bottom: 16px;
      font-size: .88rem;
      line-height: 1.74;
    }

    .legacy-copy::before {
      bottom: 44px;
    }

    .legacy-journey {
      padding: 30px 34px 30px;
    }

    .legacy-journey-list {
      gap: 11px;
      margin-top: 20px;
    }

    .legacy-step {
      padding-bottom: 12px;
    }

    .legacy-step p {
      max-width: 460px;
      line-height: 1.52;
    }

    .legacy-iso-chip {
      margin: 26px 0 0 auto;
      min-width: 250px;
      padding: 13px 16px;
      border-radius: 18px;
    }

    .legacy-pillars,
    .legacy-numbers {
      padding: 20px 24px;
    }

    .legacy-number {
      min-height: 124px;
      padding: 16px 15px 19px;
    }

    .legacy-number i {
      margin-bottom: 17px;
    }

    .legacy-number strong {
      font-size: clamp(1.62rem, 1.9vw, 2.2rem);
      line-height: .94;
    }

    .legacy-number small {
      margin-top: 10px;
      color: rgba(236,248,255,.82);
      font-size: .50rem;
      letter-spacing: .11em;
      text-shadow: 0 2px 10px rgba(0,0,0,.55);
    }

    .legacy-number::after {
      left: 16px;
      right: 16px;
      bottom: -2px;
      height: 15px;
      opacity: .22;
    }

    @media (max-width: 1280px) {
      .legacy-cockpit {
        min-height: auto;
      }
      .legacy-copy,
      .legacy-visual {
        min-height: 570px;
      }
      .legacy-iso-chip {
        margin-top: 22px;
      }
    }

    @media (max-width: 820px) {
      .legacy-cockpit {
        min-height: auto;
      }
      .legacy-copy {
        padding: 28px 26px 34px;
      }
      .legacy-headline {
        font-size: clamp(2.55rem, 12vw, 4rem);
      }
      .legacy-iso-chip {
        margin-top: 22px;
      }
    }



    /* =========================================================
       V26: Timeline bullet axis fix — center line through dots.
       ========================================================= */
    .legacy-journey {
      --legacy-axis-x: 50px;
    }

    .legacy-journey::before {
      left: var(--legacy-axis-x) !important;
      top: 88px !important;
      bottom: 118px !important;
      transform: translateX(-1px);
      z-index: 0;
    }

    .legacy-step::before {
      left: calc(var(--legacy-axis-x) - 32px - 9.5px) !important;
      top: 0 !important;
      width: 19px !important;
      height: 19px !important;
      z-index: 2;
    }

    .legacy-step {
      position: relative;
      z-index: 1;
    }

    .legacy-step::after {
      content: "";
      position: absolute;
      left: calc(var(--legacy-axis-x) - 32px - 16px);
      top: -7px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,116,213,.16), transparent 64%);
      pointer-events: none;
      z-index: 1;
    }

    @media (max-width: 820px) {
      .legacy-journey { --legacy-axis-x: 44px; }
      .legacy-step::before {
        left: calc(var(--legacy-axis-x) - 32px - 9.5px) !important;
      }
      .legacy-step::after {
        left: calc(var(--legacy-axis-x) - 32px - 16px);
      }
    }



    /* =========================================================
       V27: LEGACY BACK PANEL TRANSPARENCY + TEXT CLIP FIX
       ========================================================= */
    #legacy .legacy-cockpit {
      background:
        radial-gradient(circle at 24% 10%, rgba(0,116,213,.055), transparent 34%),
        radial-gradient(circle at 72% 42%, rgba(0,67,126,.035), transparent 35%),
        linear-gradient(145deg, rgba(1,12,22,.20), rgba(8,39,54,.10));
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow:
        0 22px 80px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.045);
    }

    #legacy .legacy-cockpit::before {
      opacity: .30;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.34));
    }

    #legacy .legacy-cockpit::after {
      opacity: .34;
    }

    #legacy .legacy-copy,
    #legacy .legacy-visual,
    #legacy .legacy-journey,
    #legacy .legacy-pillars,
    #legacy .legacy-numbers {
      background: linear-gradient(145deg, rgba(0,15,27,.66), rgba(18,70,82,.27));
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.052),
        0 18px 48px rgba(0,0,0,.18);
    }

    #legacy .legacy-copy {
      padding: 28px 34px 30px;
    }

    #legacy .legacy-headline {
      max-width: 100%;
      font-size: clamp(2.62rem, 3.58vw, 3.72rem);
      line-height: .94;
      letter-spacing: -.082em;
      margin-bottom: 20px;
      padding-right: 8px;
    }

    #legacy .legacy-copy p {
      max-width: 96%;
      padding-right: 8px;
      font-size: .88rem;
      line-height: 1.72;
    }

    #legacy .legacy-copy::before {
      left: 24px;
      bottom: 34px;
      opacity: .7;
    }

    @media (max-width: 1280px) {
      #legacy .legacy-headline {
        font-size: clamp(2.7rem, 5vw, 4rem);
        letter-spacing: -.075em;
      }
    }

    @media (max-width: 820px) {
      #legacy .legacy-headline {
        font-size: clamp(2.55rem, 12.6vw, 4.1rem);
        line-height: .96;
        letter-spacing: -.065em;
      }
    }



    /* =========================================================
       V28: Legacy visual asset swap to img/legacy_rb.png
       ========================================================= */
    .legacy-photo-frame {
      background: none !important;
      animation: none !important;
      transform: none !important;
      filter: none !important;
    }

    .legacy-visual {
      overflow: hidden;
      background: radial-gradient(circle at 50% 28%, rgba(0,116,213,.06), transparent 36%), rgba(3,10,18,.24);
    }

    .legacy-tugboat-img {
      position: absolute !important;
      inset: 0 !important;
      left: 0 !important;
      bottom: 0 !important;
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
      object-position: center center;
      transform: none !important;
      animation: none !important;
      filter: saturate(1.05) contrast(1.03) drop-shadow(0 18px 42px rgba(0,0,0,.35)) !important;
      border-radius: 24px;
    }

    .legacy-visual::after {
      background: radial-gradient(circle at 68% 74%, rgba(0,116,213,.11), transparent 18%), radial-gradient(circle at 50% 30%, rgba(0,116,213,.10), transparent 34%);
      opacity: .46;
    }



    /* =========================================================
       V29: Legacy section intro header
       ========================================================= */
    .legacy-section-header {
      margin-bottom: 26px;
      align-items: end;
    }

    .legacy-section-header .section-title {
      max-width: 760px;
      font-size: clamp(2.25rem, 4vw, 4.6rem);
    }

    .legacy-section-header .section-lead {
      max-width: 560px;
      font-size: clamp(.98rem, 1.18vw, 1.08rem);
      line-height: 1.78;
    }

    @media (max-width: 980px) {
      .legacy-section-header {
        margin-bottom: 20px;
      }
    }



    /* =========================================================
       V30: Unified section container width
       Keeps every major section aligned to one shared content rail.
       ========================================================= */
    :root {
      --section-rail: 1320px;
      --section-gutter: 72px;
    }

    main > .section > .container,
    .hero > .container,
    .footer > .container {
      width: min(calc(100% - var(--section-gutter)), var(--section-rail)) !important;
      margin-inline: auto !important;
    }

    #legacy .container,
    #fleet .container,
    #services .container,
    #coverage .container,
    #quality .container,
    #contact .container {
      width: min(calc(100% - var(--section-gutter)), var(--section-rail)) !important;
      margin-inline: auto !important;
    }

    .legacy-cockpit,
    .fleet-shell,
    .service-grid,
    .ops-grid,
    .coverage-shell,
    .quality-grid,
    .cards-3,
    .commitment,
    .news-grid,
    .cta {
      width: 100%;
    }

    .legacy-section-header,
    #fleet .section-header,
    #services .section-header,
    #coverage .section-header,
    #quality .section-header,
    #contact .section-header {
      width: 100%;
    }

    @media (max-width: 980px) {
      :root { --section-gutter: 40px; }
    }

    @media (max-width: 680px) {
      :root { --section-gutter: 28px; }
    }



    /* =========================================================
       V31: Fleet premium asset system
       ========================================================= */
    .fleet-shell {
      grid-template-columns: 360px minmax(0, 1fr);
      gap: 18px;
      align-items: stretch;
    }

    .fleet-menu {
      padding: 22px 20px 18px;
      display: flex;
      flex-direction: column;
      min-height: 620px;
    }

    .fleet-menu-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .fleet-menu-label,
    .fleet-menu-status {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(0,116,213,.18);
      background: rgba(255,255,255,.03);
      color: var(--soft);
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: .58rem;
      font-weight: 800;
    }

    .fleet-menu-status {
      color: var(--cyan);
      background: rgba(0,116,213,.09);
    }

    .fleet-menu h3 {
      margin: 0 0 10px;
      font-size: clamp(1.65rem, 2vw, 2.1rem);
      line-height: .95;
    }

    .fleet-menu-copy {
      margin: 0 0 18px;
      color: var(--muted);
      line-height: 1.72;
      font-size: .92rem;
    }

    .fleet-tab {
      padding: 16px 16px;
      margin-bottom: 10px;
      border-radius: 16px;
      transform: none;
    }

    .fleet-tab:hover,
    .fleet-tab.is-active {
      transform: translateX(4px);
    }

    .fleet-quick-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: auto;
      padding-top: 12px;
    }

    .fleet-quick-stats div {
      padding: 14px 10px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      text-align: center;
    }

    .fleet-quick-stats strong {
      display: block;
      font-family: var(--display);
      font-size: 1.38rem;
      letter-spacing: -.05em;
      color: var(--ink);
    }

    .fleet-quick-stats span {
      display: block;
      margin-top: 5px;
      color: var(--soft);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .54rem;
      font-weight: 800;
    }

    .fleet-display {
      min-height: 620px;
      padding: 22px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018)),
        radial-gradient(circle at 72% 24%, rgba(0,116,213,.12), transparent 30%),
        radial-gradient(circle at 14% 90%, rgba(0,116,213,.08), transparent 26%);
    }

    .fleet-display::before {
      background:
        radial-gradient(circle at 76% 30%, rgba(0,116,213,.13), transparent 30%),
        radial-gradient(circle at 14% 86%, rgba(0,67,126,.09), transparent 30%);
      opacity: .95;
    }

    .fleet-display-hud {
      position: absolute;
      right: 18px;
      top: 12px;
      width: min(40%, 360px);
      opacity: .26;
      pointer-events: none;
      mix-blend-mode: screen;
      filter: drop-shadow(0 0 28px rgba(0,116,213,.12));
      animation: fleetHudFloat 8s ease-in-out infinite;
      z-index: 1;
    }

    @keyframes fleetHudFloat {
      0%,100% { transform: translate3d(0,0,0) scale(1); }
      50% { transform: translate3d(0,-8px,0) scale(1.02); }
    }

    .fleet-panel {
      min-height: 540px;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr);
      gap: 20px;
      align-items: stretch;
    }

    .fleet-big {
      display: flex;
      flex-direction: column;
      padding: 26px;
      min-height: 100%;
      background: linear-gradient(180deg, rgba(2,10,18,.62), rgba(2,10,18,.42));
    }

    .fleet-big h3 {
      font-size: clamp(2.6rem, 5vw, 5.1rem);
      max-width: 420px;
    }

    .fleet-big p {
      margin-top: 18px;
      max-width: 520px;
      font-size: .98rem;
      line-height: 1.74;
    }

    .ship-visual {
      position: relative;
      height: 300px;
      margin-top: auto;
      background:
        linear-gradient(180deg, rgba(0,116,213,.04), rgba(0,116,213,.015)),
        radial-gradient(circle at 50% 100%, rgba(0,116,213,.12), transparent 56%),
        rgba(5, 12, 20, .58);
    }

    .ship-visual::before,
    .ship-visual::after {
      display: none;
    }

    .ship-visual.asset-barge {
      height: 300px;
    }

    .ship-visual.asset-support {
      height: 300px;
    }

    .fleet-asset-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center bottom;
      filter: drop-shadow(0 18px 42px rgba(0,0,0,.38));
      animation: fleetAssetDrift 6.8s ease-in-out infinite;
    }

    .asset-barge .fleet-asset-img {
      object-position: center 72%;
      transform: scale(1.08);
    }

    .asset-support .fleet-asset-img {
      object-position: center 82%;
      transform: scale(1.03);
    }

    @keyframes fleetAssetDrift {
      0%,100% { transform: translate3d(0,0,0); }
      50% { transform: translate3d(0,-8px,0); }
    }

    .asset-barge .fleet-asset-img,
    .asset-support .fleet-asset-img {
      animation-name: fleetAssetDriftAlt;
    }

    @keyframes fleetAssetDriftAlt {
      0%,100% { transform: translate3d(0,0,0) scale(1.06); }
      50% { transform: translate3d(0,-6px,0) scale(1.08); }
    }

    .spec-list {
      align-content: start;
      gap: 12px;
      padding-top: 8px;
      position: relative;
      z-index: 2;
    }

    .spec-item {
      min-height: 84px;
      padding: 20px 18px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.028));
    }

    .spec-item strong {
      font-size: 1.26rem;
    }

    .spec-note {
      margin-top: 8px;
      padding: 16px 18px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.7;
    }

    @media (max-width: 1180px) {
      .fleet-shell { grid-template-columns: 1fr; }
      .fleet-menu { min-height: auto; }
      .fleet-display-hud { width: min(52%, 320px); }
      .fleet-panel { grid-template-columns: 1fr; }
    }

    @media (max-width: 760px) {
      .fleet-menu-topline { flex-wrap: wrap; }
      .fleet-quick-stats { grid-template-columns: repeat(3, 1fr); }
      .fleet-big { padding: 22px 20px; }
      .fleet-display { padding: 18px; }
      .ship-visual,
      .ship-visual.asset-barge,
      .ship-visual.asset-support { height: 240px; }
    }



    /* =========================================================
       V32: Fleet text polish + remove radar image asset
       ========================================================= */
    .fleet-display-hud {
      display: none !important;
    }

    .fleet-menu h3 {
      line-height: 1.02;
      max-width: 270px;
    }

    .fleet-menu-copy {
      max-width: 295px;
      font-size: .9rem;
      line-height: 1.68;
    }

    .fleet-tab {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      grid-template-areas:
        "meta idx"
        "title idx";
      align-items: center;
      column-gap: 12px;
      row-gap: 4px;
      min-height: 86px;
      padding: 14px 16px;
    }

    .fleet-tab span {
      grid-area: meta;
      margin-bottom: 0;
      line-height: 1.2;
    }

    .fleet-tab strong {
      grid-area: title;
      line-height: 1.06;
      max-width: 170px;
    }

    .fleet-tab i {
      grid-area: idx;
      align-self: center;
      font-size: 1.45rem;
    }

    .fleet-quick-stats div {
      min-height: 88px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .fleet-quick-stats strong {
      line-height: .95;
    }

    .fleet-quick-stats span {
      line-height: 1.25;
      text-align: center;
    }

    .fleet-big h3 {
      max-width: 430px;
      line-height: .92;
    }

    .fleet-big p {
      max-width: 500px;
      font-size: .95rem;
      line-height: 1.68;
    }

    .spec-list {
      gap: 12px;
    }

    .spec-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 90px;
      padding: 18px 18px;
      border: 1px solid rgba(255,255,255,.11);
    }

    .spec-item span {
      display: block;
      max-width: 52%;
      font-size: .82rem;
      font-weight: 800;
      line-height: 1.35;
      color: var(--muted);
      text-transform: none;
      letter-spacing: .01em;
    }

    .spec-item strong {
      display: block;
      flex-shrink: 0;
      text-align: right;
      font-size: 1.12rem;
      line-height: 1.02;
      letter-spacing: -.03em;
      color: var(--cyan);
    }

    .spec-note {
      margin-top: 2px;
      padding: 15px 17px;
      font-size: .86rem;
      line-height: 1.62;
    }

    @media (max-width: 760px) {
      .fleet-tab strong {
        max-width: none;
      }

      .spec-item {
        align-items: flex-start;
        flex-direction: column;
      }

      .spec-item span,
      .spec-item strong {
        max-width: none;
        text-align: left;
      }
    }



    /* =========================================================
       V33: Fleet spacing polish + animated power charts
       ========================================================= */
    .fleet-big h3 {
      font-size: clamp(2.35rem, 4.4vw, 4.65rem);
      line-height: .88;
      max-width: 460px;
      letter-spacing: -.065em;
    }

    #panel-support .fleet-big h3 {
      font-size: clamp(2rem, 3.8vw, 4rem);
      max-width: 540px;
      line-height: .92;
      letter-spacing: -.055em;
      margin-bottom: 6px;
    }

    .fleet-big p {
      margin-top: 20px;
      max-width: 520px;
      font-size: .94rem;
      line-height: 1.72;
    }

    #panel-support .fleet-big p {
      max-width: 540px;
    }

    .spec-item {
      gap: 18px;
      min-height: 96px;
      padding: 18px 20px;
      border-color: rgba(0,116,213,.18);
      background: linear-gradient(180deg, rgba(255,255,255,.058), rgba(255,255,255,.032));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 10px 30px rgba(0,0,0,.10);
    }

    .spec-item span {
      max-width: 43%;
      font-size: .86rem;
      line-height: 1.32;
    }

    .spec-value {
      margin-left: auto;
      min-width: 180px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }

    .spec-item strong {
      font-size: 1.06rem;
      line-height: 1;
    }

    .spec-chart {
      width: 154px;
      height: 34px;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 6px;
      padding: 7px 9px 6px;
      border-radius: 999px;
      border: 1px solid rgba(0,116,213,.18);
      background: linear-gradient(180deg, rgba(7,18,30,.62), rgba(8,21,36,.38));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 0 24px rgba(0,116,213,.08);
      position: relative;
      overflow: hidden;
    }

    .spec-chart::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(0,116,213,.18), transparent);
      transform: translateX(-130%);
      animation: specSweep 3.2s linear infinite;
      opacity: .6;
    }

    .spec-chart i {
      position: relative;
      z-index: 1;
      display: block;
      width: 18%;
      border-radius: 999px 999px 4px 4px;
      background: linear-gradient(180deg, rgba(140,247,255,.95), rgba(89,235,255,.68));
      box-shadow: 0 0 12px rgba(0,116,213,.35);
      animation: powerPulse 2.6s ease-in-out infinite;
      transform-origin: bottom center;
    }

    .chart-high i:nth-child(1) { height: 42%; animation-delay: .0s; }
    .chart-high i:nth-child(2) { height: 64%; animation-delay: .12s; }
    .chart-high i:nth-child(3) { height: 92%; animation-delay: .24s; }
    .chart-high i:nth-child(4) { height: 74%; animation-delay: .36s; }
    .chart-high i:nth-child(5) { height: 88%; animation-delay: .48s; }

    .chart-medium i:nth-child(1) { height: 34%; animation-delay: .0s; }
    .chart-medium i:nth-child(2) { height: 56%; animation-delay: .12s; }
    .chart-medium i:nth-child(3) { height: 68%; animation-delay: .24s; }
    .chart-medium i:nth-child(4) { height: 48%; animation-delay: .36s; }
    .chart-medium i:nth-child(5) { height: 62%; animation-delay: .48s; }

    .chart-utility i:nth-child(1) { height: 24%; animation-delay: .0s; }
    .chart-utility i:nth-child(2) { height: 38%; animation-delay: .12s; }
    .chart-utility i:nth-child(3) { height: 46%; animation-delay: .24s; }
    .chart-utility i:nth-child(4) { height: 32%; animation-delay: .36s; }
    .chart-utility i:nth-child(5) { height: 40%; animation-delay: .48s; }

    @keyframes powerPulse {
      0%, 100% { transform: scaleY(.92); opacity: .88; }
      50% { transform: scaleY(1.08); opacity: 1; }
    }

    @keyframes specSweep {
      to { transform: translateX(130%); }
    }

    @media (max-width: 760px) {
      .fleet-big h3,
      #panel-support .fleet-big h3 {
        font-size: clamp(2.15rem, 11vw, 3.8rem);
      }

      .spec-value {
        min-width: 0;
        width: 100%;
        align-items: flex-start;
      }

      .spec-chart {
        width: 100%;
        max-width: 190px;
      }
    }



    /* =========================================================
       V34: Fleet spacing + corner gimmick polish
       ========================================================= */
    .fleet-big p {
      margin-top: 22px;
      margin-bottom: 0;
    }

    .ship-visual {
      margin-top: 30px;
      padding: 18px 18px 12px;
      overflow: hidden;
    }

    .fleet-asset-img {
      inset: auto 0 0 0;
      width: calc(100% - 18px);
      height: calc(100% - 26px);
      margin: 0 auto;
      object-position: center bottom;
    }

    .asset-tugboat .fleet-asset-img {
      width: calc(100% - 10px);
      height: calc(100% - 38px);
      object-position: center bottom;
    }

    .asset-barge .fleet-asset-img {
      width: calc(100% - 18px);
      height: calc(100% - 44px);
      object-position: center bottom;
      transform: scale(1.03);
    }

    .asset-support .fleet-asset-img {
      width: calc(100% - 12px);
      height: calc(100% - 36px);
      object-position: center bottom;
      transform: scale(1.01);
    }

    .visual-hud {
      position: absolute;
      top: 14px;
      right: 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      z-index: 2;
      align-items: flex-end;
    }

    .visual-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 28px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(0,116,213,.18);
      background: rgba(6,18,31,.62);
      color: rgba(226,248,255,.85);
      text-transform: uppercase;
      letter-spacing: .15em;
      font-size: .56rem;
      font-weight: 800;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 24px rgba(0,0,0,.16);
    }

    .visual-chip::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(132,246,255,.95);
      box-shadow: 0 0 12px rgba(0,116,213,.55);
      flex: 0 0 auto;
    }

    .visual-chip.accent {
      color: var(--cyan);
      background: rgba(8,24,38,.74);
    }

    .visual-corner-gimmick {
      position: absolute;
      top: 86px;
      right: 16px;
      width: 112px;
      height: 112px;
      border-radius: 18px;
      border: 1px solid rgba(0,116,213,.12);
      background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
        radial-gradient(circle at 68% 32%, rgba(0,116,213,.16), transparent 42%),
        rgba(5, 14, 24, .34);
      z-index: 2;
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.015);
    }

    .visual-corner-gimmick::before,
    .visual-corner-gimmick::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(0,116,213,.18);
      inset: 18px;
      opacity: .8;
    }

    .visual-corner-gimmick::after {
      inset: 34px;
      opacity: .45;
    }

    .visual-corner-gimmick .g-dot {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 10px;
      height: 10px;
      margin: -5px 0 0 -5px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(0,116,213,.5);
      animation: gimmickPing 2.8s ease-in-out infinite;
    }

    .visual-corner-gimmick .g-line {
      position: absolute;
      width: 1px;
      height: 100%;
      background: linear-gradient(180deg, transparent, rgba(0,116,213,.45), transparent);
      left: 50%;
      top: 0;
      transform: rotate(28deg);
      transform-origin: center center;
      opacity: .55;
    }

    .visual-corner-gimmick small {
      position: absolute;
      left: 12px;
      bottom: 10px;
      color: rgba(201,243,252,.7);
      text-transform: uppercase;
      letter-spacing: .15em;
      font-size: .5rem;
      font-weight: 800;
    }

    @keyframes gimmickPing {
      0%,100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.18); opacity: .88; }
    }

    @media (max-width: 960px) {
      .visual-corner-gimmick {
        width: 92px;
        height: 92px;
        top: 82px;
      }
    }

    @media (max-width: 760px) {
      .ship-visual {
        margin-top: 24px;
        padding: 14px 14px 10px;
      }

      .visual-hud {
        top: 10px;
        right: 10px;
      }

      .visual-chip {
        min-height: 24px;
        padding: 0 10px;
        font-size: .5rem;
      }

      .visual-corner-gimmick {
        width: 84px;
        height: 84px;
        top: 72px;
        right: 10px;
      }
    }



    /* =========================================================
       V35: Move gimmick below note + improve spacing
       ========================================================= */
    .fleet-big p {
      margin-top: 24px;
      margin-bottom: 8px;
      max-width: 540px;
      line-height: 1.76;
    }

    .ship-visual {
      margin-top: 38px;
      padding: 18px 18px 14px;
    }

    .fleet-asset-img {
      height: calc(100% - 34px);
    }

    .asset-tugboat .fleet-asset-img {
      height: calc(100% - 44px);
    }

    .asset-barge .fleet-asset-img {
      height: calc(100% - 52px);
    }

    .asset-support .fleet-asset-img {
      height: calc(100% - 46px);
    }

    .visual-corner-gimmick {
      display: none !important;
    }

    .spec-list {
      align-content: start;
    }

    .spec-note {
      margin-top: 4px;
      margin-bottom: 14px;
      padding: 18px 20px;
      line-height: 1.72;
    }

    .fleet-note-gimmick {
      position: relative;
      min-height: 94px;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 16px;
      border-radius: 22px;
      border: 1px solid rgba(0,116,213,.14);
      background:
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)),
        radial-gradient(circle at 18% 38%, rgba(0,116,213,.08), transparent 34%),
        rgba(4, 13, 24, .24);
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
    }

    .fleet-note-gimmick::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(0,116,213,.08), transparent);
      transform: translateX(-130%);
      animation: specSweep 4.2s linear infinite;
      opacity: .6;
    }

    .note-gauge {
      position: relative;
      flex: 0 0 62px;
      width: 62px;
      height: 62px;
      border-radius: 50%;
      border: 1px solid rgba(0,116,213,.18);
      background: radial-gradient(circle at center, rgba(0,116,213,.12), rgba(0,116,213,.02) 58%, transparent 59%);
      box-shadow: 0 0 20px rgba(0,116,213,.08), inset 0 0 20px rgba(0,116,213,.06);
    }

    .note-gauge::before,
    .note-gauge::after {
      content: "";
      position: absolute;
      inset: 11px;
      border-radius: 50%;
      border: 1px solid rgba(0,116,213,.18);
    }

    .note-gauge::after {
      inset: 22px;
      opacity: .55;
    }

    .gauge-dot {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 10px;
      height: 10px;
      margin: -5px 0 0 -5px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(0,116,213,.55);
      animation: gimmickPing 2.7s ease-in-out infinite;
    }

    .gauge-arc {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 1px;
      height: 27px;
      background: linear-gradient(180deg, rgba(0,116,213,.9), transparent);
      transform-origin: bottom center;
      animation: noteSpin 5.2s linear infinite;
    }

    .note-metrics {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
    }

    .note-metrics small {
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: .58rem;
      font-weight: 800;
    }

    .note-metrics strong {
      color: var(--cyan);
      font-size: 1.28rem;
      line-height: 1;
      letter-spacing: -.03em;
    }

    .note-metrics span {
      color: rgba(213,234,242,.84);
      font-size: .78rem;
      line-height: 1.4;
    }

    @keyframes noteSpin {
      from { transform: translate(-50%, -100%) rotate(0deg); }
      to { transform: translate(-50%, -100%) rotate(360deg); }
    }

    @media (max-width: 760px) {
      .ship-visual {
        margin-top: 28px;
      }

      .fleet-note-gimmick {
        min-height: 84px;
        padding: 12px 14px;
        gap: 12px;
      }

      .note-gauge {
        flex-basis: 54px;
        width: 54px;
        height: 54px;
      }
    }



    /* =========================================================
       V40: Operations/service-detail premium cockpit polish
       ========================================================= */
    #operations {
      padding-top: clamp(96px, 10vw, 150px);
      padding-bottom: clamp(96px, 10vw, 150px);
    }

    #operations .container {
      width: min(calc(100% - 72px), 1368px);
    }

    .ops-grid {
      grid-template-columns: minmax(390px, .82fr) minmax(560px, 1.08fr);
      gap: 22px;
      align-items: stretch;
    }

    .ops-copy {
      padding: clamp(30px, 3vw, 44px);
      min-height: 640px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .ops-copy::before {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 28px;
      border: 1px solid rgba(0,116,213,.11);
      pointer-events: none;
    }

    .ops-copy::after {
      content: "";
      position: absolute;
      right: -120px;
      bottom: -130px;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,116,213,.12), transparent 62%);
      pointer-events: none;
    }

    .ops-copy .section-kicker {
      margin-bottom: 18px;
    }

    .ops-copy h2 {
      max-width: 520px;
      font-size: clamp(3.25rem, 5.25vw, 5.35rem);
      line-height: .88;
      letter-spacing: -.085em;
      text-wrap: balance;
    }

    .ops-copy p {
      max-width: 560px;
      margin-top: 26px;
      font-size: .98rem;
      line-height: 1.78;
    }

    .ops-list {
      margin-top: 30px;
      gap: 12px;
    }

    .ops-list div {
      min-height: 64px;
      align-items: center;
      padding: 15px 18px;
      border-color: rgba(0,116,213,.13);
      background:
        linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.025)),
        rgba(5,16,28,.2);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
      font-size: .92rem;
      line-height: 1.48;
    }

    .ops-list div::before {
      margin-top: 0;
      width: 9px;
      height: 9px;
    }

    .ops-dashboard {
      min-height: 640px;
      padding: 24px;
      border-radius: 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background:
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.026)),
        radial-gradient(circle at 74% 16%, rgba(0,116,213,.16), transparent 34%),
        rgba(4, 13, 24, .34);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 32px 70px rgba(0,0,0,.20);
    }

    .ops-dashboard::before {
      opacity: .82;
      background:
        radial-gradient(circle at 70% 18%, rgba(0,116,213,.12), transparent 35%),
        linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
      background-size: auto, 36px 36px, 36px 36px;
    }

    .ops-dashboard::after {
      content: "";
      position: absolute;
      inset: 20px;
      border-radius: 26px;
      border: 1px solid rgba(0,116,213,.10);
      pointer-events: none;
    }

    .ops-board-top {
      margin-bottom: 14px;
    }

    .ops-board-top strong {
      font-size: clamp(1.3rem, 1.8vw, 1.65rem);
    }

    .ops-micro-strip {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 14px;
    }

    .ops-micro-strip span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 38px;
      border-radius: 999px;
      border: 1px solid rgba(0,116,213,.13);
      background: rgba(3,15,26,.38);
      color: rgba(218,242,250,.78);
      text-transform: uppercase;
      letter-spacing: .13em;
      font-size: .58rem;
      font-weight: 900;
      white-space: nowrap;
    }

    .ops-micro-strip i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 12px rgba(0,116,213,.65);
    }

    .ops-board {
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      flex: 0 0 auto;
    }

    .ops-widget {
      padding: 18px;
      border-radius: 22px;
      border-color: rgba(0,116,213,.13);
      background:
        linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.024)),
        rgba(4,14,25,.54);
      overflow: hidden;
    }

    .ops-widget.large {
      min-height: 270px;
    }

    .ops-widget small {
      letter-spacing: .16em;
      font-size: .6rem;
      color: rgba(193,225,236,.72);
    }

    .ops-widget strong {
      font-size: clamp(1.65rem, 2.3vw, 2.15rem);
      line-height: .96;
    }

    .ops-widget p {
      font-size: .86rem;
      line-height: 1.58;
      max-width: 330px;
    }

    .route-board {
      height: 218px;
      border-color: rgba(0,116,213,.13);
      background:
        radial-gradient(circle at 55% 52%, rgba(0,116,213,.075), transparent 42%),
        rgba(255,255,255,.035);
    }

    .route-board::before {
      background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 26px 26px;
    }

    .route-radar-ring {
      position: absolute;
      width: 126px;
      height: 126px;
      border-radius: 50%;
      left: 50%;
      top: 50%;
      margin: -63px 0 0 -63px;
      border: 1px solid rgba(0,116,213,.13);
      box-shadow: inset 0 0 0 22px rgba(0,116,213,.025), 0 0 26px rgba(0,116,213,.08);
      opacity: .9;
      pointer-events: none;
      animation: routeRingPulse 4s ease-in-out infinite;
    }

    .route-line {
      left: 14%;
      top: 56%;
      width: 72%;
      transform: rotate(-10deg);
    }

    .route-ship {
      left: 25%;
      top: 51%;
      width: 22px;
      height: 22px;
      animation: shipMoveV40 6.4s ease-in-out infinite;
    }

    .route-label {
      position: absolute;
      z-index: 2;
      padding: 5px 9px;
      border-radius: 999px;
      border: 1px solid rgba(0,116,213,.12);
      background: rgba(4,15,26,.44);
      color: rgba(220,244,250,.76);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .52rem;
      font-weight: 900;
      backdrop-filter: blur(8px);
    }

    .route-label.label-a { left: 10%; top: 66%; }
    .route-label.label-b { left: 45%; top: 37%; }
    .route-label.label-c { right: 7%; top: 26%; }

    .signal-bars {
      height: 70px;
      margin-top: 16px;
      gap: 10px;
    }

    .signal-bars i {
      box-shadow: 0 0 14px rgba(0,116,213,.18);
    }

    @keyframes routeRingPulse {
      0%,100% { transform: scale(.94); opacity: .58; }
      50% { transform: scale(1.03); opacity: .95; }
    }

    @keyframes shipMoveV40 {
      0%,100% { transform: translate(0,0) rotate(80deg); }
      50% { transform: translate(176px,-50px) rotate(80deg); }
    }

    @media (max-width: 1180px) {
      #operations .container { width: min(calc(100% - 40px), 1200px); }
      .ops-grid {
        grid-template-columns: 1fr;
      }
      .ops-copy,
      .ops-dashboard {
        min-height: auto;
      }
    }

    @media (max-width: 760px) {
      #operations .container { width: min(calc(100% - 24px), 100%); }
      .ops-copy,
      .ops-dashboard {
        padding: 22px;
      }
      .ops-copy h2 {
        font-size: clamp(2.7rem, 13vw, 4rem);
      }
      .ops-micro-strip,
      .ops-board {
        grid-template-columns: 1fr;
      }
      .route-label {
        display: none;
      }
    }



    /* =========================================================
       V41: Operations compact balance polish
       ========================================================= */
    #operations {
      padding-top: clamp(86px, 8vw, 126px);
      padding-bottom: clamp(86px, 8vw, 126px);
    }

    .ops-grid {
      grid-template-columns: minmax(360px, .72fr) minmax(650px, 1.28fr);
      gap: 24px;
      align-items: stretch;
    }

    .ops-copy {
      min-height: 560px;
      padding: clamp(28px, 2.5vw, 38px);
      justify-content: center;
    }

    .ops-copy h2 {
      max-width: 455px;
      font-size: clamp(2.65rem, 4.25vw, 4.25rem);
      line-height: .92;
      letter-spacing: -.075em;
    }

    .ops-copy p {
      max-width: 485px;
      margin-top: 22px;
      font-size: .94rem;
      line-height: 1.72;
    }

    .ops-list {
      margin-top: 24px;
      gap: 10px;
    }

    .ops-list div {
      min-height: 58px;
      padding: 13px 16px;
      font-size: .88rem;
      line-height: 1.44;
    }

    .ops-dashboard {
      min-height: 560px;
      padding: 22px;
      justify-content: start;
    }

    .ops-board-top {
      margin-bottom: 12px;
    }

    .ops-micro-strip {
      margin-bottom: 12px;
      gap: 10px;
    }

    .ops-micro-strip span {
      min-height: 36px;
      font-size: .56rem;
      letter-spacing: .125em;
    }

    .ops-board {
      gap: 12px;
    }

    .ops-widget {
      padding: 16px;
      border-radius: 20px;
    }

    .ops-widget.large {
      min-height: 244px;
    }

    .route-board {
      height: 192px;
      margin-top: 12px;
    }

    .route-radar-ring {
      width: 104px;
      height: 104px;
      margin: -52px 0 0 -52px;
    }

    .ops-widget strong {
      font-size: clamp(1.48rem, 2vw, 1.92rem);
      line-height: 1;
      letter-spacing: -.05em;
    }

    .ops-widget p {
      margin-top: 10px;
      max-width: 315px;
      font-size: .82rem;
      line-height: 1.52;
    }

    .signal-bars {
      height: 58px;
      margin-top: 13px;
      gap: 9px;
    }

    .route-label {
      padding: 5px 8px;
      font-size: .50rem;
      letter-spacing: .11em;
    }

    @keyframes shipMoveV40 {
      0%,100% { transform: translate(0,0) rotate(80deg); }
      50% { transform: translate(150px,-42px) rotate(80deg); }
    }

    @media (max-width: 1180px) {
      .ops-grid {
        grid-template-columns: 1fr;
      }
      .ops-copy,
      .ops-dashboard {
        min-height: auto;
      }
      .ops-copy h2 {
        max-width: 720px;
      }
    }



    /* ===== Coverage premium polish v43 ===== */
    #coverage .coverage-shell {
      grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
      gap: 26px;
      align-items: stretch;
    }

    #coverage .coverage-map {
      min-height: 720px;
      padding: 26px;
      display: flex;
      flex-direction: column;
      background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
    }

    #coverage .coverage-map::before {
      background:
        radial-gradient(circle at 66% 20%, rgba(0,116,213,.16), transparent 30%),
        radial-gradient(circle at 28% 70%, rgba(0,67,126,.09), transparent 28%),
        linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
      background-size: auto, auto, 38px 38px, 38px 38px;
    }

    #coverage .coverage-title {
      max-width: 640px;
      position: relative;
      z-index: 3;
    }

    #coverage .coverage-title h2 {
      font-size: clamp(2.7rem, 5.1vw, 5.55rem);
      line-height: .92;
      letter-spacing: -.085em;
      max-width: 11ch;
    }

    #coverage .coverage-title p {
      max-width: 560px;
      font-size: 1.02rem;
      line-height: 1.86;
      margin-top: 18px;
    }

    #coverage .coverage-legend {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    #coverage .coverage-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      border-radius: 999px;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(238,248,255,.92);
      background: rgba(5,17,33,.44);
      border: 1px solid rgba(0,116,213,.18);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
    }

    #coverage .coverage-chip::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(180deg, var(--cyan), var(--teal));
      box-shadow: 0 0 12px rgba(0,116,213,.6);
    }

    #coverage .coverage-stage {
      position: relative;
      z-index: 2;
      flex: 1;
      margin-top: 24px;
      border-radius: calc(var(--radius-xl) - 8px);
      border: 1px solid rgba(0,116,213,.14);
      background:
        radial-gradient(circle at 70% 22%, rgba(0,116,213,.14), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
      overflow: hidden;
      padding: 22px;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    #coverage .coverage-stage-visual {
      position: relative;
      min-height: 330px;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(0,116,213,.14);
      background: rgba(4,14,28,.62);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
      isolation: isolate;
    }

    #coverage .coverage-stage-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(6,18,31,.08), rgba(6,18,31,.2));
      z-index: 1;
      pointer-events: none;
    }

    #coverage .coverage-stage-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 22% 50%, rgba(0,116,213,.14), transparent 22%),
        radial-gradient(circle at 76% 30%, rgba(0,67,126,.1), transparent 20%);
      z-index: 2;
      pointer-events: none;
      mix-blend-mode: screen;
    }

    #coverage .coverage-stage-visual img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
    }

    #coverage .coverage-stage::before,
    #coverage .coverage-stage::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    #coverage .coverage-stage::before {
      background:
        linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
      background-size: 36px 36px;
      mask-image: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.55));
    }

    #coverage .coverage-stage::after {
      background: radial-gradient(circle at 55% 52%, rgba(0,116,213,.12), transparent 22%);
      animation: coverageAura 5.4s ease-in-out infinite;
    }

    @keyframes coverageAura {
      0%, 100% { opacity: .62; transform: scale(.96); }
      50% { opacity: 1; transform: scale(1.05); }
    }

    #coverage .coverage-svg {
      position: absolute;
      inset: 12px;
      z-index: 1;
      width: calc(100% - 24px);
      height: calc(100% - 24px);
    }

    #coverage .coverage-hud {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: auto;
      padding-top: 18px;
    }

    #coverage .hud-card {
      min-height: 92px;
      border-radius: 20px;
      padding: 14px 16px;
      background: rgba(5,16,30,.42);
      border: 1px solid rgba(0,116,213,.16);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
    }

    #coverage .hud-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(235,245,255,.7);
      font-size: .68rem;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    #coverage .hud-label::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 12px rgba(0,116,213,.45);
    }

    #coverage .hud-value {
      font-family: var(--display);
      font-size: 1.55rem;
      line-height: 1;
      letter-spacing: -.05em;
    }

    #coverage .hud-note {
      color: rgba(235,245,255,.72);
      font-size: .86rem;
      line-height: 1.4;
    }

    #coverage .office-stack {
      gap: 22px;
    }

    #coverage .office-card {
      padding: 24px 24px 22px;
      min-height: 328px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
    }

    #coverage .office-card::before {
      width: 280px;
      height: 280px;
      inset: -35% -8% auto auto;
      background: radial-gradient(circle, rgba(0,116,213,.15), transparent 72%);
    }

    #coverage .office-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      position: relative;
      z-index: 2;
    }

    #coverage .office-heading {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    #coverage .office-card h3 {
      font-size: 2rem;
      line-height: .96;
      letter-spacing: -.06em;
      margin: 0;
    }

    #coverage .office-code {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: .86rem;
      font-weight: 900;
      letter-spacing: .12em;
      color: var(--cyan);
      background: rgba(0,116,213,.1);
      border: 1px solid rgba(0,116,213,.2);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 0 22px rgba(0,116,213,.08);
      flex-shrink: 0;
    }

    #coverage .office-card .type {
      margin-bottom: 0;
      font-size: .62rem;
      letter-spacing: .18em;
      align-self: flex-start;
    }

    #coverage .office-grid {
      display: grid;
      gap: 12px;
      position: relative;
      z-index: 2;
    }

    #coverage .office-line {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 12px;
      align-items: flex-start;
      padding: 12px 12px;
      border-radius: 18px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.045);
    }

    #coverage .office-line svg {
      width: 18px;
      height: 18px;
      stroke: var(--cyan);
      stroke-width: 1.8;
      fill: none;
    }

    #coverage .office-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,116,213,.08);
      border: 1px solid rgba(0,116,213,.16);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
    }

    #coverage .office-meta {
      display: grid;
      gap: 5px;
      min-width: 0;
    }

    #coverage .office-label {
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .16em;
      color: rgba(235,245,255,.5);
      font-weight: 900;
    }

    #coverage .office-value {
      color: rgba(240,248,255,.87);
      line-height: 1.68;
      font-size: .96rem;
      overflow-wrap: anywhere;
    }

    #coverage .office-contacts {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 2px;
    }

    #coverage .office-person {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 11px;
      border-radius: 999px;
      font-size: .77rem;
      font-weight: 700;
      color: rgba(240,248,255,.88);
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.06);
    }

    #coverage .office-person::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(180deg, var(--cyan), var(--teal));
      box-shadow: 0 0 12px rgba(0,116,213,.42);
    }

    #coverage .contact-actions {
      gap: 10px;
      margin-top: auto;
      padding-top: 2px;
      position: relative;
      z-index: 2;
    }

    #coverage .copy-btn {
      min-height: 40px;
      padding: 0 14px;
      border-color: rgba(0,116,213,.12);
      background: rgba(6,18,31,.5);
    }

    #coverage .copy-btn::before {
      content: "";
      width: 14px;
      height: 14px;
      display: inline-block;
      background: linear-gradient(180deg, var(--cyan), var(--teal));
      mask-size: contain;
      mask-repeat: no-repeat;
      mask-position: center;
      -webkit-mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
    }

    #coverage .copy-btn[data-copy*="@"]::before {
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Zm0 2v.41l8 4.8 8-4.8V8H4Zm16 8V10.74l-7.49 4.49a1 1 0 0 1-1.02 0L4 10.74V16h16Z'/%3E%3C/svg%3E");
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Zm0 2v.41l8 4.8 8-4.8V8H4Zm16 8V10.74l-7.49 4.49a1 1 0 0 1-1.02 0L4 10.74V16h16Z'/%3E%3C/svg%3E");
    }

    #coverage .copy-btn:not([data-copy*="@"])::before {
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.91 15.91 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.31.56 3.58.56a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.06 21 3 13.94 3 5a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.27.19 2.46.56 3.58a1 1 0 0 1-.24 1.01l-2.2 2.2Z'/%3E%3C/svg%3E");
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.91 15.91 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.31.56 3.58.56a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.06 21 3 13.94 3 5a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.27.19 2.46.56 3.58a1 1 0 0 1-.24 1.01l-2.2 2.2Z'/%3E%3C/svg%3E");
    }

    #coverage .coverage-node {
      animation: coveragePulse 3.6s ease-in-out infinite;
      transform-origin: center;
    }

    @keyframes coveragePulse {
      0%,100% { opacity: .75; }
      50% { opacity: 1; }
    }

    @media (max-width: 1180px) {
      #coverage .coverage-shell {
        grid-template-columns: 1fr;
      }
      #coverage .coverage-map {
        min-height: 680px;
      }
    }

    @media (max-width: 768px) {
      #coverage .coverage-map {
        min-height: 620px;
        padding: 22px;
      }
      #coverage .coverage-title h2 {
        max-width: none;
        font-size: clamp(2.2rem, 9vw, 3.9rem);
      }
      #coverage .coverage-stage {
        padding: 16px;
        min-height: 350px;
      }
      #coverage .coverage-hud {
        grid-template-columns: 1fr;
      }
      #coverage .office-card {
        min-height: unset;
      }
      #coverage .office-head {
        align-items: flex-start;
      }
    }


    /* ===== V45 Coverage spacing + HUD card text polish ===== */
    #coverage .coverage-stage {
      gap: 14px !important;
      padding: 18px !important;
      min-height: unset !important;
      flex: 0 0 auto !important;
    }

    #coverage .coverage-stage-visual {
      min-height: 340px !important;
      height: clamp(300px, 28vw, 390px) !important;
      flex: 0 0 auto !important;
    }

    #coverage .coverage-hud {
      margin-top: 0 !important;
      padding-top: 0 !important;
      gap: 14px !important;
      align-items: stretch !important;
    }

    #coverage .hud-card {
      min-height: 144px !important;
      height: auto !important;
      padding: 16px 18px !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: flex-start !important;
      gap: 9px !important;
      overflow: hidden !important;
    }

    #coverage .hud-label {
      font-size: .62rem !important;
      line-height: 1.2 !important;
      letter-spacing: .18em !important;
      white-space: nowrap !important;
    }

    #coverage .hud-value {
      display: block !important;
      margin: 0 !important;
      font-size: clamp(1.35rem, 1.65vw, 1.72rem) !important;
      line-height: 1.02 !important;
      letter-spacing: -.055em !important;
      white-space: normal !important;
    }

    #coverage .hud-note {
      display: block !important;
      color: rgba(235,245,255,.72) !important;
      font-size: .82rem !important;
      line-height: 1.48 !important;
      max-width: 100% !important;
      margin: 0 !important;
    }

    @media (max-width: 1180px) {
      #coverage .coverage-stage-visual {
        height: clamp(280px, 45vw, 380px) !important;
      }
    }

    @media (max-width: 768px) {
      #coverage .coverage-stage {
        padding: 14px !important;
      }

      #coverage .coverage-stage-visual {
        min-height: 260px !important;
        height: 300px !important;
      }

      #coverage .hud-card {
        min-height: 120px !important;
      }
    }



    /* ===== V46: Coverage section title + subtitle alignment ===== */
    #coverage .coverage-global-header {
      margin-bottom: 26px;
      align-items: end;
    }

    #coverage .coverage-global-header .section-title {
      max-width: 780px;
    }

    #coverage .coverage-global-header .section-lead {
      max-width: 560px;
      justify-self: end;
    }

    #coverage .coverage-global-header .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    #coverage .coverage-global-header .section-kicker::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: linear-gradient(180deg, var(--cyan), var(--teal));
      box-shadow: 0 0 16px rgba(0,116,213,.75);
    }

    @media (max-width: 900px) {
      #coverage .coverage-global-header {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 22px;
      }

      #coverage .coverage-global-header .section-lead {
        justify-self: start;
        max-width: 680px;
      }
    }


    /* =========================================================
       V47: Compact premium Quality section
       ========================================================= */
    #quality.quality-premium {
      padding-top: 118px;
    }

    #quality .quality-head {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 26px;
    }

    #quality .quality-head h2 {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(3rem, 6.5vw, 6.85rem);
      line-height: .86;
      letter-spacing: -.09em;
      max-width: 9.5ch;
    }

    #quality .quality-head h2 span {
      color: var(--cyan);
      text-shadow: 0 0 30px rgba(0,116,213,.18);
    }

    #quality .quality-lead {
      display: grid;
      gap: 14px;
      color: var(--muted);
      font-size: 1.04rem;
      line-height: 1.78;
      max-width: 560px;
      justify-self: end;
    }

    #quality .quality-lead .quality-line {
      height: 3px;
      width: 100%;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(255,255,255,.08);
      position: relative;
    }

    #quality .quality-lead .quality-line::before {
      content: "";
      position: absolute;
      inset: 0;
      width: 42%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--cyan), var(--teal));
      box-shadow: 0 0 22px rgba(0,116,213,.38);
      animation: qualityLine 3.6s ease-in-out infinite;
    }

    @keyframes qualityLine {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(145%); }
    }

    #quality .quality-board {
      display: grid;
      grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
      gap: 22px;
      align-items: stretch;
    }

    #quality .quality-iso-card,
    #quality .quality-commit-card,
    #quality .quality-pillars,
    #quality .quality-news {
      border: 1px solid rgba(255,255,255,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.026));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 30px 90px rgba(0,0,0,.18);
      backdrop-filter: blur(18px);
    }

    #quality .quality-iso-card {
      min-height: 520px;
      border-radius: var(--radius-xl);
      padding: 34px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    #quality .quality-iso-card::before {
      content: "ISO";
      position: absolute;
      right: -18px;
      bottom: -42px;
      font-family: var(--display);
      font-size: 13rem;
      font-weight: 900;
      letter-spacing: -.12em;
      color: rgba(255,255,255,.035);
      pointer-events: none;
    }

    #quality .quality-iso-card::after {
      content: "";
      position: absolute;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      right: -120px;
      top: -130px;
      background: radial-gradient(circle, rgba(0,116,213,.18), transparent 70%);
      pointer-events: none;
    }

    #quality .iso-badge-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      position: relative;
      z-index: 2;
    }

    #quality .iso-mark {
      width: 78px;
      height: 78px;
      border-radius: 24px;
      display: grid;
      place-items: center;
      color: #03101d;
      font-weight: 950;
      letter-spacing: -.08em;
      background: linear-gradient(135deg, var(--cyan), var(--teal));
      box-shadow: 0 0 42px rgba(0,116,213,.22);
    }

    #quality .iso-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(0,116,213,.18);
      color: rgba(236,248,255,.88);
      background: rgba(5,16,30,.45);
      text-transform: uppercase;
      font-size: .66rem;
      letter-spacing: .16em;
      font-weight: 900;
    }

    #quality .iso-status::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 14px rgba(0,116,213,.55);
    }

    #quality .quality-iso-card h3 {
      margin: 34px 0 0;
      font-family: var(--display);
      font-size: clamp(4.4rem, 8.4vw, 8rem);
      line-height: .78;
      letter-spacing: -.105em;
      position: relative;
      z-index: 2;
    }

    #quality .quality-iso-card h3 span {
      color: var(--cyan);
    }

    #quality .quality-iso-card p {
      max-width: 500px;
      margin: 24px 0 0;
      color: var(--muted);
      line-height: 1.78;
      font-size: 1rem;
      position: relative;
      z-index: 2;
    }

    #quality .quality-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      position: relative;
      z-index: 2;
      margin-top: 24px;
    }

    #quality .quality-metric {
      min-height: 82px;
      padding: 14px;
      border-radius: 20px;
      background: rgba(4,14,28,.38);
      border: 1px solid rgba(0,116,213,.12);
      display: grid;
      align-content: center;
      gap: 6px;
    }

    #quality .quality-metric strong {
      font-family: var(--display);
      font-size: 1.5rem;
      line-height: 1;
      letter-spacing: -.06em;
    }

    #quality .quality-metric span {
      color: rgba(235,245,255,.62);
      text-transform: uppercase;
      letter-spacing: .13em;
      font-size: .58rem;
      font-weight: 900;
      line-height: 1.25;
    }

    #quality .quality-right {
      display: grid;
      gap: 18px;
      grid-template-rows: auto auto;
    }

    #quality .quality-commit-card {
      border-radius: var(--radius-xl);
      padding: 28px;
      position: relative;
      overflow: hidden;
    }

    #quality .quality-commit-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 88% 15%, rgba(0,116,213,.14), transparent 32%),
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: auto, 46px 46px, 46px 46px;
      pointer-events: none;
    }

    #quality .commit-top {
      display: grid;
      grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
      gap: 24px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    #quality .commit-top h3 {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(2.1rem, 4.2vw, 4.25rem);
      line-height: .9;
      letter-spacing: -.085em;
    }

    #quality .commit-list {
      display: grid;
      gap: 12px;
    }

    #quality .commit-item {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      min-height: 58px;
      padding: 12px 14px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.04);
      color: rgba(235,245,255,.78);
      line-height: 1.52;
      font-size: .92rem;
    }

    #quality .commit-icon {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: #03101d;
      background: linear-gradient(135deg, var(--cyan), var(--teal));
      box-shadow: 0 0 20px rgba(0,116,213,.16);
      font-weight: 900;
    }

    #quality .quality-pillars {
      border-radius: var(--radius-xl);
      padding: 22px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    #quality .pillar-card {
      min-height: 182px;
      padding: 18px;
      border-radius: 22px;
      border: 1px solid rgba(0,116,213,.12);
      background:
        radial-gradient(circle at 80% 8%, rgba(0,116,213,.13), transparent 34%),
        rgba(5,16,30,.36);
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      overflow: hidden;
    }

    #quality .pillar-card::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 14px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--cyan), rgba(0,67,126,.3), transparent);
      opacity: .8;
    }

    #quality .pillar-icon {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(0,116,213,.18);
      background: rgba(0,116,213,.07);
      color: var(--cyan);
    }

    #quality .pillar-icon svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
    }

    #quality .pillar-card small {
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: .6rem;
      font-weight: 900;
    }

    #quality .pillar-card strong {
      font-family: var(--display);
      font-size: 1.18rem;
      line-height: 1.05;
      letter-spacing: -.05em;
    }

    #quality .pillar-card p {
      margin: 0 0 10px;
      color: rgba(235,245,255,.65);
      line-height: 1.55;
      font-size: .82rem;
    }

    #quality .quality-lower {
      margin-top: 22px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 18px;
    }

    #quality .quality-news {
      min-height: 220px;
      border-radius: var(--radius-xl);
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    #quality .quality-news::before {
      content: "";
      position: absolute;
      width: 190px;
      height: 190px;
      right: -70px;
      top: -70px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,116,213,.14), transparent 70%);
    }

    #quality .quality-news small {
      display: block;
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: .15em;
      font-size: .62rem;
      font-weight: 900;
      margin-bottom: 14px;
      position: relative;
      z-index: 2;
    }

    #quality .quality-news h3 {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(1.6rem, 2.5vw, 2.35rem);
      line-height: .98;
      letter-spacing: -.07em;
      position: relative;
      z-index: 2;
    }

    #quality .quality-news p,
    #quality .quality-news li {
      color: var(--muted);
      line-height: 1.68;
      font-size: .92rem;
      position: relative;
      z-index: 2;
    }

    #quality .quality-news ul {
      margin: 0;
      padding-left: 18px;
      display: grid;
      gap: 8px;
    }

    #quality .quality-news.accent {
      background:
        radial-gradient(circle at 20% 12%, rgba(0,116,213,.18), transparent 42%),
        linear-gradient(145deg, rgba(0,116,213,.11), rgba(255,255,255,.035));
    }

    @media (max-width: 1180px) {
      #quality .quality-board,
      #quality .quality-head,
      #quality .commit-top,
      #quality .quality-lower {
        grid-template-columns: 1fr;
      }

      #quality .quality-lead {
        justify-self: start;
      }

      #quality .quality-pillars {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 720px) {
      #quality.quality-premium {
        padding-top: 90px;
      }

      #quality .quality-iso-card {
        min-height: unset;
        padding: 24px;
      }

      #quality .quality-metrics,
      #quality .quality-pillars {
        grid-template-columns: 1fr;
      }

      #quality .quality-commit-card {
        padding: 22px;
      }

      #quality .commit-item {
        align-items: flex-start;
      }
    }



    /* =========================================================
       V48: Minimal premium neon radar loader
       ========================================================= */
    .loader-radar-minimal {
      display: grid;
      place-items: center;
      padding: 22px;
      background:
        radial-gradient(circle at 50% 46%, rgba(0,116,213,.16), transparent 32%),
        radial-gradient(circle at 50% 74%, rgba(0,67,126,.07), transparent 30%),
        linear-gradient(180deg, #010409 0%, #04101d 48%, #01050b 100%);
      overflow: hidden;
      cursor: none;
    }

    .loader-radar-minimal::before {
      content: "";
      position: absolute;
      inset: -12%;
      background:
        linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, transparent 0 26%, rgba(0,116,213,.05) 26.4% 26.8%, transparent 27.2% 42%, rgba(0,116,213,.035) 42.4% 42.8%, transparent 43.2% 100%);
      background-size: 58px 58px, 58px 58px, auto;
      opacity: .72;
      animation: minimalGridDrift 12s linear infinite;
    }

    .loader-radar-minimal::after {
      content: "";
      position: absolute;
      width: min(86vw, 660px);
      aspect-ratio: 1;
      border-radius: 50%;
      border: 1px solid rgba(0,116,213,.08);
      box-shadow:
        inset 0 0 80px rgba(0,116,213,.035),
        0 0 90px rgba(0,116,213,.06);
      opacity: .82;
    }

    .minimal-loader-stage {
      position: relative;
      z-index: 3;
      width: min(86vw, 520px);
      min-height: 520px;
      display: grid;
      place-items: center;
      isolation: isolate;
    }

    .minimal-loader-halo {
      position: absolute;
      width: min(82vw, 500px);
      aspect-ratio: 1;
      border-radius: 50%;
      background:
        radial-gradient(circle, rgba(0,116,213,.12), transparent 44%),
        conic-gradient(from 210deg, transparent 0 54deg, rgba(0,116,213,.10) 70deg, transparent 96deg 360deg);
      filter: blur(1px);
      opacity: .75;
      animation: minimalHaloRotate 10s linear infinite;
    }

    .minimal-radar {
      position: relative;
      width: min(78vw, 390px);
      aspect-ratio: 1;
      border-radius: 50%;
      display: grid;
      place-items: center;
      filter: drop-shadow(0 0 34px rgba(0,116,213,.16));
    }

    .minimal-radar::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background:
        radial-gradient(circle, rgba(0,116,213,.10), transparent 17%),
        radial-gradient(circle, transparent 0 31%, rgba(0,116,213,.12) 31.4% 31.8%, transparent 32.2% 48%, rgba(0,116,213,.09) 48.4% 48.8%, transparent 49.2% 65%, rgba(0,116,213,.07) 65.4% 65.8%, transparent 66.2%),
        rgba(5,18,31,.16);
      border: 1px solid rgba(0,116,213,.14);
      box-shadow:
        inset 0 0 75px rgba(0,116,213,.06),
        0 0 55px rgba(0,116,213,.10);
    }

    .minimal-radar::after {
      content: "";
      position: absolute;
      inset: 9%;
      border-radius: 50%;
      border: 1px dashed rgba(0,116,213,.25);
      box-shadow: inset 0 0 30px rgba(0,116,213,.045);
    }

    .minimal-radar-grid {
      position: absolute;
      inset: -12%;
      border-radius: 36px;
      background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 36px 36px;
      mask-image: radial-gradient(circle at center, black 0 64%, transparent 77%);
      opacity: .6;
    }

    .minimal-radar-rings {
      position: absolute;
      inset: 5%;
      border-radius: 50%;
      background:
        repeating-radial-gradient(circle at center, transparent 0 31px, rgba(0,116,213,.11) 32px 33px, transparent 34px 56px);
      opacity: .9;
    }

    .minimal-radar-ticks {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: repeating-conic-gradient(from 0deg, rgba(0,116,213,.24) 0 1.1deg, transparent 1.1deg 9deg);
      mask: radial-gradient(circle, transparent 0 49%, black 50% 54%, transparent 55% 100%);
      -webkit-mask: radial-gradient(circle, transparent 0 49%, black 50% 54%, transparent 55% 100%);
      animation: minimalTicksSpin 20s linear infinite;
    }

    .minimal-radar-axis {
      position: absolute;
      background: linear-gradient(90deg, transparent, rgba(0,116,213,.42), transparent);
      opacity: .78;
    }

    .minimal-radar-axis.axis-x {
      width: 94%;
      height: 1px;
      left: 3%;
      top: 50%;
    }

    .minimal-radar-axis.axis-y {
      height: 94%;
      width: 1px;
      left: 50%;
      top: 3%;
      background: linear-gradient(180deg, transparent, rgba(0,116,213,.42), transparent);
    }

    .minimal-radar-sweep {
      position: absolute;
      width: 50%;
      height: 50%;
      left: 50%;
      top: 50%;
      transform-origin: 0 0;
      border-radius: 0 0 100% 0;
      background: conic-gradient(from 0deg, rgba(0,116,213,.34), rgba(0,116,213,.12) 34deg, transparent 72deg);
      clip-path: polygon(0 0, 100% 20%, 44% 100%);
      filter: blur(.2px) drop-shadow(0 0 18px rgba(0,116,213,.26));
      animation: minimalRadarSweep 3.2s linear infinite;
      mix-blend-mode: screen;
    }

    .minimal-compass {
      position: absolute;
      color: rgba(238,248,255,.76);
      font-size: .78rem;
      font-weight: 900;
      letter-spacing: .08em;
      text-shadow: 0 0 12px rgba(0,116,213,.38);
    }

    .minimal-compass.north { top: 2%; left: 50%; transform: translateX(-50%); }
    .minimal-compass.east { right: 2%; top: 50%; transform: translateY(-50%); }
    .minimal-compass.south { bottom: 2%; left: 50%; transform: translateX(-50%); }
    .minimal-compass.west { left: 2%; top: 50%; transform: translateY(-50%); }

    .minimal-blip {
      position: absolute;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 0 8px rgba(0,116,213,.10), 0 0 18px rgba(0,116,213,.72);
      animation: minimalBlipPulse 2.4s ease-in-out infinite;
    }

    .minimal-blip.b1 { left: 27%; top: 35%; }
    .minimal-blip.b2 { right: 25%; top: 27%; background: var(--teal); animation-delay: .35s; }
    .minimal-blip.b3 { left: 20%; bottom: 27%; background: var(--gold); animation-delay: .7s; }
    .minimal-blip.b4 { right: 32%; bottom: 20%; animation-delay: 1.05s; }

    .minimal-loader-logo {
      position: relative;
      z-index: 4;
      width: 88px;
      height: 88px;
      border-radius: 28px;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 40% 28%, rgba(255,255,255,.25), transparent 35%),
        linear-gradient(135deg, var(--cyan), var(--teal));
      box-shadow:
        0 0 0 1px rgba(255,255,255,.18),
        0 0 45px rgba(0,116,213,.35),
        inset 0 1px 0 rgba(255,255,255,.28);
    }

    .minimal-loader-logo img {
      width: 56%;
      height: 56%;
      object-fit: contain;
      filter: drop-shadow(0 2px 3px rgba(0,0,0,.18));
    }

    .minimal-loader-caption {
      position: absolute;
      left: 50%;
      bottom: 34px;
      transform: translateX(-50%);
      display: grid;
      gap: 7px;
      text-align: center;
      width: min(88vw, 420px);
    }

    .minimal-loader-caption strong {
      font-family: var(--display);
      font-size: clamp(1.15rem, 2.2vw, 1.55rem);
      line-height: 1;
      letter-spacing: -.045em;
      color: rgba(244,251,255,.95);
    }

    .minimal-loader-caption span {
      color: rgba(230,246,255,.62);
      font-size: .65rem;
      font-weight: 900;
      letter-spacing: .22em;
      text-transform: uppercase;
    }

    .minimal-loader-progress {
      position: absolute;
      left: 50%;
      bottom: 0;
      width: min(78vw, 360px);
      height: 4px;
      transform: translateX(-50%);
      border-radius: 99px;
      overflow: hidden;
      background: rgba(255,255,255,.08);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
    }

    .minimal-loader-progress span {
      display: block;
      width: 42%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, transparent, var(--cyan), var(--teal));
      box-shadow: 0 0 18px rgba(0,116,213,.55);
      animation: minimalLoaderProgress 1.35s ease-in-out infinite;
    }

    .loader-radar-minimal .loader-console,
    .loader-radar-minimal .loader-console-top,
    .loader-radar-minimal .loader-console-body,
    .loader-radar-minimal .loader-status-panel,
    .loader-radar-minimal .loader-progress-cockpit {
      display: none !important;
    }

    @keyframes minimalGridDrift {
      to { transform: translate3d(-58px, -58px, 0); }
    }

    @keyframes minimalHaloRotate {
      to { transform: rotate(360deg); }
    }

    @keyframes minimalTicksSpin {
      to { transform: rotate(360deg); }
    }

    @keyframes minimalRadarSweep {
      to { transform: rotate(360deg); }
    }

    @keyframes minimalBlipPulse {
      0%, 100% { transform: scale(.92); opacity: .72; }
      50% { transform: scale(1.16); opacity: 1; }
    }

    @keyframes minimalLoaderProgress {
      0% { transform: translateX(-120%); }
      100% { transform: translateX(260%); }
    }

    @media (max-width: 680px) {
      .minimal-loader-stage {
        width: min(92vw, 430px);
        min-height: 460px;
      }

      .minimal-radar {
        width: min(82vw, 320px);
      }

      .minimal-loader-logo {
        width: 76px;
        height: 76px;
        border-radius: 24px;
      }

      .minimal-loader-caption {
        bottom: 26px;
      }
    }



    /* =========================================================
       V49: Loader orbit centering polish
       - Fix off-center dark circle / radar halo alignment.
       ========================================================= */
    .loader-radar-minimal.loader-cockpit::before {
      inset: -12%;
      left: -12%;
      top: -12%;
      right: -12%;
      bottom: -12%;
      transform-origin: 50% 50%;
      background:
        linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, transparent 0 26%, rgba(0,116,213,.05) 26.4% 26.8%, transparent 27.2% 42%, rgba(0,116,213,.035) 42.4% 42.8%, transparent 43.2% 100%);
      background-size: 58px 58px, 58px 58px, auto;
      animation: minimalGridDrift 12s linear infinite;
      opacity: .72;
    }

    .loader-radar-minimal.loader-cockpit::after {
      inset: auto !important;
      left: 50% !important;
      top: 50% !important;
      width: min(86vw, 660px) !important;
      height: auto !important;
      aspect-ratio: 1 / 1;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 1px solid rgba(0,116,213,.08);
      background: transparent !important;
      background-image: none !important;
      background-size: auto !important;
      box-shadow:
        inset 0 0 80px rgba(0,116,213,.035),
        0 0 90px rgba(0,116,213,.06);
      opacity: .82;
      pointer-events: none;
      z-index: 0;
    }

    .minimal-loader-stage {
      z-index: 3;
    }

    .minimal-loader-halo {
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      transform-origin: 50% 50%;
      animation: minimalHaloRotateCentered 10s linear infinite;
    }

    @keyframes minimalHaloRotateCentered {
      from { transform: translate(-50%, -50%) rotate(0deg); }
      to { transform: translate(-50%, -50%) rotate(360deg); }
    }

    .minimal-radar {
      margin: auto;
    }



    /* ================================
       V51 Performance Pass — Smooth Scroll + Lighter Transitions
       ================================ */
    :root {
      --perf-blur: 14px;
    }

    body {
      overscroll-behavior-y: none;
    }

    .page-progress,
    .depth-meter,
    .nav,
    .loader,
    .toast,
    .cursor-glow {
      contain: layout paint style;
    }

    .cursor-glow {
      left: 0 !important;
      top: 0 !important;
      will-change: transform;
      transform: translate3d(-999px, -999px, 0) translate(-50%, -50%);
    }

    .glass,
    .nav-inner,
    .service-card,
    .ops-widget,
    .floating-card,
    .office-card,
    .copy-btn,
    .pin::after {
      backdrop-filter: blur(var(--perf-blur));
      -webkit-backdrop-filter: blur(var(--perf-blur));
    }

    .scroll-3d-ready {
      will-change: auto !important;
      transform: none !important;
    }

    .reveal {
      transition-duration: .55s !important;
      transition-timing-function: cubic-bezier(.2, .7, .2, 1) !important;
    }

    .section {
      transform: translateZ(0);
    }

    @supports (content-visibility: auto) {
      .section:not(.hero) {
        content-visibility: auto;
        contain-intrinsic-size: 900px;
      }
    }

    .deep-water-canvas {
      will-change: auto !important;
    }

    .shine::after {
      transition-duration: .55s;
    }

    @media (max-width: 900px) {
      :root { --perf-blur: 10px; }
      .cursor-glow { display: none !important; }
      .deep-water-canvas { opacity: .68; }
    }


    /* ================================
       V53 Pointer Mini — ultra-light compact cursor
       Purpose: smaller pointer, lighter paint cost, premium outline retained.
       ================================ */
    @media (pointer: fine) {
      .cursor-glow {
        display: block !important;
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        width: 16px !important;
        height: 16px !important;
        z-index: 100000 !important;
        pointer-events: none !important;
        border-radius: 50% !important;
        opacity: 0;
        transform: translate3d(var(--cursor-x, -120px), var(--cursor-y, -120px), 0) translate(-50%, -50%) !important;
        transition: opacity .12s linear, scale .12s ease !important;
        animation: none !important;
        background:
          radial-gradient(circle at center, rgba(245,255,255,.96) 0 1.2px, rgba(0,116,213,.54) 2px 3.2px, rgba(0,116,213,.08) 4px 6.5px, transparent 7.5px) !important;
        border: 1px solid rgba(194,252,255,.54) !important;
        box-shadow:
          0 0 5px rgba(255,255,255,.22),
          0 0 10px rgba(0,116,213,.38) !important;
        filter: none !important;
        mix-blend-mode: screen !important;
        contain: layout paint style !important;
        will-change: transform, opacity !important;
      }

      .cursor-glow.is-visible {
        opacity: .72 !important;
      }

      .cursor-glow.is-clicking {
        opacity: .92 !important;
        scale: .82;
      }

      .cursor-glow::before {
        content: "" !important;
        position: absolute !important;
        inset: -3px !important;
        pointer-events: none !important;
        border-radius: 50% !important;
        display: block !important;
        border: 1px solid rgba(211,255,255,.32) !important;
        box-shadow: 0 0 7px rgba(0,116,213,.14) !important;
        background: none !important;
        animation: none !important;
      }

      .cursor-glow::after {
        display: none !important;
        content: none !important;
      }
    }

/* =========================================================
   RB Logo Web Update — header, footer, loader
   Uses: /img/logo_rb_web.png
   Purpose: keep layout intact while making the new glass-emboss logo
   cleaner, sharper, and more standout across all brand positions.
========================================================= */
.brand-logo,
.minimal-loader-logo,
.loader-logo-core,
.loader-brand-logo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(0,116,213,.16), transparent 58%),
    linear-gradient(145deg, rgba(4,18,31,.76), rgba(0,6,14,.68)) !important;
  border: 1px solid rgba(180,245,255,.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(0,116,213,.08),
    0 0 0 1px rgba(255,255,255,.025),
    0 0 38px rgba(0,116,213,.22),
    0 18px 42px rgba(0,0,0,.30) !important;
}

.brand-logo::before,
.minimal-loader-logo::before,
.loader-logo-core::before,
.loader-brand-logo::before {
  content: "";
  position: absolute;
  inset: -34%;
  z-index: -1;
  pointer-events: none;
  background:
    conic-gradient(from 180deg, transparent, rgba(0,116,213,.18), transparent 38%, rgba(0,67,126,.10), transparent 72%),
    radial-gradient(circle at 50% 50%, rgba(0,116,213,.16), transparent 54%);
  filter: blur(10px);
  opacity: .72;
}

.brand-logo img,
.minimal-loader-logo img,
.loader-logo-core img,
.loader-brand-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  padding: 0 !important;
  transform: scale(1.035);
  filter:
    saturate(1.08)
    brightness(1.06)
    contrast(1.04)
    drop-shadow(0 0 14px rgba(0,116,213,.18)) !important;
}

.cockpit-brand .brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  flex: 0 0 58px;
}

.footer-logo {
  width: 64px !important;
  height: 64px !important;
  border-radius: 22px !important;
  flex: 0 0 64px !important;
}

.minimal-loader-logo {
  width: 116px;
  height: 116px;
  border-radius: 34px;
  animation: rbLogoLoaderFloat 4.2s ease-in-out infinite;
}

.minimal-loader-logo img {
  transform: scale(1.08);
}

@keyframes rbLogoLoaderFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.12),
      inset 0 -1px 0 rgba(0,116,213,.08),
      0 0 0 1px rgba(255,255,255,.025),
      0 0 42px rgba(0,116,213,.24),
      0 20px 50px rgba(0,0,0,.34) !important;
  }
  50% {
    transform: translateY(-6px) scale(1.025);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.16),
      inset 0 -1px 0 rgba(0,116,213,.12),
      0 0 0 1px rgba(255,255,255,.035),
      0 0 58px rgba(0,67,126,.30),
      0 26px 58px rgba(0,0,0,.40) !important;
  }
}

.brand-logo .brand-fallback,
.loader-logo-core span,
.loader-brand-logo span {
  display: none !important;
}

@media (max-width: 900px) {
  .cockpit-brand .brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    flex-basis: 50px;
  }
}

@media (max-width: 680px) {
  .cockpit-brand .brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    flex-basis: 46px;
  }

  .footer-logo {
    width: 56px !important;
    height: 56px !important;
    border-radius: 19px !important;
    flex-basis: 56px !important;
  }

  .minimal-loader-logo {
    width: 92px;
    height: 92px;
    border-radius: 28px;
  }
}



/* =========================================================
   RB Premium Blue Theme Override
   Primary: #00437E | Secondary: #0074D5
   Scope: color system only; layout, spacing, animation, and structure remain intact.
========================================================= */
:root {
  --primary: #00437E;
  --secondary: #0074D5;
  --primary-rgb: 0, 67, 126;
  --secondary-rgb: 0, 116, 213;
  --bg: #020812;
  --bg-2: #04182a;
  --bg-3: #06315a;
  --cyan: #0074D5;
  --blue: #00437E;
  --teal: #00437E;
  --green: #0074D5;
  --gold: #0074D5;
  --danger: #0074D5;
  --line: rgba(0, 116, 213, .20);
  --line-strong: rgba(0, 116, 213, .46);
  --glass: rgba(255,255,255,.072);
  --glass-strong: rgba(255,255,255,.118);
}

html {
  background: #020812;
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(var(--secondary-rgb), .20), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(var(--primary-rgb), .26), transparent 30%),
    radial-gradient(circle at 60% 72%, rgba(var(--secondary-rgb), .12), transparent 36%),
    linear-gradient(180deg, #020711 0%, #031424 42%, #020812 100%) !important;
}

.page-progress,
.loader-line span,
.floating-meter span,
.clean-stat::after,
.css-operation-card i,
.ruler-fill,
.depth-meter i::before,
.route-line,
.radar-route,
.clean-route,
.quality-line,
.commit-progress span {
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary)) !important;
}

.gradient-text {
  background: linear-gradient(100deg, #ffffff, #c9e8ff 28%, var(--secondary) 62%, var(--primary)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

.pill.primary,
.nav-links a:hover,
.nav-links a.is-active,
.toast,
.quality-item strong::before,
.iso-mark,
.office-code,
.status-chip,
.office-card .type,
.fleet-menu-status {
  color: #f6fbff !important;
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  box-shadow: 0 0 38px rgba(var(--secondary-rgb), .22) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.22);
}

.brand-mark,
.loader-mark,
.minimal-loader-logo,
.brand-logo,
.footer-logo,
.loader-logo-core,
.loader-brand-logo,
.service-icon .tile-outer,
.office-icon,
.pillar-icon,
.commit-icon,
.hud-icon,
.footer-radar-dot {
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.14), transparent 52%),
    linear-gradient(145deg, rgba(var(--secondary-rgb), .34), rgba(var(--primary-rgb), .82)) !important;
  border-color: rgba(var(--secondary-rgb), .36) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 0 38px rgba(var(--secondary-rgb), .18),
    0 18px 42px rgba(0,0,0,.30) !important;
}

.hero::before {
  filter: saturate(1.05) contrast(1.08) brightness(.76) hue-rotate(5deg) !important;
}

.hero::after,
body::before,
.css-radar-scene::before,
.coverage-map::before,
.ops-dashboard::before,
.footer-console::before {
  opacity: .72;
}

.glass,
.service-card,
.fleet-display,
.fleet-menu,
.office-card,
.quality-iso-card,
.quality-commit-card,
.pillar-card,
.quality-news,
.footer-console,
.hero-css-panel {
  border-color: rgba(var(--secondary-rgb), .22) !important;
  background:
    radial-gradient(circle at 16% 10%, rgba(var(--secondary-rgb), .11), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.042)) !important;
}

.hero-css-panel,
.neon-radar,
.minimal-radar,
.css-radar-scene,
.coverage-stage-visual,
.ship-visual {
  box-shadow:
    0 34px 110px rgba(0,0,0,.46),
    inset 0 1px 0 rgba(255,255,255,.10),
    0 0 70px rgba(var(--secondary-rgb), .13) !important;
}

.section-kicker,
.eyebrow,
.fleet-tab i,
.spec-item strong,
.service-tag,
.office-label,
.panel-label,
.quality-metric strong,
.pillar-card small,
.quality-news small,
.footer a:hover,
.hud-label,
.radar-micro-label,
.minimal-compass,
.clean-stat::before {
  color: var(--secondary) !important;
}

.hero-badge,
.hud-node,
.fleet-tab.is-active,
.coverage-chip,
.copy-btn:hover,
.spec-item:hover,
.service-card:hover,
.office-line:hover,
.footer-panel a:hover {
  border-color: rgba(var(--secondary-rgb), .42) !important;
  background: rgba(var(--secondary-rgb), .10) !important;
  box-shadow: 0 0 34px rgba(var(--secondary-rgb), .12) !important;
}

.hero-badge span,
.eyebrow::before,
.status-chip::before,
.ticker span::after,
.ops-list div::before,
.route-dot,
.radar-blip,
.radar-glow,
.ruler-probe,
.hud-node i,
.footer-radar-rail i {
  background: var(--secondary) !important;
  box-shadow: 0 0 18px rgba(var(--secondary-rgb), .72) !important;
}

::selection {
  color: #f6fbff;
  background: var(--secondary);
}

@media (pointer: fine) {
  .cursor-glow {
    background:
      conic-gradient(from 0deg, rgba(var(--secondary-rgb), .98) 0 46deg, transparent 48deg 172deg, rgba(var(--primary-rgb), .86) 174deg 204deg, transparent 206deg 360deg),
      radial-gradient(circle at center, rgba(235,255,255,1) 0 1.8px, rgba(var(--secondary-rgb), .52) 2.6px 4.3px, rgba(var(--secondary-rgb), .08) 5px 10px, transparent 11px) !important;
    border-color: rgba(200,235,255,.60) !important;
    box-shadow:
      0 0 6px rgba(255,255,255,.28),
      0 0 16px rgba(var(--secondary-rgb), .52),
      0 0 24px rgba(var(--primary-rgb), .20) !important;
  }
}


/* =========================================================
   RB Premium Neon Blue Revision
   Concept: Darkmode tetap premium, tapi accent dibuat lebih neon
   Palette lock:
   - Primary   : #00437E
   - Secondary : #0074D5
   ========================================================= */
:root {
  --primary: #00437E;
  --secondary: #0074D5;
  --primary-rgb: 0, 67, 126;
  --secondary-rgb: 0, 116, 213;

  --bg: #020914;
  --bg-2: #031427;
  --bg-3: #042541;

  --cyan: #0074D5;
  --blue: #00437E;
  --teal: #0074D5;
  --green: #0074D5;
  --gold: #0074D5;
  --danger: #0074D5;

  --line: rgba(var(--secondary-rgb), .20);
  --line-strong: rgba(var(--secondary-rgb), .52);
  --glass: rgba(0, 67, 126, .145);
  --glass-strong: rgba(0, 116, 213, .18);

  --neon-glow-soft: 0 0 22px rgba(var(--secondary-rgb), .24);
  --neon-glow-mid: 0 0 46px rgba(var(--secondary-rgb), .34);
  --neon-glow-strong: 0 0 86px rgba(var(--secondary-rgb), .42);
  --neon-border: rgba(var(--secondary-rgb), .44);
  --neon-fill: linear-gradient(135deg, #00437E 0%, #0074D5 54%, #3AAEFF 100%);
}

/* Dark ocean base dibuat lebih blue-neon, bukan cyan/teal lama */
html {
  background: #020914 !important;
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(var(--secondary-rgb), .24), transparent 31%),
    radial-gradient(circle at 84% 12%, rgba(var(--primary-rgb), .30), transparent 34%),
    radial-gradient(circle at 52% 72%, rgba(var(--secondary-rgb), .20), transparent 42%),
    linear-gradient(180deg, #020914 0%, #031427 38%, #020914 100%) !important;
}

body::before {
  background-image:
    linear-gradient(rgba(var(--secondary-rgb), .072) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--secondary-rgb), .052) 1px, transparent 1px) !important;
  opacity: .72;
}

body::after {
  opacity: .50 !important;
  background:
    linear-gradient(128deg, transparent 0%, rgba(var(--secondary-rgb), .075) 44%, transparent 61%) !important;
  filter: drop-shadow(0 0 40px rgba(var(--secondary-rgb), .18));
}

/* Premium neon text gradient */
.gradient-text,
.section-title span,
.hero h1 .gradient-text {
  color: transparent !important;
  -webkit-text-stroke: 0 !important;
  background:
    linear-gradient(100deg, #f7fcff 0%, #7ccbff 34%, #0074D5 66%, #00437E 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  filter:
    drop-shadow(0 0 10px rgba(var(--secondary-rgb), .28))
    drop-shadow(0 0 28px rgba(var(--secondary-rgb), .18));
}

.section-title span {
  filter: drop-shadow(0 0 18px rgba(var(--secondary-rgb), .24));
}

/* Neon line / progress / cursor layer */
.page-progress,
.loader-line span,
.minimal-loader-progress span,
.ruler-fill,
.depth-meter i::before {
  background: linear-gradient(90deg, #00437E, #0074D5, #4ab7ff) !important;
  box-shadow:
    0 0 18px rgba(var(--secondary-rgb), .72),
    0 0 42px rgba(var(--secondary-rgb), .34) !important;
}

.cursor-glow {
  background:
    radial-gradient(circle, rgba(var(--secondary-rgb), .46), rgba(var(--primary-rgb), .20) 42%, transparent 70%) !important;
  filter: blur(15px) saturate(1.4);
}

/* Glass panels: lebih neon tapi tetap dark premium */
.glass,
.hero-css-panel,
.hero-clean-panel,
.fleet-menu,
.fleet-display,
.service-card,
.ops-copy,
.ops-dashboard,
.coverage-map,
.office-card,
.quality-iso-card,
.quality-commit-card,
.pillar-card,
.quality-news,
.footer-console,
.legacy-copy,
.legacy-visual,
.legacy-journey,
.legacy-pillars,
.legacy-numbers {
  border-color: rgba(var(--secondary-rgb), .30) !important;
  background:
    radial-gradient(circle at 18% 10%, rgba(var(--secondary-rgb), .16), transparent 34%),
    radial-gradient(circle at 86% 90%, rgba(var(--primary-rgb), .22), transparent 40%),
    linear-gradient(145deg, rgba(0, 67, 126, .23), rgba(3, 12, 24, .64)) !important;
  box-shadow:
    0 34px 100px rgba(0,0,0,.50),
    inset 0 1px 0 rgba(255,255,255,.105),
    inset 0 0 0 1px rgba(var(--secondary-rgb), .06),
    0 0 56px rgba(var(--secondary-rgb), .16) !important;
}

.glass:hover,
.service-card:hover,
.office-card:hover,
.pillar-card:hover,
.quality-news:hover,
.fleet-display:hover,
.hero-css-panel:hover {
  border-color: rgba(var(--secondary-rgb), .58) !important;
  box-shadow:
    0 38px 110px rgba(0,0,0,.54),
    inset 0 1px 0 rgba(255,255,255,.14),
    0 0 34px rgba(var(--secondary-rgb), .25),
    0 0 92px rgba(var(--secondary-rgb), .20) !important;
}

/* Header / Navigation */
.nav-inner,
.cockpit-nav-inner {
  border-color: rgba(var(--secondary-rgb), .30) !important;
  background:
    linear-gradient(135deg, rgba(2,9,20,.78), rgba(0,67,126,.22)) !important;
  box-shadow:
    0 20px 70px rgba(0,0,0,.42),
    0 0 42px rgba(var(--secondary-rgb), .13),
    inset 0 1px 0 rgba(255,255,255,.10) !important;
}

.nav.is-scrolled .nav-inner {
  background:
    linear-gradient(135deg, rgba(2,9,20,.88), rgba(0,67,126,.28)) !important;
  border-color: rgba(var(--secondary-rgb), .42) !important;
}

.brand-mark,
.brand-logo,
.footer-logo,
.minimal-loader-logo {
  background:
    radial-gradient(circle at 48% 32%, rgba(255,255,255,.24), transparent 48%),
    linear-gradient(145deg, rgba(var(--secondary-rgb), .92), rgba(var(--primary-rgb), .96)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.20),
    0 0 24px rgba(var(--secondary-rgb), .52),
    0 0 70px rgba(var(--secondary-rgb), .22) !important;
}

.brand-logo img,
.footer-logo img,
.minimal-loader-logo img {
  filter:
    drop-shadow(0 0 9px rgba(255,255,255,.18))
    drop-shadow(0 0 20px rgba(var(--secondary-rgb), .62))
    drop-shadow(0 0 44px rgba(var(--secondary-rgb), .30)) !important;
}

.nav-links a:hover,
.nav-links a.is-active,
.pill.primary {
  color: #f7fcff !important;
  background:
    linear-gradient(135deg, #00437E 0%, #0074D5 56%, #4ab7ff 100%) !important;
  border-color: rgba(var(--secondary-rgb), .54) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    0 0 18px rgba(var(--secondary-rgb), .56),
    0 0 48px rgba(var(--secondary-rgb), .26) !important;
}

.pill:not(.primary),
.hud-node,
.status-chip,
.coverage-chip,
.fleet-menu-label,
.fleet-menu-status,
.office-card .type,
.iso-status,
.panel-label,
.footer-radar-rail span {
  border-color: rgba(var(--secondary-rgb), .32) !important;
  background:
    linear-gradient(135deg, rgba(var(--primary-rgb), .30), rgba(var(--secondary-rgb), .13)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 24px rgba(var(--secondary-rgb), .12) !important;
}

/* Hero ocean and radar */
.hero {
  background: #020914 !important;
}

.hero::before {
  filter: saturate(1.22) contrast(1.12) brightness(.72) hue-rotate(6deg) !important;
}

.hero::after {
  background:
    radial-gradient(circle at 18% 42%, rgba(var(--secondary-rgb), .24), transparent 28%),
    radial-gradient(circle at 76% 36%, rgba(var(--primary-rgb), .22), transparent 30%),
    linear-gradient(rgba(var(--secondary-rgb), .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--secondary-rgb), .032) 1px, transparent 1px) !important;
  opacity: .82 !important;
}

.hero-badge {
  border-color: rgba(var(--secondary-rgb), .48) !important;
  background:
    linear-gradient(135deg, rgba(0,67,126,.36), rgba(0,116,213,.13)) !important;
  box-shadow:
    0 0 22px rgba(var(--secondary-rgb), .24),
    inset 0 1px 0 rgba(255,255,255,.11) !important;
}

.hero-badge span,
.eyebrow::before,
.section-kicker::before,
.status-chip::before,
.hud-node i,
.ticker span::after,
.ops-list div::before,
.route-dot,
.radar-blip,
.radar-glow,
.ruler-probe,
.office-code,
.footer-radar-dot {
  background: #0074D5 !important;
  box-shadow:
    0 0 0 7px rgba(var(--secondary-rgb), .105),
    0 0 20px rgba(var(--secondary-rgb), .82),
    0 0 44px rgba(var(--secondary-rgb), .36) !important;
}

.neon-radar,
.minimal-radar,
.css-radar-scene,
.route-board,
.coverage-stage-visual,
.ship-visual {
  border-color: rgba(var(--secondary-rgb), .42) !important;
  box-shadow:
    inset 0 0 58px rgba(var(--secondary-rgb), .105),
    0 0 28px rgba(var(--secondary-rgb), .26),
    0 0 90px rgba(var(--secondary-rgb), .14) !important;
}

.neon-radar {
  background:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1px, rgba(var(--secondary-rgb), .72) 2px, transparent 4px),
    repeating-radial-gradient(circle, transparent 0 42px, rgba(var(--secondary-rgb), .30) 43px 44px),
    conic-gradient(from 0deg, rgba(var(--secondary-rgb), .05), rgba(var(--secondary-rgb), .28), transparent 24%, transparent 100%) !important;
  border-color: rgba(122,203,255,.62) !important;
}

.radar-ring,
.minimal-radar-rings,
.minimal-radar-grid,
.radar-orbit {
  border-color: rgba(var(--secondary-rgb), .48) !important;
  box-shadow: 0 0 18px rgba(var(--secondary-rgb), .24) !important;
}

.radar-scan,
.minimal-radar-sweep {
  background:
    conic-gradient(from -18deg at 0 0, rgba(var(--secondary-rgb), .78), rgba(var(--secondary-rgb), .18) 24deg, transparent 38deg) !important;
  filter:
    blur(.15px)
    drop-shadow(0 0 18px rgba(var(--secondary-rgb), .78))
    drop-shadow(0 0 42px rgba(var(--secondary-rgb), .34)) !important;
}

.css-operation-card,
.radar-side-readout,
.clean-stat,
.spec-item,
.hud-card,
.office-line,
.quality-metric,
.commit-item,
.footer-panel {
  border-color: rgba(var(--secondary-rgb), .27) !important;
  background:
    linear-gradient(145deg, rgba(0, 67, 126, .24), rgba(2, 10, 22, .58)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.09),
    0 0 26px rgba(var(--secondary-rgb), .10) !important;
}

.css-operation-card i,
.clean-stat::after,
.spec-chart i,
.signal-bars i,
.quality-line,
.footer-panel::before,
.office-line::before,
.pillar-card::after {
  background:
    linear-gradient(90deg, #00437E, #0074D5, #4ab7ff, transparent) !important;
  box-shadow: 0 0 20px rgba(var(--secondary-rgb), .42) !important;
}

/* Services icon neon linework */
.service-icon .tile-outer {
  fill: rgba(var(--secondary-rgb), .10) !important;
  stroke: rgba(104, 193, 255, .90) !important;
  filter: drop-shadow(0 0 16px rgba(var(--secondary-rgb), .30));
}

.service-icon .tile-inner {
  fill: rgba(0, 67, 126, .34) !important;
  stroke: rgba(var(--secondary-rgb), .38) !important;
}

.service-icon .outline,
.service-icon .outline-thin,
.service-icon .accent,
.service-icon .accent-dash {
  stroke: rgba(114, 202, 255, .98) !important;
  filter:
    drop-shadow(0 0 8px rgba(var(--secondary-rgb), .70))
    drop-shadow(0 0 18px rgba(var(--secondary-rgb), .32)) !important;
}

.service-icon .glow-dot,
.service-icon .soft-glow {
  fill: rgba(128, 207, 255, .98) !important;
  filter:
    drop-shadow(0 0 8px rgba(var(--secondary-rgb), .88))
    drop-shadow(0 0 20px rgba(var(--secondary-rgb), .40)) !important;
}

/* Cards and tabs */
.fleet-tab:hover,
.fleet-tab.is-active,
.spec-item:hover,
.service-card:hover,
.copy-btn:hover,
.office-line:hover,
.quality-news.accent {
  background:
    radial-gradient(circle at 18% 10%, rgba(var(--secondary-rgb), .24), transparent 35%),
    linear-gradient(145deg, rgba(0, 116, 213, .19), rgba(0, 67, 126, .24)) !important;
  border-color: rgba(var(--secondary-rgb), .55) !important;
  box-shadow:
    0 18px 60px rgba(0,0,0,.30),
    0 0 30px rgba(var(--secondary-rgb), .24),
    inset 0 1px 0 rgba(255,255,255,.13) !important;
}

.service-tag,
.section-kicker,
.eyebrow,
.fleet-tab i,
.spec-item strong,
.office-label,
.quality-metric strong,
.pillar-card small,
.quality-news small,
.footer a:hover,
.hud-label,
.radar-micro-label,
.minimal-compass,
.footer-radar-rail span,
.panel-label {
  color: #4ab7ff !important;
  text-shadow:
    0 0 8px rgba(var(--secondary-rgb), .60),
    0 0 24px rgba(var(--secondary-rgb), .24) !important;
}

/* Loader made more neon blue */
.loader {
  background:
    radial-gradient(circle at 50% 45%, rgba(var(--secondary-rgb), .24), transparent 38%),
    linear-gradient(180deg, #020914, #031427 52%, #020914) !important;
}

.minimal-loader-halo {
  border-color: rgba(var(--secondary-rgb), .34) !important;
  box-shadow:
    0 0 40px rgba(var(--secondary-rgb), .28),
    0 0 110px rgba(var(--secondary-rgb), .16) !important;
}

.minimal-blip,
.minimal-loader-logo::after {
  background: #0074D5 !important;
  box-shadow:
    0 0 18px rgba(var(--secondary-rgb), .80),
    0 0 48px rgba(var(--secondary-rgb), .32) !important;
}

/* Footer becomes deep-blue command console */
.footer-console {
  background:
    radial-gradient(circle at 18% 4%, rgba(var(--secondary-rgb), .20), transparent 35%),
    radial-gradient(circle at 90% 90%, rgba(var(--primary-rgb), .24), transparent 42%),
    linear-gradient(145deg, rgba(0, 67, 126, .26), rgba(2, 9, 20, .72)) !important;
}

::selection {
  color: #ffffff !important;
  background: #0074D5 !important;
  text-shadow: 0 0 12px rgba(255,255,255,.35);
}

@media (pointer: fine) {
  .cursor-glow {
    background:
      conic-gradient(from 0deg, rgba(var(--secondary-rgb), 1) 0 46deg, transparent 48deg 172deg, rgba(74,183,255,.86) 174deg 204deg, transparent 206deg 360deg),
      radial-gradient(circle at center, rgba(245,252,255,1) 0 1.8px, rgba(var(--secondary-rgb), .68) 2.6px 4.3px, rgba(var(--secondary-rgb), .12) 5px 10px, transparent 11px) !important;
    border-color: rgba(170,220,255,.74) !important;
    box-shadow:
      0 0 8px rgba(255,255,255,.34),
      0 0 18px rgba(var(--secondary-rgb), .72),
      0 0 42px rgba(var(--secondary-rgb), .30) !important;
  }
}


/* =========================================================
   RB Minor Revision — Home Hero Background Visibility
   Keep neon blue theme, only brighten hero background slightly.
   ========================================================= */
.hero::before {
  background:
    linear-gradient(90deg,
      rgba(2, 8, 16, .70) 0%,
      rgba(2, 8, 16, .46) 32%,
      rgba(2, 8, 16, .20) 58%,
      rgba(2, 8, 16, .42) 100%),
    linear-gradient(180deg,
      rgba(2, 8, 16, .44) 0%,
      rgba(2, 8, 16, .08) 36%,
      rgba(2, 8, 16, .56) 100%),
    url("img/bg_hero.png") center center / cover no-repeat !important;
  filter: saturate(1.22) contrast(1.08) brightness(.96) hue-rotate(6deg) !important;
  opacity: 1 !important;
}

.hero::after {
  opacity: .58 !important;
  background:
    radial-gradient(circle at 18% 42%, rgba(var(--secondary-rgb), .18), transparent 29%),
    radial-gradient(circle at 76% 36%, rgba(var(--primary-rgb), .15), transparent 31%),
    linear-gradient(rgba(var(--secondary-rgb), .030) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--secondary-rgb), .024) 1px, transparent 1px) !important;
}

.hero-copy {
  text-shadow:
    0 24px 72px rgba(0, 0, 0, .56),
    0 0 28px rgba(0, 67, 126, .16) !important;
}

.hero-css-panel {
  background:
    linear-gradient(145deg, rgba(5, 24, 38, .54), rgba(255,255,255,.052)),
    radial-gradient(circle at 52% 40%, rgba(0, 116, 213, .13), transparent 42%) !important;
}


/* =========================================================
   RB Minor Revision — Footer Radar Active Fix
   Only fixes the footer "Marine Operations Active" radar.
   ========================================================= */
.footer-signal-widget {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  border-color: rgba(var(--secondary-rgb), .34) !important;
  background:
    radial-gradient(circle at 12% 50%, rgba(var(--secondary-rgb), .18), transparent 34%),
    linear-gradient(135deg, rgba(0, 67, 126, .24), rgba(2, 10, 22, .58)) !important;
}

.footer-signal-widget::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, transparent 0%, rgba(var(--secondary-rgb), .10) 48%, transparent 70%),
    repeating-linear-gradient(135deg, rgba(var(--secondary-rgb), .04) 0 1px, transparent 1px 34px) !important;
  opacity: .72 !important;
}

.footer-radar-dot {
  position: relative !important;
  width: 48px !important;
  height: 48px !important;
  flex: 0 0 48px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  border-radius: 50% !important;
  border: 1px solid rgba(122, 203, 255, .66) !important;
  background:
    radial-gradient(circle at center, rgba(244, 252, 255, .95) 0 2px, rgba(0, 116, 213, .82) 3px 5px, transparent 6px),
    repeating-radial-gradient(circle, rgba(0, 116, 213, .18) 0 1px, transparent 1px 8px),
    radial-gradient(circle at center, rgba(0, 116, 213, .28), rgba(0, 67, 126, .22) 46%, rgba(2, 10, 22, .86) 72%) !important;
  box-shadow:
    inset 0 0 18px rgba(var(--secondary-rgb), .22),
    0 0 0 8px rgba(var(--secondary-rgb), .08),
    0 0 24px rgba(var(--secondary-rgb), .55),
    0 0 58px rgba(var(--secondary-rgb), .24) !important;
  animation: footerRadarPulse 2.8s ease-in-out infinite !important;
}

.footer-radar-dot::before,
.footer-radar-dot::after {
  content: "" !important;
  position: absolute !important;
  inset: 7px !important;
  border-radius: 50% !important;
  pointer-events: none !important;
}

.footer-radar-dot::before {
  border: 1px dashed rgba(160, 218, 255, .62) !important;
  box-shadow:
    inset 0 0 12px rgba(var(--secondary-rgb), .18),
    0 0 14px rgba(var(--secondary-rgb), .22) !important;
  animation: footerRadarRingSpin 5.6s linear infinite !important;
}

.footer-radar-dot::after {
  inset: 50% auto auto 50% !important;
  width: 50% !important;
  height: 50% !important;
  border-radius: 0 100% 0 0 !important;
  transform-origin: 0 0 !important;
  background:
    conic-gradient(from -18deg at 0 0,
      rgba(74, 183, 255, .96),
      rgba(0, 116, 213, .42) 24deg,
      transparent 42deg) !important;
  border-top: 1px solid rgba(222, 246, 255, .78) !important;
  filter:
    drop-shadow(0 0 10px rgba(var(--secondary-rgb), .72))
    drop-shadow(0 0 22px rgba(var(--secondary-rgb), .32)) !important;
  animation: footerRadarSweepActive 1.85s linear infinite !important;
}

.footer-signal-widget span,
.footer-signal-widget strong,
.footer-signal-widget {
  z-index: 1 !important;
}

@keyframes footerRadarSweepActive {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes footerRadarRingSpin {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes footerRadarPulse {
  0%, 100% {
    filter: brightness(.96) saturate(1.08);
    box-shadow:
      inset 0 0 18px rgba(var(--secondary-rgb), .22),
      0 0 0 8px rgba(var(--secondary-rgb), .08),
      0 0 24px rgba(var(--secondary-rgb), .55),
      0 0 58px rgba(var(--secondary-rgb), .24);
  }
  50% {
    filter: brightness(1.18) saturate(1.24);
    box-shadow:
      inset 0 0 22px rgba(var(--secondary-rgb), .32),
      0 0 0 10px rgba(var(--secondary-rgb), .10),
      0 0 34px rgba(var(--secondary-rgb), .72),
      0 0 78px rgba(var(--secondary-rgb), .34);
  }
}


/* =========================================================
   V13 Smooth Conventional Parallax Patch
   Goal: keep original ocean/depth visual feeling, but move the
   heavy background system to GPU-friendly transform-only parallax.
   Design, layout, fonts, colors, and content are intentionally kept.
========================================================= */
:root {
  --scroll-progress: 0;
}

/* Stop large scroll-driven color recalculation on body. */
body {
  background:
    radial-gradient(circle at 18% 6%, rgba(0,116,213,.18), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(0,67,126,.10), transparent 32%),
    radial-gradient(circle at 52% 84%, rgba(6,20,44,.42), transparent 42%),
    linear-gradient(180deg, #00315c 0%, #061424 26%, #04101d 48%, #020912 70%, #000309 100%) !important;
}

/* Progress bar now uses transform instead of width to avoid layout/repaint. */
.page-progress {
  width: 100% !important;
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress));
  will-change: transform;
  contain: strict;
}

/* Keep the ocean mood, but make it static/cheap instead of scroll-color repaint. */
.deep-water-canvas {
  opacity: .34 !important;
  mix-blend-mode: screen;
  filter: none !important;
  contain: strict;
  transform: translateZ(0);
  will-change: auto;
}

.depth-gradient {
  background:
    radial-gradient(circle at 50% -12%, rgba(0,116,213,.12), transparent 38%),
    linear-gradient(180deg, rgba(2,45,70,.12) 0%, rgba(3,15,31,.34) 44%, rgba(0,4,12,.56) 100%) !important;
  opacity: .78 !important;
  contain: strict;
  transform: translateZ(0);
}

.depth-gradient::before {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.22) 72%, rgba(0,0,0,.48) 100%),
    radial-gradient(circle at 50% 46%, rgba(0,116,213,.06), transparent 34%) !important;
  transition: none !important;
}

/* Conventional parallax: one fixed scene, PNG assets move only by transform. */
.ocean-depth-assets {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  perspective: none !important;
  transform-style: flat !important;
  opacity: .96;
  contain: layout style paint;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.depth-asset {
  position: absolute;
  object-fit: contain;
  transform-style: flat !important;
  backface-visibility: hidden;
  will-change: transform;
  contain: paint;
  transition: none !important;
}

.depth-plankton-a,
.depth-plankton-b {
  mix-blend-mode: screen;
  filter: saturate(1.12) brightness(1.04) drop-shadow(0 0 22px rgba(0,116,213,.11)) !important;
  animation: planktonFloat 14s ease-in-out infinite;
}

.depth-plankton-a {
  width: clamp(260px, 33vw, 560px);
  left: -5vw;
  top: 10vh;
  opacity: .24 !important;
}

.depth-plankton-b {
  width: clamp(260px, 34vw, 590px);
  right: -9vw;
  top: 42vh;
  opacity: .16 !important;
  animation-delay: -4s;
}

.depth-rock {
  width: clamp(300px, 38vw, 680px);
  left: -6vw;
  bottom: -9vh;
  opacity: .34 !important;
  filter: brightness(.62) saturate(1.03) drop-shadow(0 22px 52px rgba(0,0,0,.32)) !important;
}

.depth-coral {
  width: clamp(320px, 42vw, 720px);
  right: -8vw;
  bottom: -12vh;
  opacity: .38 !important;
  filter: brightness(.66) saturate(1.06) drop-shadow(0 18px 54px rgba(0,0,0,.34)) !important;
}

.depth-anchor {
  width: clamp(180px, 20vw, 345px);
  right: 7vw;
  top: 26vh;
  opacity: .20 !important;
  filter: brightness(.58) drop-shadow(0 24px 42px rgba(0,0,0,.32)) drop-shadow(0 0 16px rgba(0,116,213,.08)) !important;
}

.depth-engine {
  width: clamp(280px, 34vw, 585px);
  left: 3vw;
  top: 45vh;
  opacity: .22 !important;
  filter: brightness(.56) saturate(1.02) drop-shadow(0 26px 52px rgba(0,0,0,.32)) !important;
}

.depth-propeller {
  width: clamp(185px, 24vw, 410px);
  right: 15vw;
  bottom: 8vh;
  opacity: .24 !important;
  filter: brightness(.62) saturate(1.02) drop-shadow(0 22px 46px rgba(0,0,0,.32)) !important;
  animation: propellerSlowSpin 32s linear infinite;
}

.depth-beacon {
  width: clamp(145px, 16vw, 285px);
  left: 53vw;
  bottom: 4vh;
  opacity: .24 !important;
  mix-blend-mode: screen;
  filter: brightness(.90) saturate(1.08) drop-shadow(0 0 26px rgba(0,116,213,.16)) !important;
  animation: beaconPulseStatic 6.8s ease-in-out infinite;
}

.depth-sonar-orb {
  width: clamp(150px, 18vw, 310px);
  left: 13vw;
  top: 22vh;
  opacity: .12 !important;
  mix-blend-mode: screen;
  filter: brightness(.78) saturate(1.08) drop-shadow(0 0 18px rgba(0,116,213,.10)) !important;
}

@keyframes beaconPulseStatic {
  0%,100% { opacity: .18; }
  50% { opacity: .30; }
}

/* Depth UI remains, but only the small UI updates with the scroll variable. */
.ruler-fill {
  height: calc(var(--scroll-progress) * 100%) !important;
}

.ruler-probe {
  top: calc(var(--scroll-progress) * 100%) !important;
}

.depth-meter i::before {
  width: calc(var(--scroll-progress) * 100%) !important;
}

/* Avoid scroll-time style recalculation on hero depth transforms. */
.command,
.hologram-core {
  transform: none;
}

/* Reduce expensive blur only on mobile where scroll jank is easiest to feel. */
@media (max-width: 760px) {
  .deep-water-canvas {
    opacity: .22 !important;
  }

  .depth-gradient {
    opacity: .62 !important;
  }

  .ocean-depth-assets {
    opacity: .68;
  }

  .depth-rock { width: 430px; left: -210px; bottom: -95px; }
  .depth-coral { width: 430px; right: -230px; bottom: -105px; }
  .depth-anchor { width: 180px; right: -65px; top: 44vh; }
  .depth-beacon { width: 150px; left: 58vw; }
}

@media (prefers-reduced-motion: reduce) {
  .depth-asset,
  .deep-water-canvas,
  .depth-gradient {
    animation: none !important;
    transition: none !important;
  }
}


/* =========================================================
   V14 Smooth Deep-Follow Parallax Patch
   Latest locked behavior: original ocean visual is preserved,
   assets follow the scroll smoothly, and deeper assets become
   more visible as the page goes deeper.
========================================================= */
:root {
  --deep-visibility: 0;
  --depth-gradient-opacity: .62;
  --deep-canvas-opacity: .24;
  --depth-gradient-y: 0px;
  --deep-canvas-y: 0px;
}

.deep-water-canvas {
  opacity: var(--deep-canvas-opacity) !important;
  transform: translate3d(0, var(--deep-canvas-y), 0) !important;
  will-change: transform, opacity;
}

.depth-gradient {
  opacity: var(--depth-gradient-opacity) !important;
  transform: translate3d(0, var(--depth-gradient-y), 0) !important;
  will-change: transform, opacity;
}

.ocean-depth-assets {
  opacity: .98 !important;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  contain: layout style paint;
}

.depth-asset {
  opacity: var(--asset-opacity, .18) !important;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* Keep the PNG ambience elegant: filters stay static; only transform/opacity follows scroll. */
.depth-plankton-a,
.depth-plankton-b {
  filter: saturate(1.12) brightness(1.05) drop-shadow(0 0 22px rgba(0,116,213,.12)) !important;
}

.depth-engine,
.depth-anchor,
.depth-rock,
.depth-coral,
.depth-propeller {
  filter: brightness(.64) saturate(1.04) drop-shadow(0 24px 54px rgba(0,0,0,.32)) !important;
}

/* Tiny support for smoother compositing on Chromium/Safari. */
.depth-gradient,
.deep-water-canvas,
.ocean-depth-assets,
.depth-asset {
  transform-style: flat !important;
  -webkit-transform-style: flat !important;
}

@media (max-width: 760px) {
  .deep-water-canvas {
    opacity: calc(var(--deep-canvas-opacity) * .72) !important;
  }

  .depth-gradient {
    opacity: calc(var(--depth-gradient-opacity) * .82) !important;
  }

  .depth-asset {
    opacity: calc(var(--asset-opacity, .18) * .78) !important;
  }
}

/* =========================================================
   V15 Seamless Section Fade Patch
   Locked base: smooth deep-follow parallax.
   Purpose: remove visible hard seams between section overlays
   without changing layout, typography, content, or original UI.
========================================================= */
main {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(180deg,
      rgba(2, 8, 18, 0) 0%,
      rgba(2, 8, 18, .10) 8%,
      rgba(2, 8, 18, .16) 30%,
      rgba(2, 8, 18, .20) 58%,
      rgba(0, 4, 12, .30) 100%);
}

/* Content must stay above the atmospheric fade layer. */
main > section:not(.hero) > .container,
main > section:not(.hero) .container,
.footer .container {
  position: relative;
  z-index: 2;
}

/* Long overlapping atmospheric layer: no more hard overlay boundary between sections. */
main > section:not(.hero) {
  position: relative;
  overflow: visible;
  isolation: isolate;
}

main > section:not(.hero)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -180px;
  bottom: -180px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--secondary-rgb), .115), transparent 42%),
    radial-gradient(circle at 86% 58%, rgba(var(--primary-rgb), .145), transparent 46%),
    linear-gradient(180deg,
      rgba(2, 8, 18, .00) 0%,
      rgba(4, 20, 36, .28) 18%,
      rgba(3, 16, 31, .34) 50%,
      rgba(1, 8, 18, .32) 82%,
      rgba(2, 8, 18, .00) 100%);
  opacity: .72;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(180deg,
    transparent 0%,
    rgba(0,0,0,.18) 7%,
    rgba(0,0,0,.70) 18%,
    #000 32%,
    #000 68%,
    rgba(0,0,0,.70) 82%,
    rgba(0,0,0,.18) 93%,
    transparent 100%);
  mask-image: linear-gradient(180deg,
    transparent 0%,
    rgba(0,0,0,.18) 7%,
    rgba(0,0,0,.70) 18%,
    #000 32%,
    #000 68%,
    rgba(0,0,0,.70) 82%,
    rgba(0,0,0,.18) 93%,
    transparent 100%);
  transform: translateZ(0);
  will-change: auto;
}

/* Soft crossfade curtains at top/bottom hide tiny contrast cuts between overlay fields. */
main > section:not(.hero)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -120px;
  bottom: -120px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(2, 8, 18, .64) 0%,
      rgba(2, 8, 18, .28) 7%,
      transparent 18%,
      transparent 82%,
      rgba(1, 7, 16, .28) 93%,
      rgba(1, 7, 16, .64) 100%);
  opacity: .42;
  transform: translateZ(0);
}

/* Section-specific tone remains subtle, but the edge is blended by the shared masks above. */
#legacy::before {
  background:
    radial-gradient(circle at 14% 22%, rgba(var(--secondary-rgb), .13), transparent 44%),
    radial-gradient(circle at 84% 42%, rgba(var(--primary-rgb), .14), transparent 48%),
    linear-gradient(180deg, transparent 0%, rgba(4,20,36,.30) 24%, rgba(3,16,31,.34) 64%, transparent 100%);
}

#fleet::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(var(--secondary-rgb), .14), transparent 42%),
    radial-gradient(circle at 18% 70%, rgba(var(--primary-rgb), .13), transparent 48%),
    linear-gradient(180deg, transparent 0%, rgba(3,17,32,.30) 22%, rgba(2,12,25,.36) 66%, transparent 100%);
}

#services::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(var(--secondary-rgb), .12), transparent 40%),
    radial-gradient(circle at 92% 72%, rgba(var(--primary-rgb), .16), transparent 48%),
    linear-gradient(180deg, transparent 0%, rgba(2,14,29,.32) 24%, rgba(1,10,22,.38) 70%, transparent 100%);
}

#operations::before,
#coverage::before {
  background:
    radial-gradient(circle at 72% 24%, rgba(var(--secondary-rgb), .135), transparent 45%),
    radial-gradient(circle at 22% 82%, rgba(var(--primary-rgb), .16), transparent 48%),
    linear-gradient(180deg, transparent 0%, rgba(2,15,31,.32) 22%, rgba(1,8,20,.40) 72%, transparent 100%);
}

#quality::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(var(--secondary-rgb), .13), transparent 44%),
    radial-gradient(circle at 84% 84%, rgba(var(--primary-rgb), .18), transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(2,13,27,.34) 24%, rgba(0,6,16,.46) 76%, transparent 100%);
}

/* The ticker row stays premium, but its top/bottom line is softened into the ocean fade. */
.logo-row {
  position: relative;
  border-block-color: rgba(255,255,255,.045) !important;
  box-shadow:
    0 -30px 80px rgba(2, 8, 18, .22),
    0 30px 80px rgba(2, 8, 18, .24) !important;
}

.logo-row::before,
.logo-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 90px;
  pointer-events: none;
  z-index: 0;
}

.logo-row::before {
  bottom: 100%;
  background: linear-gradient(180deg, transparent, rgba(2,8,18,.48));
}

.logo-row::after {
  top: 100%;
  background: linear-gradient(180deg, rgba(2,8,18,.46), transparent);
}

.logo-row .ticker {
  position: relative;
  z-index: 2;
}

/* Footer connection to quality section should feel continuous, not cut. */
.footer {
  position: relative;
  margin-top: -36px;
  padding-top: 108px;
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -140px;
  height: 260px;
  pointer-events: none;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(1, 7, 16, .22) 24%,
    rgba(1, 7, 16, .54) 62%,
    transparent 100%);
  z-index: 0;
}

/* On small screens the fade stays lighter to avoid muddy stacked sections. */
@media (max-width: 760px) {
  main > section:not(.hero)::before {
    top: -120px;
    bottom: -120px;
    opacity: .54;
  }

  main > section:not(.hero)::after {
    top: -80px;
    bottom: -80px;
    opacity: .30;
  }

  .footer {
    margin-top: -24px;
    padding-top: 92px;
  }
}


/* =========================================================
   V16 Ultra-Light Scroll Patch
   Locked base: smooth deep-follow parallax.
   Purpose: make scrolling very light and remove visible overlay lines.
   Method: no section crossfade overlays, no depth ruler line, no canvas repaint,
   background assets follow scroll as one GPU-composited parallax layer.
========================================================= */

/* Remove the visible vertical depth line and reduce fixed UI compositing. */
.ocean-ruler,
.depth-meter {
  display: none !important;
}

/* Disable the extra section overlay masks from V15. They caused edge bands and cost paint. */
main {
  background: transparent !important;
  overflow: visible !important;
}

main > section:not(.hero)::before,
main > section:not(.hero)::after,
.footer::before,
.logo-row::before,
.logo-row::after {
  display: none !important;
  content: none !important;
}

main > section:not(.hero) {
  overflow: hidden;
  isolation: isolate;
}

/* Remove hard separator feeling from ticker row. */
.logo-row {
  border-block-color: transparent !important;
  box-shadow: none !important;
  background: linear-gradient(90deg, rgba(255,255,255,.018), rgba(0,116,213,.035), rgba(255,255,255,.018)) !important;
}

/* Canvas was beautiful but expensive; keep the ocean mood using CSS + PNG parallax only. */
.deep-water-canvas {
  display: none !important;
}

/* Static atmospheric veil: no transform/opacity updates on scroll. */
.depth-gradient {
  opacity: .72 !important;
  transform: translate3d(0,0,0) !important;
  will-change: auto !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  background:
    radial-gradient(circle at 52% -10%, rgba(0,116,213,.115), transparent 38%),
    linear-gradient(180deg,
      rgba(2, 40, 66, .10) 0%,
      rgba(2, 18, 34, .28) 42%,
      rgba(0, 4, 12, .54) 100%) !important;
}

.depth-gradient::before {
  display: none !important;
  content: none !important;
}

/* One cheap parallax layer. The JS moves only this parent layer. */
.ocean-depth-assets {
  opacity: .86 !important;
  transform: translate3d(0,0,0) !important;
  will-change: transform, opacity;
  contain: strict;
  perspective: none !important;
  transform-style: flat !important;
  mix-blend-mode: normal !important;
}

/* Asset images are cached as simple composited sprites: no drop-shadow/filter repaint. */
.depth-asset {
  filter: none !important;
  mix-blend-mode: normal !important;
  animation: none !important;
  transition: none !important;
  will-change: auto !important;
  contain: paint;
  backface-visibility: hidden;
  transform-style: flat !important;
}

.depth-plankton-a { opacity: .18 !important; transform: translate3d(0, -12px, 0) rotateZ(-10deg) scale(.86) !important; }
.depth-plankton-b { opacity: .12 !important; transform: translate3d(0, -8px, 0) rotateZ(16deg) scale(.84) !important; }
.depth-sonar-orb { opacity: .08 !important; transform: translate3d(0, 18px, 0) rotateZ(5deg) scale(.74) !important; }
.depth-engine { opacity: .15 !important; transform: translate3d(0, -18px, 0) rotateZ(-4deg) scale(.74) !important; }
.depth-anchor { opacity: .13 !important; transform: translate3d(0, 18px, 0) rotateZ(-7deg) scale(.74) !important; }
.depth-rock { opacity: .30 !important; transform: translate3d(0, 18px, 0) rotateZ(-3deg) scale(.78) !important; }
.depth-coral { opacity: .34 !important; transform: translate3d(0, 18px, 0) rotateZ(3deg) scale(.78) !important; }
.depth-propeller { opacity: .18 !important; transform: translate3d(0, 12px, 0) rotateZ(18deg) scale(.72) !important; }
.depth-beacon { opacity: .20 !important; transform: translate3d(-50%, 10px, 0) scale(.74) !important; }

/* Progress bar stays compositor-only. */
.page-progress {
  width: 100% !important;
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress, 0)) translateZ(0) !important;
  contain: strict;
  will-change: transform;
}

/* While scrolling: pause decorative animations and remove expensive live blur. */
body.is-scrolling .ticker,
body.is-scrolling .hero::before,
body.is-scrolling .hero::after,
body.is-scrolling .neon-radar,
body.is-scrolling .radar-scan,
body.is-scrolling .radar-blip,
body.is-scrolling .radar-route,
body.is-scrolling .css-operation-card,
body.is-scrolling .route-ship,
body.is-scrolling .signal-bars i,
body.is-scrolling .service-icon *,
body.is-scrolling .minimal-radar *,
body.is-scrolling .shine::after {
  animation-play-state: paused !important;
}

body.is-scrolling .glass,
body.is-scrolling .nav-inner,
body.is-scrolling .hero-badge,
body.is-scrolling .css-operation-card,
body.is-scrolling .clean-stat,
body.is-scrolling .service-card,
body.is-scrolling .ops-widget,
body.is-scrolling .office-card {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

body.is-scrolling .depth-gradient {
  opacity: .66 !important;
}

body.is-scrolling .ocean-depth-assets {
  opacity: .78 !important;
}

@media (max-width: 760px) {
  .depth-gradient { opacity: .58 !important; }
  .ocean-depth-assets { opacity: .62 !important; }
  .depth-plankton-b,
  .depth-sonar-orb,
  .depth-engine,
  .depth-propeller {
    display: none !important;
  }
  .depth-rock { opacity: .24 !important; }
  .depth-coral { opacity: .26 !important; }
  .depth-anchor { opacity: .10 !important; }
}

/* =========================================================
   V17 Ultra-Light Follow-up — Keep Timeline, Remove Section Bands
   User note: timeline line stays; section overlay seams must disappear.
   Scope: only scroll performance + background seam behavior.
========================================================= */

/* Keep the left timeline/ruler visible, but make it cheap. */
.ocean-ruler {
  display: block !important;
  opacity: .72 !important;
  filter: none !important;
  contain: layout paint style;
  will-change: auto !important;
}

.ocean-ruler-track {
  animation: none !important;
  box-shadow: 0 0 14px rgba(0,116,213,.18) !important;
}

.ruler-fill {
  height: 100% !important;
  transform: scaleY(var(--ruler-progress, 0));
  transform-origin: top center;
  will-change: transform;
}

.ruler-probe {
  top: var(--ruler-progress-top, 0%) !important;
  will-change: top;
}

/* Keep depth meter with cheaper glass, not full backdrop repaint. */
.depth-meter {
  display: block !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  background: rgba(2,12,24,.44) !important;
  box-shadow: 0 16px 46px rgba(0,0,0,.24) !important;
  contain: layout paint style;
}

/* Kill every remaining hard inter-section atmospheric overlay edge. */
main,
main > section,
main > section:not(.hero),
.footer {
  background-color: transparent !important;
}

main > section:not(.hero)::before,
main > section:not(.hero)::after,
#legacy::before,
#fleet::before,
#services::before,
#operations::before,
#coverage::before,
#quality::before,
.logo-row::before,
.logo-row::after,
.footer::before {
  display: none !important;
  opacity: 0 !important;
  content: none !important;
  background: none !important;
}

/* A single global, non-section ocean veil prevents visible cuts between sections. */
body::before {
  opacity: .34 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

body::after {
  opacity: .22 !important;
  filter: none !important;
  animation: none !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(0,116,213,.075), transparent 34%),
    radial-gradient(circle at 82% 74%, rgba(0,67,126,.080), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.020), transparent 44%, rgba(0,0,0,.12)) !important;
}

/* No visible row line between hero/ticker/legacy except the intended left timeline. */
.logo-row {
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  background: rgba(255,255,255,.018) !important;
}

/* Make scroll as light as possible: no expensive filters while the page is moving. */
body.is-scrolling .depth-meter,
body.is-scrolling .ocean-ruler {
  opacity: .58 !important;
}

body.is-scrolling .hero::before,
body.is-scrolling .hero::after {
  animation-play-state: paused !important;
}

body.is-scrolling .depth-asset,
body.is-scrolling .ocean-depth-assets,
body.is-scrolling .depth-gradient {
  transition: none !important;
}

/* Avoid Safari/Chrome sub-pixel section boundary hairlines. */
.section,
.logo-row,
.footer {
  transform: translateZ(0);
  backface-visibility: hidden;
}

@media (max-width: 760px) {
  .depth-meter { display: none !important; }
  .ocean-ruler { opacity: .36 !important; }
}

/* =========================================================
   V18 Ultra-Light Background Asset Motion Restore
   Locked base: ultra-light no-section-lines + timeline kept.
   Purpose: bring back subtle rear PNG animation without reintroducing
   section seams or heavy repaint. Motion uses compositor-friendly
   individual transform properties (translate/rotate), not filter repaint.
========================================================= */
.ocean-depth-assets {
  will-change: transform, opacity !important;
  contain: layout style paint !important;
}

.depth-asset {
  will-change: translate, rotate, opacity !important;
  animation-duration: var(--asset-motion-speed, 14s) !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  animation-fill-mode: both !important;
}

.depth-plankton-a {
  --asset-motion-speed: 13.5s;
  animation-name: rbDepthFloatA !important;
}

.depth-plankton-b {
  --asset-motion-speed: 16s;
  animation-name: rbDepthFloatB !important;
}

.depth-sonar-orb {
  --asset-motion-speed: 18s;
  animation-name: rbDepthSonarDrift !important;
}

.depth-engine {
  --asset-motion-speed: 19s;
  animation-name: rbDepthHeavyDriftA !important;
}

.depth-anchor {
  --asset-motion-speed: 17s;
  animation-name: rbDepthAnchorSwing !important;
}

.depth-rock {
  --asset-motion-speed: 22s;
  animation-name: rbDepthGroundDriftA !important;
}

.depth-coral {
  --asset-motion-speed: 24s;
  animation-name: rbDepthGroundDriftB !important;
}

.depth-propeller {
  --asset-motion-speed: 26s;
  animation-name: rbDepthPropellerSlow !important;
  animation-timing-function: linear !important;
}

.depth-beacon {
  --asset-motion-speed: 12s;
  animation-name: rbDepthBeaconPulseMove !important;
}

@keyframes rbDepthFloatA {
  0%, 100% { translate: 0 0; }
  35% { translate: 10px -18px; }
  70% { translate: -7px -8px; }
}

@keyframes rbDepthFloatB {
  0%, 100% { translate: 0 0; }
  45% { translate: -14px -16px; }
  78% { translate: 8px -6px; }
}

@keyframes rbDepthSonarDrift {
  0%, 100% { translate: 0 0; opacity: .07; }
  50% { translate: 9px 13px; opacity: .12; }
}

@keyframes rbDepthHeavyDriftA {
  0%, 100% { translate: 0 0; }
  50% { translate: 8px -9px; }
}

@keyframes rbDepthAnchorSwing {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: -8px 12px; rotate: 3deg; }
}

@keyframes rbDepthGroundDriftA {
  0%, 100% { translate: 0 0; }
  50% { translate: 5px -7px; }
}

@keyframes rbDepthGroundDriftB {
  0%, 100% { translate: 0 0; }
  50% { translate: -6px -8px; }
}

@keyframes rbDepthPropellerSlow {
  0% { translate: 0 0; rotate: 0deg; }
  50% { translate: -5px -6px; rotate: 180deg; }
  100% { translate: 0 0; rotate: 360deg; }
}

@keyframes rbDepthBeaconPulseMove {
  0%, 100% { translate: 0 0; opacity: .16; }
  50% { translate: 0 -11px; opacity: .28; }
}

/* Keep motion alive but lighter on mobile. */
@media (max-width: 760px) {
  .depth-asset {
    animation-duration: calc(var(--asset-motion-speed, 14s) * 1.25) !important;
  }

  .depth-rock,
  .depth-coral,
  .depth-anchor,
  .depth-beacon {
    will-change: translate, opacity !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .depth-asset {
    animation: none !important;
  }
}


/* =========================================================
   RB Latest Minor Revision — Light Service Cards + Premium CSS Icons
   Base locked: ultra-light background assets animated.
   Purpose: prevent service card text overlap and replace heavy SVG icons
   with lightweight CSS outline icons while preserving premium visual taste.
========================================================= */
.service-grid {
  align-items: stretch !important;
}

.service-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: clamp(390px, 30vw, 430px) !important;
  padding: 26px 22px 24px !important;
  overflow: hidden !important;
  contain: layout paint !important;
}

.service-card::before {
  right: 18px !important;
  top: 24px !important;
  font-size: clamp(4.6rem, 5.2vw, 6rem) !important;
  line-height: .8 !important;
  opacity: .78 !important;
  pointer-events: none !important;
}

.service-card h3 {
  margin-top: 0 !important;
  min-height: 2.35em !important;
  display: flex !important;
  align-items: flex-end !important;
  font-size: clamp(1.24rem, 1.42vw, 1.45rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.052em !important;
}

.service-card p {
  margin-top: 15px !important;
  color: rgba(229, 240, 248, .70) !important;
  font-size: clamp(.87rem, .96vw, .94rem) !important;
  line-height: 1.58 !important;
  overflow-wrap: anywhere !important;
}

.service-tag {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin-top: auto !important;
  padding-top: 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  min-height: 46px !important;
  font-size: clamp(.64rem, .72vw, .72rem) !important;
  line-height: 1.12 !important;
  letter-spacing: .18em !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.service-tag::after {
  flex: 0 0 auto !important;
}

.service-line-icon {
  width: 82px !important;
  height: 82px !important;
  flex: 0 0 82px !important;
  margin: 14px 0 clamp(48px, 4.5vw, 66px) !important;
  border: 1.35px solid rgba(74, 183, 255, .72) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 48% 36%, rgba(74,183,255,.18), transparent 56%),
    linear-gradient(145deg, rgba(0,116,213,.12), rgba(0,20,38,.52)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.055),
    inset 0 1px 0 rgba(255,255,255,.11),
    0 0 18px rgba(0,116,213,.18),
    0 14px 34px rgba(0,0,0,.24) !important;
  filter: none !important;
  transform: none !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 2 !important;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease !important;
  will-change: transform !important;
}

.service-line-icon::before,
.service-line-icon::after,
.service-line-icon .line-icon-core,
.service-line-icon .line-icon-core::before,
.service-line-icon .line-icon-core::after {
  content: "" !important;
  position: absolute !important;
  display: block !important;
  box-sizing: border-box !important;
  pointer-events: none !important;
}

.service-line-icon::before {
  inset: 9px !important;
  border-radius: 19px !important;
  border: 1px solid rgba(74,183,255,.32) !important;
  box-shadow: inset 0 0 18px rgba(0,116,213,.10) !important;
}

.service-line-icon::after {
  inset: 17px !important;
  border-radius: 15px !important;
  border: 1px solid rgba(74,183,255,.18) !important;
}

.service-card:hover .service-line-icon {
  transform: translateY(-3px) !important;
  border-color: rgba(120,210,255,.90) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.07),
    inset 0 1px 0 rgba(255,255,255,.14),
    0 0 24px rgba(0,116,213,.24),
    0 18px 38px rgba(0,0,0,.26) !important;
}

.service-line-icon .line-icon-core,
.service-line-icon .line-icon-core::before,
.service-line-icon .line-icon-core::after {
  border-color: rgba(118, 210, 255, .96) !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 0 5px rgba(0,116,213,.45)) !important;
}

/* 01 Transshipment — minimal ship + cargo */
.service-line-transshipment .line-icon-core {
  left: 20px !important;
  top: 40px !important;
  width: 36px !important;
  height: 15px !important;
  border-bottom: 2px solid rgba(118,210,255,.98) !important;
  border-left: 2px solid rgba(118,210,255,.98) !important;
  border-radius: 0 0 8px 8px !important;
  transform: skewX(-12deg) !important;
}
.service-line-transshipment .line-icon-core::before {
  left: 17px !important;
  bottom: 8px !important;
  width: 16px !important;
  height: 13px !important;
  border: 2px solid rgba(118,210,255,.98) !important;
  border-radius: 3px !important;
}
.service-line-transshipment .line-icon-core::after {
  left: -2px !important;
  bottom: -10px !important;
  width: 32px !important;
  height: 2px !important;
  background: rgba(118,210,255,.88) !important;
  box-shadow: 0 7px 0 rgba(118,210,255,.42) !important;
}

/* 02 Spot Charter — clean target */
.service-line-spot .line-icon-core {
  left: 23px !important;
  top: 23px !important;
  width: 36px !important;
  height: 36px !important;
  border: 2px solid rgba(118,210,255,.98) !important;
  border-radius: 50% !important;
}
.service-line-spot .line-icon-core::before {
  left: 50% !important;
  top: -8px !important;
  width: 2px !important;
  height: 52px !important;
  background: rgba(118,210,255,.72) !important;
  transform: translateX(-50%) !important;
}
.service-line-spot .line-icon-core::after {
  left: -8px !important;
  top: 50% !important;
  width: 52px !important;
  height: 2px !important;
  background: rgba(118,210,255,.72) !important;
  transform: translateY(-50%) !important;
}
.service-line-spot::after {
  left: 39px !important;
  top: 30px !important;
  width: 19px !important;
  height: 2px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(118,210,255,.96) !important;
  transform: rotate(-42deg) !important;
  box-shadow: none !important;
}

/* 03 Time Charter — clock */
.service-line-time .line-icon-core {
  left: 23px !important;
  top: 23px !important;
  width: 36px !important;
  height: 36px !important;
  border: 2px solid rgba(118,210,255,.98) !important;
  border-radius: 50% !important;
}
.service-line-time .line-icon-core::before {
  left: 17px !important;
  top: 8px !important;
  width: 2px !important;
  height: 13px !important;
  background: rgba(118,210,255,.98) !important;
  border-radius: 99px !important;
}
.service-line-time .line-icon-core::after {
  left: 18px !important;
  top: 19px !important;
  width: 12px !important;
  height: 2px !important;
  background: rgba(118,210,255,.98) !important;
  border-radius: 99px !important;
  transform: rotate(28deg) !important;
  transform-origin: left center !important;
}
.service-line-time::after {
  left: 26px !important;
  top: 62px !important;
  width: 30px !important;
  height: 8px !important;
  border: 0 !important;
  border-top: 2px solid rgba(118,210,255,.72) !important;
  border-radius: 50% !important;
}

/* 04 Floating Crane — crane outline */
.service-line-crane .line-icon-core {
  left: 25px !important;
  top: 23px !important;
  width: 2px !important;
  height: 38px !important;
  background: rgba(118,210,255,.96) !important;
}
.service-line-crane .line-icon-core::before {
  left: 0 !important;
  top: 0 !important;
  width: 31px !important;
  height: 2px !important;
  background: rgba(118,210,255,.96) !important;
}
.service-line-crane .line-icon-core::after {
  left: 27px !important;
  top: 2px !important;
  width: 2px !important;
  height: 24px !important;
  background: rgba(118,210,255,.84) !important;
}
.service-line-crane::after {
  left: 44px !important;
  top: 47px !important;
  width: 17px !important;
  height: 13px !important;
  border: 2px solid rgba(118,210,255,.96) !important;
  border-radius: 4px !important;
  background: transparent !important;
}

/* 05 Ship Management — operations circle */
.service-line-management .line-icon-core {
  left: 22px !important;
  top: 22px !important;
  width: 38px !important;
  height: 38px !important;
  border: 2px solid rgba(118,210,255,.98) !important;
  border-radius: 50% !important;
}
.service-line-management .line-icon-core::before {
  left: 9px !important;
  top: 18px !important;
  width: 20px !important;
  height: 2px !important;
  background: rgba(118,210,255,.96) !important;
  box-shadow: 0 -9px 0 rgba(118,210,255,.52), 0 9px 0 rgba(118,210,255,.52) !important;
}
.service-line-management .line-icon-core::after {
  left: 16px !important;
  top: -5px !important;
  width: 2px !important;
  height: 48px !important;
  background: rgba(118,210,255,.32) !important;
}
.service-line-management::after {
  left: 55px !important;
  top: 37px !important;
  width: 8px !important;
  height: 8px !important;
  border: 2px solid rgba(118,210,255,.94) !important;
  border-radius: 50% !important;
  background: transparent !important;
}

/* Lighter animation behavior for this section. */
.service-line-icon,
.service-line-icon * {
  animation: none !important;
}

@media (max-width: 1180px) {
  .service-card {
    min-height: 350px !important;
  }
  .service-line-icon {
    margin-bottom: 38px !important;
  }
  .service-card h3 {
    min-height: auto !important;
  }
}

@media (max-width: 760px) {
  .service-card {
    min-height: 320px !important;
    padding: 24px 22px !important;
  }
  .service-line-icon {
    width: 72px !important;
    height: 72px !important;
    flex-basis: 72px !important;
    margin: 4px 0 32px !important;
    border-radius: 22px !important;
    transform: scale(.92) !important;
    transform-origin: left top !important;
  }
  .service-card h3 {
    min-height: auto !important;
  }
  .service-tag {
    padding-top: 18px !important;
  }
}

/* =========================================================
   RB Latest Minor Revision — Depth Ruler Safe Area Fix
   Base locked: ultra-light + animated background assets + light service cards.
   Purpose: keep the timeline/depth ruler visible without top/bottom clipping.
   Scope: ruler spacing only; no layout, section, scroll, or card changes.
========================================================= */
.ocean-ruler {
  left: clamp(18px, 2.2vw, 34px) !important;
  top: 50% !important;
  height: min(72vh, 720px) !important;
  width: 148px !important;
  transform: translateY(-50%) translateZ(0) !important;
  overflow: visible !important;
  padding-block: 0 !important;
}

.ocean-ruler-track {
  top: clamp(34px, 5vh, 52px) !important;
  bottom: clamp(34px, 5vh, 52px) !important;
  left: 42px !important;
  overflow: visible !important;
}

.ocean-ruler-label {
  left: -26px !important;
}

.ocean-ruler-track i {
  left: -10px !important;
  width: 24px !important;
}

.ocean-ruler-track i::after {
  left: 28px !important;
  transform: translateY(-50%) translateZ(0) !important;
  line-height: 1 !important;
}

.ruler-probe {
  left: -11px !important;
  transform: translateY(-50%) translateZ(0) !important;
}

.ruler-probe b {
  left: 32px !important;
  transform: translateY(-50%) translateZ(0) !important;
  line-height: 1 !important;
}

/* Keep first and last labels readable inside the safe area. */
.ocean-ruler-track i:nth-of-type(1)::after {
  transform: translateY(-8%) translateZ(0) !important;
}

.ocean-ruler-track i:nth-of-type(5)::after {
  transform: translateY(-92%) translateZ(0) !important;
}

@media (max-height: 760px) {
  .ocean-ruler {
    height: min(76vh, 640px) !important;
  }

  .ocean-ruler-track {
    top: 38px !important;
    bottom: 38px !important;
  }
}

@media (max-width: 760px) {
  .ocean-ruler {
    left: 10px !important;
    width: 118px !important;
    opacity: .42 !important;
  }

  .ocean-ruler-track {
    left: 30px !important;
    top: 34px !important;
    bottom: 34px !important;
  }

  .ruler-probe b,
  .ocean-ruler-track i::after {
    font-size: .54rem !important;
  }
}


/* =========================================================
   RB Mobile Stable Patch — V6
   Scope: CSS only, appended to the original locked stylesheet.
   Purpose:
   - Restore desktop scroll smoothness by avoiding the heavy V5 global patch stack.
   - Keep mobile depth timeline visible and proportional.
   - Keep mobile container clear from the timeline lane.
   - Center mobile navbar.
   - Keep hamburger menu as compact dropdown.
   - Prevent Legacy/mobile cards from overlapping.
========================================================= */

@media (max-width: 900px) {
  :root {
    --rb-mobile-gutter: 12px;
    --rb-mobile-ruler-safe: 52px;
  }

  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100% !important;
    height: auto !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-x: none !important;
    overscroll-behavior-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
  }

  body {
    position: relative !important;
  }

  *,
  *::before,
  *::after {
    min-width: 0;
  }

  img,
  svg,
  canvas,
  video {
    max-width: 100% !important;
  }

  main,
  footer,
  .hero,
  .section,
  .logo-row {
    max-width: 100% !important;
    overflow-x: clip;
  }

  .container {
    width: calc(100vw - var(--rb-mobile-ruler-safe) - (var(--rb-mobile-gutter) * 2)) !important;
    max-width: calc(100vw - var(--rb-mobile-ruler-safe) - (var(--rb-mobile-gutter) * 2)) !important;
    margin-left: calc(var(--rb-mobile-ruler-safe) + var(--rb-mobile-gutter)) !important;
    margin-right: var(--rb-mobile-gutter) !important;
  }

  .nav,
  .nav-cockpit {
    inset: 12px 0 auto 0 !important;
    width: 100% !important;
    z-index: 9600 !important;
    pointer-events: none !important;
  }

  .nav-inner,
  .cockpit-nav-inner {
    width: min(calc(100vw - 30px), 720px) !important;
    max-width: min(calc(100vw - 30px), 720px) !important;
    min-height: 70px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 10px 11px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    border-radius: 999px !important;
    overflow: visible !important;
    pointer-events: auto !important;
    transform: translateZ(0) !important;
  }

  .nav-hud-center {
    display: none !important;
  }

  .brand,
  .cockpit-brand {
    min-width: 0 !important;
    flex: 1 1 auto !important;
    gap: 11px !important;
  }

  .brand-logo,
  .brand-mark {
    flex: 0 0 50px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 17px !important;
  }

  .brand-text,
  .cockpit-brand .brand-text {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .brand-text strong,
  .cockpit-brand .brand-text strong {
    display: block !important;
    max-width: clamp(170px, 58vw, 315px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 1.02rem !important;
    letter-spacing: -.035em !important;
  }

  .brand-text small,
  .cockpit-brand .brand-text small {
    display: none !important;
  }

  .menu-toggle {
    display: grid !important;
    place-items: center !important;
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 999px !important;
    font-size: 1.25rem !important;
    line-height: 1 !important;
  }

  .nav-inner.is-open,
  .cockpit-nav-inner.is-open {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    row-gap: 10px !important;
    column-gap: 12px !important;
    width: min(calc(100vw - 30px), 720px) !important;
    max-width: min(calc(100vw - 30px), 720px) !important;
    min-height: 0 !important;
    max-height: calc(100svh - 28px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    border-radius: 28px !important;
    padding: 10px !important;
  }

  .nav-inner.is-open .brand,
  .cockpit-nav-inner.is-open .brand {
    grid-column: 1 / 2 !important;
  }

  .nav-inner.is-open .menu-toggle,
  .cockpit-nav-inner.is-open .menu-toggle {
    grid-column: 2 / 3 !important;
    justify-self: end !important;
  }

  .nav-inner.is-open > .nav-links,
  .nav-inner.is-open > .cockpit-links,
  .cockpit-nav-inner.is-open > .nav-links,
  .cockpit-nav-inner.is-open > .cockpit-links {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 10px !important;
    margin: 0 !important;
    border-radius: 22px !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    background: rgba(2, 13, 26, .64) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: none !important;
  }

  .nav-inner.is-open > .nav-links a,
  .nav-inner.is-open > .cockpit-links a,
  .cockpit-nav-inner.is-open > .nav-links a,
  .cockpit-nav-inner.is-open > .cockpit-links a {
    width: 100% !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 14px !important;
    border-radius: 16px !important;
    font-size: .93rem !important;
    font-weight: 850 !important;
    text-align: center !important;
  }

  .nav-inner.is-open > .nav-cta,
  .nav-inner.is-open > .cockpit-actions,
  .cockpit-nav-inner.is-open > .nav-cta,
  .cockpit-nav-inner.is-open > .cockpit-actions {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .nav-inner.is-open > .nav-cta .pill,
  .nav-inner.is-open > .cockpit-actions .pill,
  .cockpit-nav-inner.is-open > .nav-cta .pill,
  .cockpit-nav-inner.is-open > .cockpit-actions .pill {
    width: 100% !important;
    min-height: 44px !important;
    border-radius: 16px !important;
    font-size: .90rem !important;
    padding: 0 10px !important;
    white-space: nowrap !important;
  }

  .hero {
    padding-top: 116px !important;
    min-height: auto !important;
    overflow: hidden !important;
  }

  .section {
    padding: 74px 0 !important;
  }

  .section.compact {
    padding: 58px 0 !important;
  }

  .section-header,
  .hero-grid,
  .hero-grid-clean,
  .intro-grid,
  .fleet-shell,
  .fleet-panel,
  .ops-grid,
  .coverage-shell,
  .quality-grid,
  .quality-board,
  .quality-head,
  .quality-lower,
  .commitment-grid,
  .footer-grid,
  .footer-grid-cockpit,
  .cards-3,
  .news-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .service-grid,
  .legacy-pillar-grid,
  .legacy-number-grid,
  .quality-metrics,
  .quality-pillars {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .hero-copy {
    padding-top: 6px !important;
  }

  .hero h1,
  .hero-grid-clean h1 {
    font-size: clamp(2.74rem, 14.8vw, 5.45rem) !important;
    line-height: .94 !important;
    letter-spacing: -.068em !important;
  }

  .hero h1 .line {
    overflow: visible !important;
    padding-bottom: .075em !important;
  }

  .hero-lead,
  .section-lead,
  .service-card p,
  .ops-copy p,
  .coverage-title p,
  #quality p,
  .office-card p,
  .footer p {
    font-size: .94rem !important;
    line-height: 1.66 !important;
  }

  .section-title,
  .coverage-title h2,
  #quality .quality-head h2,
  .legacy-headline,
  .ops-copy h2,
  .cta h2 {
    font-size: clamp(2.12rem, 9.8vw, 4.05rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -.058em !important;
  }

  .hero-visual-clean {
    min-height: auto !important;
  }

  .hero-css-panel,
  .hero-clean-panel {
    width: 100% !important;
    min-height: 470px !important;
    padding: 16px !important;
    border-radius: 26px !important;
    transform: none !important;
  }

  .hero-clean-header {
    gap: 10px !important;
  }

  .hero-clean-header span {
    font-size: .82rem !important;
  }

  .hero-clean-header strong {
    font-size: .56rem !important;
  }

  .hero-clean-header em {
    padding: 7px 9px !important;
    font-size: .56rem !important;
  }

  .css-radar-scene {
    height: 270px !important;
    margin-top: 12px !important;
    border-radius: 22px !important;
  }

  .neon-radar {
    width: 238px !important;
    height: 238px !important;
  }

  .radar-data-strip,
  .radar-side-readout,
  .radar-micro-label,
  .radar-blip b,
  .css-operation-card {
    display: none !important;
  }

  .hero-clean-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 12px !important;
  }

  .clean-stat {
    min-height: 78px !important;
    padding: 13px 12px 17px !important;
    border-radius: 17px !important;
  }

  .clean-stat strong,
  .clean-stat:nth-child(3) strong {
    font-size: 1.58rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .clean-stat small {
    font-size: .52rem !important;
    line-height: 1.18 !important;
    letter-spacing: .11em !important;
  }

  .intro-card,
  .timeline-card,
  .legacy-copy,
  .legacy-visual,
  .legacy-journey,
  .legacy-pillars,
  .legacy-numbers,
  .fleet-menu,
  .fleet-display,
  .fleet-big,
  .ops-copy,
  .ops-dashboard,
  .coverage-map,
  .office-card,
  #quality .quality-iso-card,
  #quality .quality-commit-card,
  .quality-news,
  .pillar-card,
  .service-card,
  .cta,
  .footer-console {
    padding: 20px !important;
    border-radius: 24px !important;
  }

  .service-card {
    min-height: auto !important;
    padding-bottom: 74px !important;
  }

  .service-card::before {
    font-size: 4.2rem !important;
    top: 10px !important;
    right: 15px !important;
  }

  .service-icon {
    width: 72px !important;
    height: 72px !important;
    margin-bottom: 30px !important;
  }

  .service-card h3,
  .office-card h3,
  .news-card h3,
  .quality-news h3 {
    font-size: clamp(1.25rem, 5.4vw, 1.8rem) !important;
    line-height: 1.12 !important;
  }

  .fleet-display,
  .ops-dashboard,
  .coverage-map,
  .iso-card,
  #quality .quality-iso-card {
    min-height: auto !important;
  }

  .fleet-panel {
    min-height: auto !important;
  }

  .ship-visual,
  .route-board {
    height: 220px !important;
  }

  .ops-board {
    grid-template-columns: 1fr !important;
  }

  .ops-widget.large,
  .ops-widget.media-wide {
    grid-column: auto !important;
    min-height: 210px !important;
  }

  .coverage-svg,
  .coverage-stage,
  .coverage-stage-visual {
    max-width: 100% !important;
  }

  .office-line,
  .commit-item,
  .ops-list div {
    align-items: flex-start !important;
  }

  .contact-actions,
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .pill,
  .copy-btn {
    width: 100% !important;
  }

  .footer-bottom,
  .cockpit-footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .footer-radar-rail {
    overflow: hidden !important;
  }

  /* Keep the depth timeline visible but give content a safe lane. */
  .depth-meter {
    display: none !important;
  }

  .ocean-ruler {
    display: block !important;
    left: 5px !important;
    top: 52% !important;
    width: 46px !important;
    height: min(62vh, 520px) !important;
    padding: 0 !important;
    opacity: .48 !important;
    z-index: 9280 !important;
    pointer-events: none !important;
    transform: translateY(-50%) translateZ(0) !important;
    filter: none !important;
    contain: layout paint style !important;
  }

  .ocean-ruler-label {
    left: -30px !important;
    font-size: .46rem !important;
    letter-spacing: .18em !important;
    opacity: .70 !important;
  }

  .ocean-ruler-track {
    left: 25px !important;
    top: 28px !important;
    bottom: 28px !important;
    width: 1px !important;
    animation: none !important;
    box-shadow: 0 0 12px rgba(0,116,213,.24) !important;
  }

  .ruler-fill {
    width: 2px !important;
    left: -1px !important;
  }

  .ruler-probe {
    left: -7px !important;
    width: 15px !important;
    height: 15px !important;
    box-shadow: 0 0 0 6px rgba(0,116,213,.10), 0 0 18px rgba(0,116,213,.72) !important;
  }

  .ruler-probe b {
    left: 17px !important;
    padding: 3px 5px !important;
    font-size: .48rem !important;
    line-height: 1 !important;
    opacity: .74 !important;
  }

  .ocean-ruler-track i {
    left: -6px !important;
    width: 14px !important;
  }

  .ocean-ruler-track i::after {
    left: 17px !important;
    font-size: .46rem !important;
    line-height: 1 !important;
    opacity: .56 !important;
  }

  .ocean-ruler-track i:nth-of-type(1)::after {
    transform: translateY(-8%) translateZ(0) !important;
  }

  .ocean-ruler-track i:nth-of-type(5)::after {
    transform: translateY(-92%) translateZ(0) !important;
  }

  /* Legacy cockpit: true vertical stack, no overlapping grid items. */
  #legacy .legacy-cockpit,
  .legacy-cockpit {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    padding: 14px !important;
  }

  #legacy .legacy-cockpit > *,
  .legacy-cockpit > * {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    align-self: stretch !important;
    position: relative !important;
    transform: none !important;
    margin: 0 !important;
  }

  #legacy .legacy-visual,
  .legacy-visual {
    min-height: clamp(340px, 72vw, 455px) !important;
    height: auto !important;
    overflow: hidden !important;
    isolation: isolate !important;
  }

  #legacy .legacy-journey,
  .legacy-journey {
    clear: both !important;
    overflow: hidden !important;
    z-index: 3 !important;
  }

  .timeline::before {
    left: 10px !important;
  }

  .milestone {
    grid-template-columns: 44px 1fr !important;
    gap: 14px !important;
  }
}

@media (max-width: 520px) {
  :root {
    --rb-mobile-gutter: 9px;
    --rb-mobile-ruler-safe: 42px;
  }

  .nav-inner,
  .cockpit-nav-inner,
  .nav-inner.is-open,
  .cockpit-nav-inner.is-open {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
  }

  .nav-inner,
  .cockpit-nav-inner {
    min-height: 66px !important;
    padding: 8px 9px !important;
  }

  .brand-logo,
  .brand-mark {
    width: 46px !important;
    height: 46px !important;
    flex-basis: 46px !important;
  }

  .menu-toggle {
    width: 44px !important;
    height: 44px !important;
    flex-basis: 44px !important;
  }

  .brand-text strong,
  .cockpit-brand .brand-text strong {
    max-width: clamp(148px, 56vw, 232px) !important;
    font-size: .96rem !important;
  }

  .nav-inner.is-open,
  .cockpit-nav-inner.is-open {
    border-radius: 24px !important;
    padding: 9px !important;
    gap: 8px !important;
  }

  .nav-inner.is-open > .nav-links,
  .nav-inner.is-open > .cockpit-links,
  .cockpit-nav-inner.is-open > .nav-links,
  .cockpit-nav-inner.is-open > .cockpit-links {
    padding: 8px !important;
    gap: 7px !important;
    border-radius: 20px !important;
  }

  .nav-inner.is-open > .nav-links a,
  .nav-inner.is-open > .cockpit-links a,
  .cockpit-nav-inner.is-open > .nav-links a,
  .cockpit-nav-inner.is-open > .cockpit-links a,
  .nav-inner.is-open > .nav-cta .pill,
  .nav-inner.is-open > .cockpit-actions .pill,
  .cockpit-nav-inner.is-open > .nav-cta .pill,
  .cockpit-nav-inner.is-open > .cockpit-actions .pill {
    min-height: 42px !important;
    font-size: .90rem !important;
  }

  .nav-inner.is-open > .nav-cta,
  .nav-inner.is-open > .cockpit-actions,
  .cockpit-nav-inner.is-open > .nav-cta,
  .cockpit-nav-inner.is-open > .cockpit-actions {
    grid-template-columns: 1fr !important;
  }

  .hero {
    padding-top: 104px !important;
  }

  .hero h1,
  .hero-grid-clean h1 {
    font-size: clamp(2.42rem, 13.4vw, 4.05rem) !important;
  }

  .hero-lead,
  .section-lead,
  .service-card p,
  .ops-copy p,
  .coverage-title p,
  #quality p {
    font-size: .89rem !important;
    line-height: 1.62 !important;
  }

  .hero-clean-header em {
    display: none !important;
  }

  .css-radar-scene {
    height: 238px !important;
  }

  .section-title,
  .coverage-title h2,
  #quality .quality-head h2,
  .legacy-headline,
  .ops-copy h2,
  .cta h2 {
    font-size: clamp(1.88rem, 9.4vw, 2.95rem) !important;
  }

  .intro-card,
  .timeline-card,
  .legacy-copy,
  .legacy-visual,
  .legacy-journey,
  .legacy-pillars,
  .legacy-numbers,
  .fleet-menu,
  .fleet-display,
  .fleet-big,
  .ops-copy,
  .ops-dashboard,
  .coverage-map,
  .office-card,
  #quality .quality-iso-card,
  #quality .quality-commit-card,
  .quality-news,
  .pillar-card,
  .service-card,
  .cta,
  .footer-console {
    padding: 17px !important;
    border-radius: 20px !important;
  }

  #legacy .legacy-cockpit,
  .legacy-cockpit {
    gap: 16px !important;
    padding: 12px !important;
  }

  #legacy .legacy-visual,
  .legacy-visual {
    min-height: clamp(320px, 80vw, 410px) !important;
  }

  .ocean-ruler {
    width: 38px !important;
    left: 3px !important;
    opacity: .46 !important;
  }

  .ocean-ruler-track i::after {
    display: none !important;
  }

  .ruler-probe b {
    left: 16px !important;
    font-size: .42rem !important;
    padding: 3px 4px !important;
  }
}

@media (max-width: 360px) {
  :root {
    --rb-mobile-ruler-safe: 34px;
    --rb-mobile-gutter: 8px;
  }

  .nav-inner,
  .cockpit-nav-inner,
  .nav-inner.is-open,
  .cockpit-nav-inner.is-open {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
  }

  .brand-text strong,
  .cockpit-brand .brand-text strong {
    max-width: 140px !important;
    font-size: .88rem !important;
  }

  .brand-logo,
  .brand-mark {
    width: 42px !important;
    height: 42px !important;
    flex-basis: 42px !important;
  }

  .menu-toggle {
    width: 42px !important;
    height: 42px !important;
    flex-basis: 42px !important;
  }

  .ocean-ruler {
    opacity: .40 !important;
    transform: translateY(-50%) scale(.92) translateZ(0) !important;
    transform-origin: left center !important;
  }

  .ruler-probe b {
    display: none !important;
  }

  .hero h1,
  .hero-grid-clean h1 {
    font-size: clamp(2.18rem, 12.8vw, 3.55rem) !important;
  }
}

/* Desktop safety: do not add any V5 global scroll-pause overrides here.
   Desktop remains on the original locked styling for smoother Mac scrolling. */

/* =========================================================
   RB V9 Balanced Smooth + Motion Restore
   Scope: CSS-only, appended after locked base + V6 mobile layout patch.
   Goals:
   - Restore premium hero/card/background motion removed by the heavy V7/V8 patches.
   - Keep custom radar pointer alive in a lighter compositor-friendly style.
   - Keep desktop scroll smoother by reducing blur cost, not by killing animation.
   - Preserve mobile fixes: centered navbar, compact menu, depth timeline lane, no card overlap.
========================================================= */

/* Native scroll must remain normal. */
html,
body {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior-y: auto !important;
}

/* Desktop performance: reduce expensive glass blur, but do not remove animations. */
@media (min-width: 901px) {
  :root {
    --perf-blur: 10px !important;
  }

  .glass,
  .nav-inner,
  .hero-badge,
  .hero-css-panel,
  .css-operation-card,
  .clean-stat,
  .service-card,
  .ops-widget,
  .ops-dashboard,
  .office-card,
  .coverage-map,
  .fleet-display,
  .fleet-menu,
  .legacy-copy,
  .legacy-visual,
  .legacy-journey,
  .legacy-pillars,
  .legacy-numbers,
  .quality-iso-card,
  .quality-commit-card,
  .quality-news,
  .pillar-card,
  .footer-console {
    -webkit-backdrop-filter: blur(10px) saturate(118%) !important;
    backdrop-filter: blur(10px) saturate(118%) !important;
  }

  .hero-css-panel,
  .css-radar-scene,
  .neon-radar,
  .radar-scene-grid,
  .radar-scanlines,
  .css-operation-card,
  .clean-stat,
  .service-card,
  .fleet-display,
  .coverage-map,
  .ops-dashboard,
  .legacy-cockpit,
  .quality-board {
    backface-visibility: hidden !important;
    transform: translateZ(0);
    will-change: auto !important;
  }

  /* Keep the atmosphere, but keep it cheap. */
  .deep-water-canvas {
    display: none !important;
  }

  .depth-gradient {
    filter: none !important;
    mix-blend-mode: normal !important;
    will-change: auto !important;
  }

  .ocean-depth-assets {
    mix-blend-mode: normal !important;
    perspective: none !important;
    transform-style: flat !important;
    contain: layout paint style !important;
  }

  .depth-asset {
    filter: none !important;
    mix-blend-mode: normal !important;
    backface-visibility: hidden !important;
    transform-style: flat !important;
  }
}

/* Restore the hero/radar motion explicitly in case older heavy patches are still cached. */
.hero::before {
  animation: heroOceanDrift 24s ease-in-out infinite alternate !important;
}

.hero::after {
  animation: heroGridGlow 9s ease-in-out infinite alternate !important;
}

.ticker {
  animation: ticker 26s linear infinite !important;
}

.css-radar-scene::before {
  animation: radarGridDrift 14s linear infinite !important;
}

.radar-scene-grid {
  animation: radarGridDrift 14s linear infinite !important;
}

.radar-scanlines {
  animation: radarScanlineMove 7s linear infinite !important;
}

.neon-radar {
  animation: radarFloat 5.5s ease-in-out infinite !important;
}

.radar-scan {
  animation: cssRadarSweep 5.4s linear infinite !important;
}

.radar-blip {
  animation: blipPulse 1.9s ease-in-out infinite !important;
}

.blip-b { animation-delay: .45s !important; }
.blip-c { animation-delay: .9s !important; }
.blip-d { animation-delay: 1.15s !important; }
.blip-e { animation-delay: .7s !important; }
.blip-f { animation-delay: 1.35s !important; }

.route-b,
.route-c,
.route-d {
  animation: routeFlash 2.6s ease-in-out infinite !important;
}

.css-operation-card {
  animation: cardFloat 5s ease-in-out infinite !important;
}

.css-operation-card.card-b {
  animation-delay: .7s !important;
}

.route-ship {
  animation: shipMove 5.8s ease-in-out infinite !important;
}

.signal-bars i {
  animation: bars 1.8s ease-in-out infinite !important;
}

.signal-bars i:nth-child(2) { animation-delay: .12s !important; }
.signal-bars i:nth-child(3) { animation-delay: .24s !important; }
.signal-bars i:nth-child(4) { animation-delay: .36s !important; }
.signal-bars i:nth-child(5) { animation-delay: .48s !important; }

/* Restore lightweight ocean asset motion from the locked V18 behavior. */
.depth-asset {
  display: block !important;
  will-change: translate, rotate, opacity !important;
  animation-duration: var(--asset-motion-speed, 14s) !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  animation-fill-mode: both !important;
}

.depth-plankton-a {
  --asset-motion-speed: 13.5s;
  animation-name: rbDepthFloatA !important;
}

.depth-plankton-b {
  --asset-motion-speed: 16s;
  animation-name: rbDepthFloatB !important;
}

.depth-sonar-orb {
  --asset-motion-speed: 18s;
  animation-name: rbDepthSonarDrift !important;
}

.depth-engine {
  --asset-motion-speed: 19s;
  animation-name: rbDepthHeavyDriftA !important;
}

.depth-anchor {
  --asset-motion-speed: 17s;
  animation-name: rbDepthAnchorSwing !important;
}

.depth-rock {
  --asset-motion-speed: 22s;
  animation-name: rbDepthGroundDriftA !important;
}

.depth-coral {
  --asset-motion-speed: 24s;
  animation-name: rbDepthGroundDriftB !important;
}

.depth-propeller {
  --asset-motion-speed: 30s;
  animation-name: rbDepthPropellerSlow !important;
  animation-timing-function: linear !important;
}

.depth-beacon {
  --asset-motion-speed: 12s;
  animation-name: rbDepthBeaconPulseMove !important;
}

/* Keep animation during normal view, but still let the existing body.is-scrolling pause rule help when the user is actively scrolling. */
body:not(.is-scrolling) .neon-radar,
body:not(.is-scrolling) .radar-scene-grid,
body:not(.is-scrolling) .radar-scanlines,
body:not(.is-scrolling) .radar-scan,
body:not(.is-scrolling) .radar-blip,
body:not(.is-scrolling) .radar-route,
body:not(.is-scrolling) .css-operation-card,
body:not(.is-scrolling) .route-ship,
body:not(.is-scrolling) .signal-bars i,
body:not(.is-scrolling) .ticker,
body:not(.is-scrolling) .depth-asset {
  animation-play-state: running !important;
}

/* Lightweight custom pointer: restored as animated radar, without the old huge glow repaint. */
@media (hover: hover) and (pointer: fine) {
  html,
  body,
  a,
  button,
  .pill,
  .fleet-tab,
  .copy-btn,
  input,
  textarea,
  select,
  [role="button"] {
    cursor: none !important;
  }

  .cursor-glow,
  .cursor-glow::before,
  .cursor-glow::after {
    display: block !important;
  }

  .cursor-glow {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 21px !important;
    height: 21px !important;
    z-index: 100000 !important;
    pointer-events: none !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    transform: translate3d(var(--cursor-x, -140px), var(--cursor-y, -140px), 0) translate(-50%, -50%) !important;
    rotate: 0deg;
    transition: opacity .10s linear, scale .10s ease !important;
    animation: rbCursorRadarSpin 1.65s linear infinite !important;
    background:
      conic-gradient(from 18deg, rgba(0,116,213,.96) 0 42deg, transparent 44deg 174deg, rgba(0,67,126,.74) 176deg 218deg, transparent 220deg 360deg),
      radial-gradient(circle at center, rgba(245,255,255,.98) 0 1.4px, rgba(0,116,213,.62) 2px 3.6px, rgba(0,116,213,.10) 4px 8px, transparent 9px) !important;
    border: 1px solid rgba(194,252,255,.54) !important;
    box-shadow: 0 0 6px rgba(255,255,255,.20), 0 0 13px rgba(0,116,213,.42) !important;
    filter: none !important;
    mix-blend-mode: screen !important;
    contain: layout paint style !important;
    will-change: transform, opacity, rotate !important;
    backface-visibility: hidden !important;
  }

  .cursor-glow.is-visible {
    opacity: .76 !important;
  }

  .cursor-glow.is-clicking {
    opacity: .96 !important;
    scale: .84;
  }

  .cursor-glow::before {
    content: "" !important;
    position: absolute !important;
    inset: -4px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(215,255,255,.30) !important;
    background: none !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }

  .cursor-glow::after {
    content: "" !important;
    position: absolute !important;
    inset: 6px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(0,116,213,.30) !important;
    background: none !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }
}

@keyframes rbCursorRadarSpin {
  to { rotate: 360deg; }
}

/* Mobile: keep motion lighter, but do not kill hero/radar animation completely. */
@media (max-width: 760px) {
  .hero::before,
  .hero::after,
  .ticker,
  .neon-radar,
  .radar-scene-grid,
  .radar-scanlines,
  .radar-scan,
  .radar-blip,
  .css-operation-card {
    animation-play-state: running !important;
  }

  .depth-plankton-b,
  .depth-sonar-orb,
  .depth-engine,
  .depth-propeller,
  .depth-beacon {
    display: none !important;
  }

  .depth-rock,
  .depth-coral,
  .depth-anchor {
    display: block !important;
  }

  .cursor-glow,
  .cursor-glow::before,
  .cursor-glow::after {
    display: none !important;
  }
}

/* =========================================================
   RB V10 Hero Radar Geometry + Stable Custom Cursor
   Scope: CSS-only patch on top of locked V9.
   Goals:
   - Keep V9 animation/motion restored.
   - Fix hero radar card layout by restoring absolute transform geometry
     that was accidentally flattened by performance overrides.
   - Keep custom cursor visible, but prevent the whole cursor from rotating
     around its screen position. Only the inner radar ring spins.
========================================================= */

/* Hero radar card: restore original 3D/absolute geometry on desktop. */
@media (min-width: 901px) {
  .hero-css-panel {
    transform: rotateY(-5.5deg) rotateX(4deg) translateZ(0);
    transform-style: preserve-3d !important;
  }

  .css-radar-scene {
    position: relative !important;
    overflow: hidden !important;
    transform: none !important;
  }

  .radar-scene-grid {
    transform: perspective(860px) rotateX(58deg) translateY(22px) scale(1.10) !important;
    transform-origin: 50% 54% !important;
  }

  .neon-radar {
    left: 50% !important;
    top: 56% !important;
    width: 338px !important;
    height: 338px !important;
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-14deg) !important;
    transform-origin: center center !important;
    transform-style: preserve-3d !important;
  }

  .radar-data-strip {
    top: 30px !important;
    left: 42px !important;
    right: 42px !important;
    z-index: 14 !important;
  }

  .readout-left {
    left: 30px !important;
    top: 100px !important;
    z-index: 11 !important;
  }

  .readout-right {
    right: 30px !important;
    bottom: 56px !important;
    z-index: 11 !important;
  }

  .label-n { top: 91px !important; }
  .label-e { right: 108px !important; top: 52% !important; }
  .label-s { bottom: 66px !important; }
  .label-w { left: 108px !important; top: 52% !important; }

  .css-operation-card {
    transform: none;
    z-index: 12 !important;
  }

  .css-operation-card.card-a {
    right: 34px !important;
    top: 138px !important;
  }

  .css-operation-card.card-b {
    left: 34px !important;
    bottom: 68px !important;
  }

  .hero-clean-stats {
    position: relative !important;
    z-index: 8 !important;
  }
}

/* Tablet: keep hero radar proportional without desktop tilt crowding. */
@media (min-width: 681px) and (max-width: 1180px) {
  .hero-css-panel {
    transform: none !important;
  }

  .neon-radar {
    left: 50% !important;
    top: 55% !important;
    width: 318px !important;
    height: 318px !important;
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-14deg) !important;
  }

  .css-operation-card.card-a {
    right: 28px !important;
    top: 130px !important;
  }

  .css-operation-card.card-b {
    left: 28px !important;
    bottom: 62px !important;
  }
}

/* Mobile inherits the compact locked layout but keeps the radar centered. */
@media (max-width: 680px) {
  .neon-radar {
    left: 50% !important;
    top: 54% !important;
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-14deg) !important;
    transform-origin: center center !important;
  }
}

/* Stable custom cursor: the cursor position is controlled only by JS variables.
   The main cursor no longer rotates/moves by itself; only the pseudo ring spins. */
@media (hover: hover) and (pointer: fine) {
  .cursor-glow {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 22px !important;
    height: 22px !important;
    z-index: 100000 !important;
    pointer-events: none !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    transform: translate3d(var(--cursor-x, -140px), var(--cursor-y, -140px), 0) translate(-50%, -50%) !important;
    rotate: none !important;
    scale: 1;
    animation: none !important;
    transition: opacity .10s linear, scale .10s ease !important;
    background:
      radial-gradient(circle at center, rgba(245,255,255,1) 0 1.5px, rgba(0,116,213,.70) 2.2px 4px, rgba(0,116,213,.12) 4.8px 8px, transparent 9px) !important;
    border: 1px solid rgba(194,252,255,.42) !important;
    box-shadow: 0 0 7px rgba(255,255,255,.18), 0 0 15px rgba(0,116,213,.42) !important;
    filter: none !important;
    mix-blend-mode: screen !important;
    contain: layout paint style !important;
    will-change: transform, opacity !important;
    backface-visibility: hidden !important;
  }

  .cursor-glow.is-visible {
    opacity: .82 !important;
  }

  .cursor-glow.is-clicking {
    opacity: .96 !important;
    scale: .86;
  }

  .cursor-glow::before {
    content: "" !important;
    position: absolute !important;
    inset: -5px !important;
    display: block !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    background:
      conic-gradient(from 12deg, rgba(0,116,213,.98) 0 42deg, transparent 44deg 170deg, rgba(0,67,126,.78) 172deg 218deg, transparent 220deg 360deg) !important;
    border: 1px solid rgba(215,255,255,.30) !important;
    box-shadow: 0 0 10px rgba(0,116,213,.22) !important;
    transform-origin: 50% 50% !important;
    animation: rbCursorInnerRadarSpin 1.55s linear infinite !important;
  }

  .cursor-glow::after {
    content: "" !important;
    position: absolute !important;
    inset: 6px !important;
    display: block !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    background: none !important;
    border: 1px solid rgba(0,116,213,.34) !important;
    box-shadow: none !important;
    animation: none !important;
  }
}

@keyframes rbCursorInnerRadarSpin {
  to { transform: rotate(360deg); }
}


/* =========================================================
   RB V13 Hero Ambient 3D Motion — No Mouse Tilt
   Scope: CSS-only patch on top of locked V12/V10 geometry.
   Intent:
   - Replace heavy mouse-driven hero tilt with lightweight GPU animation.
   - Keep hero radar layout stable and premium.
   - Keep custom cursor stable.
   - Avoid JS tilt repaint on the hero panel by disabling pointer hit-test only
     on the decorative hero card. Service cards still keep their hover motion.
========================================================= */
@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
  .hero-css-panel.tilt {
    pointer-events: none !important;
    transform-style: preserve-3d !important;
    transform-origin: 50% 50% !important;
    will-change: transform !important;
    contain: paint style !important;
    animation: rbHeroAmbient3D 10.5s cubic-bezier(.45, 0, .25, 1) infinite !important;
    transition: border-color .24s ease, box-shadow .24s ease, background .24s ease !important;
  }

  .hero-css-panel.tilt .hero-clean-header,
  .hero-css-panel.tilt .css-radar-scene,
  .hero-css-panel.tilt .hero-clean-stats {
    transform-style: preserve-3d !important;
    backface-visibility: hidden !important;
  }

  .hero-css-panel.tilt .hero-clean-header {
    transform: translateZ(42px);
  }

  .hero-css-panel.tilt .css-radar-scene {
    transform: translateZ(30px) !important;
  }

  .hero-css-panel.tilt .hero-clean-stats {
    transform: translateZ(46px) !important;
  }

  .hero-css-panel.tilt .radar-scene-grid,
  .hero-css-panel.tilt .neon-radar,
  .hero-css-panel.tilt .css-operation-card,
  .hero-css-panel.tilt .radar-side-readout,
  .hero-css-panel.tilt .radar-data-strip {
    backface-visibility: hidden !important;
  }

  /* Extra premium movement without triggering mousemove repaint. */
  .hero-css-panel.tilt .css-radar-scene::after {
    animation: rbHeroSceneLightSweep 7.5s ease-in-out infinite !important;
  }
}

@keyframes rbHeroAmbient3D {
  0%, 100% {
    transform: perspective(1200px) rotateY(-5.5deg) rotateX(4deg) translate3d(0, 0, 0) scale(1);
  }
  28% {
    transform: perspective(1200px) rotateY(-4.1deg) rotateX(5.2deg) translate3d(0, -6px, 0) scale(1.004);
  }
  58% {
    transform: perspective(1200px) rotateY(-6.6deg) rotateX(3.2deg) translate3d(0, 4px, 0) scale(1.002);
  }
  82% {
    transform: perspective(1200px) rotateY(-4.8deg) rotateX(4.7deg) translate3d(0, -3px, 0) scale(1.003);
  }
}

@keyframes rbHeroSceneLightSweep {
  0%, 100% {
    opacity: .60;
    transform: translate3d(-8px, 0, 0);
  }
  50% {
    opacity: .88;
    transform: translate3d(10px, -4px, 0);
  }
}

/* Tablet: avoid 3D crowding; keep current clean static layout. */
@media (min-width: 681px) and (max-width: 1180px) and (hover: hover) and (pointer: fine) {
  .hero-css-panel.tilt {
    pointer-events: none !important;
    transform: none !important;
    animation: none !important;
    will-change: auto !important;
  }
}

/* Mobile: no tilt animation; layout remains the locked proportional mobile version. */
@media (max-width: 680px) {
  .hero-css-panel.tilt {
    pointer-events: auto !important;
    animation: none !important;
    will-change: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-css-panel.tilt,
  .hero-css-panel.tilt .css-radar-scene::after {
    animation: none !important;
  }
}
/* =========================================================
   RB V14 Hero Ocean Motion — faster, mostly upright, light 3D
   Scope: override V13 hero ambient only. No HTML/JS changes.
   Intent:
   - Keep the hero card dominantly upright/straight.
   - Add livelier ocean-like buoy motion.
   - Use transform-only GPU animation; no mousemove tilt.
========================================================= */
@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
  .hero-css-panel.tilt {
    pointer-events: none !important;
    transform-origin: 50% 52% !important;
    will-change: transform !important;
    animation: rbHeroOceanBuoyV14 4.85s ease-in-out infinite !important;
  }

  .hero-css-panel.tilt:hover {
    animation-duration: 4.15s !important;
  }

  .hero-css-panel.tilt .css-radar-scene::after {
    animation: rbHeroSceneLightSweepV14 4.4s ease-in-out infinite !important;
  }
}

@keyframes rbHeroOceanBuoyV14 {
  0%, 100% {
    transform: perspective(1200px) rotateY(-1.2deg) rotateX(1.1deg) translate3d(0, 0, 0) scale(1);
  }
  15% {
    transform: perspective(1200px) rotateY(-1.9deg) rotateX(1.55deg) translate3d(0, -2px, 0) scale(1.001);
  }
  30% {
    transform: perspective(1200px) rotateY(-0.5deg) rotateX(.85deg) translate3d(0, 2px, 0) scale(1);
  }
  44% {
    transform: perspective(1200px) rotateY(-4.8deg) rotateX(3.1deg) translate3d(0, -4px, 0) scale(1.0025);
  }
  56% {
    transform: perspective(1200px) rotateY(-1.1deg) rotateX(1.05deg) translate3d(0, 1px, 0) scale(1.0005);
  }
  70% {
    transform: perspective(1200px) rotateY(.35deg) rotateX(.65deg) translate3d(0, 3px, 0) scale(1);
  }
  86% {
    transform: perspective(1200px) rotateY(-2.25deg) rotateX(1.55deg) translate3d(0, -2px, 0) scale(1.001);
  }
}

@keyframes rbHeroSceneLightSweepV14 {
  0%, 100% {
    opacity: .58;
    transform: translate3d(-5px, 0, 0);
  }
  45% {
    opacity: .82;
    transform: translate3d(8px, -3px, 0);
  }
  72% {
    opacity: .68;
    transform: translate3d(3px, 2px, 0);
  }
}

/* Tablet/mobile stay stable and proportional. */
@media (max-width: 900px) {
  .hero-css-panel.tilt {
    animation: none !important;
    will-change: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-css-panel.tilt,
  .hero-css-panel.tilt .css-radar-scene::after {
    animation: none !important;
  }
}
