/* ============================================================
   MANTA INVESTMENTS — MAIN
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--abyss);
  /* Very subtle vertical depth across the document: abyss → a breath of trench → abyss */
  background-image: linear-gradient(180deg, var(--abyss) 0%, #071527 45%, #061224 75%, var(--abyss) 100%);
  color: var(--foam);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Scroll-driven water column: JS sets --depth 0→1, we tint the ground */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--ocean);
  opacity: calc(var(--depth, 0) * 0.06);
  transition: opacity 1.2s var(--ease);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
:where(h1, h2, h3, p, ul, figure) { margin: 0; }
ul { list-style: none; padding: 0; }

.tabular { font-variant-numeric: tabular-nums; }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
/* First section under the nav: same distance as a standard section gap */
main > .section:first-child { padding-top: clamp(4rem, 5vw, 4.5rem); }

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--foam);
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--gold);
  margin: 0;
}
.eyebrow--mist { color: var(--mist); }

/* Gold hairline that draws in under an eyebrow */
.rule {
  height: 1px;
  width: 100%;
  max-width: 3.5rem;
  margin-top: 1.1rem;
  background: linear-gradient(90deg, var(--gold-hairline), rgba(201,164,92,0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-reveal) var(--ease);
}
.is-visible .rule { transform: scaleX(1); }

.lead { color: var(--mist); max-width: 46ch; }
.tertiary { color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform var(--dur-hover) var(--ease),
              background-color var(--dur-hover) var(--ease),
              border-color var(--dur-hover) var(--ease),
              color var(--dur-hover) var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(0) scale(0.98); }

.btn--gold {
  background: var(--gold);
  color: #100B02;
  box-shadow: 0 10px 30px -14px rgba(201,164,92,0.5);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn--ghost {
  border-color: var(--hairline);
  color: var(--foam);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--gold-hairline); transform: translateY(-1px); }

.btn .lucide { width: 17px; height: 17px; stroke-width: 1.5; }

/* Text link with gold underline growing from left */
.link-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--foam);
  padding-bottom: 2px;
}
.link-gold::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-hover) var(--ease);
}
.link-gold:hover::after { transform: scaleX(1); }
.link-gold .lucide { width: 15px; height: 15px; stroke-width: 1.5; color: var(--gold); }

/* ---------- Focus ---------- */
:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-150%);
  top: 0.75rem;
  background: var(--midnight);
  border: 1px solid var(--gold-hairline);
  color: var(--foam);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  z-index: 200;
  transition: transform 200ms var(--ease);
}
.skip:focus { transform: translateX(-50%) translateY(0); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color var(--dur-hover) var(--ease),
              border-color var(--dur-hover) var(--ease);
}
.nav.is-stuck {
  background: rgba(4, 13, 24, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--hairline);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 34px; height: auto; }
.brand__mark path { transition: fill var(--dur-hover) var(--ease); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wordmark);
  color: var(--foam);
  padding-left: 0.02em;
}
.brand__sub {
  font-size: 0.45rem;
  font-weight: 500;
  letter-spacing: var(--tracking-sub);
  color: var(--slate);
  margin-top: 0.42em;
  padding-left: 0.06em;
}

.nav__links { display: flex; align-items: center; gap: clamp(1.25rem, 2.6vw, 2.4rem); }
.nav__link {
  position: relative;
  font-size: 0.9rem;
  color: var(--mist);
  transition: color var(--dur-hover) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  height: 1px; width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-hover) var(--ease);
}
.nav__link:hover { color: var(--foam); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--foam); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__menu a[aria-current="page"] { color: var(--foam); }

.nav__cta { margin-left: 0.4rem; }
.nav__toggle { display: none; }

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__cta { padding: 0.65rem 1.1rem; font-size: 0.85rem; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(7rem, 16vh, 11rem) var(--section-y);
  overflow: hidden;
}
.hero__field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.9; }
/* faint drifting light, sits behind everything */
.hero__glow {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 760px; max-height: 760px;
  left: 8%; top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,87,134,0.28), rgba(4,13,24,0) 68%);
  will-change: transform;
  animation: drift 34s var(--ease) infinite alternate;
}
.hero__glow--2 {
  left: auto; right: 4%; top: auto; bottom: 6%;
  width: 44vw; height: 44vw; max-width: 560px; max-height: 560px;
  background: radial-gradient(circle, rgba(201,164,92,0.08), rgba(4,13,24,0) 66%);
  animation-duration: 42s;
  animation-direction: alternate-reverse;
}
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(3%, -4%, 0) scale(1.08); }
}

.hero__inner { position: relative; z-index: 2; max-width: 780px; }

/* Global network globe — occupies the hero's right field on wide screens */
.hero__globe {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: clamp(2rem, 6vw, 6rem);
  transform: translateY(-50%);
  width: min(25vw, 460px);
  aspect-ratio: 1;
  display: none;
  pointer-events: none;
}
.hero__globe::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, rgba(27, 87, 134, 0.35), rgba(4, 13, 24, 0) 62%);
}
.hero__globe img { position: relative; width: 100%; height: auto; }
.hero__globe > canvas {
  position: relative;
  display: block;
  pointer-events: auto;
  cursor: grab;
  touch-action: none;
  transition: opacity 600ms var(--ease);
}
/* While the satellite porthole is open, the zoomed vector globe fades away
   so its land fill doesn't show as a pale square behind the disc */
.hero__globe.is-site > canvas { opacity: 0; pointer-events: none; }

/* Interaction hint beneath the disc */
.hero__globe-hint {
  position: absolute;
  left: 50%;
  bottom: -2.4rem;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity var(--dur-reveal) var(--ease);
}
.hero__globe.is-site .hero__globe-hint { opacity: 0; }
.hero__globe > canvas:focus-visible { outline: 1px solid var(--gold); outline-offset: 6px; border-radius: 50%; }
.hero__globe.is-dragging > canvas { cursor: grabbing; }
@media (min-width: 1280px) {
  .hero__globe { display: block; }
}
.hero__globe.reveal { transform: translateY(calc(-50% + 10px)); }
.hero__globe.reveal.is-visible { transform: translateY(-50%); }
.hero__eyebrow-wrap { display: inline-flex; flex-direction: column; }
.hero__title {
  font-size: clamp(2.75rem, 7vw + 0.5rem, 5.5rem);
  margin-top: 1.6rem;
}
.hero__sub {
  margin-top: 1.6rem;
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem);
  color: var(--mist);
  max-width: 42ch;
  line-height: 1.55;
}
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Sourced credibility line between the headline and subline —
   thin gold serif, running wide toward the globe */
.hero__fact {
  margin-top: 1.6rem;
  max-width: none;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(0.85rem, 0.8rem + 0.3vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}
.hero__fact-source {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 164, 92, 0.62);
}

.scrollcue {
  position: absolute;
  left: var(--gutter); bottom: 2rem;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--slate);
}
.scrollcue .lucide { width: 15px; height: 15px; stroke-width: 1.5; color: var(--gold); animation: nudge 2.6s var(--ease) infinite; }
@keyframes nudge { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(4px); } }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.head { max-width: 52ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.head--wide { max-width: none; }
.head--wide .head__lead { max-width: 75ch; }
.head__title {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.25rem);
  margin-top: 1.4rem;
}
.head__lead { margin-top: 1.4rem; }

/* =========================================================
   STAT CARDS (the gap)
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.stat {
  background: var(--trench);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
  transition: border-color var(--dur-hover) var(--ease),
              background-color var(--dur-hover) var(--ease),
              transform var(--dur-hover) var(--ease);
}
.stat:hover { border-color: var(--gold-hairline); background: var(--midnight); }
.stat__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  line-height: 1;
  color: var(--foam);
  letter-spacing: -0.01em;
}
.stat__num .u { color: var(--gold); font-size: 0.55em; margin-left: 0.08em; }
.stat__label { margin-top: 1rem; color: var(--mist); font-size: 0.95rem; }
.stat__foot { margin-top: 0.35rem; color: var(--slate); font-size: 0.8rem; }

/* =========================================================
   STRATEGY CARDS
   ========================================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  position: relative;
  background: var(--trench);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
  transition: border-color var(--dur-hover) var(--ease),
              background-color var(--dur-hover) var(--ease),
              transform var(--dur-hover) var(--ease);
}
.card:hover { border-color: var(--gold-hairline); background: var(--midnight); transform: translateY(-2px); }
.card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.card__icon .lucide { width: 20px; height: 20px; stroke-width: 1.5; }
.card__step {
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 0.7rem;
}
.card__title { font-family: var(--font-display); font-weight: 300; font-size: 1.85rem; line-height: 1.1; color: var(--foam); }
.card__body { margin-top: 0.9rem; color: var(--mist); font-size: 0.95rem; }

/* Home explore cards — whole card is the link */
.card--link { display: block; }
.card--link .link-gold { margin-top: 1.4rem; font-size: 0.9rem; }
.card--link:hover .link-gold::after { transform: scaleX(1); }

/* =========================================================
   PROCESS (what we do — four steps)
   ========================================================= */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Positioning pull-line */
.pull {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 1.9vw + 0.75rem, 2.25rem);
  line-height: 1.3;
  color: var(--foam);
  max-width: 44ch;
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid var(--gold-hairline);
}

/* =========================================================
   FOR FINANCE COMPANIES
   ========================================================= */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem 3.5rem;
}
.benefit h3 { font-size: 1rem; font-weight: 600; color: var(--foam); margin: 0; }
.benefit p { margin-top: 0.35rem; color: var(--mist); font-size: 0.93rem; max-width: 52ch; }

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.panel {
  background: var(--trench);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}
.panel h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.15;
  color: var(--foam);
  margin: 0;
}
.panel .checklist { margin-top: 1.3rem; }
.panel__foot { margin-top: 1.3rem; color: var(--slate); font-size: 0.85rem; }

.checklist { display: grid; gap: 0.65rem; }
.checklist li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--mist);
  font-size: 0.93rem;
}
.checklist li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.checklist--cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3.5rem;
  max-width: 860px;
}

/* Sector tags */
.tags-lead { margin-top: 2.2rem; color: var(--mist); font-size: 0.95rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.tag {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  color: var(--mist);
  transition: border-color var(--dur-hover) var(--ease), color var(--dur-hover) var(--ease);
}
.tag:hover { border-color: var(--gold-hairline); color: var(--foam); }

/* Risk management (own section landmark) */
.risk { max-width: 900px; }
.risk__title { font-size: clamp(1.75rem, 2.8vw + 0.5rem, 2.6rem); margin-top: 1.4rem; }
.risk .checklist { margin-top: 2rem; }

/* =========================================================
   WHY AQUACULTURE (split)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split__list { margin-top: 2rem; display: grid; gap: 1.4rem; }
.split__item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.split__item .lucide { width: 20px; height: 20px; stroke-width: 1.5; color: var(--gold); margin-top: 2px; }
.split__item h3 { font-size: 1rem; font-weight: 600; color: var(--foam); margin: 0; }
.split__item p { margin-top: 0.3rem; color: var(--mist); font-size: 0.92rem; }

/* Photography slot. Save the chosen image as assets/photo-equipment.jpg
   and it appears automatically (cool dark tint applied to keep it on-brand);
   until then the striped placeholder shows through. */
.figure {
  position: relative;
  aspect-ratio: 1535 / 1024;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4,13,24,0.18) 0%, rgba(4,13,24,0.05) 45%, rgba(4,13,24,0.24) 100%),
    url("../assets/photo-equipment.jpg?v=3") center / cover no-repeat,
    repeating-linear-gradient(
      135deg,
      rgba(163,184,204,0.05) 0px,
      rgba(163,184,204,0.05) 1px,
      transparent 1px,
      transparent 11px),
    linear-gradient(160deg, var(--current) 0%, var(--trench) 55%, var(--abyss) 100%);
  box-shadow: var(--shadow);
}
/* Media column in the split: stacked figures */
.split__media { display: grid; gap: 1.25rem; align-content: start; }

/* Manufacturer floor shot — bright industrial source, pulled into the
   palette with a heavier cool veil and gentle desaturation */
.figure--plant {
  aspect-ratio: 1500 / 1001;
  background:
    linear-gradient(180deg, rgba(4, 13, 24, 0.34) 0%, rgba(10, 27, 46, 0.22) 45%, rgba(4, 13, 24, 0.42) 100%),
    url("../assets/photo-feeder-plant.jpg?v=1") center / cover no-repeat;
  filter: saturate(0.82) brightness(0.92);
}

/* Animated telemetry overlay — cyan dashed flows from base station to feeders.
   Runs only while the figure is on screen (.in-view via IntersectionObserver). */
.figure__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.figure__overlay path {
  filter: drop-shadow(0 0 4px rgba(64, 220, 255, 0.7));
  animation: lnFlow 1.8s linear infinite;
  animation-play-state: paused;
}
.figure.in-view .figure__overlay path { animation-play-state: running; }
@keyframes lnFlow { to { stroke-dashoffset: 30; } }

.figure__tag {
  position: absolute;
  left: 1.25rem; bottom: 1.25rem;
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--slate);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.figure__tag .lucide { width: 14px; height: 14px; stroke-width: 1.5; color: var(--gold); }

/* =========================================================
   PRINCIPLES
   ========================================================= */
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.principle {
  position: relative;
  background: var(--trench);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.25rem);
  box-shadow: var(--shadow);
  transition: background-color var(--dur-hover) var(--ease),
              border-color var(--dur-hover) var(--ease);
}
.principle:hover { background: var(--midnight); border-color: var(--gold-hairline); }
.principle__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.22;
  letter-spacing: -0.02em;
  /* Lining figures — Cormorant's oldstyle set renders "01" like "OI" */
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  transition: opacity var(--dur-hover) var(--ease),
              text-shadow var(--dur-hover) var(--ease);
}
.principle:hover .principle__num {
  opacity: 0.55;
  text-shadow: 0 0 28px rgba(228, 203, 146, 0.45);
}
.principle__title { font-family: var(--font-display); font-weight: 300; font-size: 1.75rem; line-height: 1.12; color: var(--foam); margin-top: 0.6rem; }
.principle__body { margin-top: 0.8rem; color: var(--mist); font-size: 0.95rem; max-width: 34ch; }

/* =========================================================
   WORKED EXAMPLE (finance companies)
   ========================================================= */
.example { margin-top: 1.25rem; }
.example__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.example__tag {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-hairline);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  white-space: nowrap;
}
.example__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  color: var(--foam);
  margin: 0;
}
.example__steps {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.example__steps li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.2rem;
  align-items: start;
}
.example__when {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-top: 0.2rem;
  font-variant-numeric: tabular-nums;
}
.example__steps p { margin: 0; color: var(--mist); font-size: 0.95rem; max-width: 62ch; }
@media (max-width: 480px) {
  .example__steps li { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* =========================================================
   ABOUT (people)
   ========================================================= */
.people {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 860px;
}
.person {
  background: var(--trench);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
  transition: border-color var(--dur-hover) var(--ease), background-color var(--dur-hover) var(--ease);
}
.person:hover { border-color: var(--gold-hairline); background: var(--midnight); }
.person__initials {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold-hairline);
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}
.person__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.55rem;
  line-height: 1.1;
  color: var(--foam);
  margin: 0;
}
.person__role {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 0.4rem;
}
.person__bio { color: var(--mist); font-size: 0.92rem; margin-top: 0.8rem; }
@media (max-width: 900px) {
  .people { grid-template-columns: 1fr; }
}

/* =========================================================
   SATELLITE SITE VIEW (globe porthole)
   ========================================================= */
.siteview {
  position: absolute;
  inset: 0;
  z-index: 2; /* above the globe canvas, which is appended after it */
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms var(--ease);
}
.siteview.is-active { opacity: 1; pointer-events: auto; }
.siteview canvas { display: block; cursor: grab; touch-action: none; }
.siteview canvas:focus-visible { outline: 1px solid var(--gold); outline-offset: 6px; border-radius: 50%; }
.siteview__label {
  position: absolute;
  top: 6.5%;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  text-align: center;
  pointer-events: none;
}
.siteview__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--foam);
  text-shadow: 0 1px 8px rgba(4, 13, 24, 0.8);
}
.siteview__coords {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 6px rgba(4, 13, 24, 0.8);
}
.siteview__feeders {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 6px rgba(4, 13, 24, 0.8);
}
.siteview__tip {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 12px));
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.18rem 0.8rem;
  background: rgba(4, 13, 24, 0.94);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  white-space: nowrap;
  font-size: 0.68rem;
  line-height: 1.35;
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.6);
}
.siteview__tip[hidden] { display: none; }
.siteview__tip .k { color: var(--slate); letter-spacing: 0.05em; }
.siteview__tip .v { color: var(--foam); font-variant-numeric: tabular-nums; text-align: right; font-weight: 500; }
.siteview__tip .v::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: 1px;
  background: transparent;
}
.siteview__tip .v--active::before { background: var(--gold-light); }
.siteview__tip .v--standby::before { background: var(--mist); }
.siteview__tip .v--dormant::before { background: var(--slate); }

.siteview__back {
  position: absolute;
  top: 0;
  right: 3%;
  border: 1px solid var(--hairline);
  background: rgba(4, 13, 24, 0.72);
  color: var(--foam);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  transition: border-color var(--dur-hover) var(--ease), color var(--dur-hover) var(--ease);
}
.siteview__back:hover { border-color: var(--gold-hairline); }
.siteview__attr {
  position: absolute;
  bottom: 3.5%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  color: var(--slate);
  background: rgba(4, 13, 24, 0.55);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
}

/* =========================================================
   MOBILE MENU
   ========================================================= */
.nav__toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  background: transparent;
  border-radius: 12px;
  place-items: center;
  transition: border-color var(--dur-hover) var(--ease);
}
.nav__toggle .lucide { width: 20px; height: 20px; stroke-width: 1.5; color: var(--foam); }
.nav__toggle:hover { border-color: var(--gold-hairline); }
.nav__toggle .icon-close { display: none; }
.nav.is-open .icon-close { display: block; }
.nav.is-open .icon-menu { display: none; }
.nav__menu { display: none; }
@media (max-width: 720px) {
  .nav__toggle { display: grid; }
  .nav__menu:not([hidden]) {
    display: grid;
    padding: 0.25rem var(--gutter) 1rem;
    background: rgba(4, 13, 24, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--hairline);
  }
  .nav__menu a {
    padding: 0.85rem 0.25rem;
    color: var(--mist);
    font-size: 1rem;
    border-bottom: 1px solid var(--hairline-soft);
    transition: color var(--dur-hover) var(--ease);
  }
  .nav__menu a:last-child { border-bottom: none; }
  .nav__menu a:hover { color: var(--foam); }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { text-align: center; }
.contact__inner { max-width: 40ch; margin-inline: auto; display: grid; justify-items: center; gap: 1.6rem; }
.contact__title { font-size: clamp(2.2rem, 4vw + 0.5rem, 3.5rem); }
.contact__line { color: var(--mist); }
.contact__juris { color: var(--slate); font-size: 0.82rem; letter-spacing: 0.02em; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--hairline); padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem; }
.footer__rule { height: 1px; width: 100%; background: linear-gradient(90deg, rgba(201,164,92,0), var(--gold-hairline), rgba(201,164,92,0)); margin-bottom: 2.5rem; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer__brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.footer__brand .brand__mark { width: 30px; opacity: 0.9; }
.footer__nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer__nav a { color: var(--mist); font-size: 0.88rem; transition: color var(--dur-hover) var(--ease); }
.footer__nav a:hover { color: var(--foam); }
.footer__legal { margin-top: 2.5rem; color: var(--slate); font-size: 0.78rem; line-height: 1.6; }
.footer__copy { margin-top: 1rem; color: var(--slate); font-size: 0.78rem; }

/* =========================================================
   REVEALS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity var(--dur-reveal) var(--ease), transform var(--dur-reveal) var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .figure { order: -1; }
  .split__media { order: -1; }
  .principles { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .benefits { grid-template-columns: 1fr; }
  .checklist--cols { grid-template-columns: 1fr; }
}

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

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .scrollcue { display: none; }
}

/* =========================================================
   REDUCED MOTION — content simply appears
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .rule { transform: scaleX(1); }
  .hero__glow { display: none; }
  body::before { transition: none; }
}

/* ============================================================
   HOMEPAGE v2 — executive-summary sections
   ============================================================ */
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__mech {
  margin-top: 1.5rem;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--mist);
  max-width: 54ch;
}
.hero__mech strong { color: var(--foam); font-weight: 600; }

/* Collateral telemetry panel */
.telemetry {
  position: relative;
  z-index: 2;
  background: linear-gradient(165deg, var(--midnight), var(--trench));
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.2vw, 1.9rem);
  box-shadow: var(--shadow);
}
.telemetry__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
}
.telemetry__live { display: inline-flex; align-items: center; gap: 0.45rem; color: #7FC8A9; }
.telemetry__live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #7FC8A9;
  animation: telemetry-pulse 2.4s var(--ease) infinite;
}
@keyframes telemetry-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.telemetry__site {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.7rem;
  color: var(--foam);
  margin: 0.9rem 0 0.1rem;
}
.telemetry__sub { font-size: 0.8rem; color: var(--slate); }
.telemetry__rows { margin-top: 1.1rem; }
.telemetry__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--hairline-soft);
  font-size: 0.82rem;
  color: var(--foam);
}
.telemetry__row span:first-child { color: var(--slate); }
.telemetry__ok { color: #7FC8A9; }
.telemetry__note { margin-top: 0.4rem; font-size: 0.68rem; color: var(--slate); }

/* Globe lives in-flow inside the panel (overrides hero-absolute rules) */
.telemetry .hero__globe {
  position: relative;
  top: auto;
  right: auto;
  transform: none;
  display: block;
  width: min(100%, 360px);
  margin: 1.3rem auto 2.6rem;
  pointer-events: auto;
}
.telemetry .hero__globe img { border-radius: 50%; }

/* Three principals */
.people--3 { grid-template-columns: repeat(3, 1fr); max-width: none; margin-top: clamp(2.5rem, 5vw, 3.5rem); }

@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .telemetry .hero__globe { width: min(100%, 320px); }
  .people--3 { grid-template-columns: 1fr; }
}
