:root {
  --ink: #08080a;
  --ink-soft: #101013;
  --paper: #f0eee7;
  --paper-bright: #faf9f5;
  --line-dark: rgba(8, 8, 10, 0.14);
  --line-light: rgba(255, 255, 255, 0.12);
  --muted-dark: #6d6b66;
  --muted-light: #a6a4ad;
  --acid: #c8ff47;
  --acid-dark: #a8dc32;
  --coral: #ff5c4d;
  --violet: #8d70ff;
  --cyan: #67e8f9;
  --sans: "Aptos", "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --display: "Arial Black", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  --radius: 22px;
  --max: 1400px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-noise {
  position: fixed;
  z-index: 300;
  inset: 0;
  pointer-events: none;
  opacity: 0.028;
  background-image: radial-gradient(rgba(255, 255, 255, 0.72) 0.55px, transparent 0.7px);
  background-size: 4px 4px;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: white;
}

.nav-wrap {
  width: min(calc(100% - 64px), var(--max));
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 0 auto;
  border-bottom: 1px solid var(--line-light);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.brand > span:last-child > span {
  color: var(--acid);
}

.brand-symbol {
  position: relative;
  width: 31px;
  height: 31px;
  display: inline-block;
  border: 1px solid currentColor;
  border-radius: 9px;
  transform: rotate(-3deg);
}

.brand-symbol i {
  position: absolute;
  top: 7px;
  bottom: 7px;
  width: 5px;
  border-radius: 2px;
  background: currentColor;
  transform: skew(-18deg);
}

.brand-symbol i:first-child {
  left: 8px;
}

.brand-symbol i:last-child {
  right: 8px;
  background: var(--acid);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 11px;
  font-weight: 700;
}

.site-nav a,
.text-link {
  position: relative;
  color: #b9b7bf;
  transition: color 160ms ease;
}

.site-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.text-link:hover {
  color: white;
}

.site-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
  font-size: 11px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button span {
  font-size: 17px;
}

.button-small {
  min-height: 40px;
  gap: 18px;
  padding-inline: 14px;
  font-size: 10px;
}

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

.button-light:hover {
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.12);
}

.button-primary {
  background: var(--acid);
  color: #11130b;
}

.button-primary:hover {
  background: #d2ff67;
  box-shadow: 0 15px 45px rgba(200, 255, 71, 0.16);
}

.button-ghost {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.035);
  color: white;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.play-dot {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 8px !important;
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  padding: 168px 32px 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink);
  background-size: 76px 76px;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 92px;
  bottom: 42px;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255,255,255,.08) 20%, rgba(255,255,255,.08) 80%, transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(480px, .92fr);
  align-items: center;
  gap: 70px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 26px;
  color: #a6a4ad;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 29px;
  height: 1px;
  background: var(--acid);
}

.eyebrow-dark {
  color: var(--muted-dark);
}

.hero h1,
.section-heading h2,
.outcome-copy h2,
.manifesto blockquote,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .89;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(64px, 7.7vw, 126px);
}

.hero h1 em,
.section-heading h2 em,
.outcome-copy h2 em,
.manifesto em,
.final-cta h2 em {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.08em;
  text-transform: none;
}

.hero-lede {
  max-width: 620px;
  margin: 32px 0 0;
  color: #a7a5ae;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 490px;
  margin-top: 29px;
  color: #77757e;
  font-size: 10px;
  line-height: 1.4;
}

.avatar-stack {
  display: flex;
  flex-shrink: 0;
}

.avatar-stack i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  margin-left: -6px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #222227;
  color: white;
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
}

.avatar-stack i:first-child {
  margin-left: 0;
  background: var(--coral);
}

.avatar-stack i:nth-child(2) {
  background: var(--violet);
}

.avatar-stack i:nth-child(3) {
  background: var(--acid);
  color: var(--ink);
}

.hero-orbit {
  position: relative;
  min-height: 620px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  pointer-events: none;
}

.glow-one {
  top: 20%;
  right: -180px;
  width: 500px;
  height: 500px;
  background: var(--violet);
}

.glow-two {
  right: 30%;
  bottom: -240px;
  width: 460px;
  height: 400px;
  background: var(--acid);
  opacity: .07;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 470px;
  height: 470px;
  animation: orbitSpin 24s linear infinite;
}

.ring-one::before,
.ring-one::after,
.ring-two::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px var(--acid);
}

.ring-one::before {
  top: 49px;
  left: 77px;
}

.ring-one::after {
  right: 24px;
  bottom: 131px;
  background: var(--coral);
  box-shadow: 0 0 16px var(--coral);
}

.ring-two {
  width: 320px;
  height: 320px;
  border-style: dashed;
  opacity: .65;
  animation: orbitSpinReverse 17s linear infinite;
}

.ring-two::before {
  top: -4px;
  left: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 208px;
  height: 208px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(200,255,71,.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(200,255,71,.2), transparent 35%),
    #151719;
  box-shadow: 0 35px 90px rgba(0,0,0,.45), inset 0 0 45px rgba(200,255,71,.04);
  text-align: center;
  transform: translate(-50%, -50%);
}

.orbit-core::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: 50%;
}

.orbit-core span {
  position: relative;
  color: var(--acid);
  font-size: 78px;
  font-weight: 950;
  letter-spacing: -.09em;
  line-height: .9;
}

.orbit-core small {
  position: relative;
  margin-top: 8px;
  color: #8e8c95;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.orbit-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(24,24,28,.88);
  box-shadow: 0 22px 60px rgba(0,0,0,.4);
  backdrop-filter: blur(14px);
  animation: float 5s ease-in-out infinite;
}

.orbit-card-one {
  top: 11%;
  left: 5%;
}

.orbit-card-two {
  top: 31%;
  right: -2%;
  animation-delay: -1.5s;
}

.orbit-card-three {
  right: 10%;
  bottom: 8%;
  animation-delay: -3s;
}

.orbit-card b,
.orbit-card small {
  display: block;
}

.orbit-card b {
  margin-bottom: 3px;
  font-size: 10px;
}

.orbit-card small {
  color: #7e7c85;
  font-size: 7px;
}

.orbit-icon,
.orbit-score {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(200,255,71,.1);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
}

.orbit-score {
  border: 1px solid rgba(255,92,77,.4);
  border-radius: 50%;
  background: rgba(255,92,77,.08);
  color: #ff7d72;
}

.trust-strip {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  background: rgba(8,8,10,.85);
  color: #77757d;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
  white-space: nowrap;
}

.trust-strip i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
}

.section {
  padding: 130px 32px;
}

.product-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.product-section::before {
  content: "PRODUCT";
  position: absolute;
  top: 30px;
  right: -30px;
  color: rgba(8,8,10,.035);
  font-family: var(--display);
  font-size: 220px;
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: 1;
}

.section-heading {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto 66px;
}

.section-heading h2 {
  font-size: clamp(48px, 6vw, 86px);
}

.section-heading h2 em,
.outcome-copy h2 em {
  color: var(--coral);
}

.section-heading > p:last-child {
  max-width: 540px;
  margin: 25px 0 0 auto;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.65;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.product-shell {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #2d2d33;
  border-radius: 22px;
  background: #0e0e12;
  box-shadow: 0 45px 110px rgba(30,25,18,.22);
  color: white;
}

.product-topbar {
  height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #121217;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3c3b43;
}

.window-dots i:first-child {
  background: var(--coral);
}

.window-dots i:nth-child(2) {
  background: #f9c950;
}

.window-dots i:nth-child(3) {
  background: var(--acid);
}

.project-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #b8b6bf;
  font-size: 9px;
}

.project-pill span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}

.preview-label {
  justify-self: end;
  color: #5e5d66;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .14em;
}

.product-body {
  min-height: 660px;
  display: grid;
  grid-template-columns: 78px minmax(500px, 1fr) 330px;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding: 19px 8px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.preview-logo {
  position: relative;
  width: 27px;
  height: 27px;
  margin-bottom: 23px;
  border: 1px solid white;
  border-radius: 8px;
}

.preview-logo i {
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: white;
  transform: skew(-18deg);
}

.preview-logo i:first-child {
  left: 7px;
}

.preview-logo i:last-child {
  right: 7px;
  background: var(--acid);
}

.preview-nav {
  width: 57px;
  height: 56px;
  display: grid;
  place-content: center;
  gap: 5px;
  border-radius: 10px;
  background: transparent;
  color: #5c5b65;
}

.preview-nav b {
  font-size: 13px;
}

.preview-nav small {
  font-family: var(--mono);
  font-size: 6px;
}

.preview-nav:hover,
.preview-nav.active {
  background: rgba(200,255,71,.07);
  color: var(--acid);
}

.preview-stage {
  min-width: 0;
  display: grid;
  grid-template-rows: 50px 1fr 160px;
  background:
    radial-gradient(circle at 50% 36%, rgba(141,112,255,.09), transparent 38%),
    #0b0b0e;
}

.stage-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #aaa8b1;
  font-size: 8px;
}

.stage-format {
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px;
  background: rgba(255,255,255,.03);
  color: white;
  font-family: var(--mono);
}

.stage-format i {
  margin-left: 7px;
  color: #65646c;
  font-style: normal;
}

.video-preview {
  display: grid;
  place-items: center;
  padding: 26px;
}

.video-visual {
  position: relative;
  width: 218px;
  height: 386px;
  overflow: hidden;
  border-radius: 8px;
  background: #111116;
  box-shadow: 0 24px 70px rgba(0,0,0,.5);
}

.video-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 7, 11, 0.9), transparent 48%),
    radial-gradient(circle at 75% 14%, rgba(200, 255, 71, 0.11), transparent 27%);
  pointer-events: none;
}

.product-stock-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.92) contrast(1.06);
  transform: scale(1.03);
}

.video-kicker {
  position: absolute;
  z-index: 3;
  top: 19px;
  left: 17px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
}

.video-episode {
  position: absolute;
  z-index: 3;
  top: 19px;
  right: 17px;
  padding: 4px 6px;
  border-radius: 4px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 900;
}

.video-visual p {
  position: absolute;
  z-index: 5;
  right: 12px;
  bottom: 38px;
  left: 12px;
  margin: 0;
  color: white;
  font-size: 17px;
  font-weight: 950;
  line-height: .92;
  text-align: center;
}

.video-visual p strong {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 6px;
  background: var(--acid);
  color: var(--ink);
}

.preview-play {
  position: absolute;
  z-index: 6;
  right: 12px;
  bottom: 12px;
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(5,5,8,.55);
  color: white;
  font-size: 10px;
  backdrop-filter: blur(7px);
  transform: none;
  transition: transform 180ms ease, background 180ms ease;
}

.preview-play:hover {
  background: var(--acid);
  color: var(--ink);
  transform: scale(1.08);
}

.video-visual.playing .preview-play {
  opacity: .55;
}

.mini-timeline {
  position: relative;
  padding: 16px 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #101014;
}

.timeline-ruler {
  display: flex;
  justify-content: space-between;
  margin: 0 0 13px 31px;
  color: #4d4c55;
  font-family: var(--mono);
  font-size: 6px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}

.track-name {
  color: #5a5962;
  font-family: var(--mono);
  font-size: 6px;
}

.clip-parts,
.caption-parts {
  height: 30px;
  display: flex;
  gap: 3px;
}

.clip-parts i {
  flex: 1;
  border: 1px solid rgba(141,112,255,.25);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(141,112,255,.11), rgba(255,92,77,.08)),
    #17171f;
}

.clip-parts i:nth-child(2) {
  flex: .75;
}

.clip-parts i:nth-child(3) {
  flex: 1.25;
}

.caption-parts {
  height: 20px;
}

.caption-parts i {
  padding: 5px 8px;
  border-radius: 3px;
  background: rgba(200,255,71,.12);
  color: #8faa51;
  font-family: var(--mono);
  font-size: 5px;
  font-style: normal;
}

.timeline-playhead {
  position: absolute;
  top: 29px;
  bottom: 12px;
  left: 51%;
  width: 1px;
  background: var(--coral);
  box-shadow: 0 0 8px rgba(255,92,77,.5);
}

.timeline-playhead::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.preview-panel {
  padding: 22px 18px;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.08);
  background: #121217;
}

.preview-panel-view {
  height: 100%;
}

.preview-panel-view[hidden] {
  display: none;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.panel-title small,
.panel-title strong {
  display: block;
}

.panel-title small {
  margin-bottom: 5px;
  color: #5b5a63;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: .14em;
}

.panel-title strong {
  font-size: 15px;
}

.ready-dot {
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(200,255,71,.08);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 6px;
}

.clip-count {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  padding: 11px;
  border: 1px solid rgba(200,255,71,.13);
  border-radius: 10px;
  background: rgba(200,255,71,.035);
}

.clip-count > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--acid);
  color: var(--ink);
}

.clip-count p {
  margin: 0;
}

.clip-count strong,
.clip-count small {
  display: block;
}

.clip-count strong {
  font-size: 9px;
}

.clip-count small {
  margin-top: 3px;
  color: #66656e;
  font-size: 6px;
}

.moment-card {
  min-height: 66px;
  display: grid;
  grid-template-columns: 23px 1fr 31px;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px;
}

.moment-card.selected {
  border-color: rgba(255,92,77,.35);
  background: linear-gradient(90deg, rgba(255,92,77,.07), transparent);
  box-shadow: inset 2px 0 var(--coral);
}

.moment-card > span {
  color: #50505a;
  font-family: var(--mono);
  font-size: 6px;
}

.moment-card p {
  min-width: 0;
  margin: 0;
}

.moment-card b,
.moment-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.moment-card b {
  margin-bottom: 5px;
  font-size: 8px;
}

.moment-card small {
  color: #53525b;
  font-family: var(--mono);
  font-size: 5px;
}

.moment-card em {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: #bbb9c2;
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
}

.moment-card.selected em {
  border-color: rgba(255,92,77,.35);
  color: #ff8176;
}

.panel-action {
  width: 100%;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--acid);
  color: var(--ink);
  font-size: 8px;
  font-weight: 900;
}

.panel-action span {
  font-size: 13px;
}

.fake-search {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  color: #5d5c65;
  font-size: 7px;
}

.transcript-lines {
  display: grid;
  gap: 5px;
}

.transcript-lines p {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  margin: 0;
  padding: 10px 7px;
  border-left: 2px solid transparent;
  color: #898790;
  font-size: 8px;
  line-height: 1.5;
}

.transcript-lines p.hot {
  border-left-color: var(--acid);
  background: rgba(200,255,71,.04);
  color: white;
}

.transcript-lines time {
  color: #55545d;
  font-family: var(--mono);
  font-size: 6px;
}

.transcript-lines mark {
  background: rgba(200,255,71,.18);
  color: var(--acid);
}

.caption-option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 8px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 9px;
}

.caption-option.selected {
  border-color: rgba(200,255,71,.35);
}

.caption-option > span {
  height: 56px;
  display: grid;
  place-content: center;
  border-radius: 5px;
  background: #23232b;
  font-size: 12px;
  font-weight: 950;
}

.caption-option > span b {
  color: var(--acid);
}

.caption-option small {
  padding: 0 8px;
  color: #66656f;
  font-family: var(--mono);
  font-size: 6px;
}

.caption-option .serif {
  font-family: Georgia, serif;
  font-weight: 400;
}

.caption-option.boxed > span {
  padding: 6px 10px;
  background: white;
  color: black;
  line-height: .9;
}

.outcome-section {
  padding: 130px 32px;
  background:
    radial-gradient(circle at 13% 20%, rgba(141,112,255,.13), transparent 25%),
    var(--ink);
  color: white;
}

.outcome-grid {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 90px;
  margin: 0 auto;
}

.outcome-copy {
  position: sticky;
  top: 100px;
  align-self: start;
}

.outcome-copy h2 {
  font-size: clamp(54px, 6.2vw, 90px);
}

.outcome-copy p:not(.eyebrow) {
  max-width: 470px;
  margin: 30px 0;
  color: #92909a;
  font-size: 15px;
  line-height: 1.7;
}

.arrow-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 370px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.arrow-link span {
  color: var(--acid);
  font-size: 19px;
  transition: transform 160ms ease;
}

.arrow-link:hover span {
  transform: translate(3px, -3px);
}

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

.outcome-row {
  min-height: 190px;
  display: grid;
  grid-template-columns: 55px 1fr 70px;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid var(--line-light);
}

.outcome-number {
  color: #55545d;
  font-family: var(--mono);
  font-size: 9px;
}

.outcome-row h3 {
  margin: 0 0 10px;
  font-size: 27px;
  letter-spacing: -.045em;
}

.outcome-row p {
  max-width: 470px;
  margin: 0;
  color: #7e7c86;
  font-size: 12px;
  line-height: 1.6;
}

.outcome-glyph {
  width: 61px;
  height: 61px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 20px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.outcome-row:hover .outcome-glyph {
  background: var(--acid);
  color: var(--ink);
  transform: rotate(8deg);
}

.workflow {
  background: var(--paper-bright);
}

.steps-grid {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 auto;
}

.step-card {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.step-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 60px rgba(27,22,15,.09);
}

.step-card.featured {
  background: var(--ink);
  color: white;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 8px;
}

.featured .step-top {
  color: #64626c;
}

.step-top i {
  font-style: normal;
  letter-spacing: .12em;
}

.step-visual {
  position: relative;
  height: 240px;
  display: grid;
  place-items: center;
  margin: 35px 0 27px;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(8,8,10,.035);
}

.featured .step-visual {
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    #101014;
  background-size: 30px 30px;
}

.link-visual {
  grid-template-columns: 38px 1fr 30px;
  gap: 11px;
  height: 81px;
  margin-block: 115px 106px;
  padding: 10px;
  border: 1px solid var(--line-dark);
  background: var(--paper-bright);
}

.youtube-glyph {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--coral);
  color: white;
  font-size: 10px;
}

.link-visual small,
.link-visual b {
  display: block;
}

.link-visual small {
  margin-bottom: 5px;
  color: #77746f;
  font-size: 7px;
}

.link-visual b {
  overflow: hidden;
  color: #9e9b94;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.go-glyph {
  font-size: 18px;
}

.score-bubble {
  position: relative;
  z-index: 2;
  width: 116px;
  height: 116px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(200,255,71,.3);
  border-radius: 50%;
  background: #17181a;
  box-shadow: 0 0 60px rgba(200,255,71,.1);
  text-align: center;
}

.score-bubble strong {
  color: var(--acid);
  font-size: 47px;
  letter-spacing: -.07em;
  line-height: .9;
}

.score-bubble small {
  color: #6d6c73;
  font-family: var(--mono);
  font-size: 7px;
}

.scan-lines {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.scan-lines i {
  width: 3px;
  height: 50px;
  border-radius: 2px;
  background: rgba(200,255,71,.15);
}

.scan-lines i:nth-child(2) { height: 110px; }
.scan-lines i:nth-child(3) { height: 180px; opacity: .5; }
.scan-lines i:nth-child(4) { height: 110px; }

.found-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 8px;
  border-radius: 5px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 900;
}

.formats-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.format-card {
  display: grid;
  place-items: end center;
  padding-bottom: 9px;
  border: 1px solid rgba(8,8,10,.14);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(141,112,255,.7), rgba(255,92,77,.5)),
    var(--ink);
  box-shadow: 0 16px 30px rgba(20,15,10,.13);
  color: white;
  font-family: var(--mono);
  font-size: 7px;
}

.format-card.vertical {
  width: 70px;
  height: 132px;
}

.format-card.square {
  width: 82px;
  height: 82px;
}

.format-card.wide {
  width: 100px;
  height: 58px;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 25px;
  letter-spacing: -.05em;
}

.step-card > p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.65;
}

.step-card.featured > p {
  color: #797781;
}

.feature-bento {
  background: var(--paper);
}

.bento-grid {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 12px;
  margin: 0 auto;
}

.bento-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--paper-bright);
}

.bento-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 35px;
}

.feature-index {
  color: #88857e;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .12em;
}

.bento-card h3 {
  margin: 20px 0 13px;
  font-size: clamp(30px, 3vw, 48px);
  letter-spacing: -.065em;
  line-height: .98;
}

.bento-card p {
  max-width: 400px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.65;
}

.bento-ai {
  background: var(--ink);
  color: white;
}

.bento-ai p {
  color: #77757e;
}

.rank-list {
  align-self: center;
  border-top: 1px solid var(--line-light);
}

.rank-list div {
  min-height: 76px;
  display: grid;
  grid-template-columns: 33px 1fr 39px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-light);
}

.rank-list span {
  color: #4e4d55;
  font-family: var(--mono);
  font-size: 7px;
}

.rank-list b {
  font-size: 12px;
}

.rank-list i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200,255,71,.25);
  border-radius: 50%;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
}

.bento-captions {
  background: var(--acid);
}

.bento-captions .feature-index,
.bento-captions p {
  color: rgba(8,8,10,.55);
}

.kinetic-word {
  margin: 38px -28px 27px;
  padding: 18px 22px;
  overflow: hidden;
  background: var(--ink);
  color: white;
  font-size: clamp(45px, 5vw, 76px);
  font-weight: 950;
  letter-spacing: -.09em;
  line-height: .75;
  white-space: nowrap;
  transform: rotate(-3deg);
}

.kinetic-word em {
  color: var(--acid);
  font-style: normal;
}

.bento-transcript {
  grid-column: span 2;
}

.edit-line {
  max-width: 720px;
  margin-top: 56px;
  font-size: clamp(23px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.35;
}

.edit-line span,
.edit-line del,
.edit-line mark {
  display: inline;
}

.edit-line del {
  color: #aaa7a0;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 3px;
}

.edit-line mark {
  padding: 2px 5px;
  background: var(--acid);
  color: var(--ink);
}

.bento-youtube {
  background: var(--coral);
  color: white;
}

.bento-youtube .feature-index,
.bento-youtube p {
  color: rgba(255,255,255,.65);
}

.youtube-ring {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  margin: 31px auto 25px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
}

.youtube-ring span {
  width: 62px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: white;
  color: var(--coral);
  box-shadow: 0 15px 35px rgba(100,20,15,.17);
  font-size: 15px;
}

.bento-finish {
  grid-column: 1 / -1;
  min-height: 460px;
  background: #dedbd2;
}

.finish-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.finish-card {
  position: absolute;
  display: grid;
  place-items: end center;
  padding-bottom: 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 13px;
  background:
    linear-gradient(145deg, transparent 35%, rgba(200,255,71,.22)),
    linear-gradient(35deg, #151524, #4b2753);
  box-shadow: 0 28px 60px rgba(20,15,10,.23);
  color: white;
  font-family: var(--mono);
  font-size: 8px;
}

.finish-a {
  z-index: 3;
  width: 150px;
  height: 265px;
}

.finish-b {
  left: 8%;
  width: 190px;
  height: 190px;
  transform: rotateY(25deg) rotate(-5deg);
}

.finish-c {
  right: 0;
  width: 245px;
  height: 138px;
  transform: rotateY(-22deg) rotate(4deg);
}

.filter-chips {
  position: absolute;
  z-index: 5;
  bottom: 20px;
  display: flex;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 9px;
  background: rgba(16,16,20,.88);
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

.filter-chips i {
  padding: 7px 10px;
  border-radius: 5px;
  background: rgba(255,255,255,.06);
  color: #88868f;
  font-family: var(--mono);
  font-size: 6px;
  font-style: normal;
}

.filter-chips i:first-child {
  background: var(--acid);
  color: var(--ink);
}

.manifesto {
  position: relative;
  overflow: hidden;
  padding: 0 32px 130px;
  background: var(--ink);
  color: white;
}

.manifesto-marquee {
  display: flex;
  width: max-content;
  margin-left: -50px;
  padding: 25px 0;
  color: var(--acid);
  font-family: var(--display);
  font-size: 60px;
  font-weight: 950;
  letter-spacing: -.06em;
  line-height: 1;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.manifesto-marquee span {
  padding-right: 25px;
}

.manifesto-inner {
  width: min(100%, 1120px);
  margin: 135px auto 0;
  text-align: center;
}

.manifesto-inner .eyebrow {
  justify-content: center;
}

.manifesto blockquote {
  margin: 0;
  font-size: clamp(52px, 7vw, 105px);
}

.manifesto-copy {
  max-width: 590px;
  margin: 43px auto 0;
  color: #8b8993;
  font-size: 14px;
  line-height: 1.75;
}

.faq {
  background: var(--paper-bright);
}

.faq-grid {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px;
  margin: 0 auto;
}

.faq-grid .section-heading {
  margin: 0;
}

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

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

.accordion summary {
  min-height: 103px;
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -.035em;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 15px;
  transition: transform 180ms ease, background 180ms ease;
}

.accordion details[open] summary span {
  background: var(--acid);
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 650px;
  margin: -13px 70px 30px 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 145px 32px;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink);
  background-size: 70px 70px;
  color: white;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: var(--violet);
  filter: blur(160px);
  opacity: .12;
  transform: translate(-50%, -50%);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1100px);
  margin: 0 auto;
  text-align: center;
}

.cta-kicker {
  display: block;
  margin-bottom: 28px;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.final-cta h2 {
  font-size: clamp(55px, 7.3vw, 108px);
}

.final-cta p {
  margin: 28px 0;
  color: #83818b;
  font-size: 14px;
}

.button-large {
  min-height: 60px;
  min-width: 255px;
}

.site-footer {
  padding: 75px 32px 24px;
  background: #050506;
  color: white;
}

.footer-top {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: .7fr .7fr 1.6fr;
  gap: 60px;
  margin: 0 auto 75px;
}

.brand-footer {
  align-self: start;
}

.footer-top > p {
  margin: 0;
  color: #696871;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.2;
}

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

.footer-top nav div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-top nav span {
  margin-bottom: 7px;
  color: #44434a;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .14em;
}

.footer-top nav a {
  color: #8d8b94;
  font-size: 10px;
  transition: color 160ms ease;
}

.footer-top nav a:hover {
  color: var(--acid);
}

.footer-bottom {
  width: min(100%, var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #4b4a51;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .1em;
}

.footer-bottom > span:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}

.cursor-glow {
  position: fixed;
  z-index: 299;
  top: 0;
  left: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(200,255,71,.055);
  filter: blur(45px);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 200ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

.reveal-delay {
  transition-delay: 140ms;
}

@keyframes orbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitSpinReverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes float {
  50% { transform: translateY(-9px); }
}

@keyframes videoPulse {
  50% { filter: saturate(1.25) brightness(1.06); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1180px) {
  .hero {
    min-height: 850px;
  }

  .hero-inner {
    grid-template-columns: 1.1fr .9fr;
    gap: 30px;
  }

  .hero-orbit {
    transform: scale(.83);
  }

  .product-body {
    grid-template-columns: 68px minmax(440px, 1fr) 285px;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-large,
  .bento-transcript,
  .bento-finish {
    grid-column: span 2;
  }

  .bento-youtube {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    width: min(calc(100% - 34px), var(--max));
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    z-index: 110;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 390px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 50px;
    background: #111114;
    box-shadow: -30px 0 90px rgba(0,0,0,.5);
    font-size: 24px;
    transform: translateX(110%);
    transition: transform 230ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    color: white;
  }

  .nav-actions {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 120;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 9px;
    background: rgba(255,255,255,.04);
  }

  .menu-toggle > span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: white;
    transition: transform 180ms ease;
  }

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

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 150px 24px 85px;
  }

  .hero::before {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    margin: 0 auto;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-orbit {
    min-height: 560px;
    transform: scale(.9);
  }

  .trust-strip {
    display: none;
  }

  .section {
    padding: 95px 24px;
  }

  .product-body {
    grid-template-columns: 62px 1fr;
  }

  .preview-panel {
    grid-column: 1 / -1;
    min-height: 360px;
    border-top: 1px solid rgba(255,255,255,.08);
    border-left: 0;
  }

  .outcome-section {
    padding: 95px 24px;
  }

  .outcome-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .outcome-copy {
    position: static;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 470px;
  }

  .manifesto {
    padding-inline: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    height: 73px;
  }

  .brand {
    font-size: 10px;
  }

  .brand-symbol {
    width: 27px;
    height: 27px;
  }

  .hero {
    padding: 124px 18px 74px;
  }

  .hero h1 {
    font-size: clamp(49px, 16vw, 75px);
  }

  .hero-lede {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
    text-align: left;
  }

  .hero-orbit {
    min-height: 420px;
    margin: -45px -75px -40px;
    transform: scale(.66);
  }

  .section,
  .outcome-section {
    padding: 75px 18px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .outcome-copy h2 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .section-heading > p:last-child {
    margin-left: 0;
    font-size: 13px;
  }

  .product-topbar {
    grid-template-columns: 1fr 1fr;
  }

  .project-pill {
    justify-self: end;
  }

  .preview-label {
    display: none;
  }

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

  .preview-sidebar {
    display: grid;
    grid-template-columns: 38px repeat(3, 1fr);
    padding: 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .preview-logo {
    margin: 0;
  }

  .preview-nav {
    width: auto;
    height: 45px;
    grid-auto-flow: column;
    align-items: center;
  }

  .preview-nav b {
    font-size: 10px;
  }

  .preview-stage {
    grid-template-rows: 43px 470px 140px;
  }

  .video-preview {
    padding: 18px;
  }

  .preview-panel {
    min-height: 390px;
  }

  .outcome-row {
    min-height: 160px;
    grid-template-columns: 30px 1fr;
    gap: 15px;
  }

  .outcome-row h3 {
    font-size: 21px;
  }

  .outcome-glyph {
    display: none;
  }

  .step-card {
    min-height: 440px;
    padding: 18px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-large,
  .bento-transcript,
  .bento-youtube,
  .bento-finish {
    grid-column: auto;
    min-height: 390px;
  }

  .bento-large {
    grid-template-columns: 1fr;
  }

  .rank-list {
    margin-top: 25px;
  }

  .bento-finish {
    min-height: 640px;
  }

  .finish-stage {
    min-height: 300px;
  }

  .finish-b {
    left: -10px;
  }

  .finish-c {
    right: -65px;
  }

  .manifesto {
    padding: 0 18px 90px;
  }

  .manifesto-marquee {
    font-size: 42px;
  }

  .manifesto-inner {
    margin-top: 90px;
  }

  .manifesto blockquote {
    font-size: clamp(42px, 12.5vw, 65px);
  }

  .accordion summary {
    min-height: 88px;
    font-size: 17px;
  }

  .final-cta {
    padding: 105px 18px;
  }

  .site-footer {
    padding: 55px 18px 22px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-top nav {
    grid-column: auto;
    gap: 15px;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 15px;
  }

  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* Hero — cinematic moment engine */
.hero {
  min-height: 980px;
  padding-top: 138px;
  background:
    radial-gradient(circle at 79% 42%, rgba(141, 112, 255, 0.13), transparent 25%),
    radial-gradient(circle at 53% 89%, rgba(200, 255, 71, 0.06), transparent 31%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink);
  background-size: auto, auto, 76px 76px, 76px 76px, auto;
}

.hero::before {
  top: 92px;
  bottom: 58px;
  left: 45%;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -8%;
  bottom: -33%;
  width: 860px;
  height: 620px;
  border: 1px solid rgba(200,255,71,.08);
  border-radius: 50%;
  filter: blur(.2px);
  transform: rotate(-13deg);
  box-shadow:
    0 0 0 80px rgba(200,255,71,.012),
    0 0 0 160px rgba(141,112,255,.012);
}

.hero-inner {
  grid-template-columns: minmax(510px, .9fr) minmax(620px, 1.1fr);
  gap: 20px;
}

.hero-copy {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(64px, 6.35vw, 102px);
  line-height: .83;
  letter-spacing: -.082em;
}

.hero h1 span,
.hero h1 em {
  display: block;
  white-space: nowrap;
}

.hero h1 span:last-child {
  max-width: 650px;
  font-size: .71em;
  letter-spacing: -.074em;
  line-height: 1.04;
}

.hero h1 em {
  position: relative;
  z-index: 2;
  margin: 6px 0 13px;
  color: var(--acid);
  font-size: 1.12em;
  line-height: .76;
  text-shadow: 0 0 45px rgba(200,255,71,.1);
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -13px;
  bottom: -7px;
  left: -11px;
  height: 16px;
  border-radius: 50%;
  background: rgba(200,255,71,.12);
  filter: blur(11px);
}

.hero-lede {
  max-width: 560px;
  margin-top: 34px;
  color: #aaa8b1;
  font-size: 16px;
}

.hero-caption-promise {
  position: relative;
  max-width: 535px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 21px;
  padding: 12px 15px 12px 12px;
  overflow: hidden;
  border: 1px solid rgba(200, 255, 71, 0.2);
  border-radius: 13px;
  background:
    linear-gradient(90deg, rgba(200, 255, 71, 0.09), transparent 64%),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.hero-caption-promise::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 71, 0.08), transparent);
  transform: skewX(-18deg);
  animation: captionSignal 4.8s ease-in-out infinite;
}

.caption-promise-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-content: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--acid);
  color: var(--ink);
  text-align: center;
}

.caption-promise-icon b,
.caption-promise-icon i,
.hero-caption-promise strong,
.hero-caption-promise small {
  display: block;
}

.caption-promise-icon b {
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.caption-promise-icon i {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 5px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-caption-promise strong {
  margin-bottom: 4px;
  color: white;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.hero-caption-promise small {
  color: #777681;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hero-actions {
  margin-top: 22px;
}

.hero-note {
  max-width: 520px;
  margin-top: 24px;
  color: #77757f;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.hero-proof-dot {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border: 1px solid var(--acid);
  border-radius: 50%;
}

.hero-proof-dot::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--acid);
  animation: proofPulse 1.7s ease-in-out infinite;
}

.hero-stage {
  --stage-rx: 0deg;
  --stage-ry: 0deg;
  position: relative;
  z-index: 5;
  min-width: 0;
  min-height: 730px;
  perspective: 1300px;
  isolation: isolate;
}

.stage-aurora {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .17;
  pointer-events: none;
}

.stage-aurora-a {
  top: 20%;
  left: 17%;
  width: 370px;
  height: 430px;
  background: var(--violet);
  animation: auroraShift 8s ease-in-out infinite;
}

.stage-aurora-b {
  right: 5%;
  bottom: 12%;
  width: 330px;
  height: 290px;
  background: var(--acid);
  opacity: .08;
  animation: auroraShift 10s ease-in-out -4s infinite reverse;
}

.stage-halo {
  position: absolute;
  z-index: -2;
  top: 48%;
  left: 51%;
  border: 1px solid rgba(255,255,255,.095);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-13deg);
  pointer-events: none;
}

.halo-outer {
  width: 650px;
  height: 650px;
}

.halo-outer::before,
.halo-outer::after,
.halo-inner::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.halo-outer::before {
  top: 82px;
  left: 78px;
  background: var(--acid);
  box-shadow: 0 0 18px var(--acid);
}

.halo-outer::after {
  right: 38px;
  bottom: 153px;
  background: var(--coral);
  box-shadow: 0 0 18px var(--coral);
}

.halo-inner {
  width: 500px;
  height: 500px;
  border-style: dashed;
  opacity: .55;
  animation: haloTurn 28s linear infinite;
}

.halo-inner::before {
  top: -4px;
  left: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.stage-coordinate {
  position: absolute;
  z-index: -1;
  color: rgba(255,255,255,.07);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}

.coord-one {
  top: 8%;
  left: 10%;
}

.coord-two {
  right: 5%;
  bottom: 12%;
}

.signal-card {
  position: absolute;
  z-index: 5;
  top: 11%;
  left: 2%;
  width: 148px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(15,15,19,.72);
  box-shadow: 0 20px 45px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
  transform: rotate(-5deg);
}

.signal-card > span,
.signal-card > small {
  display: block;
  color: #696871;
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: .11em;
}

.signal-card > small {
  color: var(--acid);
}

.signal-bars {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 7px 0;
}

.signal-bars i {
  width: 3px;
  height: 30%;
  border-radius: 2px;
  background: linear-gradient(to top, var(--violet), var(--acid));
  animation: signalBounce 1s ease-in-out infinite;
}

.signal-bars i:nth-child(2) { height: 75%; animation-delay: -.8s; }
.signal-bars i:nth-child(3) { height: 45%; animation-delay: -.3s; }
.signal-bars i:nth-child(4) { height: 92%; animation-delay: -.6s; }
.signal-bars i:nth-child(5) { height: 61%; animation-delay: -.1s; }
.signal-bars i:nth-child(6) { height: 85%; animation-delay: -.5s; }
.signal-bars i:nth-child(7) { height: 35%; animation-delay: -.7s; }

.moment-card-hero {
  position: absolute;
  z-index: 10;
  top: 48%;
  left: 51%;
  width: 356px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 19px;
  background: #111116;
  box-shadow:
    0 65px 120px rgba(0,0,0,.56),
    0 0 0 1px rgba(200,255,71,.035),
    inset 0 1px rgba(255,255,255,.08);
  transform:
    translate(-50%, -50%)
    rotateX(var(--stage-rx))
    rotateY(var(--stage-ry))
    rotate(-1.6deg);
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.moment-card-hero::before {
  content: "";
  position: absolute;
  z-index: 20;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 55px rgba(141,112,255,.06);
  pointer-events: none;
}

.moment-topline {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #6d6b74;
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: .1em;
}

.moment-topline > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.moment-topline i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}

.moment-topline b {
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(255,92,77,.11);
  color: #ff776b;
  font-size: 5px;
}

.moment-visual {
  position: relative;
  height: 500px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 27%, rgba(255,92,77,.26), transparent 27%),
    radial-gradient(circle at 28% 44%, rgba(141,112,255,.32), transparent 30%),
    linear-gradient(155deg, #171626, #2d1c36 55%, #14131e);
}

.moment-grid {
  position: absolute;
  inset: 0;
  opacity: .26;
  background:
    linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 75%, transparent);
}

.moment-light {
  position: absolute;
  width: 1px;
  height: 480px;
  background: linear-gradient(transparent, rgba(255,255,255,.65), transparent);
  filter: blur(.2px);
  opacity: .35;
  transform-origin: top;
}

.moment-light-left {
  top: -50px;
  left: 19%;
  transform: rotate(21deg);
}

.moment-light-right {
  top: -35px;
  right: 15%;
  transform: rotate(-24deg);
}

.scan-beam {
  position: absolute;
  z-index: 6;
  top: -12%;
  right: 0;
  left: 0;
  height: 60px;
  border-bottom: 1px solid rgba(200,255,71,.55);
  background: linear-gradient(to bottom, transparent, rgba(200,255,71,.07));
  box-shadow: 0 16px 30px rgba(200,255,71,.07);
  animation: scanMoment 4.2s cubic-bezier(.4,0,.2,1) infinite;
}

.moment-kicker {
  position: absolute;
  z-index: 7;
  top: 18px;
  left: 17px;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 5px;
  background: rgba(8,8,12,.34);
  color: rgba(255,255,255,.65);
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: .09em;
  backdrop-filter: blur(7px);
}

.moment-caption {
  position: absolute;
  z-index: 9;
  right: 17px;
  bottom: 32px;
  left: 17px;
  text-align: center;
}

.moment-caption span,
.moment-caption strong {
  display: inline-block;
  padding: 5px 7px;
  background: white;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .9;
}

.moment-caption strong {
  margin-top: 4px;
  background: var(--acid);
  font-size: 22px;
}

.moment-score {
  position: absolute;
  z-index: 8;
  top: 48px;
  right: 15px;
  width: 67px;
  height: 67px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(200,255,71,.4);
  border-radius: 50%;
  background: rgba(10,11,12,.58);
  box-shadow: 0 0 30px rgba(200,255,71,.08);
  text-align: center;
  backdrop-filter: blur(10px);
}

.moment-score::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(200,255,71,.22);
  border-radius: 50%;
  animation: scoreTurn 8s linear infinite;
}

.moment-score span {
  color: var(--acid);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: .9;
}

.moment-score small {
  margin-top: 4px;
  color: #7b7a83;
  font-family: var(--mono);
  font-size: 4px;
  letter-spacing: .1em;
}

.moment-footer {
  height: 64px;
  display: grid;
  grid-template-columns: 31px 38px 1fr 38px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: #101014;
}

.moment-footer button {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 8px;
}

.moment-time {
  color: #5b5a63;
  font-family: var(--mono);
  font-size: 6px;
}

.moment-wave {
  height: 27px;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow: hidden;
}

.moment-wave i {
  width: 2px;
  height: 20%;
  flex: 0 0 auto;
  border-radius: 2px;
  background: #56555e;
  animation: heroWave 1.2s ease-in-out infinite;
}

.moment-wave i:nth-child(2n) { height: 65%; animation-delay: -.2s; }
.moment-wave i:nth-child(3n) { height: 38%; animation-delay: -.55s; }
.moment-wave i:nth-child(5n) { height: 88%; animation-delay: -.8s; }
.moment-wave i:nth-child(7n) { background: var(--acid); }

.ghost-clip {
  position: absolute;
  z-index: 2;
  top: 48%;
  width: 235px;
  height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 17px;
  background:
    linear-gradient(to top, rgba(8,8,12,.9), transparent 50%),
    radial-gradient(circle at 50% 35%, rgba(141,112,255,.22), transparent 31%),
    #14141c;
  box-shadow: 0 35px 80px rgba(0,0,0,.32);
  opacity: .55;
}

.ghost-clip::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.ghost-clip span,
.ghost-clip p,
.ghost-clip small {
  position: absolute;
  z-index: 2;
}

.ghost-clip span {
  top: 14px;
  left: 14px;
  color: rgba(255,255,255,.3);
  font-family: var(--mono);
  font-size: 8px;
}

.ghost-clip p {
  right: 15px;
  bottom: 36px;
  left: 15px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -.04em;
}

.ghost-clip small {
  right: 15px;
  bottom: 16px;
  color: rgba(255,255,255,.3);
  font-family: var(--mono);
  font-size: 6px;
}

.ghost-clip-left {
  left: 5%;
  transform: translateY(-50%) rotateY(24deg) rotate(-9deg) translateZ(-100px);
}

.ghost-clip-right {
  right: 0;
  transform: translateY(-50%) rotateY(-24deg) rotate(9deg) translateZ(-100px);
}

.stage-chip {
  position: absolute;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 155px;
  padding: 9px 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 11px;
  background: rgba(15,15,19,.79);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(15px);
  animation: stageFloat 5s ease-in-out infinite;
}

.stage-chip > i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(200,255,71,.1);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
}

.stage-chip b,
.stage-chip small {
  display: block;
}

.stage-chip b {
  margin-bottom: 3px;
  color: white;
  font-size: 9px;
}

.stage-chip small {
  color: #6d6b74;
  font-size: 6px;
}

.chip-clips {
  top: 18%;
  right: -1%;
}

.chip-captions {
  bottom: 18%;
  left: 0;
  animation-delay: -1.8s;
}

.chip-format {
  right: 3%;
  bottom: 8%;
  animation-delay: -3.4s;
}

.chip-format > i {
  background: rgba(141,112,255,.11);
  color: #b9aaff;
}

.hero-stage.is-playing .scan-beam {
  animation-duration: 1.65s;
}

.hero-stage.is-playing .moment-wave i {
  animation-duration: .55s;
  background: var(--acid);
}

.hero-stage.is-playing .moment-card-hero {
  box-shadow:
    0 65px 120px rgba(0,0,0,.56),
    0 0 55px rgba(200,255,71,.09),
    inset 0 1px rgba(255,255,255,.08);
}

@keyframes proofPulse {
  50% { opacity: .3; transform: scale(.45); }
}

@keyframes captionSignal {
  0%, 18% { left: -30%; opacity: 0; }
  30% { opacity: 1; }
  66%, 100% { left: 112%; opacity: 0; }
}

@keyframes auroraShift {
  50% { transform: translate(35px, -20px) scale(1.15); }
}

@keyframes haloTurn {
  to { transform: translate(-50%, -50%) rotate(347deg); }
}

@keyframes signalBounce {
  50% { transform: scaleY(.35); opacity: .4; }
}

@keyframes scanMoment {
  0%, 9% { transform: translateY(-60px); opacity: 0; }
  15% { opacity: 1; }
  78% { opacity: .85; }
  91%, 100% { transform: translateY(570px); opacity: 0; }
}

@keyframes scoreTurn {
  to { transform: rotate(360deg); }
}

@keyframes heroWave {
  50% { transform: scaleY(.45); opacity: .55; }
}

@keyframes stageFloat {
  50% { transform: translateY(-9px); }
}

@media (max-width: 1240px) {
  .hero {
    min-height: 910px;
    padding-top: 125px;
  }

  .hero-inner {
    grid-template-columns: minmax(470px, .92fr) minmax(510px, 1.08fr);
  }

  .hero h1 {
    font-size: clamp(62px, 6.6vw, 85px);
  }

  .hero-stage {
    min-height: 660px;
    transform: scale(.88);
    transform-origin: center;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 135px 24px 70px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
    text-align: center;
  }

  .hero h1 {
    align-items: center;
    font-size: clamp(64px, 11.5vw, 100px);
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-stage {
    width: min(100%, 720px);
    min-height: 700px;
    margin: -15px auto -60px;
    transform: scale(.86);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 115px 18px 52px;
  }

  .hero h1 {
    font-size: clamp(48px, 15.2vw, 72px);
    line-height: .85;
  }

  .hero h1 span:last-child {
    max-width: 100%;
    white-space: normal;
  }

  .hero h1 em {
    margin-block: 5px 11px;
    font-size: 0.96em;
    letter-spacing: -0.068em;
    white-space: nowrap;
  }

  .hero-lede {
    margin-top: 25px;
    font-size: 13px;
  }

  .hero-caption-promise {
    margin: 19px auto 0;
    text-align: left;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-note {
    align-items: center;
    text-align: center;
  }

  .hero-stage {
    min-height: 540px;
    margin: -35px -135px -55px;
    transform: scale(.62);
  }

  .signal-card,
  .ghost-clip {
    opacity: .33;
  }

  .chip-captions {
    left: 3%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage,
  .moment-card-hero {
    transform-style: flat;
  }

  .scan-beam {
    top: 40%;
  }
}

/* Hero v4 — layered real creator footage */
.hero-stage {
  min-height: 730px;
}

.clip-stack {
  position: absolute;
  inset: 0;
  z-index: 4;
  transform-style: preserve-3d;
}

.clip-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0d0d12;
  box-shadow: 0 42px 95px rgba(0, 0, 0, 0.48);
  transform-style: preserve-3d;
}

.clip-card::after {
  content: "";
  position: absolute;
  z-index: 8;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 55px rgba(0, 0, 0, 0.24);
  pointer-events: none;
}

.clip-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}

.clip-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 7, 11, 0.9), transparent 43%),
    linear-gradient(120deg, rgba(141, 112, 255, 0.12), transparent 45%),
    radial-gradient(circle at 75% 20%, rgba(200, 255, 71, 0.08), transparent 30%);
  pointer-events: none;
}

.clip-card-main {
  z-index: 7;
  top: 48%;
  left: 51%;
  width: 372px;
  border-radius: 20px;
  transform:
    translate(-50%, -50%)
    rotateX(var(--stage-rx))
    rotateY(var(--stage-ry))
    rotate(-1.2deg)
    translateZ(46px);
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out;
}

.clip-card-main:hover {
  box-shadow:
    0 55px 120px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(200, 255, 71, 0.09);
}

.clip-topline {
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 15, 20, 0.98);
  color: #777680;
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.11em;
}

.clip-topline span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.clip-topline i,
.clip-live i,
.radar-label i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
}

.clip-topline b {
  padding: 4px 6px;
  border: 1px solid rgba(200, 255, 71, 0.18);
  border-radius: 999px;
  color: var(--acid);
  font-size: 5px;
}

.clip-video-frame {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #111117;
}

.clip-video-frame video {
  object-position: 50% 50%;
  transform: scale(1.04);
}

.clip-live {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 17px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(8, 8, 12, 0.48);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.11em;
  backdrop-filter: blur(10px);
}

.focus-frame {
  position: absolute;
  z-index: 4;
  inset: 18% 17% 23%;
  opacity: 0.58;
  pointer-events: none;
}

.focus-frame i {
  position: absolute;
  width: 21px;
  height: 21px;
  border-color: rgba(200, 255, 71, 0.78);
  border-style: solid;
}

.focus-frame i:nth-child(1) {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.focus-frame i:nth-child(2) {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}

.focus-frame i:nth-child(3) {
  right: 0;
  bottom: 0;
  border-width: 0 1px 1px 0;
}

.focus-frame i:nth-child(4) {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}

.clip-card-main .moment-score {
  top: 52px;
  right: 16px;
}

.clip-card-main .moment-caption {
  right: 18px;
  bottom: 30px;
  left: 18px;
}

.clip-card-main .moment-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.clip-card-main .moment-footer button {
  position: relative;
  z-index: 30;
  cursor: pointer;
}

.clip-card-main .moment-footer button:hover {
  transform: scale(1.08);
}

.clip-card-left,
.clip-card-right {
  z-index: 3;
  top: 48%;
  width: 250px;
  height: 446px;
  border-radius: 17px;
  opacity: 0.62;
}

.clip-card-left video,
.clip-card-right video {
  transform: scale(1.05);
}

.clip-card-left {
  left: 1%;
  transform: translateY(-50%) rotateY(18deg) rotate(-8deg) translateZ(-105px);
  animation: clipDriftLeft 7s ease-in-out infinite;
}

.clip-card-right {
  right: -1%;
  transform: translateY(-50%) rotateY(-18deg) rotate(8deg) translateZ(-105px);
  animation: clipDriftRight 7.8s ease-in-out -2.7s infinite;
}

.clip-card-left .clip-shade,
.clip-card-right .clip-shade {
  background:
    linear-gradient(to top, rgba(7, 7, 11, 0.97), transparent 57%),
    linear-gradient(rgba(8, 8, 14, 0.28), rgba(8, 8, 14, 0.28));
}

.side-clip-meta {
  position: absolute;
  z-index: 5;
  right: 16px;
  bottom: 17px;
  left: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
  align-items: end;
}

.side-clip-meta span {
  grid-row: 1 / span 2;
  color: rgba(255, 255, 255, 0.23);
  font-family: var(--mono);
  font-size: 34px;
  font-weight: 750;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.side-clip-meta strong {
  color: rgba(255, 255, 255, 0.87);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.side-clip-meta small {
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--mono);
  font-size: 6px;
}

.moment-radar {
  position: absolute;
  z-index: 12;
  top: 10%;
  left: 0;
  width: 164px;
  padding: 11px 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  background: rgba(12, 12, 17, 0.76);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transform: rotate(-4deg);
}

.radar-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.radar-wave {
  height: 35px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0 2px;
}

.radar-wave b {
  width: 3px;
  height: 32%;
  border-radius: 4px;
  background: linear-gradient(to top, var(--violet), var(--acid));
  animation: signalBounce 1.1s ease-in-out infinite;
}

.radar-wave b:nth-child(2) { height: 82%; animation-delay: -0.8s; }
.radar-wave b:nth-child(3) { height: 48%; animation-delay: -0.2s; }
.radar-wave b:nth-child(4) { height: 94%; animation-delay: -0.6s; }
.radar-wave b:nth-child(5) { height: 61%; animation-delay: -0.4s; }
.radar-wave b:nth-child(6) { height: 76%; animation-delay: -0.9s; }
.radar-wave b:nth-child(7) { height: 43%; animation-delay: -0.3s; }
.radar-wave b:nth-child(8) { height: 68%; animation-delay: -0.7s; }

.moment-radar small {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-stage .chip-clips {
  top: 12%;
  right: -1%;
}

.hero-stage .chip-captions {
  bottom: 15%;
  left: -1%;
}

.hero-stage .chip-format {
  right: 1%;
  bottom: 5%;
}

.hero-stage.is-paused .moment-wave i,
.hero-stage.is-paused .radar-wave b {
  animation-play-state: paused;
}

@keyframes clipDriftLeft {
  50% {
    transform: translateY(calc(-50% - 9px)) rotateY(18deg) rotate(-7deg) translateZ(-105px);
  }
}

@keyframes clipDriftRight {
  50% {
    transform: translateY(calc(-50% + 8px)) rotateY(-18deg) rotate(7deg) translateZ(-105px);
  }
}

@media (max-width: 1240px) {
  .hero-stage {
    min-height: 680px;
  }

  .clip-card-left {
    left: -3%;
  }

  .clip-card-right {
    right: -4%;
  }
}

@media (max-width: 900px) {
  .hero-stage {
    min-height: 700px;
  }

  .clip-card-left {
    left: 2%;
  }

  .clip-card-right {
    right: 2%;
  }
}

@media (max-width: 640px) {
  .hero-stage {
    width: 720px;
    max-width: none;
    min-height: 570px;
    margin: -24px 0 -65px calc(50% - 360px);
    transform: scale(0.62);
    transform-origin: center top;
  }

  .clip-card-left,
  .clip-card-right {
    opacity: 0.48;
  }

  .moment-radar {
    left: 6%;
  }

  .hero-stage .chip-clips {
    right: 5%;
  }

  .hero-stage .chip-captions {
    left: 4%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clip-card-left,
  .clip-card-right,
  .radar-wave b {
    animation: none;
  }

  .clip-card-main {
    transform: translate(-50%, -50%);
  }
}

/* Mobile v7 — native responsive layout, no scaled desktop canvas */
@media (max-width: 640px) {
  .hero {
    min-height: 0;
    padding: 108px 16px 48px;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    width: 100%;
    display: block;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy .eyebrow {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 7px;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: left;
  }

  .hero h1 {
    width: 100%;
    align-items: center;
    font-size: clamp(43px, 13.6vw, 54px);
    line-height: 0.9;
    letter-spacing: -0.075em;
    text-align: center;
  }

  .hero h1 span,
  .hero h1 em {
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
  }

  .hero h1 em {
    margin: 5px 0 10px;
    font-size: 0.95em;
    line-height: 0.86;
  }

  .hero h1 span:last-child {
    max-width: 340px;
    font-size: 0.68em;
    line-height: 1.02;
  }

  .hero-lede {
    max-width: 345px;
    margin: 23px auto 0;
    font-size: 13px;
    line-height: 1.55;
    text-wrap: pretty;
  }

  .hero-caption-promise {
    width: 100%;
    max-width: 100%;
    gap: 11px;
    margin-top: 18px;
    padding: 10px;
    border-radius: 12px;
  }

  .caption-promise-icon {
    width: 46px;
    height: 46px;
  }

  .hero-caption-promise strong {
    font-size: 12px;
    line-height: 1.2;
  }

  .hero-caption-promise small {
    font-size: 5.5px;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 52px;
  }

  .hero-note {
    max-width: 330px;
    justify-content: center;
    margin: 17px auto 0;
    font-size: 6px;
    line-height: 1.55;
    text-align: center;
  }

  .hero-stage {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin: 28px auto 0;
    perspective: none;
    transform: none;
  }

  .hero-glow {
    display: none;
  }

  .clip-stack {
    position: relative;
    inset: auto;
    width: 100%;
    transform-style: flat;
  }

  .clip-card-main {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    border-radius: 16px;
    transform: none;
  }

  .clip-card-main:hover {
    box-shadow: 0 36px 78px rgba(0, 0, 0, 0.5);
  }

  .clip-card-left,
  .clip-card-right,
  .stage-aurora,
  .stage-halo,
  .stage-coordinate,
  .moment-radar,
  .hero-stage .stage-chip {
    display: none;
  }

  .clip-topline {
    height: 40px;
    padding-inline: 11px;
    font-size: 5px;
  }

  .clip-video-frame {
    height: 430px;
  }

  .clip-live {
    top: 14px;
    left: 13px;
  }

  .clip-card-main .moment-score {
    top: 46px;
    right: 13px;
    width: 59px;
    height: 59px;
  }

  .clip-card-main .moment-score span {
    font-size: 21px;
  }

  .clip-card-main .moment-caption {
    right: 12px;
    bottom: 25px;
    left: 12px;
  }

  .clip-card-main .moment-caption span {
    font-size: 15px;
  }

  .clip-card-main .moment-caption strong {
    font-size: 19px;
  }

  .clip-card-main .moment-footer {
    height: 58px;
    grid-template-columns: 31px 35px 1fr 35px;
    gap: 6px;
    padding-inline: 10px;
  }

  .section,
  .outcome-section {
    padding: 72px 16px;
  }

  .product-section::before {
    display: none;
  }

  .section-heading h2,
  .outcome-copy h2 {
    font-size: clamp(40px, 12.5vw, 50px);
    line-height: 0.92;
    text-wrap: balance;
  }

  .product-shell {
    width: 100%;
    border-radius: 16px;
  }

  .product-topbar {
    padding-inline: 10px;
  }

  .project-pill {
    max-width: 200px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .preview-sidebar {
    grid-template-columns: 32px repeat(3, minmax(0, 1fr));
    gap: 3px;
  }

  .preview-nav {
    min-width: 0;
    padding-inline: 4px;
  }

  .preview-nav small {
    font-size: 5px;
  }

  .preview-panel {
    padding: 18px;
  }

  .panel-title strong {
    font-size: 16px;
  }

  .moment-card {
    grid-template-columns: 20px 1fr 33px;
    gap: 8px;
    padding-inline: 10px;
  }

  .step-card,
  .bento-card {
    border-radius: 18px;
  }

  .steps-grid,
  .step-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .bento-finish {
    min-height: 590px;
  }

  .finish-b {
    left: 0;
  }

  .finish-c {
    right: -22px;
  }

  .manifesto {
    overflow: hidden;
  }

  .manifesto blockquote {
    font-size: clamp(39px, 11.5vw, 46px);
    line-height: 0.9;
  }

  .faq-grid {
    gap: 42px;
  }

  .final-cta {
    padding: 88px 16px;
  }

  .final-cta h2 {
    max-width: 100%;
    font-size: clamp(39px, 11.3vw, 48px);
    line-height: 0.92;
  }

  .final-cta h2 em {
    display: inline;
    overflow-wrap: anywhere;
  }

  .final-cta p {
    margin: 22px auto;
    font-size: 13px;
  }

  .button-large {
    width: 100%;
    min-width: 0;
  }

  .footer-top nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 43px;
  }

  .hero-caption-promise strong {
    font-size: 11px;
  }

  .hero-caption-promise small {
    font-size: 5px;
  }

  .clip-video-frame {
    height: 410px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 120px 28px 64px;
  }

  .hero-inner {
    display: block;
    width: 100%;
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 {
    align-items: center;
    max-width: 100%;
    font-size: clamp(58px, 10vw, 76px);
    line-height: .9;
    letter-spacing: -.075em;
  }

  .hero h1 span,
  .hero h1 em {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    text-wrap: balance;
  }

  .hero h1 span:last-child {
    max-width: 650px;
    font-size: .66em;
    line-height: 1;
    letter-spacing: -.055em;
  }

  .hero-lede {
    max-width: 600px;
    margin-inline: auto;
  }

  .hero-caption-promise {
    max-width: 560px;
    margin-inline: auto;
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-note {
    justify-content: center;
    margin-inline: auto;
    text-align: center;
  }

  .hero-stage {
    margin: 12px auto -42px;
  }
}
