@font-face {
  font-family: "Rajdhani";
  src: url("/assets/oscillihue/fonts/rajdhani-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/oscillihue/fonts/space-grotesk-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/oscillihue/fonts/space-grotesk-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/oscillihue/fonts/inter-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/assets/oscillihue/fonts/jetbrains-mono-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --osc-void: #020408;
  --osc-space: #050810;
  --osc-panel: #060d18;
  --osc-raised: #0c1a2e;
  --osc-cyan: #14d7f2;
  --osc-cyan-bright: #06fbfc;
  --osc-cyan-deep: #10adc2;
  --osc-indigo: #6366f1;
  --osc-text: #e2e8f0;
  --osc-muted: #94a3b8;
  --osc-dim: #64748b;
  --osc-edge: rgba(20, 215, 242, 0.18);
  --osc-content: min(1280px, calc(100vw - 96px));
  --osc-gutter: max(48px, calc((100vw - 1280px) / 2));
  --progress: 0;
  --page-progress: 0;
}

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

html {
  background: var(--osc-void);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--osc-text);
  background:
    radial-gradient(circle at 74% 18%, rgba(99, 102, 241, 0.07), transparent 28rem),
    var(--osc-void);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--osc-cyan-bright);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 3000;
  padding: 12px 16px;
  color: var(--osc-void);
  background: var(--osc-cyan-bright);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 200ms cubic-bezier(0, 0, 0.2, 1);
}

.skip-link:focus {
  transform: translateY(0);
}

.signal-rail {
  position: fixed;
  inset: 12px;
  z-index: 2000;
  pointer-events: none;
  color: var(--osc-cyan-bright);
  mix-blend-mode: screen;
}

.signal-rail svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.signal-rail__base, .signal-rail__trace, .signal-rail__wave {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.signal-rail__base {
  stroke: rgba(20, 215, 242, 0.12);
  stroke-width: 1;
}

.signal-rail__trace {
  stroke: url("#signalRailGradient");
  stroke-width: 1.4;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--page-progress));
  filter: drop-shadow(0 0 5px rgba(6, 251, 252, 0.72));
}

.signal-rail__wave {
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-dasharray: 0.08 0.035;
  animation: signal-wave 2.4s linear infinite;
}

.signal-rail__counter {
  position: absolute;
  right: 14px;
  bottom: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-shadow: 0 0 8px currentColor;
}

@keyframes signal-wave {
  to { stroke-dashoffset: -0.23; }
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 16px var(--osc-gutter);
  border-bottom: 1px solid transparent;
  transition: background 300ms cubic-bezier(0, 0, 0.2, 1), border-color 300ms cubic-bezier(0, 0, 0.2, 1);
}

.site-header.is-scrolled {
  border-color: rgba(20, 215, 242, 0.1);
  background: rgba(5, 8, 16, 0.86);
  backdrop-filter: blur(12px);
}

.brand-link img {
  width: 132px;
  height: 48px;
  object-fit: contain;
}

.engine-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.16em;
}

.engine-lockup small {
  margin-top: 4px;
  color: var(--osc-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.section-shell {
  position: relative;
  padding-right: var(--osc-gutter);
  padding-left: var(--osc-gutter);
}

[data-border-scene]::before, [data-border-scene]::after {
  position: absolute;
  z-index: 8;
  pointer-events: none;
  content: "";
}

[data-border-scene]::before {
  top: 8%;
  bottom: 8%;
  left: max(22px, calc(var(--osc-gutter) - 20px));
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--osc-cyan-bright) 15%, var(--osc-indigo) 78%, transparent);
  box-shadow: 0 0 14px rgba(20, 215, 242, 0.45);
  transform: scaleY(var(--progress));
  transform-origin: top;
}

[data-border-scene]::after {
  top: 8%;
  left: max(22px, calc(var(--osc-gutter) - 24px));
  width: 9px;
  height: 9px;
  border: 1px solid var(--osc-cyan-bright);
  background: var(--osc-void);
  box-shadow: 0 0 12px rgba(6, 251, 252, 0.8);
  transform: translateY(calc(var(--progress) * 76vh)) rotate(calc(var(--progress) * 180deg));
}

.glyph {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 0.72em, 0) rotate(5deg);
  transform-origin: 50% 100%;
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--glyph-index) * 34ms);
}

.word {
  display: inline-block;
  white-space: nowrap;
}

.glyph--space {
  width: 0.28em;
}

[data-split].is-type-visible .glyph {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotate(0);
}

.section-label, .eyebrow {
  margin: 0 0 24px;
  color: var(--osc-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, p {
  margin-top: 0;
}

h2 {
  margin-bottom: 32px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 1.75rem + 3.2vw, 5rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__plate, .hero__veil {
  position: absolute;
  inset: 0;
}

.hero__plate {
  z-index: -3;
  background: var(--osc-panel);
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  scale: 1.02;
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 4, 8, 0.9) 0%, rgba(2, 4, 8, 0.54) 42%, rgba(2, 4, 8, 0.08) 72%),
    linear-gradient(0deg, rgba(2, 4, 8, 0.78) 0%, transparent 40%),
    radial-gradient(ellipse 110% 90% at 52% 48%, transparent 18%, rgba(2, 4, 8, 0.55) 100%);
}

.hero__content {
  align-self: center;
  width: min(860px, calc(100vw - 96px));
  margin-left: var(--osc-gutter);
  padding-top: 96px;
}

.hero h1 {
  margin: 0;
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-size: clamp(4.2rem, 2.4rem + 9vw, 10rem);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-shadow:
    0 0 10px rgba(20, 215, 242, 0.5),
    0 0 20px rgba(20, 215, 242, 0.3),
    0 0 30px rgba(20, 215, 242, 0.2);
}

.hero__thesis {
  max-width: 680px;
  margin: 40px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 1rem + 1.3vw, 2.3rem);
  font-weight: 500;
  line-height: 1.2;
}

.hero__support {
  max-width: 640px;
  margin: 20px 0 32px;
  color: var(--osc-muted);
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.2rem);
  line-height: 1.65;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 1px solid var(--osc-cyan);
  border-radius: 4px;
  color: var(--osc-void);
  background: var(--osc-cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 200ms cubic-bezier(0, 0, 0.2, 1), box-shadow 500ms cubic-bezier(0.33, 1, 0.68, 1), background 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.primary-cta:hover {
  background: var(--osc-cyan-bright);
  box-shadow:
    0 0 12px rgba(20, 215, 242, 0.5),
    0 0 28px rgba(20, 215, 242, 0.3),
    0 0 48px rgba(20, 215, 242, 0.2);
  transform: translateY(-1px);
}

.primary-cta:active {
  transform: translateY(0);
}

.hero__footer {
  position: absolute;
  right: var(--osc-gutter);
  bottom: 24px;
  left: var(--osc-gutter);
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 215, 242, 0.24);
  color: var(--osc-muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.aperture-story {
  height: 230vh;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--osc-void);
}

.aperture-story__sticky, .timeslice__sticky {
  position: sticky;
  top: 0;
  display: grid;
  align-items: center;
  width: 100vw;
  min-height: 100svh;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.aperture-story__sticky {
  display: block;
}

.aperture-story__copy {
  position: absolute;
  bottom: clamp(92px, 14vh, 160px);
  left: var(--osc-gutter);
  z-index: 4;
  max-width: 580px;
  text-shadow: 0 3px 28px rgba(2, 4, 8, 0.96);
}

.aperture-story__copy p:last-child, .timeslice__copy p, .workflow__heading > p:last-child, .lineage__heading > p {
  max-width: 600px;
  color: var(--osc-muted);
  font-size: clamp(1rem, 0.92rem + 0.38vw, 1.2rem);
  line-height: 1.7;
}

.aperture {
  --aperture-size: calc(12% + (var(--progress) * 88%));
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
}

.aperture::before {
  position: absolute;
  top: 50%;
  left: 62%;
  z-index: 2;
  width: min(78vmin, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(20, 215, 242, calc(0.45 - (var(--progress) * 0.25)));
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 32px rgba(20, 215, 242, 0.12);
  translate: -50% -50%;
  scale: calc(0.72 + (var(--progress) * 0.28));
}

.aperture::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 4, 8, 0.9) 0%, rgba(2, 4, 8, 0.55) 32%, transparent 62%),
    linear-gradient(0deg, rgba(2, 4, 8, 0.72), transparent 42%);
}

.aperture__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: circle(var(--aperture-size) at 62% 50%);
  filter: saturate(0.9) contrast(1.08);
  scale: calc(1.18 - (var(--progress) * 0.18));
}

.aperture__ring {
  position: absolute;
  top: 50%;
  left: 62%;
  z-index: 3;
  aspect-ratio: 1;
  pointer-events: none;
  border: 1px solid rgba(20, 215, 242, 0.18);
  border-radius: 50%;
  translate: -50% -50%;
}

.aperture__ring--outer {
  width: min(88vmin, 1040px);
  rotate: calc(var(--progress) * 42deg);
  border-right-color: var(--osc-cyan);
  border-left-color: transparent;
}

.aperture__ring--inner {
  width: min(52vmin, 620px);
  rotate: calc(var(--progress) * -58deg);
  border-top-color: var(--osc-indigo);
  border-bottom-color: transparent;
}

.aperture-story__readout {
  position: absolute;
  right: var(--osc-gutter);
  bottom: 24px;
  left: var(--osc-gutter);
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--osc-edge);
  color: var(--osc-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.timeslice {
  height: 220vh;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--osc-space);
}

.timeslice__sticky {
  display: block;
}

.timeslice__media {
  --mask-open: calc(12% + (var(--progress) * 88%));
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  border: 0;
  clip-path: inset(calc((100% - var(--mask-open)) / 2) 0 round 0);
}

.timeslice__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(calc(0.9 + (var(--progress) * 0.3))) contrast(1.08);
  scale: calc(1.12 - (var(--progress) * 0.12));
}

.timeslice__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 34%, rgba(2, 4, 8, 0.3) 58%, rgba(2, 4, 8, 0.88) 100%),
    linear-gradient(0deg, rgba(2, 4, 8, 0.58), transparent 40%);
}

.timeslice__shutters {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  pointer-events: none;
}

.timeslice__shutters span {
  border-right: 1px solid rgba(20, 215, 242, 0.18);
  background: rgba(2, 4, 8, calc(0.82 - (var(--progress) * 0.82)));
  transform: translateY(calc((1 - var(--progress)) * 14%));
}

.timeslice__shutters span:nth-child(even) {
  transform: translateY(calc((1 - var(--progress)) * -14%));
}

.timeslice__copy {
  position: absolute;
  top: 50%;
  right: var(--osc-gutter);
  z-index: 4;
  width: min(520px, calc(100vw - (var(--osc-gutter) * 2)));
  text-shadow: 0 3px 28px rgba(2, 4, 8, 0.98);
  translate: 0 -50%;
}

@media (min-width: 769px) {
  .workflow {
    padding-right: max(24px, calc((100vw - 1440px) / 2));
    padding-left: max(24px, calc((100vw - 1440px) / 2));
  }

  .aperture-story__copy h2,
  .timeslice__copy h2,
  .workflow__heading h2 {
    font-size: clamp(3rem, 3.9vw, 3.6rem);
  }

  .timeslice__copy h2,
  .workflow__heading h2 {
    white-space: nowrap;
  }
}

.timeslice__copy p + p {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--osc-edge);
  color: var(--osc-dim);
  font-size: 0.9rem;
}

.workflow {
  height: 320vh;
  padding-top: 0;
  padding-bottom: 0;
}

.workflow__stage {
  position: sticky;
  top: 0;
  min-height: 100svh;
  padding-top: clamp(3.5rem, 5vh, 4.5rem);
  overflow: hidden;
}

.workflow__heading {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(360px, 1.15fr);
  column-gap: 80px;
  align-items: end;
  max-width: 1120px;
}

.workflow__heading .section-label {
  grid-column: 1 / -1;
}

.workflow__heading h2, .workflow__heading > p:last-child {
  margin-bottom: 0;
}

.workflow__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 26px 0 18px;
  padding: 0;
  border-top: 1px solid var(--osc-edge);
  border-bottom: 1px solid var(--osc-edge);
  list-style: none;
}

.workflow__steps li {
  display: flex;
  flex-direction: column;
  min-height: 62px;
  padding: 10px 16px;
  border-right: 1px solid var(--osc-edge);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(0.85rem, 0.7rem + 0.45vw, 1.1rem);
  font-weight: 500;
}

.workflow__steps li:last-child {
  border-right: 0;
}

.workflow__steps span {
  margin-bottom: auto;
  color: var(--osc-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
}

.platform-frame {
  position: relative;
  height: min(64vh, 720px);
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(20, 215, 242, 0.32);
  overflow: hidden;
  background: rgba(6, 13, 24, 0.9);
  box-shadow:
    0 0 0 1px rgba(20, 215, 242, 0.04),
    0 24px 72px rgba(2, 4, 8, 0.7),
    0 0 48px rgba(20, 215, 242, 0.08);
}

.platform-frame::before {
  position: absolute;
  top: -8px;
  left: 48px;
  width: 96px;
  height: 1px;
  content: "";
  background: var(--osc-cyan-bright);
  box-shadow: 0 0 16px var(--osc-cyan);
}

.platform-frame img {
  width: 100%;
  height: auto;
  background: var(--osc-space);
  transform: translate3d(0, var(--platform-y, 0), 0);
  will-change: transform;
}

.platform-frame figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 22px 8px 4px;
  color: var(--osc-dim);
  background: linear-gradient(0deg, rgba(2, 4, 8, 0.96), transparent);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.engine-credit {
  display: flex;
  justify-content: space-between;
  margin: 18px 0 0;
  color: var(--osc-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.engine-credit span {
  color: rgba(148, 163, 184, 0.72);
}

.product-proof {
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding-top: clamp(7rem, 10vw, 10rem);
  padding-bottom: clamp(7rem, 10vw, 10rem);
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(20, 215, 242, 0.045), transparent 32%),
    var(--osc-space);
}

.product-proof__heading {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(320px, 0.72fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.product-proof__heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.product-proof__heading h2,
.product-proof__heading > p:last-child {
  margin-bottom: 0;
}

.product-proof__heading h2 > span:not(.word):not(.glyph) {
  color: var(--osc-cyan-bright);
}

.product-proof__heading > p:last-child {
  color: var(--osc-muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 0.94rem + 0.35vw, 1.2rem);
  line-height: 1.7;
}

.proof-scan {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--osc-edge);
  list-style: none;
}

.proof-scan li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  min-height: 176px;
  padding: 26px 24px 24px 0;
  border-bottom: 1px solid var(--osc-edge);
}

.proof-scan li:not(:nth-child(3n + 1)) {
  padding-left: 24px;
  border-left: 1px solid var(--osc-edge);
}

.proof-scan li > span {
  color: var(--osc-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.proof-scan strong,
.proof-scan small {
  display: block;
}

.proof-scan strong {
  margin-bottom: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.proof-scan small {
  color: var(--osc-muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

.roadmap {
  height: 300vh;
  padding-top: 0;
  padding-bottom: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 82% 32%, rgba(99, 102, 241, 0.12), transparent 30rem),
    var(--osc-void);
  isolation: isolate;
}

.roadmap::after {
  position: absolute;
  top: 24%;
  left: 6vw;
  z-index: -1;
  color: rgba(226, 232, 240, 0.024);
  content: "V1 / V2 / V3";
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-size: clamp(9rem, 20vw, 22rem);
  font-weight: 700;
  line-height: 0.8;
  white-space: nowrap;
  transform: translate3d(calc(var(--progress) * -18vw), 0, 0);
}

.roadmap__sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding-top: clamp(4.5rem, 8vh, 7rem);
  padding-bottom: 28px;
}

.roadmap__heading {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(300px, 0.64fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.roadmap__heading h2,
.roadmap__heading > p {
  margin-bottom: 0;
}

.roadmap__heading h2 > span:not(.word):not(.glyph) {
  color: transparent;
  -webkit-text-stroke: 1px var(--osc-cyan-bright);
}

.roadmap__heading > p {
  color: var(--osc-muted);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.7;
}

.roadmap__rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: center;
  margin-top: 5vh;
}

.roadmap__track {
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  height: 1px;
  overflow: hidden;
  background: rgba(148, 163, 184, 0.2);
}

.roadmap__track i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--osc-cyan-bright), var(--osc-indigo) 52%, #ff9f43);
  box-shadow: 0 0 16px currentColor;
  transform: scaleX(var(--progress));
  transform-origin: left;
}

.roadmap-phase {
  --phase-color: var(--osc-cyan-bright);
  position: relative;
  min-height: 340px;
  padding: 56px clamp(22px, 2.5vw, 40px) 28px 0;
  color: var(--osc-muted);
  opacity: 0.48;
  transform: translate3d(0, var(--roadmap-y, 0), 0);
  transition: opacity 360ms ease, color 360ms ease;
  will-change: transform;
}

.roadmap-phase + .roadmap-phase {
  padding-left: clamp(22px, 2.5vw, 40px);
  border-left: 1px solid var(--osc-edge);
}

.roadmap-phase::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 13px;
  aspect-ratio: 1;
  border: 1px solid var(--phase-color);
  border-radius: 50%;
  background: var(--osc-void);
  box-shadow: 0 0 14px var(--phase-color);
  content: "";
}

.roadmap-phase + .roadmap-phase::before {
  left: clamp(22px, 2.5vw, 40px);
}

.roadmap-phase--v2 { --phase-color: #8d88ff; }
.roadmap-phase--v3 { --phase-color: #ff9f43; }

.roadmap-phase.is-active {
  color: var(--osc-text);
  opacity: 1;
}

.roadmap-phase header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--phase-color);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.roadmap-phase header b {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 0.7;
}

.roadmap-phase__label {
  margin: 42px 0 10px;
  color: var(--phase-color);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.roadmap-phase h3 {
  margin: 0 0 16px;
  color: var(--osc-text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 1.1rem + 0.9vw, 2rem);
  font-weight: 600;
}

.roadmap-phase > p:not(.roadmap-phase__label) {
  max-width: 360px;
  min-height: 92px;
  margin-bottom: 28px;
  color: inherit;
  font-size: 0.82rem;
  line-height: 1.65;
}

.roadmap-phase small {
  color: var(--phase-color);
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.13em;
}

.roadmap__readout {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--osc-edge);
  color: var(--osc-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.roadmap__readout b {
  color: var(--osc-cyan-bright);
  font-weight: 400;
}

.climate {
  --climate: #a7f36b;
  display: grid;
  grid-template-columns: 190px minmax(420px, 1fr) auto;
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  min-height: 84svh;
  padding-top: clamp(7rem, 10vw, 10rem);
  padding-bottom: clamp(7rem, 10vw, 10rem);
  border-top: 1px solid rgba(167, 243, 107, 0.24);
  border-bottom: 1px solid rgba(167, 243, 107, 0.18);
  background:
    radial-gradient(circle at 16% 50%, rgba(167, 243, 107, 0.1), transparent 22rem),
    #030806;
}

.climate__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 176px;
  aspect-ratio: 1;
  border: 1px solid rgba(167, 243, 107, 0.52);
  border-radius: 50%;
  color: var(--climate);
}

.climate__mark::before {
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(167, 243, 107, 0.18);
  border-radius: inherit;
  content: "";
}

.climate__mark span {
  font-family: "Rajdhani", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.climate__mark i {
  position: absolute;
  top: 44px;
  right: 3px;
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--climate);
  box-shadow: 0 0 16px var(--climate);
}

.climate__copy .section-label {
  color: var(--climate);
}

.climate__copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 4.7vw, 5.6rem);
}

.climate__copy h2 > span:not(.word):not(.glyph) {
  color: var(--climate);
}

.climate__copy > p:not(.section-label) {
  max-width: 760px;
  margin-bottom: 16px;
  color: #b8c8bd;
  line-height: 1.7;
}

.climate__copy small {
  color: #718277;
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.climate__link {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(167, 243, 107, 0.46);
  color: var(--climate);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
}

.lineage {
  min-height: 230vh;
  padding-top: clamp(7rem, 12vw, 11rem);
  padding-bottom: clamp(7rem, 12vw, 11rem);
  overflow: clip;
  background:
    radial-gradient(circle at 82% 38%, rgba(99, 102, 241, 0.11), transparent 28rem),
    var(--osc-void);
}

.lineage__heading {
  position: relative;
  z-index: 4;
  max-width: 720px;
}

.lineage__heading > p:last-child {
  max-width: 620px;
  color: var(--osc-muted);
}

.featured-set {
  width: 100%;
  margin: clamp(3rem, 7vw, 6rem) 0 0;
}

.featured-set__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 251, 252, 0.42);
  background: var(--osc-panel);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.56), 0 0 40px rgba(20, 215, 242, 0.08);
}

.featured-set__frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(99, 102, 241, 0.24);
  content: "";
  pointer-events: none;
}

.featured-set iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.featured-set__poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  aspect-ratio: 16 / 9;
  color: var(--osc-text);
  background: var(--osc-panel);
  cursor: pointer;
}

.featured-set__poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at center, transparent 32%, rgba(2, 4, 8, 0.28) 100%);
  transition: opacity 320ms ease;
}

.featured-set__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 320ms ease;
}

.featured-set__poster:hover img {
  filter: brightness(1.08);
  scale: 1.018;
}

.featured-set__poster:hover::after {
  opacity: 0.55;
}

.featured-set__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(58px, 7vw, 92px);
  aspect-ratio: 1;
  border: 1px solid rgba(6, 251, 252, 0.88);
  border-radius: 50%;
  background: rgba(2, 4, 8, 0.78);
  box-shadow: 0 0 32px rgba(20, 215, 242, 0.35);
  translate: -50% -50%;
  transition: scale 220ms ease, background 220ms ease;
}

.featured-set__play::after {
  position: absolute;
  top: 50%;
  left: 54%;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--osc-cyan-bright);
  content: "";
  translate: -50% -50%;
}

.featured-set__poster:hover .featured-set__play {
  background: rgba(2, 4, 8, 0.92);
  scale: 1.08;
}

.featured-set__prompt {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 2;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  translate: -50% 0;
}

.featured-set figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  color: var(--osc-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-set figcaption a {
  color: var(--osc-cyan-bright);
  text-decoration: none;
}

.featured-set figcaption a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.render-reel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(10, minmax(68px, 9vh));
  gap: 18px;
  width: 100%;
  min-height: 100vh;
  margin-top: clamp(5rem, 10vw, 9rem);
  perspective: 1400px;
}

.render-reel::before {
  position: absolute;
  top: -38px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--osc-cyan), transparent 34%, var(--osc-indigo) 68%, transparent);
  transform: scaleX(calc(0.1 + var(--progress) * 0.9));
  transform-origin: left;
  box-shadow: 0 0 16px rgba(20, 215, 242, 0.38);
}

.render-shot {
  position: relative;
  z-index: 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 215, 242, 0.2);
  background: var(--osc-panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(var(--tilt, 0deg));
  transition: border-color 320ms ease, box-shadow 500ms ease;
  will-change: transform;
}

.render-shot::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 58%, rgba(2, 4, 8, 0.86)),
    linear-gradient(90deg, rgba(6, 251, 252, 0.08), transparent 32%);
}

.render-shot:hover {
  z-index: 5;
  border-color: rgba(6, 251, 252, 0.7);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.58), 0 0 32px rgba(20, 215, 242, 0.12);
}

.render-shot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.035;
  transition: scale 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.render-shot:hover video {
  scale: 1.09;
}

.render-shot figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: var(--osc-text);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.render-shot figcaption span {
  color: var(--osc-cyan-bright);
}

.render-shot--field { grid-column: 1 / 8; grid-row: 1 / 5; --tilt: -0.55deg; }
.render-shot--kintsugi { grid-column: 8 / 13; grid-row: 1 / 4; --tilt: 0.8deg; }
.render-shot--cobalt { grid-column: 4 / 10; grid-row: 5 / 9; --tilt: 0.35deg; }
.render-shot--brass { grid-column: 9 / 13; grid-row: 4 / 8; --tilt: -0.7deg; }
.render-shot--finale { grid-column: 1 / 5; grid-row: 6 / 10; --tilt: 0.65deg; }

.render-reel__credit {
  margin: 28px 0 0;
  color: var(--osc-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-align: right;
}

.closing {
  display: grid;
  place-content: center;
  min-height: 100svh;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.closing__iris {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(72vw, 960px);
  aspect-ratio: 1;
  border: 1px solid rgba(20, 215, 242, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 215, 242, 0.12), rgba(99, 102, 241, 0.04) 36%, transparent 68%);
  box-shadow: inset 0 0 100px rgba(20, 215, 242, 0.05), 0 0 100px rgba(20, 215, 242, 0.05);
  transform: translate(-50%, -50%);
}

.closing__iris::before, .closing__iris::after {
  position: absolute;
  border: 1px solid rgba(20, 215, 242, 0.12);
  border-radius: 50%;
  content: "";
}

.closing__iris::before { inset: 12%; border-right-color: var(--osc-cyan); }
.closing__iris::after { inset: 28%; border-left-color: var(--osc-indigo); }

.closing h2 {
  max-width: 1120px;
  margin-bottom: 40px;
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-size: clamp(3.2rem, 2rem + 5.8vw, 8.4rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.closing h2 > .accent-line {
  color: var(--osc-cyan);
}

.closing h2 > .accent-line .glyph {
  color: hsl(calc(184 + (var(--glyph-index) * 1.8)) 92% 70%);
  text-shadow: 0 0 28px currentColor;
}

.closing > p:last-child {
  color: var(--osc-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.closing > p:last-child small {
  display: block;
  margin-top: 10px;
  color: rgba(100, 116, 139, 0.62);
  font-size: 7px;
}

.site-footer {
  display: grid;
  grid-template-columns: 160px 1fr auto auto;
  gap: 32px;
  align-items: center;
  padding: 32px var(--osc-gutter);
  border-top: 1px solid var(--osc-edge);
  color: var(--osc-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.site-footer img {
  width: 132px;
  height: 40px;
  object-fit: contain;
  opacity: 0.8;
}

.site-footer p {
  margin: 0;
}

.site-footer__about {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}

.site-footer__links {
  display: flex;
  gap: 16px;
}

.site-footer__links a {
  color: var(--osc-muted);
  text-decoration-color: rgba(20, 215, 242, 0.42);
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.site-footer__links a:hover {
  color: var(--osc-cyan-bright);
  text-decoration-color: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms cubic-bezier(0, 0, 0.2, 1), transform 700ms cubic-bezier(0, 0, 0.2, 1);
}

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

@media (max-width: 1024px) {
  :root {
    --osc-content: calc(100vw - 64px);
    --osc-gutter: 32px;
  }

  .aperture-story__sticky {
    grid-template-columns: minmax(260px, 0.72fr) minmax(380px, 1.28fr);
    gap: 32px;
  }

  .timeslice__sticky {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 40px;
  }

  .engine {
    gap: 48px;
  }

  .roadmap__heading {
    grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.72fr);
    gap: 48px;
  }

  .climate {
    grid-template-columns: 150px 1fr;
  }

  .climate__mark {
    width: 140px;
  }

  .climate__mark span {
    font-size: 3.2rem;
  }

  .climate__link {
    grid-column: 2;
    justify-self: start;
  }

}

@media (max-width: 768px) {
  :root {
    --osc-content: calc(100vw - 48px);
    --osc-gutter: 24px;
  }

  .site-header {
    min-height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-header.is-scrolled {
    background: rgba(5, 8, 16, 0.96);
    backdrop-filter: none;
  }

  .brand-link img {
    width: 120px;
    height: 40px;
  }

  .engine-lockup > span {
    font-size: 12px;
  }

  .engine-lockup small {
    font-size: 7px;
  }

  .hero__content {
    width: calc(100vw - 48px);
    margin-left: 24px;
    padding-top: 80px;
  }

  .hero__veil {
    background:
      linear-gradient(0deg, rgba(2, 4, 8, 0.94) 0%, rgba(2, 4, 8, 0.38) 76%, rgba(2, 4, 8, 0.58) 100%),
      radial-gradient(ellipse 120% 90% at 50% 40%, transparent 4%, rgba(2, 4, 8, 0.48) 100%);
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 6.2rem);
    letter-spacing: 0.04em;
  }

  .hero__thesis {
    margin-top: 32px;
  }

  .hero__support {
    max-width: 520px;
  }

  .hero__footer {
    right: 24px;
    bottom: 16px;
    left: 24px;
  }

  .aperture-story, .timeslice {
    height: 190vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .aperture-story__sticky, .timeslice__sticky {
    position: sticky;
    top: 0;
    display: block;
    min-height: 100svh;
    overflow: hidden;
  }

  .aperture {
    width: 100vw;
    height: 100svh;
  }

  .aperture::after {
    background:
      linear-gradient(0deg, rgba(2, 4, 8, 0.94) 0%, rgba(2, 4, 8, 0.48) 48%, transparent 78%),
      linear-gradient(90deg, rgba(2, 4, 8, 0.42), transparent 55%);
  }

  .aperture-story__copy {
    right: 24px;
    bottom: 78px;
    left: 24px;
    max-width: 620px;
  }

  .aperture-story__readout {
    right: 24px;
    bottom: 20px;
    left: 24px;
  }

  .timeslice__media {
    width: 100vw;
    height: 100svh;
  }

  .timeslice__media::after {
    background: linear-gradient(0deg, rgba(2, 4, 8, 0.94) 0%, rgba(2, 4, 8, 0.46) 52%, transparent 80%);
  }

  .timeslice__copy {
    top: auto;
    right: 24px;
    bottom: 54px;
    left: 24px;
    width: auto;
    translate: none;
  }

  .workflow__heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workflow {
    height: auto;
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .workflow__stage {
    position: relative;
    min-height: 0;
    padding-top: 0;
    overflow: visible;
  }

  .workflow__heading .section-label {
    grid-column: auto;
  }

  .workflow__steps {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .workflow__steps li {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    min-height: 56px;
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--osc-edge);
  }

  .workflow__steps li:last-child {
    border-bottom: 0;
  }

  .workflow__steps span {
    margin: 0;
  }

  .platform-frame {
    height: min(72vh, 620px);
    overflow: hidden;
  }

  .platform-frame img {
    width: 132%;
    max-width: none;
    transform: none;
  }

  .lineage {
    min-height: auto;
  }

  .product-proof {
    min-height: 0;
  }

  .product-proof__heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-proof__heading .section-label {
    grid-column: auto;
  }

  .proof-scan {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-scan li:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }

  .proof-scan li:nth-child(even) {
    padding-left: 20px;
    border-left: 1px solid var(--osc-edge);
  }

  .roadmap {
    height: auto;
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .roadmap::after {
    top: 180px;
    left: 24px;
    font-size: 34vw;
    transform: none;
  }

  .roadmap__sticky {
    position: relative;
    display: block;
    min-height: 0;
    padding: 0;
  }

  .roadmap__heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .roadmap__rail {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .roadmap__track {
    top: 0;
    bottom: 0;
    left: 6px;
    width: 1px;
    height: auto;
  }

  .roadmap__track i {
    transform: scaleY(var(--progress));
    transform-origin: top;
  }

  .roadmap-phase,
  .roadmap-phase + .roadmap-phase {
    min-height: 0;
    padding: 16px 0 56px 40px;
    border-left: 0;
    opacity: 1;
    transform: none;
  }

  .roadmap-phase::before,
  .roadmap-phase + .roadmap-phase::before {
    top: 0;
    left: 0;
  }

  .roadmap-phase__label {
    margin-top: 30px;
  }

  .roadmap-phase > p:not(.roadmap-phase__label) {
    min-height: 0;
  }

  .roadmap__readout {
    margin-top: 12px;
  }

  .climate {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .climate__link {
    grid-column: auto;
  }

  .render-reel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    min-height: auto;
    gap: 12px;
  }

  .render-shot {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    transform: none;
  }

  .render-shot--field, .render-shot--cobalt, .render-shot--finale {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .site-footer {
    grid-template-columns: 132px 1fr;
  }

  .site-footer p:last-child {
    grid-column: auto;
    text-align: right;
  }
}

@media (max-width: 480px) {
  :root {
    --osc-content: calc(100vw - 32px);
    --osc-gutter: 16px;
  }

  .section-label, .eyebrow {
    margin-bottom: 16px;
    letter-spacing: 0.12em;
  }

  .featured-set figcaption {
    display: grid;
    gap: 8px;
    line-height: 1.5;
  }

  .featured-set__prompt {
    display: none;
  }

  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .signal-rail {
    inset: 6px;
  }

  .signal-rail__counter {
    right: 8px;
    bottom: 6px;
  }

  .brand-link img {
    width: 96px;
  }

  .engine-lockup small {
    display: none;
  }

  .hero__content {
    width: calc(100vw - 32px);
    margin-left: 16px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14.6vw, 4rem);
    letter-spacing: 0.015em;
  }

  .hero__thesis {
    margin-top: 24px;
  }

  .hero__support {
    line-height: 1.5;
  }

  .primary-cta {
    width: 100%;
    justify-content: center;
  }

  .hero__footer {
    right: 16px;
    left: 16px;
    font-size: 8px;
  }

  .hero__footer span:last-child {
    display: none;
  }

  .aperture-story, .timeslice {
    padding-top: 0;
    padding-bottom: 0;
  }

  .aperture-story__copy,
  .timeslice__copy {
    right: 16px;
    left: 16px;
  }

  .aperture-story__copy {
    bottom: 72px;
  }

  .aperture-story__readout {
    right: 16px;
    left: 16px;
  }

  .platform-frame img {
    width: 170%;
  }

  .platform-frame figcaption span:last-child {
    display: none;
  }

  .proof-scan {
    grid-template-columns: 1fr;
  }

  .proof-scan li,
  .proof-scan li:nth-child(even),
  .proof-scan li:not(:nth-child(3n + 1)) {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
  }

  .roadmap__readout span {
    display: none;
  }

  .roadmap-phase header b {
    font-size: 3rem;
  }

  .climate__mark {
    width: 116px;
  }

  .climate__mark span {
    font-size: 2.7rem;
  }

  .climate__copy h2 {
    font-size: clamp(2.6rem, 13vw, 3.5rem);
  }

  .climate__copy small {
    display: block;
    line-height: 1.6;
  }

  .render-reel {
    grid-template-columns: 1fr;
  }

  .render-shot, .render-shot--field, .render-shot--cobalt, .render-shot--finale {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .render-shot figcaption {
    right: 12px;
    bottom: 10px;
    left: 12px;
  }

  .closing h2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-footer p:last-child {
    grid-column: auto;
    text-align: left;
  }
}

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

  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0ms !important;
    transition-duration: 0ms !important;
  }

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

  .glyph {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .signal-rail__wave {
    animation: none;
  }

  .roadmap {
    height: auto;
  }

  .roadmap__sticky {
    position: relative;
    min-height: 0;
  }

  .roadmap::after,
  .roadmap-phase {
    transform: none;
  }

  .aperture-story, .timeslice {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .aperture-story__sticky, .timeslice__sticky {
    position: relative;
    min-height: 100svh;
  }

  .aperture {
    --aperture-size: 100%;
  }

  .timeslice__media {
    --mask-open: 100%;
  }

  .timeslice__shutters span {
    background: transparent;
    transform: none;
  }
}
