:root {
  --ink: #0b0710;
  --ink-soft: #17101d;
  --paper: #f7f4ed;
  --white: #ffffff;
  --purple: #9a35ff;
  --purple-dark: #6720bb;
  --pink: #ed49d2;
  --lime: #dfff57;
  --muted: #a8a1ad;
  --line: rgba(255, 255, 255, 0.14);
  --radius: 30px;
  --display: "Unbounded", sans-serif;
  --body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

body.modal-open { overflow: hidden; }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1.1em; height: 1.1em; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-star { fill: currentColor; stroke-width: 1.2; }

body::selection {
  color: var(--white);
  background: var(--purple);
}

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

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

button {
  font: inherit;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  filter: blur(45px);
  background: rgba(139, 38, 255, 0.11);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.4s ease;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  width: min(1380px, calc(100% - 40px));
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  color: var(--white);
  background: rgba(12, 8, 16, 0.58);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  transition: background 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.topbar.is-scrolled {
  background: rgba(12, 8, 16, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.brand-mark {
  color: var(--purple);
  font-size: 35px;
  line-height: 1;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(181, 84, 225, 0.45);
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 0 16px rgba(166, 54, 229, 0.2);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.topnav a {
  transition: color 0.25s ease;
}

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

.topbar > .button {
  justify-self: end;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  gap: 22px;
  padding: 0 25px;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.button > .icon { width: 19px; height: 19px; }

.button-small {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 13px;
  font-size: 12px;
}

.button-large {
  min-height: 72px;
  padding: 0 32px;
  border-radius: 20px;
  font-size: 16px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), #b33cff 55%, var(--pink));
  box-shadow: 0 16px 45px rgba(142, 44, 255, 0.28);
}

.button-primary:hover {
  box-shadow: 0 20px 55px rgba(142, 44, 255, 0.42);
}

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

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

.button-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--purple);
  background: rgba(154, 53, 255, 0.12);
}

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

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

.section-cream {
  color: var(--ink);
  background: var(--paper);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 30px;
  padding: 145px max(6vw, 32px) 90px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  right: -7%;
  bottom: -32%;
  z-index: -1;
  width: 72vw;
  height: 72vw;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: 0.25;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}

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

.hero-aurora-one {
  right: 4%;
  top: 15%;
  width: 42vw;
  height: 42vw;
  background: rgba(133, 30, 237, 0.38);
  animation: drift 9s ease-in-out infinite alternate;
}

.hero-aurora-two {
  right: 22%;
  bottom: -20%;
  width: 30vw;
  height: 30vw;
  background: rgba(234, 40, 197, 0.23);
  animation: drift 12s ease-in-out 1s infinite alternate-reverse;
}

@keyframes drift {
  to { transform: translate3d(7%, -5%, 0) scale(1.12); }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.eyebrow,
.kicker {
  margin: 0 0 24px;
  color: var(--purple-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(237, 73, 210, 0.1), 0 0 20px var(--pink);
  animation: live 1.8s ease-in-out infinite;
}

@keyframes live {
  50% { opacity: 0.45; transform: scale(0.8); }
}

.hero h1,
.section-heading h2,
.problem-intro h2,
.range-copy h2,
.author-copy h2,
.proof-top h2,
.plans-head h2,
.faq-title h2,
.final-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.065em;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(54px, 6.25vw, 112px);
  line-height: 0.98;
}

.word-accent,
.section-heading h2 span,
.problem-intro h2 span,
.range-copy h2 span,
.author-copy h2 span,
.proof-top h2 span,
.plans-head h2 span,
.faq-title h2 span,
.final-copy h2 span {
  color: var(--purple);
}

.word-accent {
  position: relative;
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--purple);
}

.word-accent::after {
  content: "";
  position: absolute;
  left: 2%;
  right: -3%;
  bottom: -5px;
  height: 11px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 12C88 3 203 18 398 5' stroke='%239A35FF' stroke-width='6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}

.hero-lead {
  max-width: 660px;
  margin: 35px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  border: 0;
  cursor: pointer;
  background: none;
  font-size: 13px;
}

.play-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
}
.play-icon .icon { width: 15px; height: 15px; fill:currentColor; }

.hero-proof {
  display: flex;
  gap: 42px;
  margin-top: 50px;
}

.hero-proof div,
.hero-proof a {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-proof strong {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.04em;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.hero-stage {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.stage-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one { width: 660px; height: 290px; }
.orbit-two { width: 520px; height: 520px; opacity: 0.6; }

.phone-shell {
  position: relative;
  z-index: 3;
  width: min(380px, 72vw);
  aspect-ratio: 0.505;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 54px;
  background: linear-gradient(145deg, #3a3440, #08070a 18%, #1c1720 76%, #514957);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.48), 0 0 80px rgba(148, 45, 255, 0.14);
  transform: rotate(4deg);
  animation: phoneFloat 5.5s ease-in-out infinite;
}

@keyframes phoneFloat {
  50% { transform: rotate(2deg) translateY(-13px); }
}

.phone-speaker {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 5;
  width: 94px;
  height: 25px;
  border-radius: 15px;
  background: #050407;
  transform: translateX(-50%);
}

.app-screen {
  height: 100%;
  padding: 28px 20px 20px;
  overflow: hidden;
  border-radius: 46px;
  background:
    radial-gradient(circle at 50% 34%, rgba(178, 48, 255, 0.44), transparent 34%),
    linear-gradient(180deg, #19101e 0%, #08060b 64%);
}

.app-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.app-live {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.72);
}

.app-live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
}

.virtual-host {
  position: relative;
  height: 250px;
  display: grid;
  place-items: center;
  margin-top: 15px;
}

.host-halo {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 50px rgba(161, 59, 255, 0.16);
  animation: haloPulse 3s ease-in-out infinite;
}

.host-halo::before,
.host-halo::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  animation: spin 14s linear infinite;
}

.host-halo::after {
  inset: -16px;
  border-style: solid;
  border-color: transparent var(--purple) transparent var(--pink);
  animation-duration: 9s;
  animation-direction: reverse;
}

@keyframes haloPulse { 50% { transform: scale(1.06); opacity: 0.7; } }
@keyframes spin { to { transform: rotate(360deg); } }

.host-avatar {
  position: relative;
  z-index: 2;
  width: 126px;
  height: 126px;
  border-radius: 44% 44% 48% 48%;
  background: linear-gradient(145deg, #c76cff, #7924d2 62%, #551596);
  box-shadow: inset 0 8px 18px rgba(255, 255, 255, 0.2), 0 22px 40px rgba(0, 0, 0, 0.3);
}

.host-face {
  position: absolute;
  inset: 27px 24px 24px;
  border-radius: 48% 48% 45% 45%;
  background: #170d1f;
}

.host-eye {
  position: absolute;
  top: 29px;
  width: 7px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  animation: blink 4s infinite;
}

.host-eye-left { left: 22px; }
.host-eye-right { right: 22px; }

@keyframes blink { 0%, 46%, 50%, 100% { transform: scaleY(1); } 48% { transform: scaleY(0.12); } }

.host-smile {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 27px;
  height: 13px;
  border-bottom: 2px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
}

.host-mic {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid #281332;
  border-radius: 50%;
  color: var(--pink);
  background: var(--white);
}
.host-mic .icon { width:15px; height:15px; }

.sound-wave {
  position: absolute;
  bottom: 8px;
  display: flex;
  height: 30px;
  align-items: center;
  gap: 4px;
}

.sound-wave i {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--white);
  animation: bars 0.9s ease-in-out infinite alternate;
}

.sound-wave i:nth-child(2) { animation-delay: -0.2s; }
.sound-wave i:nth-child(3) { animation-delay: -0.4s; }
.sound-wave i:nth-child(4) { animation-delay: -0.6s; }
.sound-wave i:nth-child(5) { animation-delay: -0.3s; }
.sound-wave i:nth-child(6) { animation-delay: -0.7s; }
.sound-wave i:nth-child(7) { animation-delay: -0.1s; }
@keyframes bars { to { height: 28px; } }

.host-label {
  margin: 8px 0 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  text-align: center;
}

.app-screen > h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.05em;
  text-align: center;
}

.app-task-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
}

.app-task-preview span {
  padding: 7px;
  border-radius: 8px;
  color: var(--pink);
  background: rgba(237, 73, 210, 0.12);
  font-family: var(--display);
  font-size: 9px;
}

.app-task-preview p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  line-height: 1.45;
}

.app-task-preview b { color: var(--white); }

.app-start {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
  padding: 0 16px;
  border-radius: 13px;
  color: var(--ink);
  background: var(--white);
  font-size: 10px;
  font-weight: 800;
}

.app-start .icon { width:18px; height:18px; }

.floating-card {
  position: absolute;
  z-index: 5;
  width: 160px;
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.33);
  backdrop-filter: blur(12px);
}

.floating-card span { margin-bottom: auto; font-size: 8px; letter-spacing: 0.15em; opacity: 0.6; }
.floating-card strong { font-family: var(--display); font-size: 17px; letter-spacing: -0.05em; }
.floating-card-icon { width:28px; height:28px; margin-top:9px; }

.floating-card-left {
  left: 0;
  top: 18%;
  color: var(--white);
  background: linear-gradient(155deg, rgba(237, 73, 210, 0.82), rgba(103, 32, 187, 0.54));
  transform: rotate(-12deg);
  animation: cardFloatOne 6s ease-in-out infinite;
}

.floating-card-right {
  right: -1%;
  bottom: 14%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  transform: rotate(9deg);
  animation: cardFloatTwo 7s ease-in-out infinite;
}

@keyframes cardFloatOne { 50% { transform: rotate(-8deg) translateY(-14px); } }
@keyframes cardFloatTwo { 50% { transform: rotate(5deg) translateY(12px); } }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.36);
  transform: translateX(-50%);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 18px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 4px;
  background: var(--white);
  transform: translateX(-50%);
  animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot { 70%, 100% { transform: translate(-50%, 12px); opacity: 0; } }

.ticker {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: 20px 0;
  color: var(--white);
  background: var(--purple);
  transform: rotate(-1.2deg) scale(1.03);
  transform-origin: center;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  animation: ticker 26s linear infinite;
}

.ticker-icon { width:16px; height:16px; color:var(--lime); }
@keyframes ticker { to { transform: translateX(-50%); } }

.demo,
.scenarios,
.formats,
.faq {
  padding: 150px max(6vw, 32px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading h2,
.problem-intro h2,
.range-copy h2,
.author-copy h2,
.proof-top h2,
.plans-head h2,
.faq-title h2,
.final-copy h2 {
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.03;
}

.section-heading > p:last-child {
  max-width: 630px;
  margin: 28px auto 0;
  color: #625c66;
  font-size: 16px;
  line-height: 1.7;
}

.round-machine {
  max-width: 1320px;
  display: grid;
  grid-template-columns: 1fr auto 1fr 0.8fr;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid rgba(11, 7, 16, 0.1);
  border-radius: 36px;
  background: var(--paper);
}

.round-column { min-width: 0; }

.round-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #767079;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.round-label span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(11, 7, 16, 0.15);
  border-radius: 50%;
  color: var(--ink);
  font-size: 8px;
}

.slot-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  overflow: hidden;
  border-radius: 28px;
  transform-style: preserve-3d;
}

.slot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at 15% 15%, currentColor 1px, transparent 1px);
  background-size: 19px 19px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

.slot-card.is-shuffling { animation: shuffleCard 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes shuffleCard { 0% { transform: translateY(0) rotateX(0); } 45% { transform: translateY(-12px) rotateX(18deg) scale(0.97); filter: blur(2px); } 100% { transform: translateY(0) rotateX(0); } }

.slot-card-topic { color: var(--white); background: linear-gradient(145deg, #111013, #2b2430); }
.slot-card-role { color: var(--white); background: linear-gradient(145deg, #7e22cf, var(--purple), var(--pink)); }
.slot-card small { position: relative; z-index: 1; margin-bottom: 10px; opacity: 0.6; font-size: 11px; }
.slot-card strong { position: relative; z-index: 1; max-width: 330px; font-family: var(--display); font-size: clamp(23px, 2.1vw, 34px); line-height: 1.12; letter-spacing: -0.055em; }

.card-corner {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-family: var(--display);
}

.round-plus {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(11, 7, 16, 0.14);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 25px;
}

.round-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 12px;
  text-align: center;
}

.round-result p { max-width: 220px; margin: 18px auto 0; color: #756f77; font-size: 11px; line-height: 1.55; }

.dice {
  position: relative;
  width: 115px;
  height: 115px;
  margin-bottom: 28px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 24px 48px rgba(35, 22, 43, 0.14);
  transform: rotate(8deg);
}

.dice.is-rolling { animation: diceRoll 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes diceRoll { 0% { transform: rotate(8deg); } 45% { transform: rotate(190deg) scale(0.82); } 100% { transform: rotate(368deg); } }

.dot { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--purple); }
.dot-1 { left: 22px; top: 22px; }.dot-2 { right: 22px; top: 22px; }.dot-3 { left: 50%; top: 50%; transform: translate(-50%, -50%); }.dot-4 { left: 22px; bottom: 22px; }.dot-5 { right: 22px; bottom: 22px; }.dot-6 { right: 22px; top: 50%; transform: translateY(-50%); opacity: 0; }

.timer-panel {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 45px;
  margin: 50px auto 0;
  padding: 32px 38px;
  border-radius: 30px;
  color: var(--white);
  background: var(--ink);
}

.timer-copy p { margin: 0 0 6px; color: var(--pink); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.timer-copy h3 { margin: 0; font-family: var(--display); font-size: 22px; line-height: 1.2; letter-spacing: -0.045em; }

.timer-circle { position: relative; width: 120px; height: 120px; display: grid; place-items: center; }
.timer-circle svg { position: absolute; inset: 0; transform: rotate(-90deg); }
.timer-circle circle { fill: none; stroke-width: 5; }
.timer-track { stroke: rgba(255,255,255,.12); }
.timer-progress { stroke: var(--purple); stroke-linecap: round; stroke-dasharray: 326.73; stroke-dashoffset: 0; transition: stroke-dashoffset 1s linear; }
.timer-circle span { font-family: var(--display); font-size: 18px; }

.timer-actions { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
.timer-reset { color: rgba(255,255,255,.48); border: 0; cursor: pointer; background: none; font-size: 10px; }

.demo-conversion {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  color: var(--white);
  background: rgba(8,4,12,.72);
  backdrop-filter: blur(16px) saturate(.75);
  -webkit-backdrop-filter: blur(16px) saturate(.75);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}
.demo-conversion.is-visible { opacity:1; visibility:visible; pointer-events:auto; }
.demo-conversion-panel { position:relative; width:min(620px,100%); display:grid; grid-template-columns:auto 1fr; align-items:center; gap:22px; padding:38px; overflow:hidden; border:1px solid rgba(255,255,255,.2); border-radius:34px; background:linear-gradient(125deg,#471079,#7b22c9 55%,#9f2ab9); box-shadow:0 40px 120px rgba(0,0,0,.58),0 0 70px rgba(154,53,255,.22); opacity:0; transform:translateY(35px) scale(.9); transition:opacity .4s ease,transform .55s cubic-bezier(.18,1.32,.35,1); }
.demo-conversion-panel::before { content:""; position:absolute; width:280px; height:280px; top:-150px; right:-70px; border-radius:50%; background:rgba(255,255,255,.18); filter:blur(55px); pointer-events:none; }.demo-conversion-panel::after { content:""; position:absolute; inset:0; opacity:.16; background-image:radial-gradient(circle at 15% 15%,white 1px,transparent 1px); background-size:20px 20px; mask-image:linear-gradient(120deg,black,transparent 70%); pointer-events:none; }
.demo-conversion.is-visible .demo-conversion-panel { opacity:1; transform:translateY(0) scale(1); }
.demo-conversion-close { position:absolute; top:16px; right:16px; z-index:3; width:42px; height:42px; display:grid; place-items:center; padding:0; border:1px solid rgba(255,255,255,.2); border-radius:50%; color:var(--white); background:rgba(10,5,15,.25); cursor:pointer; backdrop-filter:blur(8px); transition:background .2s ease,transform .2s ease; }.demo-conversion-close:hover { background:rgba(10,5,15,.5); transform:rotate(6deg); }.demo-conversion-close .icon { width:18px; height:18px; }
.demo-conversion-icon { position:relative; z-index:1; width:58px; height:58px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.35); border-radius:50%; color:var(--ink); background:var(--lime); box-shadow:0 0 34px rgba(198,255,66,.3); }.demo-conversion-icon .icon { width:26px; height:26px; stroke-width:2.3; }
.demo-conversion-copy { position:relative; z-index:1; padding-right:30px; }.demo-conversion-copy small { display:block; margin-bottom:10px; color:var(--lime); font-size:9px; font-weight:800; letter-spacing:.15em; text-transform:uppercase; }.demo-conversion-copy strong { display:block; font-family:var(--display); font-size:clamp(20px,3vw,28px); line-height:1.18; letter-spacing:-.045em; }.demo-conversion-copy p { margin:13px 0 0; color:rgba(255,255,255,.7); font-size:12px; line-height:1.6; }
.demo-conversion .button { position:relative; z-index:1; grid-column:1/-1; width:100%; margin-top:8px; animation:conversionPulse 2.6s ease-in-out infinite; }
@keyframes conversionPulse { 0%,100% { box-shadow:0 0 0 0 rgba(255,255,255,0); } 50% { box-shadow:0 0 0 7px rgba(255,255,255,.09); } }

.problem {
  padding: 160px max(6vw, 32px);
}

.problem-intro { max-width: 1160px; margin-bottom: 75px; }
.problem-intro h2 span { color: transparent; -webkit-text-stroke: 1px var(--purple); }
.kicker-purple { color: #c983ff; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.problem-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.problem-card:hover { transform: translateY(-7px); border-color: rgba(154, 53, 255, 0.6); }
.problem-index { position: absolute; top: 25px; right: 25px; color: rgba(255,255,255,.3); font-family: var(--display); font-size: 11px; }
.problem-card h3 { margin: 0 0 12px; font-family: var(--display); font-size: 28px; letter-spacing: -0.055em; }
.problem-card p { max-width: 330px; margin: 0; color: rgba(255,255,255,.48); font-size: 13px; line-height: 1.65; }

.flat-wave { position: absolute; top: 42%; left: 12%; right: 12%; display: flex; align-items: center; gap: 10px; }
.flat-wave i { flex: 1; height: 3px; border-radius: 3px; background: linear-gradient(90deg, transparent, var(--purple), transparent); animation: flat 2.8s ease-in-out infinite; }
.flat-wave i:nth-child(2) { animation-delay: .2s; }.flat-wave i:nth-child(3) { animation-delay: .4s; }.flat-wave i:nth-child(4) { animation-delay: .6s; }.flat-wave i:nth-child(5) { animation-delay: .8s; }
@keyframes flat { 50% { transform: scaleY(5); opacity: .3; } }

.emotion-glyph { position:absolute; top:30%; left:50%; width:150px; height:72px; transform:translateX(-50%); filter:drop-shadow(0 0 28px rgba(154,53,255,.45)); }.emotion-glyph i { position:absolute; top:16px; width:42px; height:3px; border-radius:3px; background:var(--purple); }.emotion-glyph i:first-child { left:12px; }.emotion-glyph i:nth-child(2) { right:12px; }.emotion-glyph b { position:absolute; left:50%; bottom:12px; width:34px; height:3px; border-radius:3px; background:var(--purple); transform:translateX(-50%); }

.nervous-dot { position: absolute; top: 27%; left: 50%; width: 130px; height: 130px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; transform: translateX(-50%); }
.nervous-dot::before,.nervous-dot::after { content:""; position:absolute; inset:18px; border:1px solid rgba(154,53,255,.3); border-radius:50%; animation:nervous 2.1s ease-in-out infinite; }
.nervous-dot::after { inset:-16px; animation-delay:.7s; }
.nervous-dot i { position:absolute; top:50%; left:50%; width:24px; height:24px; border-radius:50%; background:var(--purple); box-shadow:0 0 35px var(--purple); transform:translate(-50%,-50%); }
@keyframes nervous { 50% { transform:scale(1.12); opacity:.2; } }

.problem-statement {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.problem-statement > span { color: var(--purple); font-family: var(--display); font-size: 18px; }
.problem-statement p { margin: 0; font-family: var(--display); font-size: clamp(29px, 4vw, 60px); line-height: 1.16; letter-spacing: -.055em; }
.problem-statement strong { color: var(--purple); font-weight: inherit; }

.how { padding: 150px max(6vw, 32px); }
.how-layout { max-width: 1400px; display: grid; grid-template-columns: 1fr .86fr; gap: 8vw; margin: 0 auto; }
.section-heading-left { margin: 0 0 65px; text-align: left; }
.section-heading-left h2 { font-size: clamp(42px, 4.4vw, 70px); }

.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 55px 1fr; gap: 24px; padding: 32px 0; border-top: 1px solid rgba(11,7,16,.13); opacity: .38; transition: opacity .4s ease, transform .4s ease; }
.step:last-child { border-bottom: 1px solid rgba(11,7,16,.13); }
.step.is-active { opacity: 1; transform: translateX(12px); }
.step > span { padding-top: 5px; color: var(--purple-dark); font-family: var(--display); font-size: 11px; }
.step h3 { margin: 0 0 9px; font-family: var(--display); font-size: 22px; letter-spacing: -.045em; }
.step p { max-width: 540px; margin: 0; color: #6c6670; font-size: 13px; line-height: 1.65; }

.sticky-stage { position: sticky; top: 120px; align-self: start; }
.director-panel { position: relative; min-height: 650px; padding: 28px; overflow: hidden; border-radius: 38px; color: var(--white); background: var(--ink); box-shadow: 0 40px 90px rgba(35,23,42,.18); }
.director-panel::after { content:""; position:absolute; right:-25%; bottom:-20%; width:420px; height:420px; border-radius:50%; background:rgba(154,53,255,.26); filter:blur(60px); }
.director-top { position:relative; z-index:2; display:flex; justify-content:space-between; color:rgba(255,255,255,.42); font-size:9px; font-weight:800; letter-spacing:.12em; }
.director-top i { font-style:normal; }
.director-visual { position:relative; z-index:2; height:500px; display:grid; place-items:center; perspective:900px; }
.director-cube { position:absolute; top:80px; left:18%; width:135px; height:135px; display:flex; flex-direction:column; justify-content:space-between; padding:18px; border-radius:25px; color:var(--white); background:linear-gradient(145deg,var(--pink),var(--purple-dark)); box-shadow:0 30px 50px rgba(0,0,0,.3); transform:rotate(-12deg); transition:transform .6s ease, background .6s ease; }
.director-cube b { font-size:9px; letter-spacing:.12em; }.director-cube .icon { width:35px; height:35px; align-self:flex-end; }
.director-card { position:absolute; right:10%; bottom:70px; width:260px; min-height:330px; display:flex; flex-direction:column; justify-content:flex-end; padding:25px; border-radius:28px; color:var(--ink); background:var(--white); box-shadow:0 38px 65px rgba(0,0,0,.36); transform:rotate(7deg); transition:transform .6s ease, background .6s ease, color .6s ease; }
.director-card small { margin-bottom:10px; color:#827b86; font-size:10px; }.director-card strong { font-family:var(--display); font-size:28px; line-height:1.12; letter-spacing:-.055em; }
.director-panel > p { position:absolute; left:28px; bottom:28px; z-index:3; margin:0; color:rgba(255,255,255,.5); font-size:11px; }
.director-panel[data-panel-step="2"] .director-cube { transform:rotate(12deg) translate(180px,40px); background:linear-gradient(145deg,#5e1ca8,var(--purple)); }
.director-panel[data-panel-step="2"] .director-card { transform:rotate(-7deg) translate(-90px,-30px); background:#e4ff6b; }
.director-panel[data-panel-step="3"] .director-cube { transform:rotate(-20deg) translate(50px,240px) scale(.8); }
.director-panel[data-panel-step="3"] .director-card { transform:rotate(0) translate(-60px,-70px) scale(1.08); color:var(--white); background:linear-gradient(145deg,var(--purple),var(--pink)); }
.director-panel[data-panel-step="4"] .director-cube { transform:rotate(28deg) translate(200px,240px); }
.director-panel[data-panel-step="4"] .director-card { transform:rotate(-12deg) translate(-130px,-10px); background:var(--white); }

.range { display:grid; grid-template-columns:.85fr 1.15fr; align-items:center; gap:7vw; padding:150px max(6vw,32px); }
.range-copy > p:not(.kicker) { max-width:570px; margin:28px 0 0; color:rgba(255,255,255,.5); font-size:15px; line-height:1.75; }
.range-tags { display:flex; flex-wrap:wrap; gap:9px; margin-top:35px; }
.range-tags span { padding:10px 14px; border:1px solid rgba(255,255,255,.14); border-radius:99px; color:rgba(255,255,255,.72); font-size:10px; }
.voice-lab { padding:28px; border:1px solid rgba(255,255,255,.13); border-radius:34px; background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.015)); }
.lab-top { display:flex; justify-content:space-between; color:rgba(255,255,255,.42); font-size:9px; font-weight:800; letter-spacing:.13em; }
.lab-live { display:inline-flex; align-items:center; gap:7px; color:var(--pink); }.lab-live i { width:7px; height:7px; border-radius:50%; background:currentColor; box-shadow:0 0 12px currentColor; }
.wave-zone { position:relative; height:390px; display:flex; flex-direction:column; justify-content:center; gap:70px; overflow:hidden; }
.wave-zone::before { content:""; position:absolute; inset:0; background:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px); background-size:48px 48px; mask-image:linear-gradient(to right,transparent,black 10%,black 90%,transparent); }
.wave-line { position:relative; z-index:1; height:105px; display:flex; align-items:center; justify-content:center; gap:10px; }
.wave-line i { width:10px; border-radius:99px; }
.wave-line-muted i { height:13px; background:#6d6870; animation:mutedBars 3s ease-in-out infinite alternate; }
.wave-line-color i { background:linear-gradient(to top,var(--purple),var(--pink)); box-shadow:0 0 18px rgba(154,53,255,.25); animation:colorBars 1.5s ease-in-out infinite alternate; }
.wave-line-color i:nth-child(1),.wave-line-color i:nth-child(16){height:18px}.wave-line-color i:nth-child(2),.wave-line-color i:nth-child(15){height:35px}.wave-line-color i:nth-child(3),.wave-line-color i:nth-child(14){height:53px}.wave-line-color i:nth-child(4),.wave-line-color i:nth-child(13){height:78px}.wave-line-color i:nth-child(5),.wave-line-color i:nth-child(12){height:42px}.wave-line-color i:nth-child(6),.wave-line-color i:nth-child(11){height:92px}.wave-line-color i:nth-child(7),.wave-line-color i:nth-child(10){height:64px}.wave-line-color i:nth-child(8),.wave-line-color i:nth-child(9){height:108px}
.wave-line-color i:nth-child(2n){animation-delay:-.4s}.wave-line-color i:nth-child(3n){animation-delay:-.8s}
@keyframes mutedBars { to { height:20px; opacity:.5; } }
@keyframes colorBars { to { transform:scaleY(.58); opacity:.65; } }
.lab-scale { display:flex; justify-content:space-between; color:rgba(255,255,255,.32); font-size:7px; letter-spacing:.08em; }

.scenario-shell { max-width:1360px; margin:0 auto; border:1px solid rgba(11,7,16,.11); border-radius:34px; overflow:hidden; }
.scenario-tabs { display:grid; grid-template-columns:repeat(4,1fr); border-bottom:1px solid rgba(11,7,16,.11); }
.scenario-tab { min-height:75px; padding:0 18px; border:0; border-right:1px solid rgba(11,7,16,.11); cursor:pointer; color:#7d7780; background:transparent; font-size:11px; font-weight:700; }
.scenario-tab:last-child { border-right:0; }.scenario-tab.is-active { color:var(--white); background:var(--ink); }
.scenario-content { display:grid; grid-template-columns:.85fr 1.15fr; min-height:530px; }
.scenario-content > div:first-child { display:flex; flex-direction:column; justify-content:center; padding:70px; }
.scenario-number { margin:0 0 30px; color:var(--purple-dark); font-family:var(--display); font-size:10px; }
.scenario-content h3 { margin:0; font-family:var(--display); font-size:clamp(34px,3.4vw,55px); line-height:1.08; letter-spacing:-.06em; }
.scenario-content h3 + p { max-width:500px; margin:25px 0 0; color:#6d6770; font-size:14px; line-height:1.7; }
.scenario-for { width:max-content; max-width:100%; margin-top:35px; padding:11px 15px; border-radius:99px; background:#f1edf3; color:#6f6873; font-size:9px; }
.scenario-art { position:relative; overflow:hidden; background:radial-gradient(circle at 50% 35%,#b649ff,transparent 28%),linear-gradient(145deg,#221328,#0d0911 65%); transition:background .5s ease; }
.scenario-art[data-art="camera"] { background:radial-gradient(circle at 35% 35%,#ed49d2,transparent 26%),linear-gradient(145deg,#371233,#0d0911 65%); }
.scenario-art[data-art="pitch"] { background:radial-gradient(circle at 65% 30%,#dfff57,transparent 25%),linear-gradient(145deg,#283014,#0d0911 65%); }
.scenario-art[data-art="daily"] { background:radial-gradient(circle at 50% 35%,#6d40ff,transparent 28%),linear-gradient(145deg,#15132f,#0d0911 65%); }
.spotlight { position:absolute; top:-10%; left:50%; width:65%; height:90%; background:linear-gradient(to bottom,rgba(255,255,255,.17),transparent); clip-path:polygon(40% 0,60% 0,100% 100%,0 100%); transform:translateX(-50%); filter:blur(10px); }
.scenario-mic { position:absolute; left:50%; bottom:18%; width:100px; height:170px; border-radius:50px; background:linear-gradient(90deg,#a7a2aa,#f3f2f4 35%,#6d6870); transform:translateX(-50%) rotate(-7deg); box-shadow:0 30px 50px rgba(0,0,0,.45); }
.scenario-mic::before { content:""; position:absolute; inset:7px 8px 70px; border-radius:45px; background:repeating-linear-gradient(0deg,#37323a 0 3px,#a7a2aa 3px 5px); }
.scenario-mic span { position:absolute; left:50%; bottom:-80px; width:16px; height:100px; background:#8e8992; transform:translateX(-50%); }
.scenario-pulse { position:absolute; left:50%; bottom:33%; }
.scenario-pulse i { position:absolute; width:180px; height:180px; border:1px solid rgba(255,255,255,.2); border-radius:50%; transform:translate(-50%,-50%); animation:pulse 2.2s ease-out infinite; }
.scenario-pulse i:nth-child(2){animation-delay:.7s}.scenario-pulse i:nth-child(3){animation-delay:1.4s}
@keyframes pulse { from{width:30px;height:30px;opacity:1}to{width:330px;height:330px;opacity:0} }

.author { display:grid; grid-template-columns:.9fr 1.1fr; align-items:center; gap:8vw; padding:150px max(6vw,32px); overflow:hidden; }
.author-photo-wrap { position:relative; max-width:620px; }
.author-photo-frame { position:relative; width:80%; margin:0 auto; padding:10px; border:1px solid rgba(255,255,255,.22); border-radius:34px; transform:rotate(-3deg); }
.author-photo-frame img { width:100%; aspect-ratio:.72; border-radius:26px; object-fit:cover; filter:saturate(.8) contrast(1.06); }
.author-photo-frame::after { content:""; position:absolute; inset:10px; border-radius:26px; background:linear-gradient(to top,rgba(18,6,27,.42),transparent 45%); }
.author-photo-tag { position:absolute; right:-55px; bottom:55px; z-index:2; padding:13px 18px; border-radius:99px; color:var(--ink); background:var(--lime); font-size:9px; font-weight:800; letter-spacing:.12em; transform:rotate(5deg); }
.author-stamp { position:absolute; left:-3%; top:15%; z-index:3; display:flex; align-items:center; gap:8px; padding:15px 18px; border:1px solid rgba(255,255,255,.35); border-radius:15px; background:rgba(25,9,35,.55); backdrop-filter:blur(15px); transform:rotate(-10deg); }
.author-stamp span { color:var(--pink); font-family:var(--display); font-size:32px; }.author-stamp b { font-family:var(--display); font-size:10px; line-height:1; }
.author-copy { max-width:750px; }
.author-copy h2 span { color:var(--lime); }
.author-lead { max-width:650px; margin:30px 0 0; color:rgba(255,255,255,.68); font-size:17px; line-height:1.7; }
.author-facts { display:grid; grid-template-columns:repeat(3,1fr); gap:13px; margin-top:38px; }
.author-facts div { min-height:125px; display:flex; flex-direction:column; justify-content:space-between; padding:18px; border:1px solid rgba(255,255,255,.19); border-radius:18px; background:rgba(255,255,255,.055); }
.author-facts strong { font-family:var(--display); font-size:19px; letter-spacing:-.04em; }.author-facts span { color:rgba(255,255,255,.48); font-size:9px; line-height:1.45; }
.author-note { margin:35px 0 0; padding-left:25px; border-left:3px solid var(--lime); color:rgba(255,255,255,.85); font-size:16px; line-height:1.6; }
.author-links { display:flex; gap:25px; margin-top:35px; color:rgba(255,255,255,.65); font-size:11px; }.author-links a { display:inline-flex; align-items:center; gap:6px; }.author-links .icon { width:13px; height:13px; }
.author-links a:hover { color:var(--lime); }

.proof { padding:150px max(6vw,32px); }
.proof-top { display:grid; grid-template-columns:1fr .7fr; align-items:end; gap:10vw; margin-bottom:70px; }
.proof-top > p { max-width:550px; margin:0; color:#69636d; font-size:15px; line-height:1.75; }
.proof-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:18px; }
.product-shot { position:relative; min-height:650px; display:grid; place-items:center; overflow:hidden; border-radius:34px; background:var(--ink); }
.product-shot::before { content:""; position:absolute; inset:0; opacity:.22; background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size:48px 48px; }
.product-glow { position:absolute; width:470px; height:470px; border-radius:50%; background:rgba(154,53,255,.55); filter:blur(80px); }
.product-shot img { position:relative; z-index:2; width:min(58%,430px); border-radius:14px; box-shadow:0 50px 80px rgba(0,0,0,.46); transform:rotate(-4deg); transition:transform .45s ease; }
.product-shot:hover img { transform:rotate(0) scale(1.04); }
.shot-label { position:absolute; z-index:3; padding:11px 15px; border-radius:99px; font-size:9px; font-weight:800; letter-spacing:.1em; }
.shot-label-one { top:20%; left:8%; color:var(--ink); background:var(--lime); transform:rotate(-8deg); }.shot-label-two { right:7%; bottom:22%; color:var(--white); background:var(--pink); transform:rotate(7deg); }
.product-video-link { position:absolute; left:28px; bottom:28px; z-index:4; display:inline-flex; min-height:48px; align-items:center; gap:11px; padding:0 17px; border:1px solid rgba(255,255,255,.2); border-radius:14px; color:var(--white); background:rgba(12,7,17,.68); backdrop-filter:blur(15px); font-size:9px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.product-video-link i { display:grid; width:25px; height:25px; place-items:center; border-radius:50%; color:var(--ink); background:var(--white); font-style:normal; }.product-video-link i .icon { width:12px; height:12px; fill:currentColor; }
.proof-cards { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.proof-card { min-height:245px; display:flex; flex-direction:column; justify-content:flex-end; padding:28px; border:1px solid rgba(11,7,16,.1); border-radius:30px; background:var(--white); transition:transform .3s ease; }
.proof-card:hover { transform:translateY(-5px); }
.proof-card:first-child { grid-column:1/-1; min-height:385px; justify-content:center; align-items:center; text-align:center; }
.proof-card > span { margin-bottom:auto; color:#746d78; font-size:9px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.proof-card:first-child > span { margin-bottom:24px; }
.proof-card strong { font-family:var(--display); font-size:clamp(45px,6vw,85px); letter-spacing:-.06em; }
.stars { display:flex; gap:5px; margin-top:5px; color:var(--purple); }.stars .icon { width:20px; height:20px; }.proof-card small { display:flex; align-items:center; gap:5px; margin-top:18px; color:#77717a; font-size:9px; }.proof-card small .icon { width:12px; height:12px; }.proof-card p { margin:10px 0 0; color:#756f78; font-size:11px; line-height:1.5; }
.proof-card-dark { color:var(--white); background:var(--ink); }
.category-list { display:flex; flex-wrap:wrap; gap:7px; margin-top:38px; }.category-list i { padding:8px 10px; border:1px solid rgba(255,255,255,.15); border-radius:99px; color:rgba(255,255,255,.7); font-size:8px; font-style:normal; }

.format-grid { max-width:1360px; display:grid; grid-template-columns:1.16fr .92fr .92fr; gap:18px; margin:0 auto; }
.format-card { position:relative; min-height:545px; display:flex; flex-direction:column; padding:30px; overflow:hidden; border:1px solid rgba(11,7,16,.11); border-radius:30px; background:var(--paper); }
.format-card-main { color:var(--white); background:linear-gradient(145deg,var(--purple-dark),var(--purple),var(--pink)); }
.format-badge { position:absolute; top:25px; right:25px; padding:9px 12px; border-radius:99px; color:var(--ink); background:var(--lime); font-size:8px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.format-icon { position:relative; height:220px; display:grid; place-items:center; margin-bottom:auto; }
.format-card > p { margin:0 0 15px; color:#776f7b; font-size:8px; font-weight:800; letter-spacing:.13em; }.format-card-main > p { color:rgba(255,255,255,.6); }
.format-card h3 { margin:0; font-family:var(--display); font-size:32px; line-height:1.08; letter-spacing:-.055em; }
.format-card h3 + span { max-width:380px; margin-top:18px; color:#716a74; font-size:12px; line-height:1.6; }.format-card-main h3 + span { color:rgba(255,255,255,.68); }
.format-card a { display:flex; align-items:center; justify-content:space-between; margin-top:28px; padding-top:19px; border-top:1px solid rgba(11,7,16,.13); font-size:11px; font-weight:800; }.format-card-main a { border-color:rgba(255,255,255,.23); }.format-card a .icon { width:20px; height:20px; }
.phone-icon::before { content:""; width:115px; height:200px; border:5px solid rgba(255,255,255,.85); border-radius:27px; transform:rotate(9deg); }.phone-icon::after { content:""; position:absolute; width:85px; height:150px; border-radius:18px; background:rgba(12,7,17,.55); transform:rotate(9deg); }.phone-icon i { position:absolute; z-index:2; width:45px; height:45px; border-radius:50%; background:var(--lime); box-shadow:0 0 0 15px rgba(223,255,87,.12); animation:haloPulse 2s ease-in-out infinite; }
.cards-icon i { position:absolute; width:130px; height:180px; border-radius:20px; background:var(--white); box-shadow:0 25px 45px rgba(19,11,24,.15); }.cards-icon i:first-child { background:var(--purple); transform:rotate(-13deg) translateX(-35px); }.cards-icon i:last-child { transform:rotate(10deg) translateX(35px); }
.stage-icon::before { content:""; width:110px; height:110px; border:17px solid var(--ink); border-radius:50% 50% 45% 45%; background:var(--purple); }.stage-icon::after { content:""; position:absolute; bottom:30px; width:170px; height:35px; border-radius:50%; background:radial-gradient(ellipse,#8f35dc,transparent 70%); filter:blur(6px); }.stage-icon i { position:absolute; z-index:2; width:170px; height:170px; border:1px solid rgba(154,53,255,.28); border-radius:50%; animation:pulse 2.4s infinite; }

.plans { padding:150px max(6vw,32px); }
.plans-head { display:grid; grid-template-columns:1fr .6fr; align-items:end; gap:10vw; margin-bottom:70px; }.plans-head > p { max-width:450px; margin:0; color:rgba(255,255,255,.48); font-size:15px; line-height:1.7; }
.plan-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.plan-card { position:relative; min-height:560px; display:flex; flex-direction:column; padding:30px; border:1px solid rgba(255,255,255,.13); border-radius:30px; background:rgba(255,255,255,.035); }
.plan-card-featured { color:var(--ink); border-color:transparent; background:linear-gradient(145deg,#f7ecff,#ffffff); }
.popular-tag { position:absolute; top:18px; right:18px; padding:9px 12px; border-radius:99px; color:var(--white); background:var(--purple); font-size:8px; font-weight:800; }
.plan-top { display:flex; justify-content:space-between; color:rgba(255,255,255,.45); font-size:9px; font-weight:800; letter-spacing:.12em; }.plan-card-featured .plan-top { color:#6c6570; }
.plan-top p { margin:0; }.plan-top span { padding-right:4px; }
.plan-card h3 { margin:80px 0 35px; font-family:var(--display); font-size:42px; letter-spacing:-.06em; }.plan-card h3 small { color:rgba(255,255,255,.4); font-family:var(--body); font-size:12px; font-weight:500; letter-spacing:0; }.plan-card-featured h3 small { color:#777079; }
.plan-card ul { display:flex; flex-direction:column; gap:14px; margin:0 0 38px; padding:0; list-style:none; }
.plan-card li { position:relative; padding-left:23px; color:rgba(255,255,255,.58); font-size:12px; }.plan-card-featured li { color:#625c65; }
.plan-card li::before { content:""; position:absolute; left:2px; top:3px; width:8px; height:5px; border-left:2px solid var(--purple); border-bottom:2px solid var(--purple); transform:rotate(-45deg); }
.plan-card .button { width:100%; margin-top:auto; }

.faq { display:grid; grid-template-columns:.7fr 1.3fr; align-items:start; gap:9vw; }
.faq-title { position:sticky; top:130px; }.faq-title h2 span { color:var(--purple-dark); }
.faq-list { border-top:1px solid rgba(11,7,16,.14); }
.faq-list details { border-bottom:1px solid rgba(11,7,16,.14); }
.faq-list summary { min-height:90px; display:flex; align-items:center; justify-content:space-between; gap:20px; cursor:pointer; font-family:var(--display); font-size:17px; letter-spacing:-.035em; list-style:none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary i { position:relative; width:30px; height:30px; flex:0 0 auto; border:1px solid rgba(11,7,16,.18); border-radius:50%; }
.faq-list summary i::before,.faq-list summary i::after { content:""; position:absolute; top:50%; left:50%; width:10px; height:1px; background:var(--ink); transform:translate(-50%,-50%); transition:transform .3s ease; }.faq-list summary i::after { transform:translate(-50%,-50%) rotate(90deg); }
.faq-list details[open] summary i::after { transform:translate(-50%,-50%) rotate(0); }
.faq-list details p { max-width:720px; margin:-5px 0 30px; padding-right:65px; color:#716a74; font-size:13px; line-height:1.7; }

.final-cta { position:relative; min-height:760px; display:grid; place-items:center; padding:150px max(6vw,32px); overflow:hidden; text-align:center; }
.final-bg-text { position:absolute; top:5%; left:50%; color:rgba(255,255,255,.055); font-family:var(--display); font-size:14vw; font-weight:800; letter-spacing:-.08em; transform:translateX(-50%); white-space:nowrap; }
.final-copy { position:relative; z-index:3; max-width:900px; }.final-copy h2 span { color:var(--lime); }.final-copy > p:not(.kicker) { max-width:620px; margin:28px auto 38px; color:rgba(255,255,255,.65); font-size:16px; line-height:1.7; }
.final-card { position:absolute; z-index:2; width:155px; height:220px; display:flex; align-items:flex-end; padding:17px; border-radius:22px; font-family:var(--display); font-size:12px; font-weight:700; box-shadow:0 30px 60px rgba(29,5,42,.22); }
.final-card-one { left:8%; top:22%; color:var(--ink); background:var(--lime); transform:rotate(-12deg); animation:cardFloatOne 7s ease-in-out infinite; }.final-card-two { right:8%; top:20%; color:var(--white); background:var(--pink); transform:rotate(10deg); animation:cardFloatTwo 8s ease-in-out infinite; }.final-card-three { right:16%; bottom:-7%; color:var(--ink); background:var(--white); transform:rotate(-8deg); animation:cardFloatOne 9s ease-in-out infinite reverse; }

.footer { padding:54px max(6vw,32px) 34px; color:var(--white); background:var(--ink); }
.footer-main { display:grid; grid-template-columns:1fr 1.2fr auto; align-items:center; gap:40px; padding-bottom:42px; }
.footer-main > p { max-width:430px; margin:0; color:rgba(255,255,255,.43); font-size:10px; line-height:1.6; }
.footer-links { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:12px 18px; color:rgba(255,255,255,.63); font-size:10px; }
.footer-links a,.footer-contacts a { transition:color .2s ease; }.footer-links a:hover,.footer-contacts a:hover { color:var(--lime); }
.footer-legal { display:grid; grid-template-columns:1.25fr 1.4fr 1.15fr .7fr; gap:42px; padding:34px 0; border-top:1px solid rgba(255,255,255,.1); border-bottom:1px solid rgba(255,255,255,.1); }
.footer-legal small,.footer-registration span,.footer-contacts span { display:block; margin-bottom:12px; color:rgba(255,255,255,.35); font-size:8px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; }
.footer-legal-name strong { font-family:var(--display); font-size:13px; line-height:1.45; letter-spacing:-.02em; }
.footer-requisites { display:grid; grid-template-columns:1fr 1fr; gap:20px 28px; margin:0; }
.footer-requisites div { min-width:0; }.footer-requisites dt { margin-bottom:5px; color:rgba(255,255,255,.35); font-size:8px; text-transform:uppercase; }.footer-requisites dd { margin:0; font-family:var(--display); font-size:11px; overflow-wrap:anywhere; }
.footer-registration p { max-width:280px; margin:0; color:rgba(255,255,255,.7); font-size:10px; line-height:1.65; }
.footer-contacts { display:flex; flex-direction:column; align-items:flex-start; gap:8px; }.footer-contacts span { margin-bottom:4px; }.footer-contacts a { color:rgba(255,255,255,.78); font-size:10px; }
.footer-bottom { display:flex; align-items:flex-start; justify-content:space-between; gap:40px; padding-top:24px; color:rgba(255,255,255,.28); font-size:8px; line-height:1.65; }
.footer-bottom p { max-width:660px; margin:0; text-align:right; }

.reveal { opacity:0; transform:translateY(32px); transition:opacity .8s cubic-bezier(.22,1,.36,1),transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity:1; transform:translateY(0); }
.reveal-delay { transition-delay:.18s; }.reveal-delay-1{transition-delay:.1s}.reveal-delay-2{transition-delay:.2s}

@media (max-width: 1180px) {
  .hero { grid-template-columns:1fr 520px; padding-left:32px; padding-right:32px; }
  .hero h1 { font-size:clamp(50px,6vw,76px); }
  .floating-card-left { left:-4%; }.floating-card-right { right:-4%; }
  .round-machine { grid-template-columns:1fr auto 1fr; }.round-result { grid-column:1/-1; flex-direction:row; justify-content:center; gap:25px; padding:10px 0 0; }.round-result .dice { width:75px; height:75px; margin:0; border-radius:18px; }.dice .dot { width:7px; height:7px; }.dot-1,.dot-4{left:15px}.dot-2,.dot-5,.dot-6{right:15px}.dot-1,.dot-2{top:15px}.dot-4,.dot-5{bottom:15px}.round-result p{margin:0;text-align:left}.format-card h3{font-size:27px}
}

@media (max-width: 980px) {
  .topbar { grid-template-columns:1fr auto; }.topnav { display:none; }
  .hero { grid-template-columns:1fr; padding-top:150px; text-align:center; }.hero-copy { margin:0 auto; }.hero-lead { margin-left:auto; margin-right:auto; }.hero-actions,.hero-proof { justify-content:center; }.hero-stage { min-height:720px; }.scroll-cue{display:none}
  .problem-grid { grid-template-columns:1fr; }.problem-card{min-height:330px}.flat-wave{top:35%}.emotion-glyph{top:24%}.nervous-dot{top:18%}
  .how-layout { grid-template-columns:1fr; }.sticky-stage { position:relative; top:0; }.director-panel{min-height:620px}
  .range,.author { grid-template-columns:1fr; }.range{gap:70px}.voice-lab{max-width:780px}.author-photo-wrap{margin:0 auto}.author-copy{max-width:none}
  .scenario-content { grid-template-columns:1fr; }.scenario-content > div:first-child{padding:55px}.scenario-art{min-height:480px}
  .proof-top,.plans-head { grid-template-columns:1fr; gap:35px; }.proof-grid{grid-template-columns:1fr}.product-shot{min-height:580px}
  .format-grid { grid-template-columns:1fr 1fr; }.format-card-main{grid-column:1/-1}.format-card{min-height:480px}
  .plan-grid{grid-template-columns:1fr}.plan-card{min-height:480px}.plan-card h3{margin-top:55px}
  .faq{grid-template-columns:1fr}.faq-title{position:relative;top:0}.footer-main{grid-template-columns:1fr 1fr}.footer-main>p{display:none}.footer-links{justify-content:flex-end}.footer-legal{grid-template-columns:1fr 1fr}.footer-bottom{flex-direction:column;gap:10px}.footer-bottom p{text-align:left}
}

@media (max-width: 680px) {
  .topbar { top:10px; width:calc(100% - 20px); min-height:58px; padding:8px 8px 8px 14px; border-radius:17px; }.topbar .button{min-height:40px;padding:0 14px}.brand{font-size:9px}.brand-mark{font-size:29px}
  .hero { padding:125px 18px 70px; }.hero h1 { font-size:clamp(42px,13vw,64px); }.eyebrow{margin-bottom:18px;font-size:9px}.hero-lead{margin-top:25px;font-size:14px;line-height:1.6}.hero-actions{flex-direction:column;gap:18px}.hero-actions .button{width:100%}.hero-proof{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:38px}.hero-proof strong{font-size:11px}.hero-proof span{font-size:8px}.hero-stage{min-height:610px}.phone-shell{width:290px;border-radius:44px}.app-screen{border-radius:37px;padding:25px 16px 16px}.phone-speaker{top:15px}.virtual-host{height:205px}.host-halo{width:170px;height:170px}.host-avatar{width:105px;height:105px}.app-screen>h2{font-size:20px}.floating-card{width:125px;min-height:160px;padding:13px}.floating-card-left{left:-9%;top:16%}.floating-card-right{right:-9%;bottom:12%}.floating-card strong{font-size:13px}.floating-card i{font-size:22px}
  .ticker{padding:15px 0}.ticker-track{font-size:13px;gap:24px}
  .demo,.scenarios,.formats,.faq,.problem,.how,.range,.author,.proof,.plans,.final-cta{padding:105px 18px}.section-heading{margin-bottom:48px}.section-heading h2,.problem-intro h2,.range-copy h2,.author-copy h2,.proof-top h2,.plans-head h2,.faq-title h2,.final-copy h2{font-size:clamp(35px,10vw,50px)}.section-heading>p:last-child{font-size:13px}.kicker{margin-bottom:17px;font-size:9px}
  .round-machine{grid-template-columns:1fr;padding:16px;border-radius:24px}.round-plus{margin:0 auto}.slot-card{min-height:260px;padding:22px;border-radius:21px}.slot-card strong{font-size:25px}.round-result{grid-column:auto;display:flex;flex-direction:column}.round-result p{text-align:center}.timer-panel{grid-template-columns:1fr;text-align:center;padding:26px}.timer-circle{margin:0 auto}.demo-conversion{padding:16px}.demo-conversion-panel{grid-template-columns:1fr;padding:32px 22px 22px;border-radius:27px;text-align:center}.demo-conversion-icon{margin:0 auto}.demo-conversion-copy{padding-right:0}.demo-conversion-copy strong{font-size:20px}.demo-conversion-copy p{font-size:11px}.demo-conversion-close{top:12px;right:12px;width:38px;height:38px}.demo-conversion .button{margin-top:2px}
  .problem-intro{margin-bottom:45px}.problem-card{min-height:300px;padding:23px}.problem-statement{flex-direction:column;gap:18px;margin-top:70px}.problem-statement p{font-size:28px}
  .section-heading-left{margin-bottom:35px}.step{grid-template-columns:35px 1fr;gap:10px;padding:25px 0}.step.is-active{transform:none}.director-panel{min-height:510px;padding:20px;border-radius:27px}.director-visual{height:400px}.director-cube{width:100px;height:100px;left:8%}.director-card{width:200px;min-height:270px;right:3%;bottom:50px;padding:20px}.director-card strong{font-size:23px}
  .wave-zone{height:300px;gap:45px}.wave-line{gap:5px}.wave-line i{width:6px}.lab-scale{font-size:5px}
  .scenario-tabs{grid-template-columns:1fr 1fr}.scenario-tab{min-height:62px;border-bottom:1px solid rgba(11,7,16,.11)}.scenario-content>div:first-child{padding:35px 25px}.scenario-art{min-height:400px}
  .author{gap:65px}.author-photo-frame{width:88%}.author-photo-tag{right:-25px}.author-stamp{left:-2%}.author-facts{grid-template-columns:1fr}.author-facts div{min-height:100px}.author-links{flex-wrap:wrap}
  .product-shot{min-height:470px}.product-shot img{width:70%}.proof-cards{grid-template-columns:1fr}.proof-card:first-child{min-height:310px}.proof-card{min-height:210px}.proof-card-dark{grid-column:1/-1}
  .format-grid{grid-template-columns:1fr}.format-card-main{grid-column:auto}.format-card{min-height:500px}
  .plan-card{padding:24px}.faq-list summary{font-size:14px;line-height:1.35}.faq-list details p{padding-right:30px}
  .final-cta{min-height:700px}.final-card{width:95px;height:140px;font-size:8px}.final-card-one{left:-3%;top:16%}.final-card-two{right:-3%;top:14%}.final-card-three{right:8%}.final-copy>p:not(.kicker){font-size:13px}.final-copy .button{width:100%}
  .footer{padding:42px 18px 28px}.footer-main{grid-template-columns:1fr;gap:26px}.footer-links{justify-content:flex-start}.footer-legal{grid-template-columns:1fr;gap:28px}.footer-requisites{max-width:400px}.footer-bottom{padding-top:20px}
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
  .cursor-glow { display:none; }
}
