/* ============================================================
   AXIA — Site stylesheet  (Flowing Edition)
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "ss02", "cv11", "tnum";
  font-variant-ligatures: common-ligatures contextual;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
  letter-spacing: 0.005em;
}

img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(214,162,74,0.32); color: var(--ivory-smoke); }

/* ============================================================
   ATMOSPHERIC BACKGROUND — one continuous canvas, no breaks
   ============================================================ */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.atmosphere::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(60% 45% at 75% 12%, rgba(214,162,74,0.10) 0%, rgba(214,162,74,0) 60%),
    radial-gradient(50% 40% at 15% 60%, rgba(158,162,168,0.05) 0%, rgba(158,162,168,0) 60%),
    radial-gradient(70% 50% at 50% 110%, rgba(214,162,74,0.06) 0%, rgba(214,162,74,0) 70%),
    linear-gradient(180deg, #08080A 0%, #050505 30%, #08080A 70%, #0A0A0C 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 200%;
  background-position: 0 0, 0 0, 0 0, 0 0;
  filter: saturate(0.95);
}
[data-theme="light"] .atmosphere::before {
  background:
    radial-gradient(60% 45% at 75% 12%, rgba(169,120,31,0.10) 0%, rgba(169,120,31,0) 60%),
    radial-gradient(50% 40% at 15% 60%, rgba(11,11,13,0.04) 0%, rgba(11,11,13,0) 60%),
    linear-gradient(180deg, #FAF8F2 0%, #F2F0EB 50%, #ECE9E0 100%);
}

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: var(--tracking-display);
  line-height: 0.98;
  margin: 0;
  font-stretch: 100%;
}
h1.display { font-size: clamp(54px, 9vw, 144px); font-weight: 300; }
h2.display { font-size: clamp(40px, 6vw, 92px); font-weight: 300; }
h3.display { font-size: clamp(28px, 3.4vw, 52px); font-weight: 400; }

/* "futuristic accent" — Chakra Petch in italic for emphasis */
.f-em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
}
.f-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 56ch;
  font-weight: 300;
}

.small { font-size: 12px; color: var(--text-faint); letter-spacing: 0.06em; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(120px, 18vw, 260px);
  position: relative;
}
.section--tight { padding-block: clamp(80px, 12vw, 160px); }

/* Flowing transitions between sections — no hard borders */
.flow-bridge {
  position: absolute;
  left: 0; right: 0;
  height: clamp(120px, 18vh, 220px);
  pointer-events: none;
  z-index: 2;
}
.flow-bridge--top { top: -1px; background: var(--flow-top); }
.flow-bridge--bottom { bottom: -1px; background: var(--flow-bottom); }

/* Subtle ambient orb to make sections breathe into each other */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.ambient-orb--gold {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(214,162,74,0.20) 0%, rgba(214,162,74,0) 70%);
}
.ambient-orb--steel {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(158,162,168,0.10) 0%, rgba(158,162,168,0) 70%);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 80;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--dur-2) var(--ease-out), backdrop-filter var(--dur-2) var(--ease-out);
}
.nav.is-scrolled {
  background: color-mix(in oklab, var(--bg) 65%, transparent);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
}
.nav.is-scrolled::after {
  content: "";
  position: absolute;
  left: 10%; right: 10%; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,162,74,0.30), transparent);
}
.nav__brand { display: inline-flex; align-items: center; gap: 14px; color: var(--ivory-smoke); }
.nav__brand svg { width: 24px; height: auto; }
.nav__brand-name {
  font-family: var(--font-display);
  letter-spacing: 0.38em;
  font-size: 13px;
  font-weight: 500;
  color: var(--ivory-smoke);
}
.nav__brand-sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.nav__links { display: flex; gap: 36px; align-items: center; }
.nav__link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color var(--dur-1) var(--ease-out);
}
.nav__link:hover { color: var(--ivory-smoke); }
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-2) var(--ease-out);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta { display: inline-flex; gap: 12px; align-items: center; }
.nav__toggle {
  width: 38px; height: 38px;
  display: none;
  align-items: center; justify-content: center;
}
.nav__toggle span { width: 16px; height: 1px; background: var(--text); display: block; position: relative; }
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1px; background: var(--text);
}
.nav__toggle span::before { top: -5px; }
.nav__toggle span::after { top: 5px; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__cta .btn--ghost { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --bg-btn: transparent;
  --fg-btn: var(--ivory-smoke);
  --bd-btn: rgba(217,217,217,0.18);
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 24px;
  background: var(--bg-btn);
  color: var(--fg-btn);
  border: 1px solid var(--bd-btn);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: color var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.btn .arrow {
  width: 14px; height: 10px;
  display: inline-block;
  transition: transform var(--dur-2) var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  --bg-btn: var(--gold);
  --fg-btn: #0B0B0D;
  --bd-btn: var(--gold);
  background-image: var(--grad-gold);
  background-size: 200% 100%;
  background-position: 0% 50%;
  transition: background-position var(--dur-3) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.btn--primary:hover { background-position: 100% 50%; }
.btn--primary::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 900ms var(--ease-out);
  mix-blend-mode: overlay;
}
.btn--primary:hover::after { transform: translateX(100%); }

.btn--ghost:hover { --bd-btn: var(--gold); color: var(--ivory-smoke); }
.btn--sm { padding: 12px 18px; font-size: 10.5px; letter-spacing: 0.28em; }

/* ============================================================
   HERO  — flows directly into the next section, no border
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: end;
  padding-block: 140px 80px;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media video,
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) contrast(1.06);
}
/* multi-layer vignette + flow-out bottom */
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.10) 30%, rgba(5,5,5,0.10) 60%, rgba(5,5,5,0.6) 88%, rgba(5,5,5,1) 100%),
    radial-gradient(80% 60% at 30% 40%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 3; width: 100%; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.hero__index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--text-faint);
  display: flex; gap: 18px;
  text-transform: uppercase;
}
.hero__index span:first-child { color: var(--gold); }

.hero__headline { margin-top: 28px; }
.hero__headline .display {
  font-weight: 300;
}
.hero__sub {
  margin-top: 32px;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 300;
  line-height: 1.7;
}
.hero__actions {
  margin-top: 40px;
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__meta {
  display: flex; flex-direction: column; gap: 18px;
  justify-self: end;
  align-self: end;
}
.hero__meta-row {
  display: flex; align-items: center; gap: 16px;
  min-height: 24px;
}
.hero__meta-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--text-faint);
  min-width: 100px;
}
.hero__meta-value {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text);
  letter-spacing: 0.04em;
}
.hero__meta-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(214,162,74,0.14); animation: pulse 2.4s var(--ease-in-out) infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(214,162,74,0.14); }
  50% { box-shadow: 0 0 0 8px rgba(214,162,74,0.05); }
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase;
}
.scroll-cue__line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 50%, transparent 100%);
  position: relative; overflow: hidden;
}
.scroll-cue__line::after {
  content: ""; position: absolute; top: -20px; left: 0; width: 1px; height: 20px;
  background: linear-gradient(180deg, transparent, var(--ivory-smoke));
  animation: scrollSweep 2.6s var(--ease-in-out) infinite;
}
@keyframes scrollSweep {
  0%   { top: -20px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__meta { justify-self: start; }
  .scroll-cue { display: none; }
  h1.display { font-size: clamp(44px, 11vw, 72px); }
  .hero { padding-block: 120px 60px; }
}

/* ============================================================
   POSITIONING — flows in from hero
   ============================================================ */
.positioning {
  position: relative;
  background: transparent;
}
.positioning__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}
.positioning__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.positioning__media img {
  width: 100%; height: 100%; object-fit: cover;
}
/* fade edges into the page so there's no hard image rectangle */
.positioning__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 120% at 50% 50%, rgba(5,5,5,0) 45%, rgba(5,5,5,0.65) 90%, rgba(5,5,5,1) 110%),
    linear-gradient(180deg, rgba(5,5,5,0.30) 0%, rgba(5,5,5,0.0) 30%, rgba(5,5,5,0.0) 70%, rgba(5,5,5,0.55) 100%);
}
.positioning__caption {
  position: absolute; left: 22px; bottom: 22px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--text);
  z-index: 2;
}
.positioning__body p {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.7;
  font-weight: 300;
  max-width: 56ch;
}
.positioning__metrics {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.metric { position: relative; padding: 20px 0 0; }
.metric::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 32px; height: 1px;
  background: var(--gold);
}
.metric__value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 4vw, 64px);
  letter-spacing: var(--tracking-display);
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metric__label {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--text-faint);
}

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

/* ============================================================
   CAPABILITIES — no bordered list, items flow
   ============================================================ */
.capabilities { position: relative; }
.capabilities__head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(64px, 8vw, 120px);
}
.capabilities__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
/* single soft running rail instead of hairlines per row */
.capabilities__list::before {
  content: "";
  position: absolute;
  left: 56px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(214,162,74,0.20) 12%, rgba(217,217,217,0.10) 50%, rgba(214,162,74,0.20) 88%, transparent 100%);
}
.capability {
  display: grid;
  grid-template-columns: 80px 1.1fr 1.6fr 0.7fr;
  gap: 36px;
  padding: 44px 4px;
  align-items: start;
  position: relative;
  transition: transform var(--dur-3) var(--ease-out);
}
.capability:hover { transform: translateX(6px); }
.capability::after {
  content: "";
  position: absolute;
  left: 56px; top: 50%; width: 24px; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-2) var(--ease-out);
}
.capability:hover::after { transform: scaleX(1); }
.capability__index {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--gold);
  position: relative;
}
.capability__index::before {
  content: "";
  position: absolute;
  left: 52px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 0 1px var(--gold), 0 0 0 4px var(--bg);
  z-index: 2;
}
.capability__title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: var(--tracking-display);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.1;
  margin: 0;
  color: var(--text);
}
.capability__desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
  max-width: 52ch;
}
.capability__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-faint);
  justify-content: flex-end;
  text-align: right;
}
.capability__tags span { padding: 4px 0; }
.capability__tags span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: var(--gold);
}

@media (max-width: 1000px) {
  .capability { grid-template-columns: 60px 1fr; gap: 16px; }
  .capability__desc, .capability__tags { grid-column: 1 / -1; }
  .capability__tags { justify-content: flex-start; text-align: left; }
  .capabilities__list::before, .capability::after, .capability__index::before { display: none; }
}
@media (max-width: 880px) {
  .capabilities__head { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   SIGNATURE ADVANTAGE — borderless flowing layout
   ============================================================ */
.signature { position: relative; }
.signature__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 100px);
  align-items: center;
}
.signature__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.signature__media img { width: 100%; height: 100%; object-fit: cover; }
.signature__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 120% at 50% 50%, rgba(5,5,5,0) 50%, rgba(5,5,5,0.55) 95%, rgba(5,5,5,1) 110%),
    linear-gradient(180deg, rgba(5,5,5,0.25) 0%, rgba(5,5,5,0) 30%, rgba(5,5,5,0) 70%, rgba(5,5,5,0.5) 100%);
}
.signature__pillars {
  margin-top: 48px;
  display: grid;
  gap: 0;
  position: relative;
}
.signature__pillars::before {
  content: "";
  position: absolute;
  left: 20px; top: 12px; bottom: 12px; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(214,162,74,0.25), rgba(217,217,217,0.08), rgba(214,162,74,0.25), transparent);
}
.pillar {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 28px;
  padding: 26px 0;
  align-items: baseline;
  position: relative;
}
.pillar__idx {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--gold);
  position: relative;
  background: var(--bg);
  padding: 4px 0;
  z-index: 2;
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.5vw, 26px);
  letter-spacing: var(--tracking-display);
  margin: 0 0 8px 0;
  color: var(--text);
}
.pillar__text { margin: 0; color: var(--text-muted); font-size: 14.5px; line-height: 1.7; font-weight: 300; max-width: 50ch; }

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

/* ============================================================
   CINEMATIC BRAND  — full bleed flowing video
   ============================================================ */
.cinematic {
  position: relative;
  min-height: 92svh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-block: clamp(80px, 12vw, 160px);
}
.cinematic__media { position: absolute; inset: 0; z-index: 0; }
.cinematic__media video,
.cinematic__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}
/* heavy edge-fades so this section fuses with neighbors */
.cinematic__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,1) 0%, rgba(5,5,5,0.35) 18%, rgba(5,5,5,0.20) 50%, rgba(5,5,5,0.45) 82%, rgba(5,5,5,1) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0) 50%, rgba(5,5,5,0.55) 100%);
}
.cinematic__inner { position: relative; z-index: 1; max-width: 760px; }
.cinematic__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 72px);
  letter-spacing: var(--tracking-display);
  line-height: 1.04;
  margin: 28px 0 0 0;
  color: var(--ivory-smoke);
}
.cinematic__sub {
  margin-top: 32px;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================================
   STRATEGIC FOCUS  — flowing organic grid, no card borders
   ============================================================ */
.strategic { position: relative; }
.strategic__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 100px);
}
.strategic__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}
.venture {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex; flex-direction: column;
  transition: transform var(--dur-3) var(--ease-out);
}
.venture:hover { transform: translateY(-6px); }
.venture__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.4s var(--ease-out), filter var(--dur-3) var(--ease-out);
  filter: saturate(0.9) contrast(1.05);
}
.venture:hover .venture__img { transform: scale(1.05); filter: saturate(1) contrast(1.1); }
/* radial vignette to dissolve the rectangular edges */
.venture::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 120% at 50% 100%, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.30) 50%, rgba(5,5,5,0.15) 80%, rgba(5,5,5,0) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.25) 0%, rgba(5,5,5,0) 35%, rgba(5,5,5,0) 65%, rgba(5,5,5,0.55) 100%);
  pointer-events: none;
}
.venture__body { position: relative; z-index: 2; margin-top: auto; padding: 30px; }
.venture__index {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.32em;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
}
.venture__index::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(214,162,74,0.5), rgba(214,162,74,0.0)); }
.venture__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 1.9vw, 32px);
  letter-spacing: var(--tracking-display);
  margin: 14px 0 10px 0;
  line-height: 1.06;
  color: var(--ivory-smoke);
}
.venture__desc {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
  max-width: 38ch;
}
.venture--lg { grid-column: span 7; min-height: 560px; }
.venture--md { grid-column: span 5; min-height: 560px; }
.venture--sm { grid-column: span 4; min-height: 420px; }
.venture--wide { grid-column: span 12; min-height: 380px; }

@media (max-width: 1000px) {
  .venture--lg, .venture--md { grid-column: span 12; min-height: 420px; }
  .venture--sm { grid-column: span 6; min-height: 340px; }
  .venture--wide { min-height: 320px; }
}
@media (max-width: 640px) {
  .strategic__head { grid-template-columns: 1fr; }
  .venture--sm { grid-column: span 12; }
}

/* ============================================================
   FINAL CTA — full bleed with edge-fades
   ============================================================ */
.final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(140px, 16vw, 240px);
}
.final__bg { position: absolute; inset: 0; z-index: 0; }
.final__bg img, .final__bg video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}
.final__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% 60%, rgba(5,5,5,0.45) 0%, rgba(5,5,5,0.92) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0) 25%, rgba(5,5,5,0) 75%, rgba(5,5,5,0.6) 100%);
}
.final__inner { position: relative; z-index: 1; }
.final__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 112px);
  letter-spacing: var(--tracking-display);
  line-height: 1;
  margin: 28px auto 0;
  max-width: 14ch;
  color: var(--ivory-smoke);
}
.final__sub {
  margin: 28px auto 44px;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  padding-block: 80px 36px;
}
.footer::before {
  content: "";
  position: absolute;
  left: 10%; right: 10%; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,162,74,0.30), transparent);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__brand { display: flex; flex-direction: column; gap: 20px; }
.footer__brand svg { width: 130px; height: auto; color: var(--ivory-smoke); }
.footer__lead {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 38ch;
  font-weight: 300;
}
.footer__col h6 {
  margin: 0 0 22px 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer__col a {
  font-size: 14px; color: var(--text-muted);
  transition: color var(--dur-1) var(--ease-out);
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-faint);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer__bottom .gold-dot { color: var(--gold); }

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; }
}

/* ============================================================
   Theme toggle
   ============================================================ */
.theme-toggle {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color var(--dur-2) var(--ease-out);
  color: var(--text-muted);
}
.theme-toggle:hover { color: var(--gold); }
.theme-toggle svg { width: 14px; height: 14px; color: currentColor; }

/* ============================================================
   Reveal on scroll — softer, flowing
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1200ms var(--ease-out), transform 1200ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"].is-in { transition-delay: 100ms; }
.reveal[data-delay="2"].is-in { transition-delay: 200ms; }
.reveal[data-delay="3"].is-in { transition-delay: 300ms; }
.reveal[data-delay="4"].is-in { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue__line::after, .hero__meta-row .dot { animation: none; }
  video[autoplay] { display: none; }
}

/* ============================================================
   Grain
   ============================================================ */
.grain {
  position: fixed; inset: 0; z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}
[data-theme="light"] .grain { opacity: 0.04; mix-blend-mode: multiply; }

/* ============================================================
   Smooth scroll wrapper (Lenis-like)
   ============================================================ */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
