: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.is-featured-video-gated {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}

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;
}

.privacy-proof {
  padding: 0 0 110px;
}

.privacy-proof__intro {
  max-width: 54rem;
  margin-top: 22px;
}

.privacy-proof__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.82;
}

.privacy-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.privacy-card {
  position: relative;
  min-height: 100%;
  padding: 28px 24px 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(9, 10, 14, 0.76);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.privacy-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  margin-bottom: 20px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(200, 255, 106, 0.1);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.privacy-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.privacy-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.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);
}

.featured-video {
  padding: 20px 0 150px;
}

.featured-video__intro {
  max-width: 860px;
  margin-bottom: 48px;
}

.featured-video__intro h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 6vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.featured-video__intro p:not(.eyebrow) {
  max-width: 40rem;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.featured-video__stage {
  position: relative;
  min-height: min(82vh, 760px);
  border-radius: clamp(24px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(125, 214, 255, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 36px 150px rgba(0, 0, 0, 0.46);
}

.featured-video__player,
.featured-video__shade,
.featured-video__content {
  position: absolute;
  inset: 0;
}

.featured-video__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.featured-video__shade {
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 7, 10, 0.22), rgba(6, 7, 10, 0.58)),
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(6, 7, 10, 0.4) 100%);
}

.featured-video__content {
  pointer-events: none;
  padding: clamp(28px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 58rem;
}

.featured-video__content span {
  width: fit-content;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(9, 10, 14, 0.54);
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.featured-video__content strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.6rem, 6vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.featured-video__gate {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  transform: translateX(-50%);
  min-width: 180px;
  min-height: 64px;
  border: 0;
  border-radius: 999px;
  color: #090a0e;
  background: linear-gradient(135deg, var(--accent), #eef8a3);
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.16em;
  cursor: pointer;
  box-shadow: 0 20px 80px rgba(200, 255, 106, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 220ms ease;
}

.featured-video__gate:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 28px 100px rgba(200, 255, 106, 0.38);
}

.featured-video__swap {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  transform: translateX(-50%);
  min-width: 236px;
  min-height: 40px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(244, 241, 234, 0.9);
  background: rgba(9, 10, 14, 0.6);
  backdrop-filter: blur(18px);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  cursor: default;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 220ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.featured-video__swap.is-loading {
  cursor: wait;
}

.featured-video__swap.is-ready {
  color: #090a0e;
  background: linear-gradient(135deg, rgba(200, 255, 106, 0.96), #eef8a3);
  border-color: transparent;
  box-shadow: 0 20px 80px rgba(200, 255, 106, 0.22);
  cursor: pointer;
}

.featured-video__swap.is-ready:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 28px 96px rgba(200, 255, 106, 0.3);
}

.featured-video__controls {
  display: contents;
}

.featured-video__volume {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 5;
  width: min(178px, calc(100% - 56px));
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(9, 10, 14, 0.58);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 180ms ease, border-color 180ms ease;
}

.featured-video__volume:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
}

.featured-video__meta {
  display: block;
}

.featured-video__volume span {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-video__meta-separator,
[data-featured-video-title] {
  display: none;
}

.featured-video__volume input {
  width: 100%;
  height: 14px;
  accent-color: var(--accent);
  cursor: pointer;
  touch-action: pan-x;
}

.featured-video__sound-toggle {
  display: none;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: #090a0e;
  background: linear-gradient(135deg, var(--accent), #eef8a3);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.featured-video__sound-toggle[aria-pressed="false"] {
  color: rgba(244, 241, 234, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.featured-video.is-gated .featured-video__gate {
  position: fixed;
  bottom: 28px;
  z-index: 90;
}

.featured-video.is-playing .featured-video__shade,
.featured-video.is-playing .featured-video__content,
.featured-video.is-playing .featured-video__gate {
  opacity: 0;
  pointer-events: none;
}

.featured-video.is-playing .featured-video__swap.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.featured-video.is-playing .featured-video__volume {
  opacity: 1;
  pointer-events: auto;
}

.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;
}

.site-footer {
  padding: 0 0 56px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer__language {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__language a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-footer__language a:hover,
.site-footer__language a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.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: relative;
    margin-top: 0;
    top: auto;
    right: auto;
    left: auto;
    width: fit-content;
    max-width: 100%;
  }

  .hero__note--left {
    margin-top: 22px;
  }

  .hero__note--right {
    margin-top: 12px;
  }

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

  .hero__actions {
    max-width: min(100%, 34rem);
    gap: 12px;
  }

  .hero__actions .button {
    width: 100%;
  }

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

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

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

  .privacy-proof {
    padding: 0 0 110px;
  }

  .privacy-proof__grid {
    grid-template-columns: 1fr;
  }

  .featured-video {
    padding: 0 0 110px;
  }

  .featured-video__intro {
    margin-bottom: 32px;
  }

  .featured-video__stage {
    min-height: 72vh;
    border-radius: 26px;
    overflow: visible;
    margin-bottom: 106px;
  }

  .featured-video__content {
    padding: 24px;
  }

  .featured-video__gate {
    min-width: 150px;
    min-height: 58px;
    bottom: 20px;
  }

  .featured-video__controls {
    position: absolute;
    top: calc(100% + 14px);
    right: 20px;
    left: 20px;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.92fr);
    grid-template-areas:
      "meta meta"
      "sound swap";
    gap: 12px;
    align-items: stretch;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(9, 10, 14, 0.62);
    backdrop-filter: blur(16px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .featured-video__swap {
    position: static;
    grid-area: swap;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 20px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    transform: none;
  }

  .featured-video__volume {
    display: contents;
  }

  .featured-video__volume-range {
    display: none;
  }

  .featured-video__meta {
    grid-area: meta;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }

  .featured-video__meta-separator,
  [data-featured-video-title] {
    display: inline;
  }

  .featured-video__volume input {
    height: 24px;
  }

  .featured-video__volume input::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
  }

  .featured-video__volume input::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
    margin-top: -8px;
  }

  .featured-video__volume input::-moz-range-track {
    height: 6px;
    border-radius: 999px;
  }

  .featured-video__volume input::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border: 0;
  }

  .featured-video__sound-toggle {
    grid-area: sound;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
  }

  .featured-video.is-playing .featured-video__controls {
    opacity: 1;
    pointer-events: auto;
  }

  .featured-video__swap.is-ready:hover {
    transform: translateY(-2px);
  }

  .statement__subcopy {
    margin-left: 0;
  }

  .privacy-proof {
    padding: 0 0 86px;
  }

  .privacy-proof__intro {
    margin-top: 18px;
  }

  .privacy-proof__grid {
    gap: 16px;
    margin-top: 24px;
  }

  .privacy-card {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .privacy-card h3 {
    font-size: 1.16rem;
  }

  .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;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .hero {
    min-height: 160vh;
  }

  .hero__inner {
    min-height: 160vh;
    padding: 10vh 0 20vh;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(3rem, 13.5vw, 3.85rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
  }

  .hero__lead {
    max-width: 30rem;
    margin-top: 18px;
    font-size: 0.95rem;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero__note {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: fit-content;
    max-width: 100%;
    margin-top: 14px;
    padding: 13px 16px;
  }

  .hero__note--left,
  .hero__note--right {
    top: auto;
    right: auto;
    left: auto;
  }

  .hero__note--left {
    margin-top: 22px;
  }

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

  .featured-video {
    padding: 0 0 86px;
  }

  .featured-video__intro {
    margin-bottom: 22px;
  }

  .featured-video__intro h2 {
    font-size: clamp(2.15rem, 13vw, 3.15rem);
  }

  .featured-video__intro p:not(.eyebrow) {
    margin-top: 16px;
  }

  .featured-video__stage {
    min-height: 0;
    height: 288px;
    border-radius: 22px;
    overflow: visible;
    margin-bottom: 92px;
  }

  .featured-video__content {
    padding: 18px;
  }

  .featured-video__content strong {
    font-size: clamp(1.8rem, 10vw, 2.55rem);
    line-height: 1;
  }

  .featured-video__gate {
    min-width: 132px;
    min-height: 50px;
    bottom: 16px;
  }

  .featured-video__controls {
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "meta meta"
      "sound swap";
    gap: 10px;
    padding: 10px;
  }

  .featured-video__swap {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
  }

  .featured-video__meta {
    gap: 6px;
  }

  .featured-video__sound-toggle {
    min-height: 42px;
  }

  .featured-video__swap.is-ready:hover {
    transform: translateY(-2px);
  }

  .featured-video__volume input {
    height: 32px;
  }

  .featured-video__volume input::-webkit-slider-runnable-track {
    height: 8px;
  }

  .featured-video__volume input::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
    margin-top: -10px;
  }

  .featured-video__volume input::-moz-range-track {
    height: 8px;
  }

  .featured-video__volume input::-moz-range-thumb {
    width: 28px;
    height: 28px;
  }
}
