:root {
  --navy-deep: #0b656f;
  --navy: #02061afc;
  --navy-soft: #123249;
  --steel: #000102;
  --steel-light: #a9b8c2;
  --amber: #00abbe;
  --amber-dim: #c9822a;
  --oxide: #8b4a3a;
  --off-white: #eef0ea;
  --paper: #f5f5f1;
  --ink: #0b0e12;
  --line: rgba(238, 240, 234, 0.12);
  --line-dark: rgba(92, 115, 146, 0.1);
  --maxw: 1200px;
  --ease: cubic-bezier(.16, .8, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
  letter-spacing: -0.01em;
  color: #eab105;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

a {
  color: inherit;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.btn-primary {
  background: var(--amber);
  color: var(--navy-deep);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #f0ad4c;
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-dark {
  background: var(--navy-deep);
  color: var(--off-white);
}

.btn-dark:hover {
  background: var(--ink);
}

.btn-outline-dark {
  background: transparent;
  color: #03091f;
  border-color: #f4f1f1;
}

.btn-outline-dark:hover {
  border-color: #cd0909;
  color: #03091f;
}

/* Header / Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(4, 28, 56, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--off-white);
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 34px;
  height: 54px;
  border: 1.5px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 0.68rem;
  font-family: 'IBM Plex Mono', monospace;
  flex-shrink: 0;
}

.brand-sub {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  color: var(--steel-light);
  text-transform: uppercase;
  margin-top: 2px;
}

nav.links {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav.links a {
  color: #f5f2f2;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}

nav.links a:hover,
nav.links a.active {
  color: #e1ba0e;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width:1080px) {
  nav.links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #040f3b;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 26px;
    gap: 16px;
    border-bottom: 2px solid var(--line);
    display: none;
    max-height: 70vh;
    overflow-y: auto;
  }

  nav.links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta .btn-primary {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

/* Page hero (interior pages) */
.page-hero {
  padding: 158px 0 70px;
  background: radial-gradient(1100px 500px at 85% -10%, rgba(69, 54, 32, 0.1), transparent 60%), linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("asset/images/vesselpage.png");
  background-size: cover;
  mask-image: linear-gradient(180deg, black, transparent 80%);
  pointer-events: none;
}

.breadcrumb {
  position: relative;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--steel-light);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--amber);
}

.page-hero h1 {
  position: relative;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 900;
  max-width: 16ch;
}

.page-hero p.lede {
  position: relative;
  margin-top: 20px;
  max-width: 52ch;
  color: var(--steel-light);
  font-size: 1.03rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.90rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #dfeaec;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #dbe6e8;
  border-radius: 50%;
  }

/* Manifest ticker */
.manifest {
  position: relative;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
}

.manifest-track {
  display: flex;
  width: max-content;
  animation: scrollmanifest 42s linear infinite;
}

@keyframes scrollmanifest {
  from {
    transform: translateX(0);
  }

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

.manifest-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 34px;
  border-right: 1px solid var(--line);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.76rem;
  color: var(--steel-light);
  white-space: nowrap;
}

.manifest-item strong {
  color: var(--off-white);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.manifest-item .tag {
  color: var(--amber);
}

/* Sections */
section {
  padding: 96px 0;
}

.section-head {
  max-width: 840px;
  margin-bottom: 52px;
}

.section-head .eyebrow-dark {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxide);
  margin-bottom: 14px;
  display: block;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 900;
}

.section-head p {
  margin-top: 16px;
  color: #4a5762;
  font-size: 1.02rem;
}

.section-dark {
  background: var(--navy-deep);
  color: var(--off-white);
}

.section-dark .section-head p {
  color: var(--steel-light);
}

.section-dark .eyebrow-dark {
  color: var(--amber);
}

.section-tight {
  padding: 70px 0;
}

/* Values / card grids */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.card {
  background: var(--paper);
  padding: 32px 26px;
}

.card-num {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--oxide);
  font-size: 0.78rem;
  margin-bottom: 18px;
  display: block;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  color: #4a5762;
  font-size: 0.92rem;
  margin: 0;
}

@media (max-width:920px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.dark-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.dark-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.dark-card {
  background: var(--navy-deep);
  padding: 30px 26px 26px;
}

.dark-card h3 {
  color: var(--off-white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.dark-card p {
  color: var(--steel-light);
  font-size: 0.93rem;
  margin: 0;
}

@media (max-width:860px) {
  .dark-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .dark-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width:560px) {
  .dark-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Stats band */
.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 44px 30px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: none;
}

.stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--amber);
  display: block;
  line-height: 1;
}

.stat .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-top: 12px;
  display: block;
}

@media (max-width:700px) {
  .stats-band {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

/* Feature (image + text) */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-visual {
  aspect-ratio: 16/11;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.feature-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feature p {
  color: #4a5762;
  margin-top: 18px;
}

@media (max-width:860px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Terminal cards */
.terminal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.terminal-card {
  background: var(--navy-deep);
  padding: 30px 26px 26px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .25s;
  text-decoration: none;
}

.terminal-card:hover {
  background: var(--navy);
}

.terminal-top .t-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--off-white);
}

.terminal-top .t-coords {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--steel-light);
  margin-top: 6px;
  display: block;
}

.t-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  color: var(--amber);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
}

@media (max-width:860px) {
  .terminal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Spec table (terminal detail pages) */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.spec-table tr {
  border-bottom: 1px solid var(--line-dark);
}

.spec-table td {
  padding: 16px 4px;
  font-size: 0.95rem;
}

.spec-table td:first-child {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oxide);
  width: 220px;
}

/* News cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  border: 1px solid var(--line-dark);
  padding: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(11, 14, 18, 0.08);
}

.news-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  position: relative;
  overflow: hidden;
}

.news-thumb svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.news-body {
  padding: 22px 22px 26px;
}

.news-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oxide);
  margin-bottom: 10px;
  display: block;
}

.news-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
}

.news-card p {
  color: #4a5762;
  font-size: 0.9rem;
  margin-top: 10px;
}

@media (max-width:920px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Careers */
.role-list {
  border-top: 1px solid var(--line-dark);
}

.role-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line-dark);
  flex-wrap: wrap;
}

.role-row .r-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
}

.role-row .r-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  color: var(--steel; )color:#4a5762;
  letter-spacing: 0.04em;
}

.role-row .r-meta {
  color: #e0e8ee;
}

/* Callout / note box */
.note-box {
  border: 1px dashed var(--line-dark);
  padding: 24px 26px;
  background: #fbfbf9;
}

.note-box p {
  margin: 0;
  color: #4a5762;
  font-size: 0.92rem;
}

.note-box strong {
  color: var(--ink);
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.contact-info-row {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-info-row .k {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oxide);
  width: 90px;
  flex-shrink: 0;
  padding-top: 3px;
}

.contact-info-row .v {
  font-size: 0.98rem;
}

.contact-info-row a {
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
}

form.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

form.quote-form .full {
  grid-column: 1 / -1;
}

form.quote-form label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a5762;
  margin-bottom: 8px;
}

form.quote-form input,
form.quote-form select,
form.quote-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line-dark);
  padding: 10px 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .2s;
}

form.quote-form input:focus,
form.quote-form select:focus,
form.quote-form textarea:focus {
  border-color: var(--oxide);
  outline: none;
}

form.quote-form textarea {
  resize: vertical;
  min-height: 90px;
}

form.quote-form button {
  margin-top: 6px;
}

@media (max-width:860px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  form.quote-form {
    grid-template-columns: 1fr;
  }
}

/* Footer */
footer {
  background: #010b26;
  ;
  color: var(--steel-light);
  padding: 100px 0 38px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--steel-light);
  text-decoration: none;
  font-size: 0.86rem;
  margin-bottom: 10px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* Ticker (investor page, non-fabricated) */
.disclosure {
  border-left: 3px solid var(--oxide);
  padding: 18px 22px;
  background: #fbfbf9;
  margin-top: 20px;
}

.disclosure p {
  margin: 0;
  font-size: 0.88rem;
  color: #4a5762;
}

/* ================= PRELOADER ================= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-scene {
  width: 240px;
  height: 120px;
}

.preloader-scene svg {
  width: 100%;
  height: 100%;
}

.vessel-hull {
  animation: vesselbob 3.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes vesselbob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.wave-line {
  stroke-dasharray: 9 7;
  animation: wavemove 1.4s linear infinite;
}

@keyframes wavemove {
  to {
    stroke-dashoffset: -32;
  }
}

.preloader-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-light);
}

.preloader-bar {
  width: 220px;
  height: 2px;
  background: rgba(238, 240, 234, 0.12);
  position: relative;
  overflow: hidden;
}

.preloader-bar::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  bottom: 0;
  width: 40%;
  background: var(--amber);
  animation: loadbar 1.1s ease-in-out infinite;
}

@keyframes loadbar {
  0% {
    left: -40%;
  }

  100% {
    left: 100%;
  }
}

.preloader-pct {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  color: var(--amber);
}

/* ================= DROPDOWN NAV ================= */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item>a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-caret {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform .2s;
  opacity: 0.7;
}

.nav-item:hover .nav-caret {
  transform: rotate(225deg);
  margin-top: 2px;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--navy-deep);
  border: 1px solid var(--line);
  min-width: 230px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  display: flex;
  flex-direction: column;
  gap: 1px;
  z-index: 50;
}

.nav-item:hover .dropdown-panel,
.nav-item.mobile-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-panel a {
  padding: 10px 12px;
  border-radius: 2px;
  font-size: 0.84rem;
  color: var(--steel-light);
  text-decoration: none;
}

.dropdown-panel a:hover {
  background: rgba(238, 240, 234, 0.06);
  color: #eab105;
}

@media (max-width:1080px) {
  .nav-item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-item > a {
    width: 100%;
    padding: 2px 0;
  }

  .dropdown-panel {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: #040f3b;
    border: none;
    padding: 4px 0 4px 14px;
    width: 100%;
    min-width: 0;
  }

  .nav-item:hover .dropdown-panel,
  .nav-item.mobile-open .dropdown-panel {
    transform: none;
    align-self: stretch;
  }

  .dropdown-panel a {
    color: #fff !important;
  }

  .nav-item.mobile-open .dropdown-panel {
    display: none;
  }

  .nav-item:hover .dropdown-panel {
    display: none;
  }

  .nav-item.mobile-open .dropdown-panel {
    display: flex;
  }

  .nav-caret-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    width: 100%;
    text-align: left;
  }
}

/* ================= HERO MEDIA (video/vessel) ================= */
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.hero-svg-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-z {
  position: relative;
  z-index: 2;
}

.hero-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(238, 240, 234, 0.06);
  border: 1px solid var(--line);
  color: var(--off-white);
  padding: 11px 20px 11px 11px;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.86rem;
  transition: background .2s;
}

.hero-play-btn:hover {
  background: rgba(238, 240, 234, 0.13);
}

.play-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.play-icon svg {
  width: 10px;
  height: 10px;
  fill: var(--navy-deep);
  margin-left: 1px;
}

.sail-vessel {
  animation: sailacross 26s linear infinite;
}

@keyframes sailacross {
  0% {
    transform: translateX(-140px);
  }

  100% {
    transform: translateX(1400px);
  }
}

.hero-water-line {
  stroke-dasharray: 14 10;
  animation: wavemove 2.4s linear infinite;
}

/* ================= VIDEO MODAL ================= */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 25, 0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.video-modal.open {
  display: flex;
}

.video-modal-inner {
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
  border: 1px solid var(--line);
}

.video-modal-inner video {
  width: 100%;
  height: 100%;
}

.video-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal-note {
  position: absolute;
  bottom: -38px;
  left: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--steel-light);
}

/* Counters */
[data-counter] {
  font-variant-numeric: tabular-nums;
}


<style>
  :root{
    --bg:#0B1512;
    --surface:#122019;
    --surface-2:#16241C;
    --line:#233129;
    --text:#ECEAE3;
    --muted:#94A79C;
    --amber:#D9A441;
    --teal:#04062f;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:'Inter',Arial,sans-serif;
    -webkit-font-smoothing:antialiased;
  }
  .mono{font-family:'IBM Plex Mono',monospace;}
  .wrap{max-width:1120px; margin:0 auto; padding:0 28px;}
 
  a{color:inherit;}
 
  /* NAV */
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:22px 28px; border-bottom:1px solid var(--line);
  }
  .brand{font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:20px; letter-spacing:0.5px; text-decoration:none;}
  .brand span{color:var(--amber);}
  .crumb{font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--muted);}
  .crumb a{text-decoration:none; color:var(--muted);}
  .crumb a:hover{color:var(--amber);}
 
  /* HERO */
  .hero{padding:64px 0 0 0; border-bottom:1px solid var(--line);}
  .hero-eyebrow{
    font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:2px;
    color:var(--amber); text-transform:uppercase; margin:0 0 18px 0; display:block;
  }
  .hero h1{
    font-family:'Barlow Condensed',sans-serif; font-weight:700;
    font-size:clamp(48px,9vw,104px); line-height:0.95; letter-spacing:0.5px;
    margin:0 0 18px 0; text-transform:uppercase;
  }
  .hero-coords{
    font-size:15px; color:var(--muted); margin:0 0 36px 0;
  }
  .hero-coords .dot{color:var(--amber); margin:0 10px;}
 
  .stat-strip{
    display:grid; grid-template-columns:repeat(4,1fr);
    border-top:1px solid var(--line);
  }
  .stat{
    padding:26px 4px 30px 0; border-right:1px solid var(--line);
  }
  .stat:last-child{border-right:none;}
  .stat-num{
    font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:40px; color:var(--amber);
    display:block; line-height:1;
  }
  .stat-label{
    font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--muted);
    text-transform:uppercase; letter-spacing:1px; display:block; margin-top:8px;
  }
 
  /* SECTIONS */
  .section-dark{padding:78px 0; border-bottom:1px solid var(--line);}
  .eyebrow-dark{
    font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:2px;
    color:var(--amber); text-transform:uppercase; display:block; margin-bottom:14px;
  }
  .section-head h2{
    font-family:'Barlow Condensed',sans-serif; font-weight:600; font-size:38px;
    line-height:1.15; margin:0 0 8px 0; max-width:620px;
  }
 
  .feature{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
  .feature h2{font-family:'Barlow Condensed',sans-serif; font-weight:600; font-size:34px; line-height:1.18; margin:0 0 16px 0;}
  .feature p{color:#cfd6d1; line-height:1.7; font-size:15.5px; margin:0;}
  .feature-visual{
    aspect-ratio:4/3; border-radius:2px; overflow:hidden;
    background:linear-gradient(160deg,#1B2E24,#0B1512);
    border:1px solid var(--line); position:relative;
  }
  .feature-visual svg{width:100%; height:100%; display:block;}
 
  /* CAPABILITY CARDS */
  .dark-grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-top:36px;}
  .dark-card{background:var(--surface); padding:30px 26px;}
  .dark-card h3{font-family:'Barlow Condensed',sans-serif; font-weight:600; font-size:21px; margin:0 0 10px 0; letter-spacing:0.3px;}
  .dark-card p{color:var(--muted); font-size:14px; line-height:1.6; margin:0;}
  .dark-card .num{font-family:'IBM Plex Mono',monospace; color:var(--amber); font-size:12px; display:block; margin-bottom:14px;}
 
  /* PRODUCTS */
  .product-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-top:36px;}
  .product-tile{background:var(--surface); padding:22px 20px; min-height:104px; display:flex; flex-direction:column; justify-content:space-between;}
  .product-tile .code{font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--teal); letter-spacing:1px;}
  .product-tile .name{font-family:'Barlow Condensed',sans-serif; font-weight:600; font-size:19px; margin-top:10px;}
 
  /* TERMINAL SPECS TABLE */
  .spec-table{width:100%; border-collapse:collapse; margin-top:8px;}
  .spec-table tr{border-bottom:1px solid var(--line);}
  .spec-table tr:first-child{border-top:1px solid var(--line);}
  .spec-table td{padding:16px 4px; font-size:14.5px;}
  .spec-table td:first-child{color:var(--muted); width:45%;}
  .spec-table td:last-child{font-family:'IBM Plex Mono',monospace; text-align:right; color:var(--text);}
 
  /* MANIFEST TICKER — signature element */
  .manifest{
    background:#080F0C; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    overflow:hidden; position:relative; padding:16px 0;
  }
  .manifest::before, .manifest::after{
    content:""; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none;
  }
  .manifest::before{left:0; background:linear-gradient(90deg,#080F0C,transparent);}
  .manifest::after{right:0; background:linear-gradient(270deg,#080F0C,transparent);}
  .manifest-track{
    display:flex; gap:48px; white-space:nowrap; width:max-content;
    font-family:'IBM Plex Mono',monospace; font-size:13px; color:var(--amber);
    animation:scroll 38s linear infinite;
  }
  .manifest-track span.sep{color:var(--line);}
  .manifest-track .status-ok{color:var(--teal);}
  @keyframes scroll{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
  }
  @media (prefers-reduced-motion: reduce){
    .manifest-track{animation:none;}
  }
 
  /* FOOTER */
  footer{padding:40px 0; }
  .footer-row{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;}
  footer .mono{color:var(--muted); font-size:12px;}
 
  @media (max-width:820px){
    .feature{grid-template-columns:1fr;}
    .dark-grid-3{grid-template-columns:1fr;}
    .product-grid{grid-template-columns:repeat(2,1fr);}
    .stat-strip{grid-template-columns:repeat(2,1fr);}
    .stat:nth-child(2){border-right:none;}
  }
 
  a.back-link{
    display:inline-block; margin:28px 0 0 0; font-family:'IBM Plex Mono',monospace;
    font-size:13px; color:var(--muted); text-decoration:none;
  }
  a.back-link:hover{color:var(--amber);}
 
  :focus-visible{outline:2px solid var(--amber); outline-offset:2px;}
</style>