/* ═══════════════════════════════════════════════════════
   HOME.CSS — Marinox Group Homepage (revised per audit)
   ═══════════════════════════════════════════════════════ */

:root {
  --prose-body: rgba(200, 216, 222, 0.82);
  --prose-mute: rgba(200, 216, 222, 0.55);
}

/* Prose container — 720px for reading passages */
.container--prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* ── HERO ─────────────────────────────────────────────── */
/* NOTE: The live .home-hero / .home-hero-inner / #hero-ocean-canvas
   declarations are at line ~1100 below. The earlier shadowed
   triplet was removed during Fix 6.3 (Phase 6) consolidation. */

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(3,12,18,0.6) 70%, rgba(3,12,18,0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-vignette-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 22%;
  background: linear-gradient(to bottom, transparent, rgba(3,12,18,0.85));
  z-index: 2;
  pointer-events: none;
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: rgba(62,207,207,0.5);
  display: block;
  flex-shrink: 0;
}

.hero-eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(62,207,207,0.8);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

/* H1 — raised ceiling, tighter leading */
.home-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.8rem, 10vw, 11.5rem);
  line-height: 0.92;
  color: #e8f0f3;
  margin: 0 0 1.6rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1.2s ease 0.5s forwards;
  letter-spacing: -0.02em;
}

.home-hero-headline em {
  font-style: italic;
  color: #3ecfcf;
}

.home-hero-headline .headline-line {
  display: block;
  overflow: visible;
}

.hero-sub-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s ease 0.9s forwards;
}

.hero-sub-divider {
  width: 1px;
  height: 40px;
  background: rgba(62,207,207,0.3);
  flex-shrink: 0;
}

/* Body copy — 17px, alpha 0.82 (audit fix) */
.hero-sub-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--prose-body);
  letter-spacing: 0.01em;
  line-height: 1.65;
  max-width: 420px;
  text-align: left;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s ease 1.1s forwards;
}

/* Three-Forces strip — flex child at the bottom of the hero.
   No longer absolute-positioned, so it cannot collide with content above. */
.hero-forces {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  border-top: 1px solid rgba(62,207,207,0.12);
  background: rgba(3, 12, 18, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  animation: heroFadeIn 1s ease 1.8s forwards;
}
.hf-item {
  flex: 1;
  padding: 0.85rem 2.5rem;
  border-right: 1px solid rgba(62,207,207,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.hf-item:last-child { border-right: none; }
.hf-item:hover { background: rgba(62,207,207,0.04); }
.hf-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.hf-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hf-item[data-force="foundation"] .hf-dot { background: #d4a832; }
.hf-item[data-force="destination"] .hf-dot { background: #3ecfcf; }
.hf-item[data-force="digital"] .hf-dot { background: #b07dc6; }
.hf-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--prose-dim);
  line-height: 1;
}
.hf-venture {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(232,240,243,0.9);
  line-height: 1;
  letter-spacing: 0.04em;
}
/* Scroll indicator — sits in the content block, doesn't need absolute positioning */
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  opacity: 0;
  animation: heroFadeUp 1s ease 1.5s forwards;
}

.hsi-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(62,207,207,0.6), transparent);
  animation: siPulse 2s ease-in-out infinite;
}

.hsi-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(62,207,207,0.5);
}

@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes heroFadeIn { to { opacity: 1; } }
@keyframes siPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── MANIFESTO — CALM, TYPE-ONLY ───────────────────────── */
.manifesto-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(62,207,207,0.08);
  text-align: center;
}

.manifesto-calm {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.9s ease;
}
.manifesto-calm.in, .manifesto-calm.visible {
  opacity: 1;
  transform: translateY(0);
}

.manifesto-eyebrow {
  display: block;
  margin-bottom: 2.5rem;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.2;
  color: #e8f0f3;
  letter-spacing: -0.02em;
  margin: 0 auto 2rem;
  border: none;
  padding: 0;
}

.manifesto-quote em {
  font-style: italic;
  color: #3ecfcf;
}

.manifesto-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--prose-body);
  margin: 0 auto 3rem;
  max-width: 560px;
}

.manifesto-pillars {
  display: flex;
  gap: 0;
  margin: 0 auto 3rem;
  border: 1px solid rgba(62,207,207,0.1);
  max-width: 560px;
}

.mp-item {
  flex: 1;
  padding: 1rem;
  border-right: 1px solid rgba(62,207,207,0.1);
  text-align: center;
}
.mp-item:last-child { border-right: none; }

.mp-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(62,207,207,0.85);
  letter-spacing: 0.02em;
}

.ma-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(62,207,207,0.85);
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(62,207,207,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}
.ma-link:hover { color: #3ecfcf; border-color: rgba(62,207,207,0.7); }

/* ── CONTINUUM RING SECTION ────────────────────────────── */
.continuum-ring-section {
  padding: 9rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #030c12 0%, #040e16 50%, #030c12 100%);
}

.crs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  /* asymmetric split */
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: center;
}

.crs-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.08;
  color: #e8f0f3;
  margin: 1rem 0 2rem;
  letter-spacing: -0.02em;
}

.crs-title em { font-style: italic; color: #3ecfcf; }

.crs-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--prose-body);
  margin-bottom: 2.5rem;
}

.crs-canvas-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

/* Mist canvas — fills the entire wrap area, sits behind the mark */
.crs-mist-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* The real Marinox Mark — visible in center, JS animates opacity */
.crs-mark-svg {
  position: relative;
  z-index: 2;
  width: 72%;
  height: 72%;
  opacity: 0;                                    /* JS fades in */
  filter: drop-shadow(0 0 60px rgba(85, 197, 204, 0.35));
  transition: filter 0.5s ease;
  will-change: opacity, transform;
}

/* Force labels — absolutely positioned around the mark */
.crs-force-labels {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.crs-force-label {
  position: absolute;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;                                    /* JS fades in with mark */
  transition: opacity 0.4s ease;
}
.crs-force-label[data-force="foundation"] {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  color: #d4a832;
}
.crs-force-label[data-force="destination"] {
  bottom: 4%;
  right: 3%;
  color: #3ecfcf;
}
.crs-force-label[data-force="digital"] {
  bottom: 4%;
  left: 3%;
  color: #b07dc6;
}

/* ── Force chips — minimal pills below the continuum title ── */
.force-pills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.force-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(232, 228, 218, 0.14);
  background: rgba(3, 12, 18, 0.45);
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--prose-body);
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.force-chip:hover,
.force-chip:focus-visible {
  border-color: color-mix(in oklab, var(--chip-color, #3ecfcf) 55%, transparent);
  background: color-mix(in oklab, var(--chip-color, #3ecfcf) 8%, rgba(3, 12, 18, 0.55));
  transform: translateY(-1px);
}
.force-chip[data-force="foundation"] { --chip-color: #d4a832; }
.force-chip[data-force="destination"] { --chip-color: #3ecfcf; }
.force-chip[data-force="digital"] { --chip-color: #b07dc6; }
.fc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--chip-color);
  box-shadow: 0 0 8px color-mix(in oklab, var(--chip-color) 60%, transparent);
  flex-shrink: 0;
}
.fc-venture { color: var(--chip-color); font-weight: 500; }
.fc-arrow { opacity: 0.55; transition: transform 0.25s ease, opacity 0.25s ease; }
.force-chip:hover .fc-arrow { opacity: 1; transform: translateX(3px); }

/* Linked-highlight state (driven by orbit dot hover) */
.force-chip.is-focus {
  border-color: color-mix(in oklab, var(--chip-color) 65%, transparent);
  background: color-mix(in oklab, var(--chip-color) 12%, rgba(3, 12, 18, 0.6));
  transform: translateY(-1px);
}
.force-chip.is-dim {
  opacity: 0.38;
}

/* ── VENTURES SHOWCASE — STATIC, TYPOGRAPHIC ──────────── */
.ventures-showcase {
  position: relative;
  overflow: hidden;
}

.vs-header {
  padding: 9rem 2rem 4rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.vs-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.1;
  color: #e8f0f3;
  letter-spacing: -0.02em;
}

/* Equal-column grid — three ventures, three pillars (Issue 5 / post-launch testing). */
.vs-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 68vh;
  border-top: 1px solid rgba(62,207,207,0.08);
}

.vs-panel {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(62,207,207,0.08);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.5s ease;
}
.vs-panel:last-child { border-right: none; }

/* Static gradient background per venture — replaces the canvas dot-field */
.vs-panel-bg {
  position: absolute;
  inset: 0;
  background: #030c12;
}

/* Per-venture ambient canvas — sits above the static gradient,
   below the overlay and content. Each venture has its own motif
   (pillars / hex-grid / tide-waves), rendered in its own color. */
.vs-panel-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}

.vs-panel[data-venture="mariix"] .vs-panel-bg {
  background:
    radial-gradient(ellipse 80% 100% at 70% 30%, rgba(62,207,207,0.12), transparent 65%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(62,207,207,0.05), transparent 70%),
    linear-gradient(180deg, #030e18 0%, #020b12 100%);
}
.vs-panel[data-venture="marvex"] .vs-panel-bg {
  background:
    radial-gradient(ellipse 80% 100% at 30% 30%, rgba(212,168,50,0.10), transparent 65%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(91,141,184,0.05), transparent 70%),
    linear-gradient(180deg, #0a0d0a 0%, #06080c 100%);
}
.vs-panel[data-venture="oceion"] .vs-panel-bg {
  background:
    radial-gradient(ellipse 80% 100% at 60% 40%, rgba(176,125,198,0.16), transparent 65%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(176,125,198,0.06), transparent 70%),
    linear-gradient(180deg, #0d0418 0%, #08020f 100%);
}

.vs-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,12,18,0.6) 0%, rgba(3,12,18,0.15) 50%, transparent 100%);
  transition: background 0.5s ease;
}
.vs-panel:hover .vs-panel-overlay {
  background: linear-gradient(to top, rgba(3,12,18,0.75) 0%, rgba(3,12,18,0.05) 60%, transparent 100%);
}

/* Corner mark — unified glyph + wordmark for all three ventures */
.vs-mark {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.4s ease, transform 0.5s ease;
}
.vs-panel:hover .vs-mark { opacity: 1; transform: translateY(-2px); }

.vs-mark-glyph {
  width: 64px;
  height: 64px;
  color: currentColor;
  filter: drop-shadow(0 0 12px color-mix(in oklab, currentColor 45%, transparent));
  transition: filter 0.4s ease;
}
.vs-panel:hover .vs-mark-glyph {
  filter: drop-shadow(0 0 20px color-mix(in oklab, currentColor 65%, transparent));
}

.vs-panel[data-venture="mariix"] .vs-mark { color: #3ecfcf; }
.vs-panel[data-venture="marvex"] .vs-mark { color: #d4a832; }
.vs-panel[data-venture="oceion"] .vs-mark { color: #b07dc6; }

/* Panel content — ALWAYS visible (accessibility fix) */
.vs-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem;
  z-index: 2;
}

.vs-panel-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--prose-body);
  display: block;
  margin-bottom: 0.7rem;
}

.vs-panel-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2.8rem;
  color: #e8f0f3;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.vs-panel-force {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--prose-body);
  display: block;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.vs-panel-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--prose-body);
  margin-bottom: 1.4rem;
}

.vs-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.3s ease;
}
.vs-panel:hover .vs-panel-cta { gap: 0.85rem; }

.vs-arrow { font-size: 0.9rem; }

/* Per-venture color accents */
.vs-panel[data-venture="mariix"] .vs-panel-name { color: #3ecfcf; }
.vs-panel[data-venture="marvex"] .vs-panel-name { color: #d4a832; }
.vs-panel[data-venture="oceion"] .vs-panel-name { color: #b07dc6; }

.vs-panel[data-venture="mariix"] .vs-panel-cta { color: #3ecfcf; }
.vs-panel[data-venture="marvex"] .vs-panel-cta { color: #d4a832; }
.vs-panel[data-venture="oceion"] .vs-panel-cta { color: #b07dc6; }

/* ── STORY PANEL ───────────────────────────────────────── */
.home-story {
  padding: 10rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 6rem;
  align-items: center;
}

.hs-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(62,207,207,0.7);
  display: block;
  margin-bottom: 1.5rem;
}

.hs-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.08;
  color: #e8f0f3;
  margin: 0 0 2rem;
  letter-spacing: -0.02em;
}

.hs-heading em { font-style: italic; color: #3ecfcf; }

.hs-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--prose-body);
  margin-bottom: 1.4rem;
}
.hs-body:last-of-type { margin-bottom: 2rem; }

.hs-stat-block {
  border: 1px solid rgba(62,207,207,0.14);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.hs-stat-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #3ecfcf, transparent);
}

.hs-stat-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.3vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(232,240,243,0.92);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hs-stat-attr {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(62,207,207,0.7);
}

/* ── Brand signature — Marinox Mark + canonical tagline ──
   Sits below the founding-statement quote inside .hs-right.
   Functions as an author's seal for the origins panel. */
.hs-signature {
  margin-top: 2rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(62,207,207,0.08);
  background: rgba(4, 14, 22, 0.35);
}

.hs-signature-mark {
  width: 96px;
  height: 96px;
  opacity: 0.92;
  filter: drop-shadow(0 0 22px rgba(85, 197, 204, 0.25));
  transition: filter 0.5s ease, opacity 0.5s ease;
}
.hs-signature-mark svg { width: 100%; height: 100%; display: block; }
.hs-signature:hover .hs-signature-mark {
  opacity: 1;
  filter: drop-shadow(0 0 30px rgba(85, 197, 204, 0.45));
}

.hs-signature-rule {
  width: 48px;
  height: 1px;
  background: rgba(62,207,207,0.35);
  margin: 1.8rem 0 1.4rem;
}

.hs-signature-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.4;
  color: rgba(232, 240, 243, 0.92);
  letter-spacing: 0.01em;
  max-width: 360px;
  margin: 0 0 1rem;
}

.hs-signature-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--prose-dim);
}

/* ── INSIGHTS STRIP ────────────────────────────────────── */
.home-insights {
  padding: 9rem 0;
  border-top: 1px solid rgba(62,207,207,0.08);
  background: rgba(4,14,22,0.6);
}

.hi-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.hi-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: #e8f0f3;
  letter-spacing: -0.02em;
}
.hi-title em { font-style: italic; color: #3ecfcf; }

.hi-all-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: rgba(62,207,207,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(62,207,207,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  margin-bottom: 0.3rem;
}
.hi-all-link:hover { color: #3ecfcf; border-color: rgba(62,207,207,0.7); }

.hi-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  gap: 1px;
  background: rgba(62,207,207,0.08);
}
/* 2-article layout — larger, more breathing room */
.hi-articles--pair {
  grid-template-columns: repeat(2, 1fr);
}
.hi-articles--pair .hi-article {
  padding: 3.5rem 3rem;
}
.hi-articles--pair .hi-a-title {
  font-size: 1.7rem;
  line-height: 1.35;
}

.hi-article {
  background: #030c12;
  padding: 2.5rem 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}
.hi-article:hover { background: rgba(62,207,207,0.03); }

.hi-a-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(62,207,207,0.85);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hi-a-cat::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px color-mix(in oklab, currentColor 60%, transparent);
}
.hi-article[data-force="foundation"] .hi-a-cat { color: #d4a832; }
.hi-article[data-force="destination"] .hi-a-cat { color: #3ecfcf; }
.hi-article[data-force="digital"] .hi-a-cat { color: #b07dc6; }

.hi-a-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.hi-a-meta::before {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(62,207,207,0.14);
}
.hi-a-read {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--prose-dim);
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.hi-a-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.4;
  color: #e8f0f3;
  flex: 1;
  margin-bottom: 1.5rem;
}

.hi-a-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--prose-dim);
  letter-spacing: 0.1em;
}

.hi-a-arrow {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(62,207,207,0.4);
  transition: color 0.2s, transform 0.2s;
  display: block;
}
.hi-article:hover .hi-a-arrow {
  color: #3ecfcf;
  transform: translateX(5px);
}

/* ── CTA HORIZON — CALM ────────────────────────────────── */
.home-cta {
  position: relative;
  padding: 12rem 2rem;
  overflow: hidden;
  text-align: center;
}

#cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-cta-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}

.hci-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(62,207,207,0.85);
  margin-bottom: 1.5rem;
  display: block;
}

.hci-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.08;
  color: #e8f0f3;
  margin-bottom: 1.8rem;
  letter-spacing: -0.02em;
}

.hci-heading em { font-style: italic; color: #3ecfcf; }

.hci-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--prose-body);
  margin-bottom: 3rem;
}

.hci-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── REVEAL ─────────────────────────────────────────────
   Only headings reveal; body copy present on load. */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible, .reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .home-hero {
    min-height: 100vh;
  }
  .home-hero-inner {
    padding: 5rem 1.5rem 2rem;
  }

  /* Forces strip — compact on mobile; horizontal scroll if tight */
  .hero-forces {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-forces::-webkit-scrollbar { display: none; }

  .hf-item {
    flex: 0 0 auto;
    min-width: 44%;
    padding: 0.85rem 1.1rem;
    gap: 0.5rem;
  }
  .hf-label { font-size: 0.58rem; letter-spacing: 0.16em; }
  .hf-venture { font-size: 0.95rem; }

  .hero-scroll-indicator { display: none; }

  .crs-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .crs-canvas-wrap { order: -1; }

  .vs-panels {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .vs-panel { min-height: 44vh; border-right: none; border-bottom: 1px solid rgba(62,207,207,0.08); }
  .vs-panel:last-child { border-bottom: none; }

  .vs-mark-glyph { width: 44px; height: 44px; }

  .home-story {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 6rem 2rem;
  }

  .hi-articles { grid-template-columns: 1fr; }

  .hi-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-sub-row {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-sub-divider { display: none; }
  .hero-sub-text { text-align: center; max-width: 100%; }

  .manifesto-section { padding: 6rem 0; }
  .home-insights { padding: 6rem 0; }
  .home-cta { padding: 7rem 1.5rem; }

  .hs-stat-block { padding: 2rem 1.5rem; }
}


/* ═══════════════════════════════════════════════════════════════════════
   v2 — CONCEPT 2 HERO
   Mark + mist animation as centerpiece. Tagline architecture: small
   eyebrow → H1 (The Marine Continuum) → sub-tagline → description.
   Mark sits center-left, text stacks to its right.
   ═══════════════════════════════════════════════════════════════════════ */

/* Override hero layout — mark on the left, content on the right */
.home-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* The hero ocean canvas stays as deep background */
#hero-ocean-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Hero inner — split into mark + content (60/40 desktop, stacked on mobile) */
.home-hero-inner {
  position: relative;
  z-index: 3;
  flex: 1;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 3rem 4rem;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

/* Mark composition — left column */
.hero-mark-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mist canvas — atmospheric layer behind/around the mark */
.hero-mist-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* The Marinox Mark itself — JS animates opacity on the mist cycle */
.hero-mark-svg {
  position: relative;
  z-index: 2;
  width: 72%;
  height: 72%;
  opacity: 0;
  filter: drop-shadow(0 0 60px rgba(85, 197, 204, 0.35));
  transition: filter 0.5s ease;
  will-change: opacity, transform;
}

/* Hero content stack — right column */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 3;
  max-width: 560px;
}

/* Strengthened eyebrow — 0.78rem, weight 500, tracking 0.32em */
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: rgba(62,207,207,0.5);
  display: block;
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(62,207,207,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

/* H1 — "The Marine Continuum" — Cormorant 8rem (smaller than before because
   it's sharing space with the mark) */
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 6.4vw, 6rem);
  line-height: 0.96;
  color: #e8f0f3;
  margin: 0 0 1.4rem;
  letter-spacing: -0.022em;
  opacity: 0;
  transform: translateY(24px);
  animation: heroTextIn 1.2s ease 0.5s forwards;
}
.hero-h1 em {
  font-style: italic;
  color: #3ecfcf;
}

/* Sub-tagline — "Shaping the future of the marine ecosystem" */
.hero-subtagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  line-height: 1.3;
  color: rgba(232, 240, 243, 0.86);
  margin: 0 0 2.2rem;
  letter-spacing: -0.005em;
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextIn 1.1s ease 0.85s forwards;
}

/* Description (D2) — DM Sans 17px / 0.82 alpha */
.hero-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(200, 216, 222, 0.82);
  margin: 0 0 2.6rem;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextIn 1s ease 1.15s forwards;
}

/* CTA row */
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextIn 1s ease 1.4s forwards;
}

@keyframes heroTextIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Three Forces strip — quieted (audit fix) */
.hero-forces {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  border-top: 1px solid rgba(62,207,207,0.06);
  background: rgba(3, 12, 18, 0.25);
  /* backdrop-filter dropped per audit */
  opacity: 0;
  animation: heroFadeIn 1s ease 2s forwards;
}
@keyframes heroFadeIn { to { opacity: 1; } }

.hf-item {
  flex: 1;
  padding: 0.9rem 2.5rem;
  border-right: 1px solid rgba(62,207,207,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}
.hf-item:last-child { border-right: none; }
.hf-item:hover { background: rgba(62,207,207,0.04); }
.hf-row { display: inline-flex; align-items: center; gap: 0.55rem; }
.hf-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.hf-item[data-force="foundation"] .hf-dot { background: #d4a832; }
.hf-item[data-force="destination"] .hf-dot { background: #3ecfcf; }
.hf-item[data-force="digital"] .hf-dot { background: #b07dc6; }
.hf-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,216,222,0.72);
  line-height: 1;
}
.hf-venture {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300; /* quieted from 400 */
  color: rgba(232,240,243,0.9);
  line-height: 1;
  letter-spacing: 0.04em;
}

/* Hero responsive — stack on mobile */
@media (max-width: 900px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 5rem 1.5rem 2.5rem;
    text-align: center;
  }
  .hero-mark-wrap {
    max-width: 280px;
    aspect-ratio: 1;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-eyebrow-row { justify-content: center; }
  .hero-cta-row { justify-content: center; }
  .hero-description { text-align: center; }
}


/* ═══════════════════════════════════════════════════════════════════════
   v2 — LONG HORIZON SECTION (Tide-Gauge Strata)
   Replaces the old Continuum Ring section. Geological strata bands +
   tide-gauge measurement scale on left + READING field-note margins
   + rotating Marinox watermark at position B (centered on strata stack).
   ═══════════════════════════════════════════════════════════════════════ */

.long-horizon-section {
  position: relative;
  padding: 9rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, #02060a 0%, #03080c 50%, #02060a 100%);
  border-top: 1px solid rgba(62,207,207,0.08);
}

.lh-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.lh-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(62,207,207,0.85);
  text-align: center;
  margin-bottom: 1.2rem;
  display: block;
}

.lh-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: #e8f0f3;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.lh-h2 em { font-style: italic; color: #3ecfcf; }

.lh-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(200, 216, 222, 0.82);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 5rem;
}

/* Strata stack — stacks bottom-up (foundation first in DOM, displayed at bottom) */
.lh-strata-stack {
  display: flex;
  flex-direction: column-reverse;
  gap: 0;
  border-top: 1px solid rgba(62,207,207,0.18);
  margin-left: 4.5rem;
  position: relative;
}

/* Tide-gauge measurement scale on the left */
.lh-tide-gauge {
  position: absolute;
  left: -4.5rem; top: 0; bottom: 0;
  width: 4.2rem;
  pointer-events: none;
  z-index: 3;
}
.lh-tide-gauge::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    rgba(62, 207, 207, 0.5) 0%,
    rgba(62, 207, 207, 0.35) 50%,
    rgba(62, 207, 207, 0.5) 100%);
}
.tg-mark {
  position: absolute;
  left: 0;
  height: 1px;
  background: rgba(62, 207, 207, 0.55);
}
.tg-mark.major {
  width: 100%;
  background: rgba(62, 207, 207, 0.85);
}
.tg-mark.major::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  background: rgba(62, 207, 207, 0.85);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(62, 207, 207, 0.4);
}
.tg-mark.minor { width: 30%; background: rgba(62, 207, 207, 0.25); }
.tg-mark.medium { width: 60%; background: rgba(62, 207, 207, 0.45); }

.tg-label {
  position: absolute;
  left: 0; top: -2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(62, 207, 207, 0.55);
  white-space: nowrap;
}
.tg-label-bottom {
  position: absolute;
  left: 0; bottom: -2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(62, 207, 207, 0.55);
  white-space: nowrap;
}

/* Strata bands */
.lh-strata-band {
  position: relative;
  padding: 2.4rem 11rem 2.4rem 4rem;
  border-bottom: 1px solid rgba(62, 207, 207, 0.18);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: baseline;
  overflow: hidden;
}
.lh-strata-band:first-child { border-bottom: none; }

/* Geological textures — denser at the foundation (bottom), thinning upward */
.lh-strata-band[data-idx="1"] {
  background:
    radial-gradient(circle at 25% 30%, rgba(232,240,243,0.04) 1px, transparent 1.5px) 0 0/9px 12px,
    radial-gradient(circle at 70% 60%, rgba(62,207,207,0.06) 0.7px, transparent 1.2px) 4px 6px/9px 12px,
    linear-gradient(180deg, rgba(20, 30, 38, 0.55) 0%, rgba(8, 16, 22, 0.78) 100%);
}
.lh-strata-band[data-idx="2"] {
  background:
    radial-gradient(circle at 60% 40%, rgba(62,207,207,0.08) 0.7px, transparent 1.4px) 0 0/14px 18px,
    radial-gradient(circle at 30% 70%, rgba(232,240,243,0.03) 0.6px, transparent 1px) 7px 9px/14px 18px,
    linear-gradient(180deg, rgba(15, 24, 32, 0.45) 0%, rgba(12, 20, 28, 0.65) 100%);
}
.lh-strata-band[data-idx="3"] {
  background:
    radial-gradient(circle at 40% 50%, rgba(62,207,207,0.06) 0.5px, transparent 1px) 0 0/22px 26px,
    linear-gradient(180deg, rgba(10, 18, 26, 0.35) 0%, rgba(10, 18, 26, 0.5) 100%);
}
.lh-strata-band[data-idx="4"] {
  background:
    radial-gradient(circle at 50% 30%, rgba(232,240,243,0.025) 0.4px, transparent 1px) 0 0/40px 30px,
    linear-gradient(180deg, rgba(6, 14, 21, 0.25) 0%, rgba(8, 16, 22, 0.4) 100%);
}

.lh-strata-band::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.lh-strata-band[data-idx="1"]::before { background: rgba(62,207,207,0.85); }
.lh-strata-band[data-idx="2"]::before { background: rgba(62,207,207,0.7); }
.lh-strata-band[data-idx="3"]::before { background: rgba(62,207,207,0.5); }
.lh-strata-band[data-idx="4"]::before { background: rgba(62,207,207,0.3); }

.lh-strata-left {
  display: flex; flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 2;
}
.lh-state {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #3ecfcf;
}
.lh-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: rgba(232,240,243,0.92);
  font-weight: 400;
  line-height: 1.4;
}
.lh-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(200, 216, 222, 0.82);
  position: relative;
  z-index: 2;
}

/* Field-note margin annotations */
.lh-field-note {
  position: absolute;
  right: 2rem; top: 50%;
  transform: translateY(-50%);
  width: 8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: rgba(62,207,207,0.55);
  text-align: right;
  font-style: italic;
  z-index: 2;
}
.lh-field-note::before {
  content: 'READING · ';
  display: block;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.56rem;
  color: rgba(62,207,207,0.7);
  margin-bottom: 0.45rem;
}

/* Reveal animations for strata bands */
.lh-strata-band {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.lh-strata-band.in {
  opacity: 1;
  transform: translateY(0);
}
.lh-strata-band.in::before { transform: scaleY(1); }
.lh-strata-band[data-idx="1"] { transition-delay: 0s; }
.lh-strata-band[data-idx="2"] { transition-delay: 0.4s; }
.lh-strata-band[data-idx="3"] { transition-delay: 0.8s; }
.lh-strata-band[data-idx="4"] { transition-delay: 1.2s; }
.lh-strata-band[data-idx="1"].in::before { transition-delay: 0.2s; }
.lh-strata-band[data-idx="2"].in::before { transition-delay: 0.6s; }
.lh-strata-band[data-idx="3"].in::before { transition-delay: 1.0s; }
.lh-strata-band[data-idx="4"].in::before { transition-delay: 1.4s; }

/* Brand watermark — Position B (centered on strata stack at top: 68%) */
.lh-brand-watermark {
  position: absolute;
  left: 50%;
  top: 68%;
  transform: translate(-50%, -50%);
  width: min(720px, 90vw);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 3s cubic-bezier(0.25,0.46,0.45,0.94) 0.6s;
  z-index: 1;
  filter: drop-shadow(0 0 80px rgba(62, 207, 207, 0.18));
}
.long-horizon-section.is-active .lh-brand-watermark {
  opacity: 0.14;
}
.lh-brand-watermark-spin {
  width: 100%;
  height: 100%;
  animation: lhBrandSpin 240s linear infinite;
}
.lh-brand-watermark-spin svg {
  width: 100%; height: 100%;
  display: block;
}
@keyframes lhBrandSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Long Horizon responsive */
@media (max-width: 900px) {
  .lh-strata-stack { margin-left: 3rem; }
  .lh-tide-gauge { left: -3rem; width: 2.7rem; }
  .lh-strata-band {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 2rem 2rem 2rem 2.5rem;
  }
  .lh-field-note {
    position: static;
    transform: none;
    width: 100%;
    text-align: left;
    margin-top: 1rem;
    border-top: 1px solid rgba(62,207,207,0.1);
    padding-top: 1rem;
  }
  .lh-brand-watermark { width: min(500px, 80vw); }
}


/* ═══════════════════════════════════════════════════════════════════════
   v2 — PROOF BAR (Option D — The Asymmetry)
   ═══════════════════════════════════════════════════════════════════════ */

.proof-bar-section {
  position: relative;
  padding: 8rem 0;
  border-top: 1px solid rgba(62,207,207,0.08);
  background: linear-gradient(180deg, #03080c 0%, #02060a 50%, #03080c 100%);
}

.pb-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pb-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(62,207,207,0.85);
  text-align: center;
  margin-bottom: 1.2rem;
  display: block;
}

.pb-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  color: #e8f0f3;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}
.pb-h2 em { font-style: italic; color: #3ecfcf; }

.pb-observations {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.pb-obs {
  position: relative;
  padding-left: 2.5rem;
  border-left: 1px solid rgba(62,207,207,0.18);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 1s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.pb-obs.in {
  opacity: 1;
  transform: translateX(0);
}
.pb-obs[data-idx="1"] { transition-delay: 0s; }
.pb-obs[data-idx="2"] { transition-delay: 0.3s; }
.pb-obs[data-idx="3"] { transition-delay: 0.6s; }

.pb-obs-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  line-height: 1.55;
  color: rgba(232, 240, 243, 0.92);
  letter-spacing: -0.005em;
  margin-bottom: 0.8rem;
}
.pb-obs-text strong {
  font-weight: 500;
  color: #e8f0f3;
}
.pb-obs-text em {
  font-style: italic;
  color: rgba(62,207,207,0.92);
}

.pb-obs-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(62,207,207,0.7);
  display: inline-block;
}

.pb-conclusion {
  border-top: 1px solid rgba(62,207,207,0.18);
  padding-top: 3rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.55;
  color: rgba(232, 240, 243, 0.88);
  letter-spacing: -0.005em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1.2s cubic-bezier(0.25,0.46,0.45,0.94) 0.9s,
              transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94) 0.9s;
}
.pb-conclusion.in {
  opacity: 1;
  transform: translateY(0);
}
.pb-conclusion strong {
  font-style: normal;
  font-weight: 400;
  color: #3ecfcf;
}

@media (max-width: 700px) {
  .pb-obs { padding-left: 1.4rem; }
  .pb-observations { gap: 2.4rem; }
}


/* ═══════════════════════════════════════════════════════════════════════
   v2 — STORY ASYMMETRIC GRID (5fr 6fr → 4fr 6fr)
   ═══════════════════════════════════════════════════════════════════════ */
.home-story {
  grid-template-columns: 4fr 6fr !important;
}


/* ═══════════════════════════════════════════════════════════════════════
   v2 — INSIGHTS 3-up (instead of 2-up)
   ═══════════════════════════════════════════════════════════════════════ */
.hi-articles--triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(62,207,207,0.08);
}
.hi-articles--triple .hi-article {
  padding: 2.8rem 2.2rem;
}
.hi-articles--triple .hi-a-title {
  font-size: 1.45rem;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .hi-articles--triple {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════════════════
   v2 — MANIFESTO PILLARS (boxed grid → inline text row)
   ═══════════════════════════════════════════════════════════════════════ */
.manifesto-pillars {
  display: flex !important;
  justify-content: center;
  align-items: baseline;
  gap: 0.7rem;
  border: none !important;
  max-width: none !important;
  margin: 0 auto 3rem !important;
}
.manifesto-pillars .mp-item {
  flex: 0 0 auto !important;
  padding: 0 !important;
  border: none !important;
  border-right: none !important;
  text-align: center;
}
.manifesto-pillars .mp-item:not(:last-child)::after {
  content: '·';
  display: inline-block;
  margin-left: 0.7rem;
  color: rgba(62,207,207,0.4);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}
.manifesto-pillars .mp-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(62,207,207,0.85);
  letter-spacing: 0.02em;
}

/* ============================================================
   .marinox-brief — Fix 2.3b (Phase 2)
   Operational strip placed between Long-View Strata and the
   Proof Bar. Closes the holding-level operational gap. Calm
   typographic register, no canvases. Reads as: identity →
   observation (Proof Bar) → construction (Ventures Showcase).
   ============================================================ */
.marinox-brief {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, #02060a 0%, #03080c 100%);
  border-top: 1px solid rgba(62,207,207,0.06);
  border-bottom: 1px solid rgba(62,207,207,0.06);
}
.mb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}
.mb-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(62,207,207,0.85);
  text-align: center;
  margin-bottom: 3rem;
  display: block;
}
.mb-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(62,207,207,0.18);
  border-bottom: 1px solid rgba(62,207,207,0.18);
}
.mb-stat {
  padding: 2.2rem 1.8rem;
  border-right: 1px solid rgba(62,207,207,0.10);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mb-stat:last-child { border-right: none; }
.mb-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(62,207,207,0.75);
}
.mb-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  color: #e8f0f3;
  letter-spacing: -0.005em;
}
.mb-stat-value em {
  font-style: italic;
  color: #3ecfcf;
}
.mb-stat-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(200,216,222,0.62);
  line-height: 1.55;
  margin-top: 0.2rem;
}
.mb-geography {
  margin-top: 2.5rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(232,240,243,0.78);
  letter-spacing: -0.005em;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.mb-geography .mb-geo-label {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(62,207,207,0.75);
  display: inline-block;
  margin-right: 0.7rem;
}

@media (max-width: 880px) {
  .mb-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .mb-stat:nth-child(1),
  .mb-stat:nth-child(2) {
    border-bottom: 1px solid rgba(62,207,207,0.10);
  }
  .mb-stat:nth-child(2) { border-right: none; }
  .mb-stat:nth-child(4) { border-right: none; }
}
@media (max-width: 540px) {
  .mb-stats { grid-template-columns: 1fr; }
  .mb-stat {
    border-right: none;
    border-bottom: 1px solid rgba(62,207,207,0.10);
  }
  .mb-stat:last-child { border-bottom: none; }
}
