:root {
  color-scheme: dark;
  --bg: #08080a;
  --bg-soft: #0d0d12;
  --surface: rgba(19, 18, 28, 0.78);
  --surface-strong: #121119;
  --surface-soft: #17151f;
  --text: #f7f7fb;
  --muted: #aaa7b6;
  --faint: #706d7a;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.17);
  --violet: #8b5cf6;
  --violet-deep: #6d28d9;
  --violet-soft: #c4b5fd;
  --mint: #2fffd2;
  --mint-soft: #9affea;
  --danger: #ff6f91;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --sans: Manrope, Inter, "Segoe UI", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(124, 58, 237, 0.17), transparent 28rem),
    radial-gradient(circle at 15% 36%, rgba(47, 255, 210, 0.05), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.023) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  content: "";
  pointer-events: none;
}

body::after {
  position: fixed;
  z-index: 40;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.025);
  content: "";
  pointer-events: none;
}

::selection {
  background: rgba(139, 92, 246, 0.48);
  color: white;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(47, 255, 210, 0.78);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--mint);
  color: #06120f;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.section {
  position: relative;
  padding: 112px 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(8, 8, 10, 0.58);
  backdrop-filter: blur(20px) saturate(135%);
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  background: rgba(8, 8, 10, 0.9);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.75);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.3), transparent 48%),
    #111018;
  box-shadow:
    inset 0 0 18px rgba(139, 92, 246, 0.12),
    0 8px 26px rgba(91, 33, 182, 0.18);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  left: 7px;
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: rgba(196, 181, 253, 0.3);
  content: "";
}

.brand-mark::before {
  top: 7px;
}

.brand-mark::after {
  bottom: 7px;
}

.brand-mark span {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--mint);
  filter: drop-shadow(0 0 7px rgba(47, 255, 210, 0.56));
}

.brand-name {
  font-size: 1.04rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a:not(.button) {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 150ms ease;
}

.site-nav > a:not(.button):hover {
  color: white;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-button > span:nth-child(2) {
  transform: translateY(-4px);
}

.menu-button > span:nth-child(3) {
  transform: translateY(4px);
}

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

.menu-button[aria-expanded="true"] > span:nth-child(3) {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.015em;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

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

.button-small {
  min-height: 40px;
  padding: 0 17px;
  border-radius: 11px;
  font-size: 0.84rem;
}

.button-primary {
  padding: 0 22px;
  background: linear-gradient(135deg, #9b6cff, #6d32de);
  color: white;
  box-shadow:
    0 15px 36px rgba(109, 40, 217, 0.3),
    inset 0 1px rgba(255, 255, 255, 0.28);
}

.button-primary:hover {
  box-shadow:
    0 20px 46px rgba(109, 40, 217, 0.42),
    inset 0 1px rgba(255, 255, 255, 0.28);
}

.button-ghost {
  border: 1px solid rgba(139, 92, 246, 0.38);
  background: rgba(139, 92, 246, 0.1);
  color: #e9e1ff;
}

.button-text {
  min-height: 48px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.hero {
  min-height: 100vh;
  overflow: clip;
  padding-top: 154px;
  padding-bottom: 80px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 76px;
  left: 50%;
  width: min(1200px, 96vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.28), transparent);
  content: "";
  transform: translateX(-50%);
}

.hero-noise {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -18%;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 49, 214, 0.17), transparent 62%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 68px;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
}

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

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--violet-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(47, 255, 210, 0.75);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(47, 255, 210, 0.3);
  border-radius: 50%;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin: 24px 0 26px;
  font-size: clamp(3.2rem, 5.8vw, 6.2rem);
  font-weight: 750;
  letter-spacing: -0.072em;
  line-height: 0.98;
}

h1 span {
  display: block;
  background: linear-gradient(105deg, #ffffff 4%, #c8b6ff 45%, #8b5cf6 78%, #55e9ca);
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 30px 0 0;
  color: #c7c4ce;
  font-size: 0.77rem;
  font-weight: 650;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list li span {
  color: var(--mint);
  font-weight: 900;
}

.studio-stage {
  position: relative;
  min-width: 0;
  padding: 26px 0 24px;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(139, 92, 246, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: -18%;
  right: -10%;
  width: 620px;
  height: 620px;
}

.orbit-two {
  top: -4%;
  right: 3%;
  width: 470px;
  height: 470px;
  border-color: rgba(47, 255, 210, 0.08);
}

.studio-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: #0a0910;
  box-shadow:
    0 50px 110px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(139, 92, 246, 0.08),
    0 0 90px rgba(109, 40, 217, 0.18);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center;
}

.studio-window::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.055), transparent 17%, transparent 76%, rgba(139, 92, 246, 0.045));
  content: "";
  pointer-events: none;
}

.studio-titlebar {
  display: grid;
  min-height: 46px;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(21, 19, 29, 0.92);
  color: #bdb9c7;
  font-size: 0.55rem;
  grid-template-columns: 1fr auto 1fr;
}

.studio-brand,
.window-state,
.window-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.studio-brand strong {
  color: #eceaf3;
  font-size: 0.61rem;
}

.mini-mark {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid var(--violet);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.55), rgba(47, 255, 210, 0.3));
}

.window-state span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(47, 255, 210, 0.6);
}

.window-actions {
  justify-content: flex-end;
}

.window-actions i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #393641;
}

.studio-body {
  display: grid;
  min-height: 430px;
  grid-template-columns: 42px 1fr;
}

.studio-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: #0c0b11;
}

.side-pill {
  width: 19px;
  height: 5px;
  border-radius: 8px;
  background: #302d38;
}

.side-pill.short {
  width: 14px;
}

.side-pill.tiny {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.side-pill.active {
  height: 18px;
  background: linear-gradient(180deg, var(--violet), #5b21b6);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.34);
}

.side-spacer {
  flex: 1;
}

.studio-main {
  min-width: 0;
  padding: 18px 18px 14px;
}

.studio-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 15px;
}

.micro-label {
  display: block;
  margin-bottom: 3px;
  color: #777382;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.studio-heading strong {
  display: block;
  overflow: hidden;
  max-width: 290px;
  color: #f2f0f6;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ready-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border: 1px solid rgba(47, 255, 210, 0.2);
  border-radius: 999px;
  background: rgba(47, 255, 210, 0.07);
  color: var(--mint-soft);
  font-size: 0.47rem;
  font-weight: 800;
}

.ready-badge i,
.mint-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
}

.editor-grid {
  display: grid;
  min-height: 326px;
  gap: 14px;
  grid-template-columns: minmax(135px, 0.8fr) minmax(190px, 1.15fr);
}

.clip-rail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.clip-card {
  display: grid;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  grid-template-columns: 45px 1fr;
}

.clip-card.selected {
  border-color: rgba(139, 92, 246, 0.45);
  background: rgba(139, 92, 246, 0.08);
  box-shadow: inset 2px 0 var(--violet);
}

.clip-thumb {
  position: relative;
  height: 45px;
  overflow: hidden;
  border-radius: 7px;
  background: #15131a;
}

.clip-thumb::before,
.clip-thumb::after {
  position: absolute;
  content: "";
}

.clip-thumb::before {
  inset: 0 0 50%;
  background: radial-gradient(circle at 35% 45%, #cfc3b4 0 9%, transparent 10%), linear-gradient(135deg, #5e4c78, #181623);
}

.clip-thumb::after {
  inset: 50% 0 0;
  background: linear-gradient(135deg, #253a46, #16191d 42%, #764d2e);
}

.clip-thumb-two::before {
  background: radial-gradient(circle at 64% 42%, #d7c0aa 0 8%, transparent 9%), linear-gradient(135deg, #31385a, #181623);
}

.clip-thumb-three::after {
  background: linear-gradient(135deg, #332c4a, #142027 55%, #4c5b39);
}

.clip-thumb span {
  position: absolute;
  z-index: 2;
  right: 3px;
  bottom: 3px;
  padding: 1px 4px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.38rem;
  font-weight: 900;
}

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

.clip-card strong {
  color: #dedbe6;
  font-size: 0.55rem;
}

.clip-card small {
  margin-top: 2px;
  color: #6f6b78;
  font-size: 0.42rem;
}

.preview-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: #08070c;
}

.video-frame {
  position: relative;
  width: 144px;
  height: 256px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #131019;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.face-panel {
  position: relative;
  height: 36%;
  overflow: hidden;
  background:
    radial-gradient(circle at 53% 68%, rgba(195, 152, 121, 0.85) 0 10%, transparent 10.5%),
    radial-gradient(circle at 51% 46%, #d9b294 0 15%, transparent 15.5%),
    linear-gradient(135deg, #181329 20%, #4c3368 64%, #1a1723);
}

.face-panel::after {
  position: absolute;
  right: 9px;
  bottom: 7px;
  left: 9px;
  height: 20px;
  border-radius: 6px;
  background: rgba(4, 4, 8, 0.76);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.12);
  content: "";
}

.face-panel span {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 11px;
  left: 12px;
  overflow: hidden;
  color: white;
  font-size: 0.34rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-panel {
  position: relative;
  height: 64%;
  overflow: hidden;
  background:
    linear-gradient(155deg, transparent 46%, rgba(153, 104, 61, 0.55) 47% 66%, transparent 67%),
    linear-gradient(30deg, #11191e 20%, #334650 47%, #222529 48% 64%, #674f37 65%);
}

.game-panel::before,
.game-panel::after {
  position: absolute;
  bottom: 0;
  content: "";
}

.game-panel::before {
  left: -8px;
  width: 78px;
  height: 98px;
  background: linear-gradient(105deg, #1a1b1e 20%, #58616a 21% 27%, #20242a 28% 46%, transparent 47%);
  clip-path: polygon(0 100%, 0 40%, 65% 0, 100% 28%, 72% 100%);
}

.game-panel::after {
  right: -18px;
  width: 102px;
  height: 82px;
  background: linear-gradient(75deg, #362719, #8a6139 55%, #2b2622);
  clip-path: polygon(0 100%, 24% 18%, 72% 0, 100% 26%, 100% 100%);
}

.crosshair {
  position: absolute;
  z-index: 4;
  top: 44%;
  left: 50%;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(47, 255, 210, 0.65);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.crosshair::before,
.crosshair::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(47, 255, 210, 0.75);
  content: "";
  transform: translate(-50%, -50%);
}

.crosshair::before {
  width: 17px;
  height: 1px;
}

.crosshair::after {
  width: 1px;
  height: 17px;
}

.game-hud {
  position: absolute;
  z-index: 4;
  top: 8px;
  right: 7px;
  display: flex;
  gap: 3px;
}

.game-hud i {
  width: 14px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.42);
}

.game-hud i:first-child {
  background: var(--mint);
}

.play-control {
  position: absolute;
  z-index: 8;
  top: 50%;
  left: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0 0 0 2px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(5, 5, 8, 0.62);
  color: white;
  font-size: 0.65rem;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(6px);
}

.timeline {
  position: relative;
  display: flex;
  width: 100%;
  height: 27px;
  align-items: flex-end;
  gap: 3px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.025);
}

.timeline i {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, rgba(139, 92, 246, 0.22), rgba(139, 92, 246, 0.68));
}

.timeline i:nth-of-type(1) { height: 34%; }
.timeline i:nth-of-type(2) { height: 72%; }
.timeline i:nth-of-type(3) { height: 46%; }
.timeline i:nth-of-type(4) { height: 86%; }
.timeline i:nth-of-type(5) { height: 58%; }
.timeline i:nth-of-type(6) { height: 74%; }
.timeline i:nth-of-type(7) { height: 40%; }
.timeline i:nth-of-type(8) { height: 63%; }

.timeline-progress {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 41%;
  width: 1px;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(47, 255, 210, 0.5);
}

.studio-footer {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #797582;
  font-size: 0.47rem;
}

.studio-footer span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.studio-footer button {
  min-height: 25px;
  padding: 0 9px;
  margin-left: auto;
  border: 0;
  border-radius: 6px;
  background: var(--violet);
  color: white;
  font-size: 0.46rem;
  font-weight: 800;
}

.illustration-note {
  margin: 13px 0 0;
  color: #686573;
  font-size: 0.65rem;
  text-align: center;
}

.proof-strip {
  display: grid;
  gap: 1px;
  margin-top: 82px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--border);
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip > div {
  min-width: 0;
  padding: 19px 22px;
  background: rgba(13, 12, 18, 0.91);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 3px;
  color: #eeeaf7;
  font-size: 0.82rem;
}

.proof-strip span {
  color: #777382;
  font-size: 0.67rem;
}

.flow-section {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  background: linear-gradient(to bottom, rgba(19, 17, 26, 0.36), transparent);
}

.section-heading {
  display: grid;
  max-width: 960px;
  align-items: end;
  gap: 28px 64px;
  margin-bottom: 55px;
  grid-template-columns: 1.2fr 0.8fr;
}

.section-heading .kicker {
  grid-column: 1 / -1;
}

.section-heading h2,
.difference-copy h2,
.audience-panel h2,
.beta-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.section-heading p,
.difference-copy > p,
.beta-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.flow-grid {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.flow-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 45%),
    rgba(15, 14, 20, 0.84);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.flow-card::after {
  position: absolute;
  right: -45px;
  bottom: -50px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(139, 92, 246, 0.11);
  border-radius: 50%;
  content: "";
}

.flow-card:hover {
  border-color: rgba(139, 92, 246, 0.36);
  background-color: rgba(20, 18, 29, 0.96);
  transform: translateY(-5px);
}

.flow-number {
  display: block;
  margin-bottom: 28px;
  color: #65616d;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.flow-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.08);
  color: var(--violet-soft);
  font-size: 1.1rem;
  font-weight: 800;
}

.flow-card h3,
.difference-item h3 {
  margin-bottom: 11px;
  font-size: 1.04rem;
  letter-spacing: -0.03em;
}

.flow-card p,
.difference-item p {
  margin-bottom: 0;
  color: #96929f;
  font-size: 0.83rem;
  line-height: 1.75;
}

.difference-section {
  overflow: hidden;
}

.difference-section::before {
  position: absolute;
  z-index: -1;
  top: 14%;
  left: -240px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.1);
  content: "";
  filter: blur(100px);
}

.difference-grid {
  display: grid;
  align-items: start;
  gap: 110px;
  grid-template-columns: 0.85fr 1.15fr;
}

.difference-copy {
  position: sticky;
  top: 135px;
}

.difference-copy h2 {
  margin: 21px 0 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  margin-top: 27px;
  border-bottom: 1px solid rgba(47, 255, 210, 0.36);
  color: var(--mint-soft);
  font-size: 0.87rem;
  font-weight: 800;
}

.difference-list {
  border-top: 1px solid var(--border);
}

.difference-item {
  display: grid;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 48px 1fr;
}

.difference-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--violet-soft);
  font-size: 1.05rem;
}

.difference-item p {
  max-width: 610px;
}

.audience-section {
  padding-top: 28px;
}

.audience-panel {
  display: grid;
  align-items: center;
  gap: 42px;
  padding: 50px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 93% 12%, rgba(139, 92, 246, 0.18), transparent 17rem),
    linear-gradient(135deg, rgba(20, 17, 30, 0.96), rgba(11, 11, 15, 0.94));
  box-shadow: var(--shadow);
  grid-template-columns: 1.25fr 0.75fr;
}

.audience-panel h2 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.audience-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.audience-chips span {
  padding: 9px 13px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #c8c4d0;
  font-size: 0.73rem;
  font-weight: 750;
}

.beta-section {
  padding-top: 80px;
  background: linear-gradient(to bottom, transparent, rgba(109, 40, 217, 0.05));
}

.beta-grid {
  display: grid;
  align-items: start;
  gap: 100px;
  grid-template-columns: 0.88fr 1.12fr;
}

.beta-copy {
  padding-top: 34px;
}

.beta-copy h2 {
  margin: 20px 0 25px;
}

.beta-truths {
  display: grid;
  padding: 0;
  margin: 34px 0 0;
  gap: 13px;
  color: #c1bdc9;
  font-size: 0.86rem;
  list-style: none;
}

.beta-truths li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.beta-truths span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(47, 255, 210, 0.18);
  border-radius: 50%;
  background: rgba(47, 255, 210, 0.06);
  color: var(--mint);
  font-size: 0.65rem;
  font-weight: 900;
}

.beta-truths li:last-child span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #8d8995;
}

.beta-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 34%),
    rgba(17, 15, 23, 0.94);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 22px;
  margin-bottom: 23px;
  border-bottom: 1px solid var(--border);
}

.form-heading strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.form-heading span {
  color: #797581;
  font-size: 0.7rem;
}

.contact-lead {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-steps {
  display: grid;
  padding: 0;
  margin: 0 0 26px;
  gap: 12px;
  list-style: none;
}

.contact-steps li {
  display: grid;
  align-items: start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  grid-template-columns: 32px 1fr;
}

.contact-steps li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(139, 92, 246, 0.34);
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.09);
  color: var(--violet-soft);
  font-size: 0.73rem;
  font-weight: 900;
}

.contact-steps strong,
.contact-steps small {
  display: block;
}

.contact-steps strong {
  margin-bottom: 2px;
  font-size: 0.86rem;
}

.contact-steps small {
  color: #8f8b97;
  font-size: 0.71rem;
  line-height: 1.55;
}

.contact-button {
  width: 100%;
}

.contact-disclosure {
  margin: 12px 0 0;
  color: #777382;
  font-size: 0.68rem;
  text-align: center;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
  color: #918c9c;
  font-size: 0.7rem;
}

.legal-links a,
.footer-meta a {
  text-decoration: underline;
  text-decoration-color: rgba(196, 181, 253, 0.34);
  text-underline-offset: 3px;
}

.legal-links a:hover,
.footer-meta a:hover {
  color: var(--mint-soft);
}

.legal-main {
  min-height: 100vh;
  padding: 150px 0 100px;
  background:
    radial-gradient(circle at 82% 8%, rgba(109, 40, 217, 0.13), transparent 25rem),
    linear-gradient(to bottom, rgba(18, 16, 25, 0.52), transparent 30rem);
}

.legal-shell {
  width: min(calc(100% - 40px), 840px);
  margin-inline: auto;
}

.legal-back {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--mint-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.legal-main h1 {
  max-width: 820px;
  margin: 14px 0 20px;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.legal-updated,
.legal-intro {
  color: var(--muted);
}

.legal-updated {
  margin-bottom: 40px;
  font-size: 0.78rem;
}

.legal-intro {
  padding: 22px;
  margin-bottom: 44px;
  border: 1px solid rgba(139, 92, 246, 0.24);
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.06);
  line-height: 1.75;
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid var(--border);
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.legal-section p,
.legal-section li {
  color: #a8a4b1;
  line-height: 1.78;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  padding-left: 20px;
  margin: 0;
}

.legal-section a {
  color: var(--mint-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  background: #070709;
}

.footer-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.brand-footer {
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
  color: #74717c;
  font-size: 0.76rem;
}

.footer-meta {
  display: grid;
  gap: 4px;
  color: #68646f;
  font-size: 0.65rem;
  text-align: right;
}

.noscript-banner {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 16px;
  border: 1px solid #ffb454;
  border-radius: 10px;
  background: #2c1c08;
  color: #ffe7c3;
  font-size: 0.8rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-delay,
.reveal-delay-one {
  transition-delay: 90ms;
}

.reveal-delay-two {
  transition-delay: 160ms;
}

.reveal-delay-three {
  transition-delay: 230ms;
}

@media (max-width: 1080px) {
  .hero-grid {
    gap: 44px;
    grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  }

  h1 {
    font-size: clamp(3rem, 6vw, 4.8rem);
  }

  .studio-window {
    transform: none;
  }

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

  .flow-card {
    min-height: 250px;
  }

  .difference-grid,
  .beta-grid {
    gap: 65px;
  }
}

@media (max-width: 880px) {
  .section {
    padding: 88px 0;
  }

  .menu-button {
    position: relative;
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    background: rgba(13, 12, 18, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 2px;
  }

  .site-nav > a:not(.button) {
    padding: 11px 10px;
  }

  .site-nav .button {
    margin-top: 7px;
  }

  .hero {
    padding-top: 135px;
  }

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

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

  .studio-stage {
    width: min(100%, 650px);
    margin-inline: auto;
  }

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

  .section-heading,
  .difference-grid,
  .audience-panel,
  .beta-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
  }

  .difference-copy {
    position: static;
  }

  .audience-chips {
    justify-content: flex-start;
  }

  .beta-copy {
    max-width: 680px;
    padding-top: 0;
  }

  .beta-card {
    max-width: 680px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 64px;
  }

  .eyebrow,
  .kicker {
    font-size: 0.63rem;
  }

  h1 {
    margin-top: 20px;
    font-size: clamp(2.75rem, 15vw, 4.2rem);
    letter-spacing: -0.07em;
  }

  .hero-lead {
    font-size: 0.96rem;
  }

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

  .button-text {
    align-self: center;
  }

  .trust-list {
    display: grid;
  }

  .studio-stage {
    margin-top: 10px;
  }

  .studio-window {
    border-radius: 17px;
  }

  .studio-titlebar {
    grid-template-columns: 1fr auto;
  }

  .window-state {
    display: none;
  }

  .studio-body {
    min-height: 344px;
    grid-template-columns: 32px 1fr;
  }

  .studio-sidebar {
    gap: 9px;
  }

  .studio-main {
    padding: 13px 10px 10px;
  }

  .studio-heading strong {
    max-width: 175px;
  }

  .editor-grid {
    min-height: 260px;
    gap: 8px;
    grid-template-columns: minmax(88px, 0.67fr) minmax(142px, 1.33fr);
  }

  .clip-card {
    gap: 5px;
    padding: 5px;
    grid-template-columns: 32px 1fr;
  }

  .clip-thumb {
    height: 34px;
  }

  .clip-card strong {
    font-size: 0.45rem;
  }

  .clip-card small {
    font-size: 0.35rem;
  }

  .preview-panel {
    padding: 7px;
  }

  .video-frame {
    width: 108px;
    height: 192px;
  }

  .timeline {
    height: 22px;
  }

  .studio-footer > span:nth-child(2) {
    display: none;
  }

  .studio-footer button {
    font-size: 0.39rem;
  }

  .proof-strip {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .proof-strip > div {
    padding: 15px 18px;
  }

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

  .section-heading h2,
  .difference-copy h2,
  .beta-copy h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

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

  .flow-card {
    min-height: auto;
    padding: 24px;
  }

  .flow-number,
  .flow-icon {
    margin-bottom: 20px;
  }

  .difference-grid,
  .beta-grid {
    gap: 48px;
  }

  .difference-item {
    gap: 14px;
    grid-template-columns: 42px 1fr;
  }

  .difference-symbol {
    width: 38px;
    height: 38px;
  }

  .audience-panel {
    gap: 32px;
    padding: 30px 24px;
  }

  .audience-panel h2 {
    font-size: 2.35rem;
  }

  .audience-chips span {
    font-size: 0.66rem;
  }

  .beta-card {
    padding: 24px 18px;
  }

  .legal-main {
    padding: 118px 0 74px;
  }

  .legal-shell {
    width: min(calc(100% - 28px), 840px);
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .video-frame {
    width: 94px;
    height: 167px;
  }

  .editor-grid {
    grid-template-columns: minmax(78px, 0.65fr) minmax(116px, 1.35fr);
  }

  .ready-badge {
    display: none;
  }
}

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

  *,
  *::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;
  }
}
