:root {
  --green: #00a551;
  --green-deep: #007a3d;
  --midnight: #081018;
  --midnight-soft: #101926;
  --charcoal: #16211c;
  --stone: #d8d1bf;
  --mist: #f4f9f6;
  --fog: rgba(244, 249, 246, 0.74);
  --line: rgba(215, 255, 229, 0.12);
  --line-strong: rgba(214, 248, 225, 0.26);
  --panel: rgba(10, 18, 16, 0.58);
  --panel-strong: rgba(9, 14, 13, 0.78);
  --shadow: 0 30px 120px rgba(0, 0, 0, 0.32);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: min(1180px, calc(100% - 3rem));
  --scroll-progress: 0;
  --pointer-x: 50%;
  --pointer-y: 50%;
}

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

html {
  scroll-behavior: smooth;
  background: #05090f;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 165, 81, 0.18), transparent 28%),
    radial-gradient(circle at 82% 19%, rgba(0, 122, 61, 0.16), transparent 32%),
    linear-gradient(180deg, #060c12 0%, #09111a 32%, #0b1613 64%, #05090f 100%);
  color: var(--mist);
  line-height: 1.45;
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
li {
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  color: rgba(244, 249, 246, 0.82);
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-shell {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(214, 248, 225, 0.74);
  font-size: 0.76rem;
  margin: 0 0 1rem;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 248, 225, 0.55));
}

.section-heading {
  max-width: 800px;
  margin-bottom: 3rem;
}

.section-heading h2,
.contact__panel h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  max-width: 13ch;
}

.section-heading p,
.story__intro p,
.contact__panel p {
  max-width: 58ch;
}

.story__intro h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.5rem, 4.6vw, 4.85rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin: 0 0 1rem;
  max-width: 7.4ch;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem min(2rem, 4vw);
  background: linear-gradient(180deg, rgba(5, 10, 12, 0.78), rgba(5, 10, 12, 0));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  gap: 0.2rem;
}

.brand__word {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mist);
}

.brand__caption {
  font-size: 0.84rem;
  color: rgba(244, 249, 246, 0.56);
}

.topbar__nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.94rem;
  color: rgba(244, 249, 246, 0.8);
}

.topbar__nav a {
  position: relative;
}

.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(214, 248, 225, 0.66);
  transition: transform 180ms ease;
}

.topbar__nav a:hover::after,
.topbar__nav a:focus-visible::after {
  transform: scaleX(1);
}

.progress-rail {
  position: fixed;
  top: 50%;
  left: 1.2rem;
  z-index: 18;
  display: grid;
  gap: 1rem;
  transform: translateY(-50%);
}

.progress-rail__line {
  position: relative;
  width: 2px;
  height: 10rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-rail__fill {
  position: absolute;
  inset: auto 0 0;
  height: calc(var(--scroll-progress) * 100%);
  background: linear-gradient(180deg, rgba(0, 165, 81, 0.3), rgba(0, 165, 81, 1));
  border-radius: inherit;
}

.progress-rail__markers {
  display: grid;
  gap: 0.55rem;
}

.progress-rail__markers a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 249, 246, 0.34);
  transition: color 220ms ease, transform 220ms ease;
}

.progress-rail__markers a.is-active {
  color: var(--mist);
  transform: translateX(0.22rem);
}

.site-chroma {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.site-chroma__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.56;
  will-change: transform;
}

.site-chroma__orb--north {
  width: 38rem;
  height: 38rem;
  top: -10rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(0, 165, 81, 0.46), rgba(0, 165, 81, 0.08) 60%, transparent 74%);
}

.site-chroma__orb--south {
  width: 32rem;
  height: 32rem;
  bottom: -10rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(118, 174, 140, 0.22), rgba(0, 122, 61, 0.06) 58%, transparent 72%);
}

.site-chroma__mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, black 22%, black 80%, transparent);
  opacity: 0.23;
}

.site-chroma__terrain {
  position: absolute;
  inset: -8vh -8vw;
  width: calc(100% + 16vw);
  height: calc(100% + 16vh);
  opacity: 0.34;
}

.site-chroma__terrain path {
  fill: none;
  stroke: rgba(214, 248, 225, 0.12);
  stroke-width: 1.3;
  stroke-linecap: round;
}

.hero {
  min-height: 180svh;
}

.hero__inner {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 3vw, 4rem);
  padding-block: 8rem 4rem;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.hero__code {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(216, 209, 191, 0.8);
  margin: 0 0 1.2rem;
}

.hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(3.6rem, 7.2vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  margin: 0;
  max-width: 5.6em;
  text-wrap: balance;
}

.hero__lede {
  max-width: 43rem;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  margin: 1.5rem 0 0;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(219, 255, 236, 0.14);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, rgba(0, 165, 81, 0.95), rgba(63, 197, 122, 0.92));
  color: #04110a;
  border-color: transparent;
  box-shadow: 0 18px 50px rgba(0, 165, 81, 0.28);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.03);
}

.hero__panel,
.contact__panel,
.story-step,
.lane-card,
.proof-card,
.domain-card,
.founder-card,
.proof__stats article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
}

.hero__panel {
  padding: 1.25rem;
  width: 100%;
  max-width: 28rem;
  justify-self: end;
  transform: translateY(calc(var(--scroll-progress) * -1.6rem));
}

.hero__panel-grid {
  display: grid;
  gap: 0.9rem;
}

.hero__panel article {
  padding: 1.2rem;
  border-radius: calc(var(--radius-md) - 6px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__panel span,
.proof-card__label,
.lane-card__index,
.domain-card__tag,
.founder-card__code,
.story-step__index {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(216, 209, 191, 0.86);
}

.hero__panel strong,
.lane-card h3,
.proof-card h3,
.domain-card h3,
.founder-card h3,
.story-step h3 {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.08;
  margin: 0.45rem 0 0.65rem;
  color: var(--mist);
}

.hero__scrollcue {
  position: absolute;
  left: 0;
  bottom: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(214, 248, 225, 0.62);
}

.hero__scrollcue span {
  position: relative;
  width: 2.4rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 248, 225, 0.28);
}

.hero__scrollcue span::before {
  content: "";
  position: absolute;
  top: 0.24rem;
  left: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--green);
  transform: translateX(-50%);
  animation: scrollcue 2.4s ease-in-out infinite;
}

@keyframes scrollcue {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, 0.5rem);
    opacity: 1;
  }
}

.hero__layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__halo,
.hero__rings,
.hero__shard {
  position: absolute;
  will-change: transform;
}

.hero__halo {
  width: 48rem;
  height: 48rem;
  top: 10vh;
  right: 8vw;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 165, 81, 0.3), rgba(0, 165, 81, 0.04) 50%, transparent 70%);
  filter: blur(18px);
}

.hero__rings {
  width: min(42rem, 64vw);
  aspect-ratio: 1;
  top: 12vh;
  right: 4vw;
  border-radius: 50%;
  border: 1px solid rgba(214, 248, 225, 0.14);
  box-shadow:
    0 0 0 6rem rgba(214, 248, 225, 0.02),
    0 0 0 12rem rgba(214, 248, 225, 0.015);
}

.hero__shard {
  width: 18rem;
  height: 11rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(0, 165, 81, 0.22), rgba(216, 209, 191, 0.06));
  border: 1px solid rgba(214, 248, 225, 0.12);
  backdrop-filter: blur(22px);
}

.hero__shard--one {
  top: 18vh;
  right: 12vw;
  transform: rotate(-18deg);
}

.hero__shard--two {
  bottom: 18vh;
  right: 30vw;
  transform: rotate(18deg);
}

.story {
  min-height: 320svh;
}

.story__frame {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(240px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(1.4rem, 2vw, 2.4rem);
  align-items: start;
  overflow: hidden;
  padding-block: 7.2rem 2.6rem;
}

.story__intro {
  align-self: start;
  padding-top: 0.35rem;
}

.story__intro .eyebrow {
  margin-bottom: 0.85rem;
}

.story__visual {
  position: relative;
  min-height: 28rem;
  display: grid;
  place-items: center;
  padding-top: 1.4rem;
}

.story__steps {
  align-self: start;
}

.story__track--intro-body,
.story__track--visual,
.story__track--steps {
  will-change: transform;
}

.story__track--steps {
  display: grid;
  gap: 1rem;
}

.story__track--visual {
  width: 100%;
  display: grid;
  place-items: center;
}

.story--stacked {
  min-height: auto;
}

.story--stacked .story__frame {
  position: relative;
  top: auto;
  height: auto;
  min-height: auto;
  align-items: start;
  padding-block: 7rem 4rem;
  overflow: visible;
}

.story--stacked .story__intro,
.story--stacked .story__visual,
.story--stacked .story__steps {
  align-self: start;
}

.story-step {
  padding: 1.25rem;
  opacity: 0.35;
  transform: translateY(0.6rem) scale(0.98);
  transition:
    opacity 280ms ease,
    transform 280ms ease,
    border-color 280ms ease,
    background 280ms ease;
}

.story-step.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(0, 165, 81, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(9, 14, 13, 0.84);
}

.signal-matrix {
  position: relative;
  width: 18rem;
  min-width: 18rem;
  max-width: 100%;
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  border: 1px solid rgba(214, 248, 225, 0.12);
  box-shadow:
    inset 0 0 0 1.8rem rgba(214, 248, 225, 0.015),
    inset 0 0 0 7rem rgba(214, 248, 225, 0.01);
}

.signal-matrix::before,
.signal-matrix::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 1px;
  height: 100%;
  background: rgba(214, 248, 225, 0.1);
  transform: translate(-50%, -50%);
}

.signal-matrix::after {
  width: 100%;
  height: 1px;
}

.signal-matrix__core {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  gap: 0.25rem;
  transform: translate(-50%, -50%);
  text-align: center;
}

.signal-matrix__core span {
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.24em;
  color: var(--mist);
}

.signal-matrix__core small {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(216, 209, 191, 0.72);
}

.signal-matrix__node {
  position: absolute;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 248, 225, 0.14);
  background: rgba(9, 14, 13, 0.68);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.26);
  font-size: 0.92rem;
}

.signal-matrix__node--one {
  top: 11%;
  left: 50%;
  transform: translateX(-50%);
}

.signal-matrix__node--two {
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
}

.signal-matrix__node--three {
  bottom: 11%;
  left: 50%;
  transform: translateX(-50%);
}

.signal-matrix__node--four {
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
}

.story--problem .signal-matrix {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(0, 165, 81, 0.14), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(0, 165, 81, 0.06), transparent 48%);
}

.story--problem .story__intro h2 {
  font-size: clamp(2.45rem, 4.35vw, 4.55rem);
  max-width: 7ch;
}

.duo-panel {
  width: min(100%, 23rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: center;
}

.duo-panel__side,
.duo-panel__axis {
  min-height: auto;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(9, 14, 13, 0.72);
  box-shadow: var(--shadow);
}

.duo-panel__side span,
.duo-panel__mark,
.founder-card__role {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(216, 209, 191, 0.78);
}

.duo-panel__side strong,
.duo-panel__axis strong {
  display: block;
  margin-top: 0.7rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.9rem, 2.7vw, 2.55rem);
  line-height: 0.95;
}

.duo-panel__axis {
  display: grid;
  align-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 165, 81, 0.18), transparent 42%),
    rgba(9, 14, 13, 0.84);
}

.lanes,
.proof,
.domains,
.founders,
.contact {
  padding: 10rem 0;
}

.lanes__grid,
.domains__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.lane-card,
.domain-card {
  min-height: 20rem;
  padding: 1.4rem;
}

.lane-card {
  position: relative;
  overflow: hidden;
}

.lane-card::after,
.domain-card::after,
.founder-card::after,
.contact__panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -44% auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 165, 81, 0.24), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.proof__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.proof__stats article {
  padding: 1.35rem;
}

.proof__stats strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.proof__cards,
.founders__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card,
.founder-card {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  padding: 1.5rem;
}

.founder-card {
  display: grid;
  gap: 1.2rem;
}

.founder-card__portrait {
  position: relative;
  overflow: hidden;
  min-height: 21rem;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid rgba(214, 248, 225, 0.1);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.09), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(6, 18, 14, 0.9), rgba(7, 12, 13, 0.98));
}

.founder-card__portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.12;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1), black 22%, black 82%, transparent);
}

.founder-card__portrait-glow {
  position: absolute;
  inset: auto;
  width: 16rem;
  height: 16rem;
  right: -2rem;
  top: -4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 165, 81, 0.26), transparent 70%);
  filter: blur(18px);
}

.founder-card__portrait-frame {
  position: absolute;
  inset: 1rem 1rem 1rem 1rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border: 1px solid rgba(214, 248, 225, 0.09);
  overflow: hidden;
}

.founder-card__portrait-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.28));
}

.founder-card__portrait-image--jimmy {
  transform: translateX(-50%) scale(1.03);
  object-position: center 92%;
}

.founder-card__portrait-image--joey {
  transform: translateX(-50%) scale(1.05);
  object-position: center 88%;
}

.founder-card__portrait-meta {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  gap: 0.3rem;
  z-index: 1;
}

.founder-card__portrait-meta span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(216, 209, 191, 0.82);
}

.founder-card__portrait-meta strong {
  font-size: 0.92rem;
  color: rgba(244, 249, 246, 0.92);
}

.founder-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.founder-card ul {
  margin-top: 1rem;
}

.founders__closing {
  margin-top: 1rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(214, 248, 225, 0.08);
  text-align: center;
}

.contact {
  padding-bottom: 8rem;
}

.contact__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 85% 15%, rgba(0, 165, 81, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 14, 13, 0.82);
}

.contact__micro {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(216, 209, 191, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(2.4rem);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-parallax] {
  will-change: transform;
}

@media (max-width: 1120px) {
  .hero__inner,
  .story__frame,
  .lanes__grid,
  .domains__grid,
  .proof__stats,
  .proof__cards,
  .founders__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner,
  .story__frame {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .hero__inner {
    padding-top: 9rem;
    padding-bottom: 5rem;
  }

  .story {
    min-height: auto;
  }

  .story__frame {
    height: auto;
    min-height: auto;
    padding-block: 7rem 4rem;
    overflow: visible;
  }

  .story__visual {
    min-height: 24rem;
  }

  .duo-panel {
    grid-template-columns: 1fr;
  }

  .duo-panel__axis {
    width: auto;
  }
}

@media (max-width: 1360px) and (min-width: 1121px) {
  .story__frame {
    grid-template-columns: minmax(300px, 0.96fr) minmax(190px, 0.5fr) minmax(340px, 1fr);
    gap: 1.25rem;
    padding-block: 6.9rem 2.2rem;
  }

  .story__intro h2 {
    font-size: clamp(2.7rem, 4.25vw, 4.2rem);
    max-width: 7.2ch;
  }

  .story__intro p {
    max-width: 32ch;
  }

  .story--problem .story__intro h2 {
    font-size: clamp(2.55rem, 4vw, 3.95rem);
    max-width: 6.8ch;
  }

  .story__visual {
    min-height: 23rem;
    padding-top: 1.1rem;
  }

  .signal-matrix {
    width: 16rem;
    min-width: 16rem;
  }

  .signal-matrix__core span {
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    letter-spacing: 0.18em;
  }

  .signal-matrix__core small {
    font-size: 0.68rem;
  }

  .signal-matrix__node {
    font-size: 0.78rem;
    padding: 0.62rem 0.74rem;
  }
}

@media (max-width: 860px) {
  :root {
    --container: calc(100% - 1.5rem);
  }

  .topbar {
    padding-inline: 0.9rem;
  }

  .topbar__nav {
    display: none;
  }

  .progress-rail {
    display: none;
  }

  .hero__layers {
    opacity: 0.7;
  }

  .hero h1 {
    max-width: 8ch;
  }

  .hero__scrollcue {
    position: static;
    margin-top: 2rem;
  }

  .story__visual {
    min-height: 20rem;
  }

  .signal-matrix {
    width: min(22rem, 100%);
  }

  .signal-matrix__node {
    font-size: 0.82rem;
    padding: 0.7rem 0.8rem;
  }

  .lane-card,
  .domain-card,
  .proof-card,
  .founder-card {
    min-height: auto;
  }

  .founder-card__portrait {
    min-height: 18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
