/* ============================================================
   Search.inc landing page
   ============================================================ */

/* ---- Fonts ---- */
@font-face {
  font-family: "Codec Pro";
  src: url("../fonts/CodecPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Codec Pro";
  src: url("../fonts/codec-pro/Codec Pro ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ethnocentric";
  src: url("../fonts/ethnocentric/Ethnocentric-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --indigo: #2b2fb8;
  --indigo-2: #3438d6;
  --navy: #1a1a8c;
  --sky: #7ecbe8;
  --nav-accent: #01AFF9;
  --mint: #c9fbf1;
  --light-blue: #93bfe0;
  --ink: #17171b;
  --card: #1f1f24;
  --text: #eef2fc;
  --text-dim: #b9c2d8;
  --radius: 14px;

  --font-ethno: "Ethnocentric", "Codec Pro", sans-serif;
  --font-body: "Codec Pro", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1200px;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --nav-h: 4.75rem;
}

/* ---- Reset / base ---- */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; }

html {
  font-family: var(--font-body);
  line-height: 1.55;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 72px; /* sticky nav offset for in-page anchors */
}

body {
  background: var(--ink);
  color: var(--text);
}

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

.container {
  width: 100%;
  /* 1200px of *content* + gutters outside it, so the content fills the full
     --maxw on desktop while narrow screens keep an edge gutter */
  max-width: calc(var(--maxw) + 2 * var(--pad));
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn--primary   { background: var(--mint); color: var(--navy); }
.btn--secondary { background: #111; color: var(--mint); }
.btn--tertiary  { background: var(--indigo); color: #fff; }

.link-underline {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

/* ============================================================
   Nav (sticky)
   ============================================================ */
/* Skip link: visible on keyboard focus only */
.skip-link {
  position: absolute;
  left: var(--pad);
  top: 0.75rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--indigo);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  /* Figma: px-28 pt-7 pb-5 */
  padding: 1.75rem clamp(1.25rem, 5.833vw, 7rem) 1.25rem;
}
/* Keep landmark <nav> out of the flex layout so existing .nav__links sizing still applies */
.nav__inner > nav {
  display: contents;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  width: 180px;
  height: 17px;
  max-width: 100%;
}
.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  padding: 0;
  gap: 3.5rem; /* gap-14 */
  list-style: none;
}
.nav__links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 3.2px;
  white-space: nowrap;
  color: var(--nav-accent);
}
.nav__links a:hover { color: #ffffff; }
.nav__links a:focus-visible {
  outline: 2px solid var(--nav-accent);
  outline-offset: 4px;
}
.nav__toggle {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -0.5rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--nav-accent);
  cursor: pointer;
}
.nav__toggle-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle-bar:nth-child(1) { transform: translate(-50%, -7px); }
.nav__toggle-bar:nth-child(2) { transform: translate(-50%, -50%); }
.nav__toggle-bar:nth-child(3) { transform: translate(-50%, 5px); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.nav__toggle:focus-visible {
  outline: 2px solid var(--nav-accent);
  outline-offset: 4px;
}

/* ============================================================
   Generic section helpers
   ============================================================ */
.section { padding-block: var(--section-y); }

.eyebrow {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: var(--sky);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
}
/* Primary section headings (The Problem/Solution/Shift, Protect, Beta) */
.sec-head {
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
}
.section-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: var(--text-dim);
  margin-top: 0.6rem;
}

/* Band variants */
.band--indigo { background: var(--indigo); color: #fff; text-align: center; }
.band--indigo .btn-row { justify-content: center; }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ============================================================
   Sticky video scenes (Shopify Editions-style)
   Absolute full-height bg wrapper + sticky 100vh media so the
   video stays fixed while scene content scrolls over it, then
   moves away with the section when the next scene arrives.
   ============================================================ */
.scene {
  position: relative;
  isolation: isolate;
}
.scene__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.scene__media {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #0c0c10; /* fallback while poster/video loads */
}
.scene__media video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scene__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(9, 12, 30, 0.55), rgba(9, 12, 30, 0.75));
}
.scene__content {
  position: relative;
  z-index: 1;
}

/* Title intros that used to be short media bands */
.scene__intro {
  display: grid;
  align-items: center;
  min-height: calc(60vh + 200px);
  padding-block: var(--section-y);
}
.scene__body {
  padding-top: 0;
}

/* Protect: tall section, video bg under a translucent blue wash */
.scene--protect .scene__media::after {
  /* vibrant royal-blue wash, matching the Figma preview */
  background: rgba(30, 42, 170, 0.8);
}
.scene__intro--protect {
  /* Figma: 860px tall at 1920px wide */
  min-height: clamp(28rem, 44.8vw, 53.75rem);
  color: #f4f4f5;
}
/* Figma: full-width row with px-40 gutters, columns vertically centered */
.scene__intro--protect.two-col,
.scene__intro--protect .two-col {
  max-width: 1920px;
  padding-inline: clamp(1.25rem, 8.333vw, 10rem);
  align-items: center;
}
.scene__intro--protect .sec-head {
  font-size: clamp(2.25rem, 3.125vw, 3.75rem); /* text-6xl */
  font-weight: 600;
  color: #f4f4f5;
  max-width: 663px;
}
.scene__intro--protect .two-col p {
  color: #f4f4f5;
  font-size: clamp(1.25rem, 1.5625vw, 1.875rem); /* text-3xl */
  line-height: 1.2; /* leading-8 */
  font-weight: 400;
}

/* ============================================================
   Hero
   Figma: 1920×900, px-40 stage + CTA stack
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000;
  color: #f4f4f5;
  --hero-globe-gap-top: 0.35rem;
  --hero-globe-gap-bottom: 2.5rem;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1920px;
  min-height: min(56.25rem, calc(100svh - 5rem)); /* 900px, but never taller than the viewport */
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 8.333vw, 10rem); /* px-40 */
  padding-block: 1.5rem;
}
.hero__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 100%;
  gap: var(--hero-globe-gap-top);
}
.hero__logo {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
}
.hero__logo img {
  width: min(804px, 100%);
  height: auto;
}
.hero__globe {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  container-type: inline-size;
  width: min(37.5rem, 90vw); /* 600px — wider than the overlay text */
  aspect-ratio: 600 / 353;
  margin: 0 0 var(--hero-globe-gap-bottom);
  text-decoration: none;
  color: inherit;
}
.hero__globe-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero__globe-label {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 52%;
  font-family: var(--font-ethno);
  font-size: clamp(0.65rem, 3.6cqi, 1.25rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.025em; /* tracking-wide */
  text-align: center;
  text-transform: lowercase;
  color: #5bb7fa;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.hero__globe:hover .hero__globe-label,
.hero__globe:focus-visible .hero__globe-label {
  color: #fff;
  text-shadow:
    0 0 8px rgba(91, 183, 250, 0.95),
    0 0 18px rgba(91, 183, 250, 0.55);
}
.hero__globe:focus-visible {
  outline: 2px solid var(--nav-accent);
  outline-offset: 8px;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem; /* gap-7 */
  width: 100%;
  padding-block: 0 1rem;
}
.hero__headline {
  width: 100%;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.875vw, 1.875rem); /* text-3xl */
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 6px;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  color: #f4f4f5; /* zinc-100 */
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.75rem; /* gap-7 */
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem; /* p-7 */
  font-family: var(--font-body);
  font-size: 1.5rem; /* text-2xl */
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, opacity 0.2s ease;
}
.hero__btn:hover { transform: translateY(-2px); opacity: 0.92; }
.hero__btn:focus-visible {
  outline: 2px solid var(--nav-accent);
  outline-offset: 4px;
}
.hero__btn--primary {
  background: var(--nav-accent);
  color: #18181b; /* zinc-900 */
}
.hero__btn--secondary {
  background: #1e40af; /* blue-800 */
  color: #fff;
}
.hero__origin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem; /* gap-7 */
  width: 100%;
  margin: 0;
  padding-inline: 0.625rem; /* px-2.5 */
  font-family: var(--font-body);
  font-size: 1.25rem; /* text-xl */
  font-weight: 400;
  line-height: 1.25rem; /* leading-5 */
  text-align: center;
  color: #f4f4f5;
}
.hero__origin span {
  white-space: nowrap;
}

/* ============================================================
   The Perfect Storm / The Problem & The Shift
   Figma: 1920 artboard, px-28 / py-24 title, 4× w-96 cards,
   black comparison card with overlapping callouts
   ============================================================ */
.storm {
  position: relative;
  color: #f4f4f5;
  background: rgb(30 64 175 / 35%); /* #1e40af */
  padding-block: clamp(2rem, 2.917vw, 3.5rem); /* py-14 */
}
.storm__inner {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.storm__title {
  width: 100%;
  margin: 0;
  padding: clamp(3rem, 5vw, 6rem) clamp(1.25rem, 5.833vw, 7rem); /* py-24 px-28 */
  color: #f4f4f5;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 3.125vw, 3.75rem); /* text-6xl */
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
}
.storm__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4rem, 6vw, 8rem);
  width: 100%;
}

/* ---- Feature cards ---- */
.storm__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  gap: clamp(1.25rem, 2.917vw, 3.5rem); /* gap-14 */
  width: 100%;
  margin: 0;
  padding: 0 clamp(1.25rem, 5.833vw, 7rem);
  list-style: none;
}
.storm-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.storm-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 30px;
}
.storm-card figcaption {
  flex: 1;
  padding: 0.625rem 0;
  color: #f4f4f5;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}
.storm-card__line {
  display: block;
}
.storm-card--long .storm-card__line {
  white-space: nowrap;
}

/* ---- Old vs New comparison ---- */
.storm__models {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  align-self: stretch;
  margin-inline: clamp(1.25rem, 5.833vw, 7rem); /* px-28 */
}
.storm__compare {
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 0;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  width: min(100%, calc(864px + 16rem));
  min-width: 0;
  padding: 2.75rem clamp(1.5rem, 3.646vw, 3.5rem) 2rem;
  background: #000;
  border-radius: 30px;
}
.storm__eyebrow {
  width: 100%;
  margin: 0;
  padding-block: 0.85rem 1.25rem;
  color: #f5f5f5;
  font-size: clamp(0.85rem, 1.042vw, 1.25rem); /* text-xl */
  font-weight: 400;
  letter-spacing: 0.22em; /* tracking-[4.40px] at 20px */
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}
.storm__pillars {
  width: min(864px, 100%);
  height: auto;
  border-radius: 30px;
}
.storm__ways {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 1.458vw, 1.75rem); /* gap-7 */
  width: 100%;
}
.storm__way {
  flex: 1 1 0;
  max-width: 470px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding-block: 0.625rem;
  text-align: center;
}
.storm__way-title {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 3rem); /* text-5xl */
  font-weight: 600;
  line-height: 1.15;
}
.storm__way-title span {
  font-size: clamp(1.15rem, 1.5625vw, 1.875rem); /* text-3xl */
  font-weight: 400;
  text-transform: uppercase;
}
.storm__way--old .storm__way-title { color: #c50301; }
.storm__way--new .storm__way-title { color: #01aff9; }
.storm__way-sub {
  margin: 0;
  color: #f4f4f5;
  font-size: clamp(1rem, 1.042vw, 1.25rem); /* text-xl */
  font-weight: 400;
  line-height: 1.6;
}
.storm__vs {
  flex: 0 0 auto;
  margin: 0;
  color: #d6d3d1; /* stone-300 */
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.storm__callouts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem; /* gap-5 */
  z-index: 1;
  width: max-content;
  max-width: none;
  min-width: min-content;
  padding-block: 1rem;
}
.storm__callouts--old {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-items: flex-start;
  padding-left: 1.25rem;
}
.storm__callouts--new {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-items: flex-end;
  padding-right: 1.25rem;
}

.storm-callout {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: max-content;
  padding: 1.25rem 1.5rem; /* py-5 px-7 */
  border-radius: 20px;
}
.storm-callout h3,
.storm-callout p {
  white-space: nowrap;
}
.storm-callout h3 {
  font-size: clamp(0.95rem, 1.042vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
}
.storm-callout p {
  color: #f4f4f5;
  font-size: clamp(0.95rem, 1.042vw, 1.25rem);
  font-weight: 400;
  line-height: 1.25;
}
.storm-callout--old {
  background: rgba(153, 27, 27, 0.25); /* red-800/25 */
  border: 1px solid #ef4444; /* red-500 */
  text-align: left;
}
.storm-callout--old h3 { color: #f87171; } /* red-400 */
.storm-callout--new {
  background: rgba(30, 64, 175, 0.5); /* blue-800/50 */
  border: 1px solid #7dd3fc; /* sky-300 */
  text-align: right;
}
.storm-callout--new h3 { color: #67e8f9; } /* cyan-300 */

/* ---- Closing tagline ---- */
.storm__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem; /* gap-7 */
  width: 100%;
  padding: clamp(2rem, 2.917vw, 3.5rem) clamp(1.25rem, 5.833vw, 7rem) clamp(3rem, 5.833vw, 7rem); /* pt-14 pb-28 */
  text-align: center;
}
.storm__close-lead {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.5625vw, 1.875rem); /* text-3xl */
  font-weight: 600;
  letter-spacing: clamp(0.04em, 0.31vw, 6px); /* tracking-[6px] */
  line-height: 1.35;
  text-transform: uppercase;
  text-wrap: balance;
}
.storm__close-sub {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.5625vw, 1.875rem);
  font-weight: 400;
  line-height: 1.35;
  text-wrap: balance;
}

/* Below desktop: comparison image on top, callouts in two columns below */
@media (max-width: 1399px) {
  .storm__models {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "compare compare"
      "old     new";
    row-gap: 1.5rem;
    column-gap: 1.25rem;
    width: 100%;
    max-width: 100%;
  }
  .storm__compare {
    grid-area: compare;
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
  .storm__callouts {
    width: max-content;
    max-width: 100%;
    min-width: 0;
    padding-block: 0;
    align-items: stretch;
  }
  .storm-callout {
    width: auto;
    max-width: none;
  }
  .storm-callout h3,
  .storm-callout p {
    white-space: normal;
  }
  .storm__callouts--old {
    grid-area: old;
    justify-self: start;
    align-items: stretch;
    padding-left: 0;
  }
  .storm__callouts--new {
    grid-area: new;
    justify-self: end;
    align-items: stretch;
    padding-right: 0;
  }
  .storm__eyebrow {
    padding-block: 0.25rem 0.5rem;
  }
}

/* Tablet: 2×2 cards, smaller thumbs, more breathing room */
@media (max-width: 1199px) {
  .storm__cards {
    grid-template-columns: repeat(2, minmax(0, 17.5rem));
    justify-content: center;
    column-gap: 2.25rem;
    row-gap: 2.75rem;
    padding-inline: 1.5rem;
  }
  .storm-card {
    gap: 1.15rem;
  }
  .storm-card figcaption {
    font-size: 1.25rem;
  }
  .storm__models {
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3.5rem);
    width: 100%;
    box-sizing: border-box;
  }
  .storm-card img {
    border-radius: 1.5rem;
  }
}

/* Phone: single-column cards; old callouts, then new */
@media (max-width: 767px) {
  .storm__title {
    padding-block: 2.5rem;
  }
  .storm__content {
    gap: 3.5rem;
  }
  .storm__cards {
    grid-template-columns: minmax(0, 17.5rem);
    justify-content: center;
    max-width: none;
    row-gap: 3rem;
    padding-inline: 1.5rem;
  }
  .storm-card {
    gap: 1rem;
  }
  .storm-card figcaption {
    font-size: 1.2rem;
  }
  .storm-card img,
  .storm__pillars,
  .storm__compare {
    border-radius: 1.25rem;
  }
  .storm__models {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "compare"
      "old"
      "new";
    row-gap: 1.25rem;
    margin-inline: 0;
    padding-inline: 1.25rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .storm__compare {
    width: 100%;
    min-width: 0;
    padding: 1.25rem 1rem 1.5rem;
  }
  .storm__eyebrow {
    padding-block: 0.25rem 0.5rem;
    letter-spacing: 0.12em;
  }
  .storm__ways {
    align-items: flex-start;
    gap: 0.5rem;
  }
  .storm__way {
    justify-content: flex-start;
    min-width: 0;
    padding-block: 0.35rem;
  }
  .storm__way-title {
    font-size: 1.15rem;
    min-height: 2.5em;
  }
  .storm__way-title span {
    display: block;
    font-size: 0.85em;
  }
  .storm__way-sub {
    font-size: 0.9rem;
    line-height: 1.35;
  }
  .storm__way-sub-rest {
    display: block;
  }
  .storm__vs {
    align-self: flex-start;
    padding-top: 0.35em;
    font-size: 1.15rem;
  }
  .storm-callout {
    padding: 1rem 1.15rem;
    width: auto;
  }
  .storm-callout--old {
    text-align: left;
  }
  .storm-callout--new {
    text-align: right;
  }
  .storm__callouts--old {
    justify-self: start;
    align-items: stretch;
  }
  .storm__callouts--new {
    justify-self: end;
    align-items: stretch;
  }
  .storm__close {
    gap: 1.25rem;
    padding-inline: 1.25rem;
  }
}

/* Big statement band — Figma: #1A2285, p-40, gap-7, teal-100 xl / zinc-100 5xl */
.statement {
  background: #1a2285;
  text-align: center;
  padding-block: clamp(3.5rem, 8.333vw, 10rem);
  padding-inline: clamp(1.25rem, 8.333vw, 10rem);
}
.statement .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem; /* gap-7 between eyebrow and titles */
  width: 100%;
  max-width: 1920px;
  padding-inline: 0;
}
.statement .eyebrow {
  width: 100%;
  margin-bottom: 0;
  color: #ccfbf1;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25rem;
  text-align: center;
}
.statement__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.statement .section-title {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  color: #f4f4f5;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

/* ============================================================
   User-First
   ============================================================ */
.user-first {
  padding-block: 0;
}

.user-first__copy {
  background: transparent;
  padding-block: clamp(3rem, 5.833vw, 7rem); /* py-28 */
}
/* Figma: copy spans full width with px-40 gutters */
.user-first__copy .container {
  max-width: 1920px;
  padding-inline: clamp(1.25rem, 8.333vw, 10rem);
}
.user-first__copy .two-col { align-items: center; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 3.5rem); /* gap-14 */
  align-items: start;
}
.user-first .two-col h2:not(.sec-head) {
  font-size: clamp(1.5rem, 2vw, 1.875rem); /* text-3xl */
  font-weight: 400;
  line-height: 2rem;
  color: #f4f4f5; /* zinc-100 */
}
.user-first .two-col p {
  color: #f4f4f5;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem); /* text-xl */
  line-height: 1.4;
  font-weight: 400;
}
.two-col h2:not(.sec-head) {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}
.two-col p { color: var(--text-dim); font-size: 1.05rem; }

/* Placeholder image boxes */
.placeholder {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px dashed rgba(126, 203, 232, 0.5);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(126,203,232,0.05) 0 12px, transparent 12px 24px),
    #1b2340;
  color: var(--sky);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 1rem;
}
.placeholder small { display: block; color: var(--text-dim); margin-top: 0.4rem; }
.placeholder--laptop  { aspect-ratio: 16 / 10; height: 100%; }

/* ---- User-First showcase ----
   Carousel stage = navbar content width.
   Gradient panel = narrower, centered (Figma 2400 within 2850).
   Slides sit on the wide stage and extend past the gradient. */
.showcase {
  width: 100%;
  padding-block: clamp(1rem, 3vw, 2.5rem);
  background: transparent;
}
/* Same horizontal measure as .nav__inner */
.showcase__frame {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 8.333vw, 10rem);
}
.showcase__cluster {
  position: relative;
  width: 100%;
}
/* Full navbar content width — carousel artboard */
.showcase__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 2850 / 1500;
  overflow: visible;
}
/* Narrower gradient (Figma: left 226/2850, width 2400/2850) */
.showcase__panel {
  position: absolute;
  left: 7.93%;
  top: 0;
  width: 84.21%;
  height: 100%;
  border-radius: clamp(1.25rem, 3.125vw, 3.75rem);
  background: linear-gradient(to bottom left, #5a47a0 0%, #2d3e72 100%);
  pointer-events: none;
  z-index: 0;
}

/* Carousel spans the full navbar-width stage */
.carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
  touch-action: pan-y;
}
.carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0;
}
.carousel__slide {
  position: absolute;
  margin: 0;
  left: var(--left);
  top: var(--top);
  width: var(--width);
  height: var(--height);
  opacity: var(--opacity, 0.6);
  z-index: var(--z, 1);
  transition:
    left 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease;
  pointer-events: none;
}
.carousel__slide.is-animating-off {
  transition: none;
}
/*
  Figma artboard positions (2850×1500), mapped to content width:
  far:  580×320 @ top 803 — left 0 / 2270
  mid:  772×384 @ top 533 — left 290 / 1788
  center: 891×594 @ top 318 — left 980
*/
.carousel__slide[data-offset="-2"] {
  --left: 0%;
  --top: 53.53%;
  --width: 20.35%;
  --height: 21.33%;
  --opacity: 0.6;
  --z: 1;
}
.carousel__slide[data-offset="-1"] {
  --left: 10.175%;
  --top: 35.53%;
  --width: 27.09%;
  --height: 25.6%;
  --opacity: 0.6;
  --z: 2;
}
.carousel__slide[data-offset="0"] {
  --left: 34.386%;
  --top: 17%;
  --width: 31.263%;
  --height: 39.6%;
  --opacity: 1;
  --z: 3;
}
.carousel__slide[data-offset="1"] {
  --left: 62.737%;
  --top: 35.53%;
  --width: 27.09%;
  --height: 25.6%;
  --opacity: 0.6;
  --z: 2;
}
.carousel__slide[data-offset="2"] {
  --left: 79.649%;
  --top: 53.53%;
  --width: 20.35%;
  --height: 21.33%;
  --opacity: 0.6;
  --z: 1;
}
.carousel__slide.is-side,
.carousel__slide.is-active {
  pointer-events: none;
}
.carousel__slide.is-active {
  z-index: 3;
}
.carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  user-select: none;
  -webkit-user-drag: none;
  transition: box-shadow 0.7s ease;
}
/* Figma: shadow-[0px_0px_100px_50px_rgba(135,219,255,0.30)] */
.carousel__slide.is-active img {
  box-shadow: 0 0 clamp(2.5rem, 5.2vw, 6.25rem) clamp(1.25rem, 2.6vw, 3.125rem) rgba(135, 219, 255, 0.3);
}
.carousel__dots {
  display: none;
}

.callout {
  padding: 1.25rem; /* p-5 */
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(1rem, 1.3vw, 1.25rem); /* text-xl */
  line-height: 1.35;
  display: block;
  margin-top: 0.9rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  z-index: 5;
}
.callout--mint   { background: #ccfbf1; color: #374151; } /* teal-100 / gray-700 */
.callout--white  { background: #f4f4f5; color: #1e3a8a; } /* zinc-100 / blue-900 */
.callout--indigo { background: rgba(30, 58, 138, 0.95); color: #f4f4f5; } /* blue-900/95 */

/* Desktop: callouts overlay the stage */
@media (min-width: 1101px) {
  .showcase .callout {
    position: absolute;
    margin: 0;
    max-width: 100%;
  }
  .showcase .co-1 {
    top: 3%;
    left: 0;
    width: min(560px, 44%);
  }
  .showcase .co-2 {
    top: 14%;
    right: 0;
    left: auto;
    width: min(640px, 50%);
  }
  .showcase .co-3 {
    top: auto;
    bottom: 3%;
    right: 0;
    left: auto;
    width: min(720px, 56%);
  }
}

/* Tablet: callouts above/below carousel — no overlap with slides */
@media (max-width: 1100px) and (min-width: 641px) {
  .showcase__cluster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    row-gap: 0.85rem;
    align-items: start;
  }
  .showcase__stage {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .carousel__slide img {
    border-radius: 12px;
  }
  .showcase .callout {
    position: relative;
    margin: 0;
    width: 100%;
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    padding: 1rem 1.15rem;
  }
  .showcase .co-1 {
    grid-column: 1;
    grid-row: 1;
  }
  .showcase .co-2 {
    grid-column: 2;
    grid-row: 1;
  }
  .showcase .co-3 {
    grid-column: 1 / -1;
    grid-row: 3;
    width: min(100%, 36rem);
    justify-self: end;
  }
}

/* Mobile: stack callouts; single large slide (not coverflow) */
@media (max-width: 640px) {
  .showcase__cluster {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .showcase__stage {
    order: 3;
    aspect-ratio: 4 / 3;
    min-height: 0;
    overflow: hidden;
  }
  .showcase__panel {
    left: 0;
    width: 100%;
    border-radius: 1rem;
  }
  .carousel__slide {
    left: 5% !important;
    top: 6% !important;
    width: 90% !important;
    height: 78% !important;
    transition: opacity 0.45s ease;
  }
  .carousel__slide[data-offset="0"] {
    opacity: 1;
    z-index: 3;
  }
  .carousel__slide:not([data-offset="0"]) {
    opacity: 0;
    z-index: 1;
    pointer-events: none;
  }
  .carousel__slide.is-animating-off {
    transition: none;
  }
  .carousel__slide img {
    border-radius: 12px;
  }
  .carousel__slide.is-active img {
    box-shadow: 0 0 1.75rem 0.5rem rgba(135, 219, 255, 0.28);
  }
  .carousel__dots {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4%;
    z-index: 4;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .carousel__dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(244, 244, 245, 0.35);
    cursor: pointer;
  }
  .carousel__dot[aria-current="true"] {
    background: #f4f4f5;
  }
  .showcase .callout {
    position: relative;
    margin: 0;
    width: 100%;
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
  }
  .showcase .co-1 {
    order: 1;
  }
  .showcase .co-2 {
    order: 2;
  }
  .showcase .co-3 {
    order: 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__slide {
    transition: none;
  }
  .carousel__slide img {
    transition: none;
  }
}

/* ============================================================
   Split sections (image | text)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 420px;
}
.split__media { overflow: hidden; }
.split__media img,
.split__media video { width: 100%; height: 100%; object-fit: cover; }
.split__body {
  display: grid;
  align-content: center;
  gap: 1.5rem;
  padding: clamp(2rem, 6vw, 5rem);
  text-align: center;
}
.split--light .split__body { background: #ececec; color: var(--navy); }
.split--dark  .split__body { background: var(--ink); color: var(--text); }
.split__body h2:not(.sec-head) { font-size: clamp(1.6rem, 3.2vw, 2.6rem); font-weight: 700; }

/* Beta prototype split — Figma: 899px image / flex-1 body, zinc-900,
   text-5xl semibold heading, blue-900 button with teal-100 label */
.split--beta {
  grid-template-columns: 899fr 1021fr;
  min-height: clamp(20rem, 31.25vw, 37.5rem); /* 600px at 1920 */
  background: #18181b;
}
.split--beta .split__body {
  background: #18181b;
  color: #f4f4f5;
  gap: clamp(2rem, 2.917vw, 3.5rem); /* gap-14 */
  /* inline padding matches .nav__inner so text stays within the nav-aligned container */
  padding: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 8.333vw, 10rem);
}
.split--beta .sec-head {
  font-size: clamp(1.5rem, 2.2vw, 2.625rem);
  font-weight: 600;
  color: #f4f4f5;
}
.split--beta .btn {
  padding: clamp(1.25rem, 1.458vw, 1.75rem) clamp(1.5rem, 1.458vw, 1.75rem); /* p-7 */
  background: #1e3a8a; /* blue-900 */
  color: #ccfbf1;      /* teal-100 */
  font-size: clamp(1.15rem, 1.25vw, 1.5rem); /* text-2xl */
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   The Problem grid
   ============================================================ */
/* Figma: video under a slate-950/60 wash in the intro */
.scene--problem .scene__media::after {
  background: rgba(2, 6, 23, 0.6); /* slate-950/60 */
}
/* Figma: 860px tall at 1920px wide, px-40 gutters, left-aligned */
.scene--problem .scene__intro,
.scene--solution .scene__intro {
  min-height: clamp(28rem, 44.8vw, 53.75rem);
}
.scene--problem .scene__intro .container,
.scene--solution .scene__intro .container {
  max-width: 1920px;
  padding-inline: clamp(1.25rem, 8.333vw, 10rem); /* px-40 */
}
.scene--problem .scene__intro .sec-head,
.scene--solution .scene__intro .sec-head {
  max-width: 663px;
  color: #f4f4f5; /* zinc-100 */
  font-size: clamp(2.25rem, 3.125vw, 3.75rem); /* text-6xl */
  font-weight: 600;
}
.scene--problem .scene__intro .section-sub,
.scene--solution .scene__intro .section-sub {
  color: #f4f4f5; /* zinc-100 */
  font-size: clamp(1.25rem, 1.5625vw, 1.875rem); /* text-3xl */
  font-weight: 400;
  line-height: 1.2; /* leading-8 */
  margin-top: 1.25rem;
}
/* Cards sit over the sticky scene video; px-40 gutters, py-28 block padding */
.scene--problem .scene__body {
  background: transparent;
  padding-block: clamp(3rem, 5.833vw, 7rem); /* py-28 */
}
.scene--problem .scene__body .container {
  max-width: 1920px;
  padding-inline: clamp(1.25rem, 8.333vw, 10rem); /* px-40 */
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* rows separated by py-28, columns by gap-14 */
  gap: clamp(3rem, 5.833vw, 7rem) clamp(1.5rem, 2.917vw, 3.5rem);
}
.problem-card {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 1.458vw, 1.75rem); /* gap-7 */
}
.problem-card img {
  width: 100%;
  aspect-ratio: 493 / 329; /* h-80 at flex-1 width */
  object-fit: cover;
  border-radius: 30px;
}
.problem-card__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* gap-5 */
  padding: 0.625rem; /* p-2.5 */
}
.problem-card p {
  color: #f4f4f5; /* zinc-100 */
  font-size: clamp(1.05rem, 1.042vw, 1.25rem); /* text-xl */
  font-weight: 400;
  line-height: 1.25; /* leading-5 */
}
.problem-card .link-underline {
  align-self: flex-start;
  color: #f4f4f5;
  font-size: clamp(1.05rem, 1.042vw, 1.25rem); /* text-xl */
  font-weight: 400;
  line-height: 1.25;
}

/* ============================================================
   Value props (sits over Solution scene sticky video)
   ============================================================ */
/* Figma: the whole scene video sits under a slate-900/60 wash */
.scene--solution .scene__media::after {
  background: rgba(15, 23, 42, 0.6); /* slate-900/60 */
}
/* Values sit over the sticky scene video; match Problem body spacing */
.scene--solution .scene__body {
  display: flex;
  flex-direction: column;
  padding-block: clamp(3rem, 5.833vw, 7rem); /* py-28 — same as Problem */
  padding-inline: 0;
}
.scene--solution .scene__body .container {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 8.333vw, 10rem); /* former w-40 side fills */
}
.values-card {
  position: relative;
  text-align: center;
  background: transparent;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.917vw, 3.5rem);
  padding: 0 clamp(1rem, 1.458vw, 1.75rem) clamp(3rem, 5vw, 6rem);
}
.value h3 {
  color: #f4f4f5; /* zinc-100 */
  font-size: clamp(1.5rem, 1.5625vw, 1.875rem); /* text-3xl */
  font-weight: 600;
  margin-bottom: 0.625rem; /* gap-2.5 */
}
.value p {
  color: #f4f4f5;
  font-size: clamp(1.05rem, 1.042vw, 1.25rem); /* text-xl */
  line-height: 1.25; /* leading-5 */
}
.value img {
  height: clamp(4.5rem, 7.5vw, 9rem); /* w-36 icon block */
  margin: 0 auto 0.625rem; /* gap-2.5 */
  filter: brightness(0) invert(1);   /* black-fill SVGs -> white, per mockup */
}
.values-ethics {
  display: grid;
  gap: 1.75rem; /* gap-7 */
  padding: clamp(2.5rem, 4.167vw, 5rem) clamp(1rem, 1.458vw, 1.75rem); /* py-20 px-7 */
}
.values-ethics strong {
  color: #f4f4f5;
  font-size: clamp(1.5rem, 1.5625vw, 1.875rem); /* text-3xl */
  font-weight: 600;
  line-height: 1.1;
}
.values-ethics .link-underline {
  justify-self: center;
  color: #ccfbf1; /* teal-100 */
  font-size: clamp(1.05rem, 1.042vw, 1.25rem); /* text-xl */
  font-weight: 400;
}
.values-ethics p {
  color: #f4f4f5;
  font-size: clamp(1.25rem, 1.5625vw, 1.875rem); /* text-3xl */
  font-weight: 400;
  line-height: 1.1;
}
.values-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem; /* gap-7 */
  margin-top: 0;
}
.values-flag img { width: 40px; height: auto; } /* w-10 */
.values-flag span {
  color: #f4f4f5;
  font-size: clamp(1.05rem, 1.042vw, 1.25rem); /* text-xl */
}

/* Shared sticky video behind Perfect Storm → Invest CTA */
.scene--shift {
  background: #0c0c10;
}
.scene--shift .scene__media::after {
  background: rgba(0, 0, 0, 0.65);
}

/* ============================================================
   New Business Model
   Figma: py-40, px-28, bg-black/70 over sticky video,
   two product shots side-by-side, key-points card below
   ============================================================ */
.model {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 2.917vw, 3.5rem); /* gap-14 */
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding: clamp(3.5rem, 8.333vw, 10rem) clamp(1.5rem, 5.833vw, 7rem); /* py-40 px-28 */
}

.model__title {
  width: 100%;
  margin: 0;
  color: #f4f4f5; /* zinc-100 */
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 3.125vw, 3.75rem); /* text-6xl */
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
}

.model__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(1rem, 1.458vw, 1.75rem); /* gap-7 */
  width: 100%;
}

.model__media {
  min-width: 0;
}

.model__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1238 / 595;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 0 72px 18px rgba(228, 230, 231, 0.1);
}

.model__points {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem; /* gap-7 */
  width: 100%;
  padding: 1.75rem; /* p-7 */
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(96, 165, 250, 0.28);
  box-shadow: 0 0 48px 8px rgba(43, 47, 184, 0.18);
}

.model__points-title {
  margin: 0;
  color: #60a5fa; /* blue-400 */
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 1.5625vw, 1.875rem); /* text-3xl */
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.model__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  column-gap: clamp(1rem, 2.5vw, 3rem);
  row-gap: 0.625rem; /* gap-2.5 */
  width: 100%;
  margin: 0;
  padding: 0;
}

.model__list li {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  min-height: 2.5rem; /* h-10 */
  color: #f4f4f5; /* zinc-100 */
  font-size: clamp(1rem, 1.042vw, 1.25rem); /* text-xl */
  font-weight: 400;
  line-height: 2rem; /* leading-8 */
}

.model__check {
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

@media (max-width: 1199px) {
  .model {
    padding-inline: clamp(1.5rem, 5vw, 3rem);
  }
  .model__list {
    column-gap: 1.25rem;
  }
  .model__list li {
    font-size: 1rem;
    line-height: 1.45;
  }
}

/* Mobile: stack screenshots, single-column points */
@media (max-width: 767px) {
  .model {
    padding-block: 3.5rem;
    padding-inline: 1.25rem;
    gap: 1.75rem;
  }
  .model__title {
    font-size: 1.75rem;
  }
  .model__row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .model__media img {
    border-radius: 20px;
  }
  .model__points {
    padding: 1.25rem;
    gap: 1.25rem;
    border-radius: 20px;
  }
  .model__points-title {
    font-size: 1.35rem;
  }
  .model__list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    row-gap: 0.625rem;
  }
  .model__list li {
    align-items: flex-start;
    min-height: 0;
    font-size: 1rem;
    line-height: 1.45;
  }
  .model__check {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.1rem;
  }
}

/* ============================================================
   A $1T+ Opportunity
   Figma: 1920 artboard, px-40 pt-32, title + nested market
   graphic, 2×2 facts, market-shift timeline
   ============================================================ */
.opportunity {
  position: relative;
  color: #f4f4f5;
  padding-block: clamp(3.5rem, 8.333vw, 8rem) clamp(3rem, 5vw, 5.5rem);
}
.opportunity__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(2rem, 2.917vw, 3.5rem); /* gap-14 */
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 8.333vw, 10rem); /* px-40 */
}
.opportunity__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 2.917vw, 3.5rem);
  width: 100%;
}
.opportunity__visual {
  flex: 1 1 28rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  min-width: 0;
  max-width: 37.5rem; /* 600px */
}
.opportunity__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
}
.opportunity__title {
  margin: 0;
  color: #f5f5f5; /* neutral-100 */
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.125vw, 3.75rem); /* text-6xl */
  font-weight: 600;
  line-height: 1.1;
}
.opportunity__accent {
  color: #0ea5e9; /* sky-500 */
}
.opportunity__sub {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.5625vw, 1.875rem); /* text-3xl */
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.opportunity__layers {
  width: 100%;
  max-width: 37.5rem;
  height: auto;
}
.opportunity__facts {
  flex: 1 1 32rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 2.917vw, 3.5rem) 1.25rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.opportunity-fact {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  min-width: 0;
}
.opportunity-fact__icon {
  flex: 0 0 5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 5rem;
  height: 3.75rem;
  overflow: clip;
}
.opportunity-fact__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.opportunity-fact__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  min-width: 0;
}
.opportunity-fact__stat {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 2.5vw, 3rem); /* text-5xl */
  font-weight: 600;
  line-height: 1.1;
}
.opportunity-fact__stat--fuchsia {
  color: #e675ff;
  background-image: linear-gradient(to bottom, #e675ff, #7d00dd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.opportunity-fact__stat--cyan {
  color: #65d1ff;
  background-image: linear-gradient(to right, #65d1ff, #3d82ea);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.opportunity-fact__label {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 1.5rem); /* text-2xl */
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
}
.opportunity-fact__desc {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.042vw, 1.25rem); /* text-xl */
  font-weight: 400;
  line-height: 1.5;
}

.opportunity__shift {
  display: flex;
  flex-direction: column;
  gap: 1.75rem; /* gap-7 */
  width: 100%;
}
.opportunity__shift-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
}
.opportunity__shift-line {
  flex: 1 1 auto;
  height: 1px;
  min-width: 1.5rem;
}
.opportunity__shift-line--start {
  background: #3b82f6; /* blue-500 */
}
.opportunity__shift-line--end {
  background: #7dd3fc; /* sky-300 */
}
.opportunity__shift-title {
  margin: 0;
  flex: 0 0 auto;
  color: #5bb7fa;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 4.2vw, 3rem); /* text-5xl */
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  background-image: linear-gradient(to right, #1d48c1, #3c80dd, #5bb7fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.opportunity__stages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.opportunity-stage {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding-right: 0.25rem;
}
.opportunity-stage__icon {
  flex: 0 0 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  overflow: clip;
}
.opportunity-stage__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.opportunity-stage__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  min-width: 0;
}
.opportunity-stage__name {
  margin: 0;
  color: #65d1ff;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.042vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}
.opportunity-stage__mode,
.opportunity-stage__desc {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 0.9375vw, 1.125rem);
  font-weight: 400;
  line-height: 1.4;
}
.opportunity-stage__arrow {
  flex: 0 0 3rem;
  width: 3rem;
  height: auto;
  margin-left: auto;
}

/* Below Figma 1600-content width: stack graphic above facts */
@media (max-width: 1199px) {
  .opportunity {
    padding-block: clamp(3rem, 6vw, 5rem);
  }
  .opportunity__inner {
    padding-inline: clamp(1.5rem, 5vw, 3rem);
    gap: 2.5rem;
  }
  .opportunity__top {
    flex-direction: column;
    align-items: stretch;
  }
  .opportunity__visual {
    flex: none;
    width: 100%;
    max-width: 37.5rem;
    margin-inline: auto;
    align-items: center;
  }
  .opportunity__header {
    align-items: center;
    text-align: center;
  }
  .opportunity__title,
  .opportunity__sub {
    text-align: center;
  }
  .opportunity__facts {
    width: 100%;
  }
  .opportunity__stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.75rem;
    column-gap: 1.5rem;
  }
  .opportunity-stage__arrow {
    display: none;
  }
  .opportunity__shift-title {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    white-space: normal;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .opportunity__layers {
    width: 62%;
    max-width: 25rem;
  }
}

@media (max-width: 767px) {
  .opportunity {
    padding-block: 3.5rem 2.75rem;
  }
  .opportunity__inner {
    padding-inline: 1.25rem;
    gap: 1.75rem;
  }
  .opportunity__header {
    gap: 0.75rem;
  }
  .opportunity__title {
    font-size: 2rem;
  }
  .opportunity__sub {
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: 0.01em;
  }
  .opportunity__facts {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
  .opportunity-fact__icon {
    flex-basis: 3.75rem;
    width: 3.75rem;
    height: 2.75rem;
  }
  .opportunity-fact__stat {
    font-size: 2rem;
  }
  .opportunity-fact__label {
    font-size: 1.05rem;
  }
  .opportunity-fact__label br {
    display: none;
  }
  .opportunity__shift {
    gap: 1.25rem;
  }
  .opportunity__shift-title {
    font-size: 1.75rem;
    white-space: normal;
  }
  .opportunity__stages {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0.5rem;
  }
  .opportunity-stage {
    display: grid;
    grid-template-columns: 3.5rem minmax(0, 1fr);
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 0.25rem;
    padding-right: 0;
  }
  .opportunity-stage__arrow {
    display: block;
    grid-column: 1 / -1;
    justify-self: center;
    flex: none;
    width: 2rem;
    max-width: 2rem;
    height: auto;
    margin: 0.15rem 0 0.35rem;
    transform: rotate(90deg);
  }
  .opportunity-stage:last-child .opportunity-stage__arrow {
    display: none;
  }
  .opportunity-fact__desc br,
  .opportunity-stage__desc {
    line-height: 1.45;
  }
}

/* ============================================================
   Invest CTA
   Figma: px-40 py-28, bg-black/70 over the New Business Model
   circuit video, uppercase tracked headline, blue-400 / blue-800
   buttons, Canadian origin row with 40px flags
   ============================================================ */
.invest {
  position: relative;
}

.invest__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem; /* gap-7 */
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding: clamp(4rem, 5.833vw, 7rem) clamp(1.25rem, 8.333vw, 10rem); /* py-28 px-40 */
}

.invest__headline {
  width: 100%;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.875vw, 1.875rem); /* text-3xl */
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 6px;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  color: #f4f4f5; /* zinc-100 */
}

.invest__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.75rem; /* gap-7 */
}

.invest__origin {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.75rem; /* gap-7 */
  width: 100%;
  margin: 0;
  padding-inline: 0.625rem; /* px-2.5 */
  font-family: var(--font-body);
  font-size: 1.25rem; /* text-xl */
  font-weight: 400;
  line-height: 1.25rem; /* leading-5 */
  text-align: center;
  color: #f4f4f5;
}

.invest__origin span {
  white-space: nowrap;
}

.invest__origin img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 1199px) {
  .invest__inner {
    padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 3rem);
    gap: 1.5rem;
  }
  .invest__headline {
    letter-spacing: 0.22em;
  }
  .invest__actions {
    gap: 1.25rem;
  }
}

@media (max-width: 1024px) {
  .invest__origin {
    gap: 1.25rem;
    font-size: 1.125rem;
  }
  .invest__origin img {
    width: 36px;
    height: 36px;
  }
}

/* Phone: stack buttons, tighten tracking so the headline wraps cleanly */
@media (max-width: 767px) {
  .invest__inner {
    padding: 3.5rem 1.25rem;
    gap: 1.25rem;
  }
  .invest__headline {
    letter-spacing: 0.12em;
    font-size: 1.05rem;
  }
  .invest__actions {
    flex-direction: column;
    width: min(100%, 22rem);
    gap: 1rem;
  }
  .invest__origin {
    width: min(100%, 22rem);
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.2;
    padding-inline: 0;
  }
  .invest__origin img {
    width: 26px;
    height: 26px;
  }
}

/* ============================================================
   Footer
   Figma: px-28 py-7, bg-blue-800, zinc-100 Codec Pro text-xl,
   28px social icons with gap-7
   ============================================================ */
.footer {
  background: #1e40af; /* blue-800 */
  color: #f4f4f5; /* zinc-100 */
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.75rem;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding: 1.75rem clamp(1.25rem, 5.833vw, 7rem); /* py-7 px-28 */
}

.footer__inner > nav {
  flex-shrink: 0;
}

.footer__copy {
  margin: 0;
  min-width: 0;
  padding-inline: 0.625rem; /* px-2.5 */
  color: #f4f4f5;
  font-family: var(--font-body);
  font-size: 1.25rem; /* text-xl */
  font-weight: 400;
  line-height: 1.25rem; /* leading-5 */
  white-space: nowrap;
}

.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  gap: 1.75rem; /* gap-7 */
  margin: 0;
  padding: 0 0.625rem; /* px-2.5 */
  list-style: none;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem; /* w-7 */
  height: 1.75rem;
  overflow: hidden;
  color: #fff;
  transition: opacity 0.2s ease;
}

.footer__social a:hover { opacity: 0.8; }

.footer__social a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.footer__social svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 1199px) {
  .footer__inner {
    padding: 1.5rem clamp(1.25rem, 4vw, 2rem);
    gap: 1.25rem;
  }
  .footer__copy {
    padding-inline: 0;
    font-size: 1rem;
    line-height: 1.3;
    white-space: normal;
  }
  .footer__social {
    padding: 0;
    gap: 1.25rem;
  }
}

@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
  }
  .footer__copy {
    padding-inline: 0;
    font-size: clamp(0.6875rem, 3.6vw, 0.95rem);
    line-height: 1.3;
    white-space: nowrap;
    text-align: center;
  }
  .footer__social {
    padding: 0;
    gap: 1.5rem;
  }
}

/* ============================================================
   Responsive
   ============================================================ */

/* 768–1440: fill the first screen, pin CTAs to the bottom, equal gaps around the globe */
@media (max-width: 1440px) {
  .hero {
    --hero-globe-gap-top: 0;
    --hero-globe-gap-bottom: 0;
  }
  .hero__inner {
    height: calc(100svh - var(--nav-h));
    min-height: calc(100svh - var(--nav-h));
    max-height: calc(100svh - var(--nav-h));
    justify-content: space-between;
    padding-block: 3.5rem 3rem;
  }
  .hero__stage {
    display: contents;
  }
  .hero__logo {
    flex: 0 0 auto;
  }
  .hero__logo img {
    width: auto;
    max-width: min(480px, 52vw);
    max-height: 11vh;
    height: auto;
  }
  .hero__globe {
    flex: 0 1 auto;
    width: min(34rem, 68vw, calc(36vh * 600 / 353));
    margin: 0;
  }
  .hero__cta {
    flex: 0 0 auto;
    gap: 1rem;
    padding-block: 0;
  }
  .hero__headline {
    font-size: clamp(1rem, 1.5vw, 1.375rem);
    letter-spacing: 0.16em;
  }
  .hero__btn {
    padding: 1.1rem 1.4rem;
    font-size: 1.2rem;
  }
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .hero__cta {
    margin-top: 2.5rem;
  }
}

@media (max-width: 1199px) {
  :root { --nav-h: 4.25rem; }
  .nav__inner {
    position: relative;
    padding-block: 1.15rem;
  }
  .nav__logo img {
    width: min(180px, 48vw);
    height: auto;
  }
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    display: block;
    padding: 1rem var(--pad);
    letter-spacing: 2.4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 1199px) {
  .hero__headline {
    letter-spacing: 0.14em;
  }
}

@media (max-width: 1024px) {
  .hero__inner {
    padding-block: 3.25rem 6.5rem;
  }
  .hero__logo img {
    max-width: min(400px, 58vw);
    max-height: 10vh;
  }
  .hero__globe {
    width: min(30rem, 72vw, calc(34vh * 600 / 353));
  }
  .hero__cta {
    gap: 0.85rem;
  }
  .hero__headline {
    font-size: 1.05rem;
    letter-spacing: 0.12em;
  }
  .hero__actions {
    gap: 1rem;
  }
  .hero__btn {
    padding: 0.95rem 1.25rem;
    font-size: 1.125rem;
  }
  .hero__origin {
    gap: 1.25rem;
    font-size: 1.125rem;
  }
  .hero__origin img {
    width: 36px;
    height: 36px;
  }

  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero__inner {
    padding-block: 3rem 6rem;
  }
  .hero__logo img {
    max-width: min(360px, 70vw);
    max-height: 9.5vh;
  }
  .hero__globe {
    width: min(28rem, 78vw, calc(32vh * 600 / 353));
  }
  .hero__headline {
    letter-spacing: 0.1em;
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .hero__globe {
    width: min(22rem, 88vw, calc(30vh * 600 / 353));
  }
  .hero__cta {
    gap: 0.85rem;
  }
  .hero__actions {
    flex-direction: column;
    width: min(100%, 22rem);
    gap: 0.75rem;
  }
  .hero__btn {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
  }
  .hero__origin {
    width: min(100%, 22rem);
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.2;
    padding-inline: 0;
  }
  .hero__origin img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 640px) {
  .nav__logo img {
    width: min(150px, 58vw);
  }

  .two-col,
  .split,
  .problem-grid,
  .values-grid { grid-template-columns: 1fr; }

  .split { min-height: 0; }
  .split__media { min-height: 240px; }
  /* image below text when stacked, matching mobile reading order */
  .split--dark .split__media { order: -1; }

  .placeholder--laptop { aspect-ratio: 16 / 10; }

  .btn { width: 100%; text-align: center; }
  .btn-row { flex-direction: column; }
}

/* ---- Reduced motion: hide videos, rely on posters / solid fallbacks ---- */
@media (prefers-reduced-motion: reduce) {
  .hero__globe-video,
  .scene__media video,
  .split__media video { display: none; }
  .scene__media {
    background: #14225a;
  }
  .scene--protect .scene__media { background: #1b2391; }
  html { scroll-behavior: auto; }
}
