:root {
  --bg: #0a0a0d;
  --bg-soft: #121319;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f1ea;
  --muted: rgba(244, 241, 234, 0.72);
  --muted-strong: rgba(244, 241, 234, 0.88);
  --accent: #c8ff6a;
  --accent-2: #7dd6ff;
  --accent-3: #ff8b5d;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: min(1220px, calc(100vw - 48px));
  --hero-frame-width: min(1680px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.16;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent 0,
      transparent calc(20% - 1px),
      rgba(255, 255, 255, 0.045) calc(20% - 1px),
      rgba(255, 255, 255, 0.045) 20%,
      transparent 20%,
      transparent calc(40% - 1px),
      rgba(255, 255, 255, 0.04) calc(40% - 1px),
      rgba(255, 255, 255, 0.04) 40%,
      transparent 40%,
      transparent calc(60% - 1px),
      rgba(255, 255, 255, 0.04) calc(60% - 1px),
      rgba(255, 255, 255, 0.04) 60%,
      transparent 60%,
      transparent calc(80% - 1px),
      rgba(255, 255, 255, 0.045) calc(80% - 1px),
      rgba(255, 255, 255, 0.045) 80%,
      transparent 80%
    );
  opacity: 0.26;
}

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

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

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

.bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.22;
}

.bg-glow-a {
  top: -8vh;
  right: -8vw;
  width: 32vw;
  height: 32vw;
  background: radial-gradient(circle, rgba(125, 214, 255, 0.8), rgba(125, 214, 255, 0));
}

.bg-glow-b {
  bottom: 10vh;
  left: -10vw;
  width: 28vw;
  height: 28vw;
  background: radial-gradient(circle, rgba(255, 139, 93, 0.75), rgba(255, 139, 93, 0));
}

.bg-grid {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%);
  opacity: 0.35;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: var(--content);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand,
.hero__title,
.section-heading h2,
.story-panel__copy h3,
.demo-card h3,
.cta-panel h2,
.story-visual__title {
  font-family: "Sora", sans-serif;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand__main {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand__sub {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.site-nav {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

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

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 190vh;
  padding: 40px 0 0;
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1;
}

.hero__backdrop {
  position: absolute;
  top: 7vh;
  bottom: 5vh;
  left: 50%;
  width: var(--hero-frame-width);
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.hero__media {
  position: absolute;
  top: 7vh;
  bottom: 5vh;
  left: 50%;
  width: var(--hero-frame-width);
  transform: translateX(-50%);
  border-radius: 40px;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.14) 0%, rgba(8, 10, 14, 0.28) 58%, rgba(8, 10, 14, 0.78) 86%, rgba(8, 10, 14, 0.96) 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(8, 10, 14, 0.34), rgba(8, 10, 14, 0.08) 44%, rgba(8, 10, 14, 0.34));
  z-index: 1;
}

.hero__media-placeholder {
  position: absolute;
  inset: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 0%, transparent 58%, rgba(8, 10, 14, 0.28) 100%);
}

.hero__media-spec,
.hero__media-label,
.hero__media-note,
.hero__media-badge {
  position: relative;
  z-index: 2;
}

.hero__media-spec {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  margin-bottom: auto;
  border-radius: 999px;
  background: rgba(9, 10, 14, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(244, 241, 234, 0.94);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__media-label {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  letter-spacing: -0.04em;
}

.hero__media-note {
  max-width: 26rem;
  margin-top: 12px;
  color: rgba(244, 241, 234, 0.8);
  line-height: 1.7;
}

.hero__media-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: fit-content;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(200, 255, 106, 0.14);
  border: 1px solid rgba(200, 255, 106, 0.28);
  color: #edf8b4;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin: 0 auto;
  min-height: 190vh;
  padding: 14vh 0 28vh;
}

.hero__content {
  position: relative;
  max-width: min(64rem, 92%);
}

.hero__title {
  margin: 0;
  font-size: clamp(4.6rem, 12vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  max-width: 8ch;
}

.hero__title span {
  display: block;
  color: rgba(244, 241, 234, 0.72);
}

.hero__lead,
.capabilities__intro p,
.capability-card p,
.story-step p,
.story-panel__copy p,
.demo-card p,
.cta-panel p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.hero__lead {
  max-width: 38rem;
  margin: 24px 0 0;
}

.hero__actions,
.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  color: #0d0f13;
  background: linear-gradient(135deg, var(--accent), #eef8a3);
}

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero__note {
  position: absolute;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(9, 10, 14, 0.7);
  backdrop-filter: blur(12px);
  padding: 16px 18px;
  display: grid;
  gap: 4px;
}

.hero__note span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__note strong {
  font-size: 0.95rem;
}

.hero__note--left {
  right: 18vw;
  top: 64vh;
}

.hero__note--right {
  right: 0;
  top: 84vh;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  top: 90vh;
  transform: translateX(-50%);
  display: grid;
  gap: 12px;
  justify-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero__scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(rgba(255, 255, 255, 0.9), transparent);
}

.capabilities,
.process,
.demos,
.cta {
  padding: 140px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.capabilities__intro {
  max-width: 620px;
  margin: 26px 0 34px;
}

.capabilities__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 22vw);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-top: 18px;
  padding-bottom: 14px;
  padding-left: 18px;
  padding-right: 18px;
  scroll-padding-left: 18px;
  scroll-padding-right: 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.capabilities__track::-webkit-scrollbar {
  display: none;
}

.capability-card,
.story-panel,
.demo-card,
.cta-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.capability-card {
  min-height: 320px;
  padding: 24px;
  display: grid;
  align-content: end;
  gap: 14px;
  min-width: 300px;
  position: relative;
  z-index: 0;
  scroll-snap-align: start;
  transform-origin: center center;
  transition: transform 280ms ease, box-shadow 280ms ease, filter 280ms ease;
  will-change: transform;
}

.capability-card:hover {
  z-index: 3;
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 42px 140px rgba(0, 0, 0, 0.48);
  filter: saturate(1.08) brightness(1.02);
}

.capabilities__nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.capabilities__nav-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.28) 18%,
    rgba(255, 255, 255, 0.12) 100%
  );
}

.capabilities__nav-button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 241, 234, 0.94);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.capabilities__nav-button:hover:not(:disabled) {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.capabilities__nav-button:disabled {
  opacity: 0.32;
  cursor: default;
}

.capability-card--mint {
  background: linear-gradient(180deg, rgba(84, 201, 144, 0.88), rgba(84, 201, 144, 0.72));
  color: #09100d;
}

.capability-card--blue {
  background: linear-gradient(180deg, rgba(95, 129, 255, 0.9), rgba(95, 129, 255, 0.72));
  color: #f7f9ff;
}

.capability-card--rose {
  background: linear-gradient(180deg, rgba(213, 88, 130, 0.9), rgba(213, 88, 130, 0.74));
  color: #fff7fb;
}

.capability-card--gold {
  background: linear-gradient(180deg, rgba(210, 164, 72, 0.92), rgba(210, 164, 72, 0.72));
  color: #120f08;
}

.capability-card--violet {
  background: linear-gradient(180deg, rgba(131, 103, 214, 0.92), rgba(131, 103, 214, 0.76));
  color: #fbf8ff;
}

.capability-card--mint p,
.capability-card--gold p {
  color: rgba(9, 16, 13, 0.74);
}

.capability-card--blue p,
.capability-card--rose p,
.capability-card--violet p {
  color: rgba(255, 255, 255, 0.82);
}

.capability-card--mint .capability-card__index,
.capability-card--gold .capability-card__index {
  background: rgba(9, 16, 13, 0.12);
  color: rgba(9, 16, 13, 0.9);
}

.capability-card--blue .capability-card__index,
.capability-card--rose .capability-card__index,
.capability-card--violet .capability-card__index {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.capabilities__progress {
  position: relative;
  width: 100%;
  height: 2px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.capabilities__progress-bar {
  display: block;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.statement {
  padding: 80px 0 150px;
}

.statement__inner {
  max-width: 1040px;
  margin: 0 auto;
}

.statement__copy {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.statement__copy span {
  display: block;
  color: rgba(244, 241, 234, 0.72);
}

.statement__subcopy {
  max-width: 34rem;
  margin: 28px 0 0 auto;
  color: var(--muted);
  line-height: 1.72;
}

.transition-word {
  padding: 20px 0 140px;
}

.transition-word__inner {
  max-width: 1180px;
}

.transition-word__copy {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.6rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.transition-word__copy span {
  display: block;
  color: rgba(244, 241, 234, 0.3);
}

.capability-card__index {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  font-weight: 800;
}

.capability-card h3,
.story-step h3,
.demo-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: start;
  margin-top: 42px;
}

.story-layout__sticky {
  position: sticky;
  top: 108px;
}

.story-panel {
  padding: 28px;
  overflow: hidden;
}

.story-panel__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.story-panel__count {
  font-family: "Sora", sans-serif;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.story-panel__label {
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.story-panel__copy {
  max-width: 32rem;
}

.story-panel__copy h3 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.story-panel__visual {
  position: relative;
  min-height: 420px;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #171a24, #111319);
  transition: background 400ms ease;
}

.story-visual__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.story-panel__visual[data-story-theme="attract"] {
  background: linear-gradient(135deg, #101723, #0f1c2f 45%, #173a2d);
}

.story-panel__visual[data-story-theme="explain"] {
  background: linear-gradient(135deg, #17111b, #281f31 50%, #4b3245);
}

.story-panel__visual[data-story-theme="engage"] {
  background: linear-gradient(135deg, #12161f, #1b2635 45%, #22516a);
}

.story-panel__visual[data-story-theme="convert"] {
  background: linear-gradient(135deg, #17160f, #2d2418 52%, #584116);
}

.story-panel__visual[data-story-theme="scale"] {
  background: linear-gradient(135deg, #121214, #1a1c28 48%, #28364f);
}

.story-visual__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 55%);
}

.story-visual__frame {
  position: absolute;
  inset: auto 22px 22px 22px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(9, 10, 14, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.story-visual__spec {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 241, 234, 0.92);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-visual__tag {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.story-visual__title {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.story-visual__placeholder {
  margin-top: 14px;
  color: rgba(244, 241, 234, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.story-progress {
  width: 100%;
  height: 4px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.story-progress__bar {
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: inherit;
  transition: width 280ms ease;
}

.story-layout__steps {
  display: grid;
  gap: 16px;
  padding-top: 10px;
}

.story-step {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  opacity: 0.54;
  transition: opacity 240ms ease, transform 240ms ease, border-color 240ms ease;
}

.story-step.is-active {
  opacity: 1;
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.story-step__number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 38px;
  position: relative;
  z-index: 1;
}

.demo-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.demo-card--accent {
  background:
    linear-gradient(180deg, rgba(125, 214, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.demo-card__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.demo-card__media {
  position: relative;
  min-height: 220px;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 20% 20%, rgba(125, 214, 255, 0.18), transparent 25%);
}

.demo-card__media--wp {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 78% 22%, rgba(200, 255, 106, 0.16), transparent 28%);
}

.demo-card__video,
.demo-card__media-overlay,
.demo-card__media-content {
  position: absolute;
  inset: 0;
}

.demo-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.demo-card__media-overlay {
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.12), rgba(8, 10, 14, 0.54) 100%),
    linear-gradient(90deg, rgba(8, 10, 14, 0.18), rgba(8, 10, 14, 0.08));
}

.demo-card__media-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.demo-card__media-spec {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(9, 10, 14, 0.46);
  color: rgba(244, 241, 234, 0.9);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.demo-card__media-label {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.demo-card__media-note {
  max-width: 20rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.demo-card__link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.demos {
  position: relative;
  overflow: hidden;
}

.demos__backword {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(4.8rem, 17vw, 16rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  white-space: nowrap;
}

.cta-panel {
  padding: 42px;
  text-align: center;
}

.cta-panel h2 {
  margin: 0 auto 14px;
  max-width: 12ch;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.cta-panel p {
  max-width: 42rem;
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 850ms cubic-bezier(0.2, 0.7, 0.1, 1);
}

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

.capability-card.reveal {
  transform: translateY(28px) scale(1);
}

.capability-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.capability-card.reveal.is-visible:hover {
  transform: translateY(-8px) scale(1.08);
}

@media (max-width: 1100px) {
  .hero__inner,
  .story-layout,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .story-layout__sticky {
    position: static;
  }
}

@media (max-width: 780px) {
  :root {
    --content: min(100vw - 28px, 1220px);
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 170vh;
  }

  .hero__inner {
    min-height: 170vh;
    padding: 12vh 0 26vh;
  }

  .hero__media,
  .hero__backdrop {
    top: 4vh;
    bottom: 14px;
    left: 50%;
    width: calc(100vw - 20px);
  }

  .hero__media-placeholder {
    padding: 22px;
  }

  .hero__note {
    position: absolute;
    margin-top: 0;
  }

  .hero__note--left {
    top: 72vh;
    left: 0;
  }

  .hero__note--right {
    top: 82vh;
    left: 0;
    right: auto;
  }

  .hero__actions,
  .cta-panel__actions {
    flex-direction: column;
  }

  .capability-card {
    min-width: 260px;
  }

  .statement {
    padding: 56px 0 110px;
  }

  .transition-word {
    padding: 8px 0 110px;
  }

  .statement__subcopy {
    margin-left: 0;
  }

  .story-panel__count {
    font-size: 3.6rem;
  }

  .story-panel__copy h3 {
    font-size: 2rem;
  }

  .story-panel__visual {
    min-height: 320px;
  }

  .cta-panel {
    padding: 28px 20px;
  }
}
