/* ==========================================================================
   JMR LIFTING SOLUTIONS — Premium cinematic design system
   Inspired by SpaceX (dark, editorial, image-forward)
   and Apple (generous whitespace, restrained motion)
   ========================================================================== */

/* --- Design Tokens --- */
:root {
  /* Colors */
  --ink: #0a0a0b;
  --ink-2: #131315;
  --ink-3: #1c1c20;
  --surface: #0f0f11;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --spectral: #ffffff;                        /* Main headings / high emphasis (pure white) */
  --spectral-2: #ededed;                      /* Body / secondary paragraph text */
  --spectral-3: #cccccc;                      /* Card subtitles / labels / captions */
  --spectral-4: rgba(240, 240, 250, 0.45);    /* Faint decorative / tertiary only */
  --accent: #ff6a1a;         /* industrial orange — safety cone */
  --accent-hover: #ff7f3d;
  --accent-glow: rgba(255, 106, 26, 0.35);

  /* Typography */
  --font-display: 'Inter Tight', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-editorial: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Spacing */
  --pad: clamp(24px, 5vw, 96px);
  --section: clamp(96px, 14vw, 200px);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--spectral);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: default;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--accent); color: var(--ink); }

/* --- Scroll progress --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 1000;
  background: rgba(255, 255, 255, 0.05);
}
.scroll-progress__bar {
  height: 100%; background: var(--accent); width: 0%;
  transition: width 0.15s linear;
}

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad);
  background: linear-gradient(to bottom, rgba(10,10,11,0.85) 0%, rgba(10,10,11,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav__logo {
  display: flex; align-items: center;
  color: var(--spectral);
  transition: opacity 0.2s var(--ease-out);
}
.nav__logo:hover { opacity: 0.85; }
.nav__logo svg { display: block; }
.nav__links {
  display: flex; align-items: center; gap: 40px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--spectral-2);
}
.nav__links a { transition: color 0.2s var(--ease-out); position: relative; padding: 4px 0; }
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--spectral); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  padding: 10px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--spectral);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.nav__cta:hover {
  background: var(--spectral);
  color: var(--ink);
  border-color: var(--spectral);
}
.nav__menu-btn { display: none; }
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__logo svg { width: 170px; height: auto; }
  .nav__menu-btn {
    display: flex; flex-direction: column; gap: 5px;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
  }
  .nav__menu-btn span {
    width: 22px; height: 1.5px; background: var(--spectral);
  }
}

/* --- Common: dot + tag label --- */
.dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  margin-right: 12px;
  box-shadow: 0 0 12px var(--accent-glow);
  vertical-align: middle;
}
.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--spectral-3);
  vertical-align: middle;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 0.3s var(--ease-out), background 0.25s, color 0.25s, box-shadow 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 8px 40px -12px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 50px -8px var(--accent-glow);
}
.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--spectral);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--spectral); background: rgba(255,255,255,0.05); }
.btn--wide { padding: 20px 40px; font-size: 14px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  padding: 120px var(--pad) 40px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 22s ease-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero__gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.15) 40%, rgba(10,10,11,0.75) 85%, rgba(10,10,11,1) 100%),
    linear-gradient(90deg, rgba(10,10,11,0.6) 0%, rgba(10,10,11,0) 55%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.08; mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__label {
  margin-top: 32px;
  animation: fadeInUp 1s var(--ease-out) 0.2s both;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px 8px 14px;
  background: rgba(10, 10, 11, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  width: fit-content;
}
.hero__label .tag { color: var(--spectral); font-weight: 500; }
.hero__content { flex: 1; display: flex; flex-direction: column; justify-content: center; max-width: 1100px; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 20px 0 32px;
}
.hero__title .line { display: block; animation: fadeInUp 1s var(--ease-out) 0.4s both; }
.hero__title .line--italic { animation-delay: 0.55s; }
.hero__title em {
  font-family: var(--font-editorial);
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 144;
}
.hero__lead {
  font-size: clamp(16px, 1.4vw, 21px);
  color: var(--spectral-2);
  max-width: 560px;
  line-height: 1.55;
  margin-bottom: 40px;
  animation: fadeInUp 1s var(--ease-out) 0.7s both;
}
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease-out) 0.85s both;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0 20px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
  animation: fadeInUp 1s var(--ease-out) 1s both;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.hero__stat-num span {
  font-family: var(--font-mono);
  font-size: 0.4em;
  color: var(--accent);
  margin-left: 4px;
  vertical-align: baseline;
}
.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--spectral-3);
  line-height: 1.4;
}
.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--spectral-3);
  animation: floatDown 2.4s var(--ease-in-out) infinite;
}
@keyframes floatDown {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(6px); opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero { padding: 100px var(--pad) 32px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
  .hero__scroll { display: none; }
}

/* ==========================================================================
   INTRO
   ========================================================================== */
.intro {
  padding: var(--section) var(--pad);
  border-top: 1px solid var(--line);
}
.intro__inner { max-width: 1400px; margin: 0 auto; }
.intro__meta { margin-bottom: 48px; }
.intro__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 1200px;
  margin-bottom: 80px;
}
.intro__accent {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  font-variation-settings: 'opsz' 144;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.intro__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--spectral-2);
  max-width: 560px;
}
.intro__body--muted { color: var(--spectral-3); }

@media (max-width: 900px) {
  .intro__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   CAPABILITIES
   ========================================================================== */
.capabilities {
  padding: var(--section) var(--pad);
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}
.capabilities__header { max-width: 1400px; margin: 0 auto 80px; }
.capabilities__meta { margin-bottom: 32px; }
.capabilities__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.capabilities__title em {
  font-family: var(--font-editorial);
  font-weight: 300;
  color: var(--accent);
  font-variation-settings: 'opsz' 144;
}
.capabilities__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cap-card {
  background: var(--ink-2);
  padding: 56px 48px;
  min-height: 380px;
  display: flex; flex-direction: column;
  transition: background 0.35s var(--ease-out);
}
.cap-card:hover { background: var(--ink-3); }
.cap-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.15em;
}
.cap-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.cap-card__body {
  color: var(--spectral-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.cap-card__list {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.cap-card__list li {
  padding: 8px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--spectral-3);
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 20px;
}
.cap-card__list li::before {
  content: '';
  position: absolute; left: 0; top: 15px;
  width: 8px; height: 1px;
  background: var(--accent);
}
@media (max-width: 900px) {
  .capabilities__grid { grid-template-columns: 1fr; }
  .cap-card { padding: 40px 28px; min-height: 0; }
}

/* ==========================================================================
   OPERATION (scroll animation section)
   ========================================================================== */
.operation {
  padding: var(--section) var(--pad) 40px;
  border-top: 1px solid var(--line);
}
.operation__intro { max-width: 1400px; margin: 0 auto 60px; }
.operation__meta { margin-bottom: 32px; }
.operation__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.operation__title em {
  font-family: var(--font-editorial);
  font-weight: 300;
  color: var(--accent);
  font-variation-settings: 'opsz' 144;
}
.operation__body {
  color: var(--spectral-2);
  max-width: 640px;
  font-size: 17px;
}
.operation__stage {
  position: relative;
  height: 100vh;
  max-height: 900px;
  background: linear-gradient(180deg, #0f0f11 0%, #1a1a1e 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}
.operation__stage svg#scene {
  width: 100%; height: 100%;
  display: block;
}
.operation__hud {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 16px 24px;
  background: rgba(10,10,11,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
}
.operation__hud-row { display: flex; align-items: center; gap: 12px; }
.operation__hud-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--spectral-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.operation__hud-val {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--spectral);
  min-width: 70px;
}
.operation__hud-bar {
  height: 2px; background: var(--line);
  position: relative;
}
.operation__hud-fill {
  height: 100%; width: 0%;
  background: var(--accent);
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--accent-glow);
}

/* Vessel/crane rendering colors — light for dark background */
#pressure-vessel path,
#pressure-vessel rect,
#pressure-vessel ellipse,
#pressure-vessel line { }
#scene { color: var(--spectral); }

@media (max-width: 900px) {
  .operation__stage { height: 60vh; }
  .operation__hud {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   PROJECTS
   ========================================================================== */
.projects {
  padding: var(--section) var(--pad);
  border-top: 1px solid var(--line);
}
.projects__header { max-width: 1400px; margin: 0 auto 80px; }
.projects__meta { margin-bottom: 32px; }
.projects__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.project {
  max-width: 1400px;
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.project:last-child { margin-bottom: 0; }
.project--reverse { grid-template-columns: 1fr 1.15fr; direction: rtl; }
.project--reverse > * { direction: ltr; }
.project__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
}
.project__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.project:hover .project__img img { transform: scale(1.04); }
.project__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.project__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.project__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--spectral-3);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.project__body {
  color: var(--spectral-2);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}
.project__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.project__stat-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.project__stat-num span {
  font-family: var(--font-mono);
  font-size: 0.42em;
  color: var(--accent);
  margin-left: 3px;
}
.project__stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--spectral-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .project, .project--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
    margin-bottom: 80px;
  }
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process {
  padding: var(--section) var(--pad);
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}
.process__header { max-width: 1400px; margin: 0 auto 80px; }
.process__meta { margin-bottom: 32px; }
.process__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.process__title em {
  font-family: var(--font-editorial);
  font-weight: 300;
  color: var(--accent);
  font-variation-settings: 'opsz' 144;
}
.process__timeline {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process__timeline::before {
  content: '';
  position: absolute;
  top: 30px; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.process__step {
  position: relative;
  padding-top: 60px;
}
.process__step::before {
  content: '';
  position: absolute;
  top: 25px; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
.process__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.process__step-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.process__desc {
  color: var(--spectral-2);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .process__timeline { grid-template-columns: 1fr; gap: 32px; }
  .process__timeline::before { display: none; }
  .process__step { padding-top: 20px; }
}

/* ==========================================================================
   FLEET
   ========================================================================== */
.fleet {
  padding: var(--section) var(--pad);
  border-top: 1px solid var(--line);
}
.fleet__header { max-width: 1400px; margin: 0 auto 80px; }
.fleet__meta { margin-bottom: 32px; }
.fleet__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.fleet__title em {
  font-family: var(--font-editorial);
  font-weight: 300;
  color: var(--accent);
  font-variation-settings: 'opsz' 144;
}
.fleet__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}
.fleet-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.fleet-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-3);
}
.fleet-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.fleet-card:hover .fleet-card__img img { transform: scale(1.06); }
.fleet-card__body { padding: 32px; }
.fleet-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.fleet-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.fleet-card__specs {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.fleet-card__specs > div {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
}
.fleet-card__specs dt { color: var(--spectral-3); letter-spacing: 0.05em; }
.fleet-card__specs dd { color: var(--spectral); }
@media (max-width: 900px) {
  .fleet__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.stats-band {
  padding: var(--section) var(--pad);
  background:
    radial-gradient(1200px 400px at 50% 20%, rgba(255,106,26,0.06), transparent),
    var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-band__inner { max-width: 1400px; margin: 0 auto; }
.stats-band__meta { margin-bottom: 60px; text-align: center; }
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.big-stat { text-align: left; }
.big-stat__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 200;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--spectral);
  display: inline-block;
}
.big-stat__unit {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--accent);
  margin-left: 4px;
  vertical-align: super;
}
.big-stat__label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--spectral-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 16px;
  max-width: 200px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  padding: var(--section) var(--pad);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute; top: 0; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.contact__inner {
  max-width: 900px; margin: 0 auto;
  position: relative;
}
.contact__meta { margin-bottom: 40px; }
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.contact__title em {
  font-family: var(--font-editorial);
  font-weight: 300;
  color: var(--accent);
  font-variation-settings: 'opsz' 144;
}
.contact__body {
  font-size: 17px;
  color: var(--spectral-2);
  max-width: 620px;
  margin-bottom: 60px;
  line-height: 1.65;
}
.contact__form {
  display: flex; flex-direction: column;
  gap: 24px;
  padding: 40px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  margin-bottom: 60px;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--spectral-3);
}
.field input,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--spectral);
  font-family: var(--font-display);
  font-size: 16px;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus { border-color: var(--accent); }
.contact__direct {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.contact__direct-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--spectral-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact__direct-val {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--spectral);
}
@media (max-width: 900px) {
  .contact__row { grid-template-columns: 1fr; }
  .contact__direct { grid-template-columns: 1fr; gap: 24px; }
  .contact__form { padding: 24px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 80px var(--pad) 40px;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}
.footer__inner { max-width: 1400px; margin: 0 auto; }
.footer__brand {
  display: flex; align-items: center;
  color: var(--spectral);
  margin-bottom: 60px;
}
.footer__brand svg { display: block; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer__cols > div { display: flex; flex-direction: column; gap: 12px; }
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--spectral-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer__cols a,
.footer__cols span {
  color: var(--spectral-2);
  font-size: 14px;
  transition: color 0.2s;
}
.footer__cols a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--spectral-3);
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Reveal animations for scroll-in */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   V2 EXPANSION — Multi-page architecture
   ============================================================ */

/* Nav — 5-item */
.nav__links { display: none; gap: 32px; align-items: center; }
@media (min-width: 900px) {
  .nav__links { display: flex; }
}
.nav__link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--spectral-2);
  transition: color 0.2s var(--ease-out);
  position: relative;
  padding: 6px 0;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--spectral); }
.nav__link[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent);
}

/* Page hero — non-home pages */
.page-hero {
  padding: 180px var(--pad) 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero__title {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.02em;
  max-width: 1000px;
  margin-bottom: 24px;
}
.page-hero__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.page-hero__sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--spectral-2);
  max-width: 720px;
  line-height: 1.55;
}

/* Section eyebrow (in-page section labels) */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

/* Standard section shell */
.section {
  padding: var(--section) var(--pad);
  border-bottom: 1px solid var(--line);
}
.section__title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 900px;
}
.section__lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--spectral-2);
  max-width: 720px;
  margin-bottom: 64px;
  line-height: 1.6;
}

/* Service cards (services page) */
.service-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
}
.service-card {
  background: var(--ink);
  padding: 48px clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s var(--ease-out);
}
.service-card:hover { background: var(--ink-2); }
.service-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
}
.service-card__name {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.service-card__promise {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 17px;
  color: var(--spectral-2);
  line-height: 1.5;
}
.service-card__body { color: var(--spectral-2); font-size: 15px; line-height: 1.65; }
.service-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: 8px;
}
.service-card__list { list-style: none; padding: 0; margin: 0; }
.service-card__list li {
  padding: 6px 0 6px 18px;
  position: relative;
  font-size: 14px;
  color: var(--spectral-2);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.service-card__list li:last-child { border-bottom: 0; }
.service-card__list li::before {
  content: '→';
  position: absolute; left: 0; top: 6px;
  color: var(--accent);
}

/* Tools grid */
.tools-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .tools-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .tools-grid { grid-template-columns: 1fr 1fr 1fr; } }

.tool-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  min-height: 240px;
  position: relative;
}
.tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 26, 0.35);
}
.tool-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #6ee39f;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.tool-card__badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #6ee39f;
  box-shadow: 0 0 8px #6ee39f;
}
.tool-card__badge--soon {
  color: var(--spectral-3);
}
.tool-card__badge--soon::before { background: var(--spectral-4); box-shadow: none; }
.tool-card__name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.tool-card__desc {
  color: var(--spectral-2);
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}
.tool-card__open {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s var(--ease-out);
}
.tool-card:hover .tool-card__open { gap: 12px; }

/* Featured tool (LiftPlan AI) */
.tool-featured {
  background: linear-gradient(135deg, #1a1a1e 0%, #0f0f11 100%);
  border: 1px solid rgba(255, 106, 26, 0.25);
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.tool-featured::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(255, 106, 26, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
@media (min-width: 900px) { .tool-featured { grid-template-columns: 1.4fr 1fr; align-items: center; } }
.tool-featured__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tool-featured__name {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.tool-featured__desc {
  color: var(--spectral-2);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.tool-featured__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 32px;
}
.tool-featured__list span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--spectral-2);
  letter-spacing: 1px;
}

/* Industries chip grid */
.industry-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) { .industry-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .industry-grid { grid-template-columns: 1fr 1fr 1fr; } }
.industry-item {
  background: var(--ink);
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 6px;
  transition: background 0.2s var(--ease-out);
}
.industry-item:hover { background: var(--ink-2); }
.industry-item__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--spectral);
}
.industry-item__ctx {
  font-size: 13px;
  color: var(--spectral-2);
  line-height: 1.45;
}

/* Standards block */
.standards {
  background: var(--ink-2);
  border-left: 3px solid var(--accent);
  padding: clamp(32px, 4vw, 48px);
  margin-top: 48px;
}
.standards__statement {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--spectral);
  margin-bottom: 32px;
  max-width: 780px;
}
.standards__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.standards__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px 24px;
  list-style: none;
  padding: 0;
}
.standards__list li {
  font-size: 13px;
  color: var(--spectral-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.standards__list li strong {
  color: var(--spectral);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}

/* Roadmap */
.roadmap { display: flex; flex-direction: column; gap: 32px; }
.roadmap-phase {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 32px clamp(24px, 3vw, 40px);
  position: relative;
}
.roadmap-phase__head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.roadmap-phase__name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.roadmap-phase__status {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(255, 106, 26, 0.4);
  border-radius: 100px;
  background: rgba(255, 106, 26, 0.08);
}
.roadmap-phase__items {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .roadmap-phase__items { grid-template-columns: 1fr 1fr; } }
.roadmap-phase__items li {
  padding: 8px 0 8px 20px;
  font-size: 14px;
  color: var(--spectral-2);
  position: relative;
}
.roadmap-phase__items li::before {
  content: '';
  position: absolute; left: 0; top: 15px;
  width: 8px; height: 1px; background: var(--accent);
}

/* Contact block */
.contact-block {
  display: grid;
  gap: 32px;
  padding-top: 48px;
}
@media (min-width: 900px) { .contact-block { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--spectral-3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  min-width: 100px;
}
.contact-list__value {
  font-size: 17px;
  color: var(--spectral);
  letter-spacing: -0.01em;
}
.contact-list a { color: var(--spectral); }
.contact-list a:hover { color: var(--accent); }

/* AI Lift Plan value props */
.valueprop-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-bottom: 80px;
}
@media (min-width: 900px) { .valueprop-grid { grid-template-columns: repeat(3, 1fr); } }
.valueprop {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 32px;
}
.valueprop__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.valueprop__title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.valueprop__desc {
  font-size: 14px;
  color: var(--spectral-2);
  line-height: 1.55;
}

/* AI Generator inputs / outputs two-column */
.ai-cols {
  display: grid;
  gap: 40px;
  margin-bottom: 64px;
}
@media (min-width: 900px) { .ai-cols { grid-template-columns: 1fr 1fr; gap: 60px; } }
.ai-col__title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.ai-col__list { list-style: none; padding: 0; }
.ai-col__list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--spectral);
}
.ai-col__list li strong {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 1px;
  min-width: 24px;
}
.ai-col__list li span {
  color: var(--spectral-2);
  font-size: 13px;
  margin-left: auto;
}

/* CTA banner */
.cta-banner {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  margin-top: 64px;
}
.cta-banner__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-banner__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.cta-banner__sub {
  color: var(--spectral-2);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}

/* Process timeline */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}
@media (min-width: 700px) { .process { grid-template-columns: repeat(4, 1fr); } }
.process__step {
  background: var(--ink);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
}
.process__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.process__desc {
  font-size: 14px;
  color: var(--spectral-2);
  line-height: 1.55;
}

/* ============================================================
   ENGINEERING HUD — Crane animation upgrade
   ============================================================ */
.hud {
  position: absolute;
  right: clamp(16px, 4vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  width: min(320px, 30vw);
  background: rgba(15, 15, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 106, 26, 0.3);
  padding: 24px;
  z-index: 5;
  font-family: var(--font-mono);
  color: var(--spectral);
  pointer-events: none;
}
@media (max-width: 900px) {
  .operation__stage {
    overflow: visible;
    height: auto;
    padding-bottom: 0;
  }
  .operation__stage svg#scene {
    height: 50vh;
    min-height: 340px;
    max-height: 500px;
  }
  /* HUD becomes a horizontal panel BELOW the cranes.
     Main-crane column on left, Tail/Mobile-crane column on right.
     Title + vessel rotation span both columns at top.
     Foot formula spans both columns at bottom.
  */
  .hud {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: calc(100% - 24px);
    max-width: 100%;
    margin: 12px 12px 20px;
    padding: 14px 14px 16px;
    font-size: 10.5px;
    z-index: 5;
    background: rgba(10, 10, 11, 0.9);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-color: rgba(255, 106, 26, 0.3);
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 2px;
  }
  .hud__title {
    grid-column: 1 / -1;
    font-size: 9.5px;
    margin: 0 0 8px;
    padding-bottom: 8px;
    letter-spacing: 1.4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,106,26,0.25);
  }
  .hud__vessel {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 6px 0;
    border-top: none;
    border-bottom: 1px solid rgba(255,106,26,0.2);
    margin-bottom: 8px;
  }
  .hud__vessel-label {
    font-size: 9px;
    opacity: 0.7;
    line-height: 1.15;
    letter-spacing: 0.8px;
  }
  .hud__vessel-val {
    font-size: 26px;
    color: var(--accent);
    font-weight: 500;
    line-height: 1;
  }
  /* Environment rows (Vessel Wt, Wind, DAF) go before the two bar blocks — span both columns */
  .hud > .hud__row {
    grid-column: 1 / -1;
    padding: 2px 0;
    font-size: 10px;
    display: flex;
    justify-content: space-between;
    opacity: 0.85;
  }
  /* Two .hud__bars blocks — main crane (left column) and tail crane (right column) */
  .hud__bars {
    margin: 8px 0 0;
    padding: 8px 10px;
    background: rgba(255, 106, 26, 0.04);
    border: 1px solid rgba(255, 106, 26, 0.15);
    border-radius: 3px;
  }
  .hud__bars-title {
    display: flex;
    font-size: 9px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent);
    padding-bottom: 6px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255,106,26,0.2);
    justify-content: space-between;
    align-items: baseline;
  }
  .hud__bars-sub {
    font-size: 8px;
    opacity: 0.55;
    letter-spacing: 0.6px;
    text-transform: none;
  }
  .hud__bars .hud__row {
    padding: 2px 0;
    font-size: 10px;
    display: flex;
    justify-content: space-between;
  }
  .hud__bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 6px;
    padding: 3px 0;
    font-size: 10px;
  }
  .hud__bar-label {
    font-size: 9px;
    letter-spacing: 0.5px;
    opacity: 0.75;
  }
  .hud__bar-track {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
  }
  .hud__bar-fill {
    height: 100%;
    background: var(--accent);
    transition: width 0.3s ease-out;
  }
  .hud__bar-val {
    font-size: 10px;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
    min-width: 32px;
    text-align: right;
  }
  .hud__foot {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,106,26,0.15);
    font-size: 8.5px;
    opacity: 0.55;
    line-height: 1.4;
  }
}
.hud__title {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 106, 26, 0.25);
  display: flex; justify-content: space-between; align-items: center;
}
.hud__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: hud-pulse 1.8s ease-in-out infinite;
}
@keyframes hud-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hud__vessel {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
}
.hud__vessel-label { font-size: 10px; color: var(--spectral-3); letter-spacing: 1.5px; text-transform: uppercase; }
.hud__vessel-val {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.hud__vessel-val sup { font-size: 0.5em; margin-left: 2px; }

.hud__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 6px 0;
  font-size: 11px;
}
.hud__row-label { color: var(--spectral-3); letter-spacing: 1px; text-transform: uppercase; font-size: 10px; }
.hud__row-val {
  color: var(--spectral);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
}
.hud__row-val--accent { color: var(--accent); }

.hud__bars {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; flex-direction: column; gap: 10px;
}
/* Only visible on mobile via media query */
.hud__bars-title { display: none; }
.hud__bar {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 10px; align-items: center;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
}
.hud__bar-label { color: var(--spectral-3); }
.hud__bar-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}
.hud__bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--accent), #ff9a5a);
  transition: width 0.15s linear;
}
.hud__bar-val {
  color: var(--spectral);
  font-variant-numeric: tabular-nums;
  min-width: 42px;
  text-align: right;
  font-size: 11px;
}

.hud__foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 9px;
  color: var(--spectral-4);
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-transform: uppercase;
}

/* Scene labels for cranes (identify each) */
.crane-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--spectral-2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  pointer-events: none;
  background: rgba(15, 15, 17, 0.7);
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.crane-label--left { left: 8%; top: 18%; }
.crane-label--right { left: 42%; top: 18%; }
@media (max-width: 900px) {
  .crane-label { font-size: 8px; padding: 3px 6px; }
  .crane-label--left { left: 4%; top: 6%; }
  .crane-label--right { right: 4%; left: auto; top: 6%; }
}

/* ============================================================
   LEEA CERTIFIED APPOINTED PERSON — Compliance Badge
   ============================================================ */
.leea-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 24px;
  align-items: start;
  padding: 28px 32px;
  max-width: 1400px;
  margin: 48px auto 0;
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.06) 0%, rgba(15, 15, 17, 0.9) 60%);
  border: 1px solid rgba(255, 106, 26, 0.35);
  border-left: 3px solid var(--accent);
  position: relative;
  overflow: hidden;
}
.leea-badge::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255, 106, 26, 0.10), transparent 40%);
  pointer-events: none;
}
.leea-badge__seal {
  position: relative;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.15) 0%, transparent 70%);
  border: 2px solid var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.leea-badge__seal svg { width: 40px; height: 40px; color: var(--accent); }
.leea-badge__seal-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 106, 26, 0.45);
  animation: leeaSpin 24s linear infinite;
}
@keyframes leeaSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .leea-badge__seal-ring { animation: none; }
}
.leea-badge__content { position: relative; z-index: 1; }
.leea-badge__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.leea-badge__title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  color: var(--spectral);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.leea-badge__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--spectral-2);
  margin: 0 0 14px;
  max-width: 62ch;
}
.leea-badge__standards {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.leea-badge__standards li {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--spectral-3);
  border-radius: 2px;
}
.leea-badge__standards li.is-accent {
  border-color: rgba(255, 106, 26, 0.4);
  color: var(--accent);
}
@media (max-width: 720px) {
  .leea-badge { grid-template-columns: 1fr; padding: 22px 20px; gap: 14px; }
  .leea-badge__seal { width: 60px; height: 60px; }
  .leea-badge__seal svg { width: 32px; height: 32px; }
  .leea-badge__title { font-size: 18px; }
  .leea-badge__body { font-size: 13.5px; }
}

/* Ensure operation stage can host absolute HUD */
#operationStage {
  position: relative;
}

/* Simplify service-card promise on smaller screens */
@media (max-width: 640px) {
  .page-hero { padding: 140px var(--pad) 60px; }
  .section { padding: 80px var(--pad); }
}


/* ============ FORMSPREE STATES + WHATSAPP FAB ============ */
.contact__status[data-fs-success] {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 106, 26, 0.35);
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, rgba(255, 106, 26, 0.08), transparent);
  color: var(--spectral);
  border-radius: 4px;
}
.contact__status[data-fs-success].fs-visible,
.contact__status[data-fs-success][data-fs-success-shown="true"] {
  display: flex;
}
.contact__status svg { color: var(--accent); flex-shrink: 0; }
.contact__status strong { display: block; font-family: var(--font-display); font-weight: 500; letter-spacing: 0.01em; color: var(--spectral); }
.contact__status span { display: block; font-size: 14px; color: var(--spectral-2); margin-top: 4px; }

.contact__error[data-fs-error] {
  display: none;
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(220, 80, 80, 0.4);
  background: rgba(220, 80, 80, 0.08);
  color: #ff9d9d;
  font-size: 14px;
  border-radius: 4px;
}
.contact__error[data-fs-error]:not(:empty) { display: block; }

[data-fs-field][aria-invalid="true"] {
  border-color: rgba(220, 80, 80, 0.6) !important;
  background: rgba(220, 80, 80, 0.04);
}
span[data-fs-error]:not(:empty) {
  display: block;
  color: #ff9d9d;
  font-size: 12px;
  margin-top: 6px;
  letter-spacing: 0.03em;
}

button[data-fs-submit-btn][disabled] {
  opacity: 0.55;
  cursor: wait;
  position: relative;
}
button[data-fs-submit-btn][disabled] span::after {
  content: '...';
  display: inline-block;
  animation: fs-pulse 1.2s infinite;
}
@keyframes fs-pulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* Floating WhatsApp CTA */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55); }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2s infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 640px) {
  .wa-fab { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-fab svg { width: 26px; height: 26px; }
}

/* ============ UPLOADCARE WIDGET (dark theme override) ============ */
.field--upload { margin-top: 8px; }
.field__hint {
  display: inline;
  font-size: 11px;
  color: var(--spectral-3);
  font-family: var(--font-mono);
  text-transform: none;
  letter-spacing: 0.02em;
  margin-left: 6px;
  font-weight: 400;
}

/* Uploadcare button styling */
.uploadcare--widget__button,
.uploadcare--widget__button_type_open {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px dashed rgba(255, 255, 255, 0.2) !important;
  color: var(--spectral-2) !important;
  padding: 14px 22px !important;
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-radius: 4px !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
}
.uploadcare--widget__button:hover,
.uploadcare--widget__button_type_open:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: rgba(255, 106, 26, 0.06) !important;
}
.uploadcare--widget__text { color: var(--spectral-3) !important; font-family: var(--font-mono) !important; font-size: 11px !important; }
.uploadcare--widget__button_type_remove {
  background: transparent !important;
  color: #ff9d9d !important;
  border-color: rgba(220, 80, 80, 0.4) !important;
}

/* Dialog dark theme */
.uploadcare--dialog { background: rgba(0,0,0,0.85) !important; }
.uploadcare--panel { background: #17151f !important; color: var(--spectral) !important; border-radius: 6px !important; }
.uploadcare--menu { background: #1a1820 !important; border-right: 1px solid rgba(255,255,255,0.05) !important; }
.uploadcare--menu__item { color: var(--spectral-2) !important; }
.uploadcare--menu__item_current { background: rgba(255, 106, 26, 0.12) !important; color: var(--accent) !important; }
.uploadcare--tab__header { color: var(--spectral) !important; }
.uploadcare--button_primary { background: var(--accent) !important; color: #ffffff !important; }
.uploadcare--button { border-radius: 4px !important; font-family: var(--font-mono) !important; font-size: 12px !important; }
.uploadcare--dragging-area { border-color: rgba(255,106,26,0.4) !important; }

/* Uploaded files list */
.field__uploaded {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.uploaded-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 2px solid var(--accent);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.uploaded-item svg { color: var(--accent); flex-shrink: 0; }
.uploaded-name { flex: 1; color: var(--spectral); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uploaded-size { color: var(--spectral-3); font-size: 11px; }
.uploaded-check { color: #6dd158; font-weight: bold; font-size: 14px; margin-left: 4px; }

@media (max-width: 640px) {
  .field__hint { display: block; margin-left: 0; margin-top: 4px; }
  .uploadcare--widget__button { padding: 12px 16px !important; font-size: 11px !important; }
  .uploaded-item { font-size: 11px; padding: 8px 12px; }
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0a;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.35s var(--ease-out, cubic-bezier(0.4,0,0.2,1)),
              transform 0.4s var(--ease-out, cubic-bezier(0.4,0,0.2,1)),
              visibility 0s linear 0.4s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0s;
}
.mobile-menu__inner {
  min-height: 100%;
  padding: 88px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 560px;
  margin: 0 auto;
}
.mobile-menu__close {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #f5f4ef;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, background 0.25s;
}
.mobile-menu__close:hover, .mobile-menu__close:active {
  border-color: #ff6a1a;
  background: rgba(255,106,26,0.08);
}
.mobile-menu__links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__links li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu__links a {
  display: block;
  padding: 20px 4px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #f5f4ef;
  text-decoration: none;
  transition: color 0.2s, transform 0.25s;
}
.mobile-menu__links a:hover, .mobile-menu__links a:active {
  color: #ff6a1a;
  transform: translateX(4px);
}
.mobile-menu__links a[aria-current="page"] {
  color: #ff6a1a;
}
.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 28px;
  margin-top: 8px;
  background: #ff6a1a;
  color: #0a0a0a;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.mobile-menu__cta:hover, .mobile-menu__cta:active {
  background: #ff8134;
  transform: translateY(-1px);
}
.mobile-menu__contact {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu__contact a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #b8b6b0;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu__contact a:hover, .mobile-menu__contact a:active {
  color: #ff6a1a;
}
@media (min-width: 900px) {
  .mobile-menu { display: none; }
}

/* ============================================================
   NETWORK / HOW-WE-WORK SECTION (Company page)
   ============================================================ */
.network-section .network-copy {
  max-width: 780px;
  margin: 32px 0 56px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.network-section .network-copy p {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245,244,239,0.82);
  margin: 0;
}
.network-section .network-copy strong {
  color: #f5f4ef;
  font-weight: 600;
}
.network-model {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.network-card {
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, transform 0.35s, background 0.3s;
}
.network-card:hover {
  border-color: rgba(255,106,26,0.4);
  background: rgba(255,106,26,0.03);
  transform: translateY(-3px);
}
.network-card__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: #ff6a1a;
  margin-bottom: 20px;
}
.network-card__title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #f5f4ef;
  margin: 0 0 12px;
}
.network-card p {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(245,244,239,0.7);
  margin: 0;
}
@media (max-width: 900px) {
  .network-model { grid-template-columns: 1fr; gap: 16px; }
  .network-section .network-copy p { font-size: 16px; }
}

/* ============================================================
   STATUS BADGES + BETA CALLOUT (AI Lift Plan page)
   ============================================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  margin-left: 12px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  vertical-align: middle;
}
.status-badge--beta {
  background: rgba(255,106,26,0.15);
  color: #ff8134;
  border: 1px solid rgba(255,106,26,0.35);
}
.beta-callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 720px;
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid rgba(255,106,26,0.25);
  border-left: 3px solid #ff6a1a;
  border-radius: 10px;
  background: rgba(255,106,26,0.04);
}
.beta-callout__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6a1a;
  flex-shrink: 0;
  margin-top: 8px;
  box-shadow: 0 0 0 4px rgba(255,106,26,0.15);
  animation: pulse-orange 2s ease-in-out infinite;
}
.beta-callout > div:last-child {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(245,244,239,0.85);
}
.beta-callout strong {
  color: #ff8134;
  font-weight: 600;
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,106,26,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(255,106,26,0.05); }
}
