@font-face {
  font-family: "Neue Haas Avori";
  src: url("assets/NeueHaasDisplayLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Avori";
  src: url("assets/NeueHaasDisplayBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Avori";
  src: url("assets/NeueHaasDisplayBlack.ttf") format("truetype");
  font-style: normal;
  font-weight: 800 900;
  font-display: swap;
}

:root {
  --black: #000000;
  --dark: #15151d;
  --dark-raised: #1d1d27;
  --dark-soft: #282835;
  --white: #ffffff;
  --light: #f5f5f5;
  --light-raised: #ebebeb;
  --ink: #111111;
  --muted-dark: #b9b9c1;
  --muted-light: #5e5e64;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(0, 0, 0, 0.18);
  --brand: #6c5cff;
  --brand-hover: #5c4cec;
  --success: #73d89a;
  --max: 1200px;
  --page-gutter: max(24px, calc((100vw - var(--max)) / 2));
  --header-height: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--white);
  font-family: "Neue Haas Avori", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
select {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
select:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 24px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
}

.skip-link:focus {
  top: 14px;
}

.section-wrap {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.theme-dark {
  background: var(--dark);
  color: var(--white);
}

.theme-light {
  background: var(--white);
  color: var(--ink);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding-inline: 32px;
  color: var(--white);
  transition:
    color 320ms ease,
    background-color 320ms ease,
    border-color 320ms ease,
    backdrop-filter 320ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(21, 21, 29, 0.88);
  backdrop-filter: blur(18px);
}

.site-header.on-light {
  color: var(--black);
}

.site-header.on-light.is-scrolled {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.brand {
  position: relative;
  display: block;
  width: 104px;
  height: 28px;
}

.brand img {
  position: absolute;
  inset: 50% auto auto 0;
  width: 104px;
  transform: translateY(-50%);
  transition: opacity 220ms ease;
}

.brand-light,
.site-header.on-light .brand-dark {
  opacity: 0;
}

.brand-light {
  /* The supplied dark lockup currently duplicates the white source asset. */
  filter: brightness(0);
}

.site-header.on-light .brand-light {
  opacity: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 15px;
}

.desktop-nav a,
.login-link {
  opacity: 0.9;
  transition: opacity 160ms ease;
}

.desktop-nav a:hover,
.login-link:hover {
  opacity: 0.58;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 15px;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--brand-hover);
}

.menu-button,
.mobile-nav {
  display: none;
}

/* Hero */

.hero-scroll {
  position: relative;
  height: 220svh;
  min-height: 1400px;
  background: var(--black);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: var(--black);
}

.hero-media,
.hero-sequence-poster,
.hero-sequence,
.hero-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
  background: var(--black);
}

.hero-sequence-poster {
  background: url("assets/hero-sequence/desktop/frame-001.jpg") center / cover no-repeat;
}

.hero-sequence {
  z-index: 1;
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero-sequence.is-ready {
  opacity: 1;
}

.hero-vignette {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 28%, rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.34));
}

.hero-copy {
  position: absolute;
  z-index: 5;
  top: 15%;
  left: 50%;
  width: min(820px, calc(100% - 48px));
  transform: translateX(-50%);
  text-align: center;
  will-change: transform, opacity;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(54px, 5.8vw, 84px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero-copy p {
  max-width: 640px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.35;
}

.hero-actions,
.final-cta .section-wrap > div:last-child {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding-inline: 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--brand);
  color: var(--white);
}

.button-primary:hover {
  background: var(--brand-hover);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.12);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  bottom: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 34px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--white);
  content: "";
  animation: cue-line 1.8s ease-in-out infinite;
  transform: translateX(-100%);
}

/* Shared sections */

.display-copy,
.wide-heading,
.section-heading,
.pricing-heading h2,
.faq-layout > h2,
.final-cta h2 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.display-copy {
  font-size: clamp(36px, 4vw, 55px);
}

.wide-heading {
  max-width: 1080px;
  font-size: clamp(48px, 6.4vw, 86px);
  text-align: center;
}

.section-heading {
  max-width: 850px;
  font-size: clamp(45px, 5.4vw, 72px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 850ms var(--ease-out),
    transform 850ms var(--ease-out);
}

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

/* Platform tour */

.platform-tour {
  position: relative;
  min-height: 980px;
  padding: 150px 0;
  background: var(--dark);
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(520px, 1.18fr);
  gap: 10vw;
  align-items: center;
}

.tour-copy {
  position: relative;
  z-index: 2;
}

.tour-tabs {
  margin-top: 62px;
  border-top: 1px solid var(--line-dark);
}

.tour-tab {
  position: relative;
  display: grid;
  width: 100%;
  gap: 0;
  padding: 17px 0 16px 22px;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease;
}

.tour-tab::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
  opacity: 0;
  transform: scale(0.4);
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease-out);
}

.tour-tab span {
  font-size: 17px;
}

.tour-tab small {
  max-height: 0;
  overflow: hidden;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.4;
  opacity: 0;
  transition:
    max-height 420ms var(--ease-out),
    margin 420ms var(--ease-out),
    opacity 260ms ease;
}

.tour-tab.is-active {
  color: var(--white);
}

.tour-tab.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.tour-tab.is-active small {
  max-height: 100px;
  margin-top: 8px;
  opacity: 1;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 34px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.56);
  font-size: 15px;
}

.tour-media {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: var(--dark-raised);
}

.tour-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 620ms var(--ease-out);
}

.tour-panel.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.generated-visual {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.motion-frame {
  position: relative;
  overflow: hidden;
}

.motion-frame > .motion-poster,
.motion-frame > .motion-video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: inherit;
  object-position: inherit;
}

.motion-frame > .motion-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.motion-frame > .motion-video.is-ready {
  opacity: 1;
}

.tour-panel > .generated-visual {
  background: var(--dark-raised);
  object-fit: cover;
}

.panel-chrome {
  display: flex;
  align-items: center;
  height: 58px;
  padding-inline: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.panel-chrome i {
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.panel-chrome i:first-of-type {
  margin-left: auto;
}

.builder-thread {
  padding: 90px 7% 50px;
}

.builder-thread > p {
  width: fit-content;
  max-width: 76%;
  margin: 0 0 32px auto;
  padding: 15px 18px;
  border-radius: 17px;
  background: var(--dark-soft);
  color: rgba(255, 255, 255, 0.83);
}

.agent-reply {
  display: flex;
  max-width: 82%;
  align-items: flex-start;
  gap: 14px;
  color: var(--muted-dark);
}

.agent-reply img {
  width: 29px;
  height: 29px;
  border-radius: 8px;
}

.draft-card {
  width: min(440px, 86%);
  margin: 42px auto 0;
  padding: 28px;
  border: 1px solid rgba(108, 92, 255, 0.4);
  border-radius: 13px;
  background: rgba(108, 92, 255, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.draft-card small {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.draft-card > b {
  display: block;
  font-size: 25px;
  font-weight: 400;
}

.draft-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.draft-card div span {
  padding: 7px 9px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--muted-dark);
  font-size: 11px;
}

.connection-list {
  padding: 56px 7%;
}

.connection-list article {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 23px 12px;
  border-bottom: 1px solid var(--line-dark);
}

.connection-list article > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: var(--dark-soft);
  font-size: 10px;
}

.connection-list b,
.connection-list small {
  display: block;
}

.connection-list b {
  font-size: 16px;
  font-weight: 400;
}

.connection-list small {
  margin-top: 3px;
  color: var(--muted-dark);
}

.connection-list em {
  color: var(--success);
  font-size: 11px;
  font-style: normal;
}

.share-flow {
  display: grid;
  place-items: center;
  padding: 58px 8%;
}

.share-origin {
  width: min(420px, 100%);
  padding: 27px;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  background: var(--dark-soft);
  text-align: center;
}

.share-origin img {
  width: 34px;
  margin: 0 auto 15px;
}

.share-origin b,
.share-origin small {
  display: block;
}

.share-origin b {
  font-size: 21px;
  font-weight: 400;
}

.share-origin small {
  margin-top: 7px;
  color: var(--muted-dark);
}

.share-line {
  position: relative;
  width: 1px;
  height: 80px;
  background: rgba(108, 92, 255, 0.7);
}

.share-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--dark-raised);
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  letter-spacing: 0.08em;
  transform: translate(-50%, -50%);
}

.share-people {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.share-people article {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(108, 92, 255, 0.34);
  border-radius: 11px;
  background: rgba(108, 92, 255, 0.07);
}

.share-people article > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--dark-soft);
  font-size: 9px;
}

.share-people b,
.share-people small {
  display: block;
}

.share-people b {
  font-size: 13px;
  font-weight: 400;
}

.share-people small {
  margin-top: 2px;
  color: var(--muted-dark);
  font-size: 10px;
}

.share-people .muted {
  border-color: var(--line-dark);
  opacity: 0.54;
}

.version-flow {
  display: grid;
  padding: 80px 8%;
}

.version-flow div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 15px;
  align-items: center;
  padding: 21px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.version-flow div > span {
  display: grid;
  width: 44px;
  height: 44px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 50%;
  background: var(--dark-soft);
  color: var(--muted-dark);
  font-size: 10px;
}

.version-flow b,
.version-flow small {
  grid-column: 2;
}

.version-flow b {
  font-size: 16px;
  font-weight: 400;
}

.version-flow small {
  color: var(--muted-dark);
}

.version-flow > i {
  width: 1px;
  height: 34px;
  margin-left: 43px;
  background: var(--line-dark);
}

.version-flow .current {
  border-color: rgba(108, 92, 255, 0.6);
  background: rgba(108, 92, 255, 0.09);
}

.asset-caption {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 17px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  letter-spacing: 0.12em;
}

/* Multiplayer proof and carousel */

.multiplayer-proof {
  padding: 160px 0 150px;
}

.multiplayer-proof .wide-heading {
  margin-inline: auto;
}

.role-field {
  position: relative;
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  overflow: hidden;
  border-block: 1px solid var(--line-dark);
}

.role-field::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(108, 92, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(108, 92, 255, 0.18);
  content: "AVORI";
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.16em;
  transform: translate(-50%, -50%);
}

.role-field:has(.generated-visual)::before {
  display: none;
}

.role-field .generated-visual {
  animation: generated-field-drift 16s ease-in-out infinite alternate;
}

.role-field span {
  position: absolute;
  padding: 9px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-dark);
  font-size: 13px;
  animation: role-float 6s ease-in-out infinite;
}

.role-field span:nth-child(1) { top: 14%; left: 9%; }
.role-field span:nth-child(2) { top: 22%; left: 39%; animation-delay: -1s; }
.role-field span:nth-child(3) { top: 11%; right: 10%; animation-delay: -2s; }
.role-field span:nth-child(4) { top: 49%; left: 18%; animation-delay: -3s; }
.role-field span:nth-child(5) { top: 44%; right: 17%; animation-delay: -4s; }
.role-field span:nth-child(6) { bottom: 16%; left: 9%; animation-delay: -2.5s; }
.role-field span:nth-child(7) { bottom: 11%; left: 35%; animation-delay: -1.5s; }
.role-field span:nth-child(8) { bottom: 18%; right: 27%; animation-delay: -3.5s; }
.role-field span:nth-child(9) { bottom: 9%; right: 6%; animation-delay: -4.5s; }

.proof-caption {
  max-width: 680px;
  margin: 42px auto 0;
  color: var(--muted-dark);
  font-size: 22px;
  text-align: center;
}

.story-carousel {
  margin-top: 150px;
}

.story-tabs {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 18px;
}

.story-tabs button {
  padding: 9px 15px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: transparent;
  color: var(--muted-dark);
  cursor: pointer;
}

.story-tabs button.is-active {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.story-stage {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: var(--dark-raised);
}

.story-visual {
  min-height: 620px;
  padding: 20px;
}

.story-placeholder {
  position: relative;
  display: flex;
  height: 580px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 35%),
    var(--dark);
}

.story-placeholder:has(.generated-visual)::before,
.story-placeholder:has(.generated-visual)::after {
  display: none;
}

.story-generated-visual.is-swapping {
  animation: generated-story-swap 720ms var(--ease-out) both;
}

.story-placeholder::before,
.story-placeholder::after {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(108, 92, 255, 0.26);
  border-radius: 50%;
  content: "";
  animation: story-orbit 8s linear infinite;
}

.story-placeholder::after {
  width: 300px;
  height: 300px;
  animation-direction: reverse;
  animation-duration: 6s;
}

.story-placeholder > span,
.story-placeholder > b,
.story-placeholder > small,
.story-progress {
  position: relative;
  z-index: 2;
}

.story-placeholder > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.story-placeholder > b {
  margin-top: 15px;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.story-progress {
  display: flex;
  gap: 7px;
  margin-top: 34px;
}

.story-progress i {
  display: block;
  width: 48px;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.story-progress i:first-child {
  background: var(--brand);
}

.story-placeholder > small {
  position: absolute;
  right: 20px;
  bottom: 17px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.story-copy {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: end;
  padding: 38px 42px 44px;
  border-top: 1px solid var(--line-dark);
}

.story-copy > p {
  max-width: 740px;
  margin: 0;
  font-size: clamp(27px, 3.5vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.story-copy > div {
  display: grid;
  gap: 10px;
}

.story-copy b {
  font-size: 17px;
  font-weight: 400;
}

.story-copy span {
  color: var(--muted-dark);
  font-size: 13px;
}

/* Light mosaic */

.mosaic-section {
  padding: 150px 0;
}

.mosaic-section .section-heading {
  margin-bottom: 70px;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mosaic-card {
  min-width: 0;
}

.mosaic-media {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--light);
}

.mosaic-media .generated-visual,
.use-case-visual .generated-visual,
.trust-visual .generated-visual {
  transition: transform 700ms var(--ease-out);
}

.mosaic-media > .generated-visual,
.use-case-visual > .generated-visual,
.trust-visual > .generated-visual {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.mosaic-card h3 {
  margin: 22px 0 6px;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.mosaic-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted-light);
  font-size: 17px;
}

.floating-agent {
  position: absolute;
  top: 28%;
  left: 13%;
  display: flex;
  width: 300px;
  align-items: center;
  gap: 13px;
  padding: 19px;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: var(--white);
  animation: card-drift 5s ease-in-out infinite;
}

.floating-agent > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
}

.floating-agent b,
.floating-agent small {
  display: block;
}

.floating-agent b {
  font-weight: 400;
}

.floating-agent small {
  color: var(--muted-light);
}

.floating-agent.second {
  top: 47%;
  left: 37%;
  opacity: 0.54;
  animation-delay: -2.5s;
}

.mosaic-context .mosaic-media {
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 12px;
}

.mosaic-context .mosaic-media span {
  padding: 22px 18px;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: var(--white);
  text-align: center;
  animation: context-pulse 4s ease-in-out infinite;
}

.mosaic-context .mosaic-media span:nth-child(2) { animation-delay: -1s; }
.mosaic-context .mosaic-media span:nth-child(3) { animation-delay: -2s; }
.mosaic-context .mosaic-media span:nth-child(4) { animation-delay: -3s; }

.workflow-track {
  display: flex;
  align-items: center;
  gap: 0;
}

.workflow-track span {
  min-width: 90px;
  padding: 15px;
  border: 1px solid var(--line-light);
  border-radius: 9px;
  background: var(--white);
  text-align: center;
}

.workflow-track i {
  position: relative;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: var(--line-light);
}

.workflow-track i::after {
  position: absolute;
  inset: 0;
  background: var(--brand);
  content: "";
  animation: flow-line 2.4s linear infinite;
  transform: translateX(-100%);
}

.history-row {
  display: grid;
  width: min(440px, 80%);
  grid-template-columns: 55px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--muted-light);
}

.history-row i {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--light-raised);
}

.history-row i::after {
  position: absolute;
  inset: 0;
  width: 68%;
  border-radius: inherit;
  background: var(--black);
  content: "";
  animation: history-fill 4s ease-in-out infinite;
  transform-origin: left;
}

.history-row:nth-child(2) i::after {
  width: 84%;
  animation-delay: -1.4s;
}

.history-row:nth-child(3) i::after {
  width: 52%;
  animation-delay: -2.6s;
}

/* Point break */

.point-break {
  padding: 150px 0;
  background: var(--dark);
}

.point-break-inner {
  max-width: 920px;
  text-align: center;
}

.point-break p {
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.point-break span {
  display: block;
  max-width: 660px;
  margin: 32px auto 0;
  color: var(--muted-dark);
  font-size: 20px;
}

/* Accordion stories */

.accordion-story {
  padding: 150px 0;
}

.accordion-story .section-heading {
  margin-bottom: 72px;
}

.accordion-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-accordion {
  border-top: 1px solid var(--line-light);
}

.story-accordion > .section-heading {
  margin-bottom: 60px;
}

.accordion-item {
  border-bottom: 1px solid var(--line-light);
}

.accordion-item > button {
  display: grid;
  width: 100%;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 23px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.accordion-item > button span {
  color: var(--muted-light);
  font-size: 12px;
}

.accordion-item > button b {
  font-size: 19px;
  font-weight: 400;
}

.accordion-item > button i {
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
}

.accordion-body {
  max-width: 560px;
  padding: 0 48px 26px;
  color: var(--muted-light);
  animation: accordion-in 320ms var(--ease-out);
}

.accordion-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--light);
}

.visual-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition:
    opacity 400ms ease,
    transform 520ms var(--ease-out);
}

.visual-panel.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.visual-panel .generated-visual {
  background: var(--light);
  object-fit: cover;
}

.visual-panel.is-active .generated-visual {
  animation: generated-panel-in 680ms var(--ease-out) both;
}

.visual-number {
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--muted-light);
  font-size: 11px;
}

.visual-asset-note {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(0, 0, 0, 0.38);
  font-size: 9px;
  letter-spacing: 0.11em;
}

.capture-card,
.run-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(390px, 78%);
  padding: 38px;
  border: 1px solid var(--line-light);
  border-radius: 13px;
  background: var(--white);
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.capture-card small,
.capture-card b,
.capture-card span,
.run-card small,
.run-card b,
.run-card em {
  display: block;
}

.capture-card small,
.run-card small {
  color: var(--muted-light);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.capture-card b,
.run-card b {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
}

.capture-card span {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: var(--muted-light);
}

.context-stack {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(430px, 82%);
  gap: 9px;
  transform: translate(-50%, -50%);
}

.context-stack span {
  display: flex;
  justify-content: space-between;
  padding: 19px;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: var(--white);
}

.context-stack b {
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 400;
}

.permission-map {
  position: absolute;
  inset: 0;
}

.permission-map .center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  transform: translate(-50%, -50%);
}

.permission-map .permission {
  position: absolute;
  padding: 12px 16px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: var(--white);
}

.permission-map .one { top: 24%; left: 15%; }
.permission-map .two { right: 13%; bottom: 28%; }
.permission-map .three { bottom: 19%; left: 15%; }
.permission-map .muted { opacity: 0.42; }

.reverse-story {
  padding-top: 90px;
}

.reverse-story .accordion-layout {
  align-items: start;
}

.run-card div {
  display: flex;
  align-items: center;
  margin: 34px 0 24px;
}

.run-card div span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 7px rgba(108, 92, 255, 0.12);
}

.run-card div i {
  position: relative;
  flex: 1;
  height: 2px;
  margin-left: 10px;
  overflow: hidden;
  background: var(--light-raised);
}

.run-card div i::after {
  position: absolute;
  inset: 0;
  width: 60%;
  background: var(--brand);
  content: "";
  animation: run-progress 3s ease-in-out infinite;
}

.run-card em {
  color: var(--muted-light);
  font-size: 13px;
  font-style: normal;
}

.durable-stack {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(440px, 82%);
  height: 320px;
  transform: translate(-50%, -50%);
}

.durable-stack span {
  position: absolute;
  width: 68%;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.durable-stack span:nth-child(1) { top: 0; left: 0; transform: rotate(-4deg); }
.durable-stack span:nth-child(2) { top: 70px; right: 0; transform: rotate(3deg); }
.durable-stack span:nth-child(3) { top: 142px; left: 8%; transform: rotate(-2deg); }
.durable-stack span:nth-child(4) { top: 215px; right: 8%; transform: rotate(1deg); }

.improve-chart {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 76%;
  align-items: center;
  transform: translate(-50%, -50%);
}

.improve-chart span {
  display: grid;
  width: 78px;
  height: 78px;
  flex: none;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: var(--white);
}

.improve-chart span:last-child {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.improve-chart i {
  height: 1px;
  flex: 1;
  background: var(--line-light);
}

/* Use cases */

.use-cases {
  padding: 150px 0 170px;
}

.use-cases .section-heading {
  margin-bottom: 70px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 24px;
}

.use-case-visual {
  position: relative;
  display: flex;
  min-height: 350px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--light);
}

.use-case-grid h3 {
  margin: 19px 0 6px;
  font-size: 24px;
  font-weight: 400;
}

.use-case-grid p {
  max-width: 520px;
  margin: 0;
  color: var(--muted-light);
}

.operations-visual span {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: var(--white);
}

.operations-visual span + span {
  margin-left: -8px;
}

.operations-visual span:nth-child(2) {
  border-color: var(--brand);
  color: var(--brand);
}

.marketing-visual {
  gap: 9px;
}

.marketing-visual span {
  padding: 16px 18px;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: var(--white);
  animation: card-drift 5s ease-in-out infinite;
}

.marketing-visual span:nth-child(2) { animation-delay: -1.7s; }
.marketing-visual span:nth-child(3) { animation-delay: -3.4s; }

.support-visual span {
  width: 82px;
  height: 82px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: var(--white);
}

.support-visual i {
  position: relative;
  width: 120px;
  height: 1px;
  overflow: hidden;
  background: var(--line-light);
}

.support-visual i::after {
  position: absolute;
  inset: 0;
  width: 30%;
  background: var(--brand);
  content: "";
  animation: support-flow 2.8s linear infinite;
}

.leadership-visual {
  gap: 18px;
}

.leadership-visual span {
  display: grid;
  width: 100px;
  height: 140px;
  place-items: end center;
  padding-bottom: 18px;
  border: 1px solid var(--line-light);
  border-radius: 11px;
  background:
    linear-gradient(180deg, transparent, rgba(108, 92, 255, 0.08)),
    var(--white);
  font-size: 11px;
}

.leadership-visual span:nth-child(2) {
  height: 190px;
}

/* Trust */

.trust-section {
  padding: 160px 0;
  background: var(--dark);
}

.trust-section .wide-heading {
  margin-inline: auto;
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  border-block: 1px solid var(--line-dark);
}

.truth-grid article {
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
}

.truth-grid article:last-child {
  border-right: 0;
}

.truth-grid b {
  display: block;
  margin-bottom: 13px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.truth-grid span {
  color: var(--muted-dark);
}

.trust-heading {
  margin-top: 150px;
  padding-top: 35px;
  border-top: 1px solid var(--line-dark);
}

.trust-heading h3 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 58px;
}

.trust-visual {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--dark-raised);
}

.trust-cards h3 {
  margin: 20px 0 6px;
  font-size: 22px;
  font-weight: 400;
}

.trust-cards p {
  margin: 0;
  color: var(--muted-dark);
}

.credential-visual span {
  position: absolute;
  width: 160px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.credential-visual span:nth-child(1) { transform: translateY(-82px); }
.credential-visual span:nth-child(2) { transform: translateY(0); }
.credential-visual span:nth-child(3) { transform: translateY(82px); }

.credential-visual i {
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.28);
}

.permission-visual {
  flex-direction: column;
  gap: 13px;
}

.permission-visual span {
  width: 70%;
  padding: 15px;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  color: var(--muted-dark);
}

.permission-visual span:nth-child(2) {
  border-color: rgba(108, 92, 255, 0.54);
  background: rgba(108, 92, 255, 0.1);
  color: var(--white);
}

.durable-visual span {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.durable-visual span:first-child { transform: translateX(-72px); }
.durable-visual span:last-child { transform: translateX(72px); }

.durable-visual i {
  z-index: 2;
  width: 110px;
  height: 1px;
  background: var(--brand);
}

/* Pricing */

.pricing-section {
  padding: 70px 0 150px;
  background: var(--dark);
}

.pricing-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: end;
  padding-top: 42px;
  border-top: 1px solid var(--line-dark);
}

.pricing-heading h2 {
  max-width: 770px;
  font-size: clamp(48px, 5.6vw, 76px);
}

.pricing-heading p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 19px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 70px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: var(--dark-raised);
}

.price-card.featured {
  border-color: rgba(108, 92, 255, 0.62);
}

.plan-badge {
  margin: -30px -30px 28px;
  padding: 9px;
  background: var(--brand);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-align: center;
}

.plan-name {
  color: var(--muted-dark);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card h3 {
  min-height: 88px;
  margin: 16px 0 24px;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.price {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  font-size: clamp(50px, 5vw, 68px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.price sup {
  margin: 5px 3px 0 0;
  font-size: 18px;
}

.price small {
  align-self: flex-end;
  margin: 0 0 8px 8px;
  color: var(--muted-dark);
  font-size: 12px;
  letter-spacing: 0;
}

.price-card label {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--muted-dark);
  font-size: 12px;
}

.price-card select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--dark-soft);
  color: var(--white);
}

.price-card > a {
  display: grid;
  min-height: 45px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.price-card.featured > a {
  border-color: var(--brand);
  background: var(--brand);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line-dark);
  color: var(--muted-dark);
  list-style: none;
  font-size: 14px;
}

.price-card li::before {
  margin-right: 9px;
  color: var(--white);
  content: "✓";
}

.pricing-note {
  max-width: 880px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  text-align: center;
}

/* FAQ and footer */

.faq-section {
  padding: 100px 0 160px;
  background: var(--dark);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.faq-layout > h2 {
  max-width: 440px;
  font-size: clamp(42px, 4.8vw, 64px);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list article {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 20px;
  text-align: left;
  cursor: pointer;
}

.faq-list button i {
  flex: none;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
}

.faq-list p {
  max-width: 690px;
  margin: 0;
  padding: 0 42px 28px 0;
  color: var(--muted-dark);
  animation: accordion-in 320ms var(--ease-out);
}

.final-cta {
  padding: 170px 0;
  border-top: 1px solid var(--line-dark);
  background: var(--dark);
  text-align: center;
}

.final-cta h2 {
  max-width: 960px;
  margin-inline: auto;
  font-size: clamp(54px, 7vw, 94px);
}

.final-cta p {
  margin: 27px auto 0;
  color: var(--muted-dark);
  font-size: 20px;
}

.site-footer {
  padding: 80px 0 28px;
  border-top: 1px solid var(--line-dark);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted-dark);
  font-size: 15px;
}

.footer-grid > div > span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-brand img {
  width: 116px;
}

.footer-brand p {
  max-width: 340px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  letter-spacing: 0.12em;
}

/* Animation keyframes */

@keyframes cue-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

@keyframes role-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes story-orbit {
  to { transform: rotate(360deg); }
}

@keyframes generated-field-drift {
  from { transform: scale(1.002) translate3d(-0.35%, 0, 0); }
  to { transform: scale(1.012) translate3d(0.35%, -0.35%, 0); }
}

@keyframes generated-story-swap {
  from {
    opacity: 0.32;
    transform: scale(0.992);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes generated-panel-in {
  from {
    opacity: 0.36;
    transform: translateY(10px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (hover: hover) {
  .mosaic-card:hover .generated-visual,
  .use-case-grid article:hover .generated-visual,
  .trust-cards article:hover .generated-visual {
    transform: scale(1.012);
  }
}

@keyframes card-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes context-pulse {
  0%, 100% { border-color: var(--line-light); }
  50% { border-color: rgba(108, 92, 255, 0.55); }
}

@keyframes flow-line {
  to { transform: translateX(100%); }
}

@keyframes history-fill {
  0%, 100% { transform: scaleX(0.35); }
  50% { transform: scaleX(1); }
}

@keyframes accordion-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes run-progress {
  0%, 100% { width: 18%; }
  65% { width: 82%; }
}

@keyframes support-flow {
  from { transform: translateX(-100%); }
  to { transform: translateX(430%); }
}

/* Tablet */

@media (max-width: 1050px) {
  :root {
    --page-gutter: 24px;
  }

  .site-header {
    padding-inline: 24px;
  }

  .desktop-nav {
    gap: 24px;
  }

  .nav-actions {
    gap: 18px;
  }

  .tour-layout {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 34px;
  }

  .tour-media {
    min-height: 620px;
  }

  .story-visual {
    min-height: 520px;
  }

  .story-placeholder {
    height: 480px;
  }

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

  .truth-grid article:nth-child(2) {
    border-right: 0;
  }

  .truth-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .price-card {
    min-height: 0;
  }

  .price-card h3 {
    min-height: 0;
  }

  .price-card ul {
    margin-top: 38px;
  }
}

/* Mobile */

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  body {
    font-size: 16px;
  }

  .section-wrap {
    width: min(calc(100% - 36px), var(--max));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .site-header.is-scrolled {
    backdrop-filter: blur(14px);
  }

  .brand,
  .brand img {
    width: 94px;
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 11px 8px;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 420ms var(--ease-out),
      opacity 220ms ease;
  }

  .site-header.menu-open .mobile-nav {
    max-height: calc(100svh - var(--header-height));
    padding: 16px 18px 28px;
    border-top: 1px solid var(--line-dark);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 17px 3px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 22px;
  }

  .mobile-nav a:last-child {
    margin-top: 16px;
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    text-align: center;
  }

  .hero-scroll {
    height: 190svh;
    min-height: 1200px;
  }

  .hero-sticky {
    min-height: 620px;
  }

  .hero-sequence-poster {
    background-image: url("assets/hero-sequence/mobile/frame-001.jpg");
  }

  .hero-copy {
    top: 14%;
    width: calc(100% - 36px);
  }

  .hero-copy h1 {
    font-size: clamp(46px, 13.6vw, 61px);
    line-height: 0.94;
  }

  .hero-copy p {
    margin-top: 19px;
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }

  .scroll-cue {
    bottom: 12px;
    font-size: 9px;
  }

  .display-copy {
    font-size: 37px;
  }

  .wide-heading,
  .section-heading,
  .pricing-heading h2,
  .faq-layout > h2,
  .final-cta h2 {
    font-size: 12.4vw;
    line-height: 0.98;
  }

  .platform-tour,
  .multiplayer-proof,
  .mosaic-section,
  .accordion-story,
  .use-cases,
  .trust-section {
    padding: 100px 0;
  }

  .tour-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tour-tabs {
    margin-top: 42px;
  }

  .tour-media {
    min-height: 540px;
  }

  .builder-thread {
    padding: 58px 18px;
  }

  .builder-thread > p,
  .agent-reply {
    max-width: 92%;
    font-size: 13px;
  }

  .draft-card {
    width: 92%;
    padding: 22px;
  }

  .draft-card > b {
    font-size: 21px;
  }

  .connection-list {
    padding: 35px 14px;
  }

  .connection-list article {
    grid-template-columns: 36px 1fr;
    padding: 18px 4px;
  }

  .connection-list em {
    grid-column: 2;
  }

  .share-flow {
    padding: 40px 14px;
  }

  .share-people {
    grid-template-columns: 1fr;
  }

  .version-flow {
    padding: 52px 16px;
  }

  .multiplayer-proof .wide-heading {
    text-align: left;
  }

  .role-field {
    min-height: 290px;
    margin-top: 48px;
  }

  .role-field::before {
    width: 112px;
    height: 112px;
  }

  .role-field span {
    font-size: 11px;
  }

  .role-field span:nth-child(1) { top: 10%; left: 2%; }
  .role-field span:nth-child(2) { top: 20%; left: 38%; }
  .role-field span:nth-child(3) { top: 7%; right: 1%; }
  .role-field span:nth-child(4) { top: 42%; left: 2%; }
  .role-field span:nth-child(5) { top: 44%; right: 0; }
  .role-field span:nth-child(6) { bottom: 14%; left: 1%; }
  .role-field span:nth-child(7) { bottom: 7%; left: 34%; }
  .role-field span:nth-child(8) { bottom: 19%; right: 17%; }
  .role-field span:nth-child(9) { bottom: 4%; right: 0; }

  .proof-caption {
    font-size: 18px;
  }

  .story-carousel {
    margin-top: 90px;
  }

  .story-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .story-visual {
    min-height: 0;
    padding: 8px;
  }

  .story-placeholder {
    height: auto;
    aspect-ratio: 16 / 9;
    padding: 0;
    text-align: center;
  }

  .story-generated-visual,
  .mosaic-media > .generated-visual,
  .use-case-visual > .generated-visual {
    object-fit: cover;
  }

  .story-placeholder::before {
    width: 330px;
    height: 330px;
  }

  .story-placeholder::after {
    width: 220px;
    height: 220px;
  }

  .story-placeholder > b {
    font-size: 35px;
  }

  .story-progress i {
    width: 35px;
  }

  .story-copy {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 22px 32px;
  }

  .story-copy > p {
    font-size: 29px;
  }

  .mosaic-section .section-heading,
  .use-cases .section-heading {
    margin-bottom: 48px;
  }

  .mosaic-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mosaic-media,
  .use-case-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .floating-agent {
    left: 5%;
    width: 270px;
  }

  .floating-agent.second {
    left: 18%;
  }

  .mosaic-context .mosaic-media {
    grid-template-columns: repeat(2, minmax(0, 145px));
    padding: 16px;
  }

  .workflow-track {
    transform: scale(0.7);
  }

  .point-break {
    padding: 110px 0;
  }

  .point-break p {
    font-size: 13vw;
  }

  .point-break span {
    font-size: 17px;
  }

  .accordion-story .section-heading {
    margin-bottom: 48px;
  }

  .accordion-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .accordion-visual {
    min-height: 470px;
  }

  .reverse-story {
    padding-top: 60px;
  }

  .reverse-story .accordion-visual {
    order: 2;
  }

  .reverse-story .story-accordion {
    order: 1;
  }

  .accordion-body {
    padding-left: 0;
  }

  .capture-card,
  .run-card {
    width: 82%;
    padding: 28px;
  }

  .permission-map .one { top: 22%; left: 5%; }
  .permission-map .two { right: 4%; bottom: 26%; }
  .permission-map .three { bottom: 14%; left: 5%; }

  .use-case-grid {
    gap: 50px;
  }

  .leadership-visual span {
    width: 80px;
  }

  .trust-section .wide-heading {
    text-align: left;
  }

  .truth-grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .truth-grid article,
  .truth-grid article:nth-child(2) {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .truth-grid article:last-child {
    border-bottom: 0;
  }

  .trust-heading {
    margin-top: 100px;
  }

  .trust-cards {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trust-visual {
    min-height: 330px;
  }

  .pricing-section {
    padding: 50px 0 100px;
  }

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

  .pricing-heading p {
    font-size: 17px;
  }

  .pricing-grid {
    margin-top: 50px;
  }

  .price-card {
    padding: 24px;
  }

  .plan-badge {
    margin: -24px -24px 24px;
  }

  .faq-section {
    padding: 80px 0 110px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-list button {
    font-size: 17px;
  }

  .final-cta {
    padding: 120px 0;
  }

  .final-cta p {
    font-size: 17px;
  }

  .final-cta .section-wrap > div:last-child {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-scroll {
    height: auto;
    min-height: 100svh;
  }

  .hero-sticky {
    position: relative;
  }

  .hero-copy {
    opacity: 1 !important;
    transform: translateX(-50%) !important;
  }

  .motion-frame > .motion-video {
    display: none;
  }

}
