:root {
  --v2-bg: #060606;
  --v2-bg-soft: #0c0c0c;
  --v2-ink: #f4f0e7;
  --v2-muted: rgba(244, 240, 231, 0.7);
  --v2-lime: #c8ff3d;
  --v2-line: rgba(244, 240, 231, 0.18);
  --v2-shadow: 0 28px 100px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
html.intro-running,
body.intro-running {
  height: 100%;
  overflow: hidden;
}
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--v2-ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(200, 255, 61, 0.1), transparent 24rem),
    radial-gradient(circle at 88% 82%, rgba(110, 231, 249, 0.08), transparent 28rem),
    var(--v2-bg);
}

.v2-main {
  width: min(1320px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 20px 0 120px;
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

body.v2-loading .v2-main {
  opacity: 0;
  transform: scale(0.985) translateY(10px);
}

body.v2-loading .v2-hero-object {
  opacity: 0;
  transform:
    translate3d(16vw, -6vh, 20px)
    rotateX(7deg)
    rotateY(-8deg)
    scale(0.82);
}

body.v2-ready .v2-hero-object {
  opacity: 1;
}

.v2-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: block;
  background:
    radial-gradient(circle at 52% 44%, rgba(200, 255, 61, 0.2), transparent 32%),
    radial-gradient(circle at 12% 12%, rgba(110, 231, 249, 0.06), transparent 32%),
    #010101;
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms ease, visibility 420ms ease;
  overflow: hidden;
  pointer-events: auto;
}

body.v2-ready .v2-intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(200, 255, 61, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(200, 255, 61, 0.07) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  opacity: calc(0.12 + var(--intro-assemble, 0) * 0.42);
  transform: translateY(calc((1 - var(--intro-settle, 0)) * 4px));
}

.intro-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 44%, rgba(2, 2, 2, 0.86) 100%);
}

.intro-stage {
  position: relative;
  width: min(1500px, 100vw);
  height: 100svh;
  margin: 0 auto;
  perspective: 1900px;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 56px);
}

.intro-loader-text {
  position: absolute;
  top: clamp(28px, 5vh, 56px);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(244, 240, 231, 0.9);
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: calc(0.28 + var(--intro-assemble, 0) * 0.72);
  text-shadow: 0 0 28px rgba(200, 255, 61, 0.25);
}

.intro-website-object {
  position: relative;
  width: clamp(760px, 56vw, 1080px);
  max-width: 92vw;
  min-width: 0;
  aspect-ratio: 16 / 10;
  transform-style: preserve-3d;
  transform:
    translate3d(
      calc(var(--intro-settle, 0) * 18vw),
      calc((1 - var(--intro-assemble, 0)) * 120px - var(--intro-settle, 0) * 8vh),
      calc(30px + var(--intro-tilt, 0) * 20px - var(--intro-settle, 0) * 40px)
    )
    rotateX(calc(20deg - var(--intro-tilt, 0) * 14deg))
    rotateY(calc(-24deg + var(--intro-tilt, 0) * 16deg))
    scale(calc(0.86 + var(--intro-assemble, 0) * 0.14 - var(--intro-settle, 0) * 0.16));
  opacity: calc(0.02 + var(--intro-assemble, 0) * 0.98);
  filter: saturate(calc(1 + var(--intro-tilt, 0) * 0.3)) contrast(1.12);
}

.intro-browser-frame,
.intro-panel {
  position: absolute;
  border: 1px solid rgba(244, 240, 231, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(244, 240, 231, 0.25), rgba(244, 240, 231, 0.08)),
    rgba(7, 7, 7, 0.86);
  box-shadow:
    0 42px 132px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(200, 255, 61, 0.35) inset;
}

.intro-browser-frame {
  inset: 5% 10%;
  overflow: hidden;
  transform:
    translate3d(0, 0, 60px)
    scale(calc(0.95 + var(--intro-assemble, 0) * 0.05));
}

.intro-browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(244, 240, 231, 0.16);
  background: rgba(4, 4, 4, 0.64);
}

.intro-browser-top i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.intro-browser-top i:nth-child(1) { background: #d96a4f; }
.intro-browser-top i:nth-child(2) { background: #f4f0e7; opacity: 0.8; }
.intro-browser-top i:nth-child(3) { background: #c8ff3d; }

.intro-browser-top span {
  margin-left: auto;
  width: 24%;
  height: 8px;
  border-radius: 999px;
  background: rgba(244, 240, 231, 0.22);
}

.intro-browser-body {
  padding: 18px;
}

.intro-browser-body b,
.intro-browser-body p {
  display: block;
  margin: 0;
  border-radius: 12px;
}

.intro-browser-body b:nth-of-type(1) {
  width: 52%;
  height: 16px;
  background: rgba(200, 255, 61, 0.92);
}

.intro-browser-body b:nth-of-type(2) {
  margin-top: 12px;
  width: 68%;
  height: 12px;
  background: rgba(244, 240, 231, 0.3);
}

.intro-browser-body p:nth-of-type(1) {
  margin-top: 18px;
  height: 34%;
  background: rgba(244, 240, 231, 0.12);
}

.intro-browser-body p:nth-of-type(2) {
  margin-top: 12px;
  height: 22%;
  background: rgba(244, 240, 231, 0.08);
}

.intro-panel--left {
  width: 36%;
  height: 34%;
  left: -7%;
  top: 18%;
  transform:
    translate3d(
      calc((1 - var(--intro-assemble, 0)) * -120px),
      calc(16px - var(--intro-assemble, 0) * 8px),
      -50px
    )
    rotateY(18deg);
  opacity: calc(var(--intro-assemble, 0) * 0.96);
}

.intro-panel--right {
  width: 41%;
  height: 36%;
  right: -8%;
  top: 28%;
  transform:
    translate3d(
      calc((1 - var(--intro-assemble, 0)) * 140px),
      calc(26px - var(--intro-assemble, 0) * 10px),
      -32px
    )
    rotateY(-17deg);
  opacity: calc(var(--intro-assemble, 0) * 0.95);
}

.intro-panel--foreground {
  width: 42%;
  height: 25%;
  left: 30%;
  bottom: -8%;
  background:
    linear-gradient(145deg, rgba(200, 255, 61, 0.24), rgba(244, 240, 231, 0.08)),
    rgba(10, 10, 10, 0.86);
  transform:
    translate3d(
      0,
      calc((1 - var(--intro-assemble, 0)) * 90px),
      calc(var(--intro-assemble, 0) * 120px + var(--intro-tilt, 0) * 40px)
    )
    rotateX(-9deg);
  opacity: calc(var(--intro-assemble, 0) * 0.98);
}

.intro-edge {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 61, 0.95), transparent);
  box-shadow: 0 0 34px rgba(200, 255, 61, 0.68);
  opacity: calc(var(--intro-assemble, 0) * 0.92);
}

.intro-edge--x {
  left: 9%;
  top: 10%;
  width: 82%;
  height: 2px;
  transform: scaleX(var(--intro-assemble, 0));
  transform-origin: center;
}

.intro-edge--y {
  right: 8%;
  top: 13%;
  width: 2px;
  height: 72%;
  transform: scaleY(var(--intro-assemble, 0));
  transform-origin: top;
}

.v2-hero {
  min-height: 108svh;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(520px, 1.38fr);
  gap: clamp(26px, 4vw, 68px);
  align-items: center;
}

.v2-hero__copy {
  position: relative;
  z-index: 3;
  padding: clamp(14px, 2vw, 20px);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.74) 64%, rgba(3, 3, 3, 0.14)),
    radial-gradient(circle at 18% 20%, rgba(200, 255, 61, 0.18), transparent 34%);
}

.v2-hero__copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 6.8vw, 6.3rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.v2-hero__impact {
  margin: 0 0 12px;
  color: var(--v2-lime);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 700;
}

.v2-hero__lede {
  margin: 0 0 20px;
  max-width: 42ch;
  color: var(--v2-muted);
  font-size: clamp(0.95rem, 1.6vw, 1.22rem);
}

.v2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(244, 240, 231, 0.2);
  color: var(--v2-ink);
  text-decoration: none;
  font-weight: 800;
}

.v2-btn--primary {
  border-color: transparent;
  background: var(--v2-lime);
  color: #050505;
}

.v2-btn--ghost {
  background: rgba(244, 240, 231, 0.06);
}

.v2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v2-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(244, 240, 231, 0.16);
  border-radius: 999px;
  background: rgba(244, 240, 231, 0.06);
  font-size: 0.74rem;
  font-weight: 800;
}

.v2-hero__stage {
  --hero-rotate-x: -7deg;
  --hero-rotate-y: 10deg;
  --hero-move-x: 0px;
  --hero-move-y: 0px;
  --hero-pointer-x: 0;
  --hero-pointer-y: 0;
  --hero-depth: 0;
  --hero-scroll-progress: 0;
  position: relative;
  min-height: min(880px, 88vh);
  border-radius: 24px;
  border: 1px solid rgba(244, 240, 231, 0.2);
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow:
    0 68px 170px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(200, 255, 61, 0.22) inset;
  transform:
    translateY(calc(var(--hero-scroll-progress) * -74px))
    rotateX(calc(var(--hero-rotate-x) + var(--hero-scroll-progress) * -9deg))
    rotateY(calc(var(--hero-rotate-y) - var(--hero-scroll-progress) * 14deg));
}

.v2-hero__backplate,
.v2-hero__backplate img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.v2-hero__backplate img {
  object-fit: cover;
  object-position: 68% 50%;
  filter: saturate(1.06) contrast(1.04) brightness(0.72);
}

.v2-hero__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(200, 255, 61, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(200, 255, 61, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 76% 34%, rgba(200, 255, 61, 0.22), transparent 28rem),
    linear-gradient(90deg, rgba(3, 3, 3, 0.84), rgba(3, 3, 3, 0.24) 46%, rgba(3, 3, 3, 0.54));
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.v2-hero-object {
  position: absolute;
  inset: 2% -2% 3% 8%;
  transform-style: preserve-3d;
  pointer-events: none;
  opacity: 1;
  transition: opacity 520ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transform:
    translate3d(var(--hero-move-x), var(--hero-move-y), calc(70px + var(--hero-scroll-progress) * 180px))
    rotateX(calc(-12deg + var(--hero-scroll-progress) * 20deg))
    rotateY(calc(12deg - var(--hero-scroll-progress) * 26deg));
}

.v2-panel {
  position: absolute;
  border: 1px solid rgba(244, 240, 231, 0.34);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(244, 240, 231, 0.3), rgba(244, 240, 231, 0.1));
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(200, 255, 61, 0.3) inset;
  backdrop-filter: blur(8px);
}

.v2-panel--main {
  inset: 4% 3%;
  transform:
    translateZ(calc(116px + var(--hero-scroll-progress) * 110px))
    translateX(calc(var(--hero-pointer-x) * 12px))
    translateY(calc(var(--hero-pointer-y) * -9px));
  overflow: hidden;
}

.v2-panel--main::before {
  content: "";
  position: absolute;
  inset: 34px 14px 14px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(244, 240, 231, 0.16) 0%, rgba(244, 240, 231, 0.05) 28%, rgba(244, 240, 231, 0.02) 100%),
    linear-gradient(90deg, rgba(200, 255, 61, 0.16) 0%, transparent 44%),
    linear-gradient(90deg, rgba(244, 240, 231, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 240, 231, 0.08) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px, 24px 24px;
  opacity: 0.68;
  pointer-events: none;
}

.v2-panel--main::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 24px;
  width: clamp(130px, 20%, 190px);
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(200, 255, 61, 0.96), rgba(244, 240, 231, 0.88));
  box-shadow: 0 0 24px rgba(200, 255, 61, 0.45);
  pointer-events: none;
}

.v2-panel--main header {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(244, 240, 231, 0.14);
  background: rgba(5, 5, 5, 0.44);
}

.v2-panel--main header i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(244, 240, 231, 0.62);
}

.v2-panel--main header i:nth-child(1) { background: #d96a4f; }
.v2-panel--main header i:nth-child(2) { background: #f4f0e7; }
.v2-panel--main header i:nth-child(3) { background: #c8ff3d; }

.v2-panel--main header span {
  margin-left: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 240, 231, 0.8);
}

.v2-panel__hero {
  display: grid;
  gap: 10px;
  padding: 14px 14px 0;
}

.v2-panel__hero b {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: rgba(244, 240, 231, 0.2);
}

.v2-panel__hero b:nth-child(1) { width: 52%; background: rgba(200, 255, 61, 0.88); }
.v2-panel__hero b:nth-child(2) { width: 72%; }
.v2-panel__hero b:nth-child(3) { width: 40%; }

.v2-panel__body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
  padding: 14px;
}

.v2-panel__body p {
  margin: 0;
  height: 108px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(244, 240, 231, 0.14), rgba(244, 240, 231, 0.06)),
    rgba(7, 7, 7, 0.46);
}

.v2-panel__rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 14px 14px;
}

.v2-panel__rail p {
  margin: 0;
  height: 74px;
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(244, 240, 231, 0.12), rgba(244, 240, 231, 0.04)),
    rgba(7, 7, 7, 0.52);
}

.v2-panel--left {
  inset: 18% auto 28% -10%;
  width: 36%;
  transform:
    translateZ(calc(62px + var(--hero-scroll-progress) * 52px))
    rotateY(calc(15deg + var(--hero-pointer-x) * 8deg))
    translateX(calc(var(--hero-scroll-progress) * -110px + var(--hero-pointer-x) * -34px))
    translateY(calc(var(--hero-pointer-y) * 16px));
  overflow: hidden;
}

.v2-panel--left::before {
  content: "";
  position: absolute;
  inset: 9% 16%;
  border-radius: 20px;
  border: 1px solid rgba(244, 240, 231, 0.32);
  background:
    linear-gradient(180deg, rgba(244, 240, 231, 0.18), rgba(244, 240, 231, 0.04)),
    rgba(5, 5, 5, 0.5);
  box-shadow: 0 0 0 1px rgba(200, 255, 61, 0.2) inset;
}

.v2-panel--left::after {
  content: "";
  position: absolute;
  left: 26%;
  right: 26%;
  bottom: 14%;
  height: 14px;
  border-radius: 999px;
  background: rgba(200, 255, 61, 0.86);
  box-shadow: 0 0 16px rgba(200, 255, 61, 0.42);
}

.v2-panel--right {
  inset: 12% -11% 34% auto;
  width: 38%;
  transform:
    translateZ(calc(52px + var(--hero-scroll-progress) * 48px))
    rotateY(calc(-15deg + var(--hero-pointer-x) * 7deg))
    translateX(calc(var(--hero-scroll-progress) * 124px + var(--hero-pointer-x) * 36px))
    translateY(calc(var(--hero-pointer-y) * -14px));
  overflow: hidden;
}

.v2-panel--right::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(244, 240, 231, 0.14), rgba(244, 240, 231, 0.04)),
    linear-gradient(90deg, rgba(244, 240, 231, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 240, 231, 0.1) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
}

.v2-panel--right::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 40%;
  top: 18px;
  height: 10px;
  border-radius: 999px;
  background: rgba(200, 255, 61, 0.84);
}

.v2-panel--rear {
  inset: 56% 22% -14% 18%;
  transform:
    rotateX(calc(18deg + var(--hero-scroll-progress) * 8deg))
    translateY(calc(var(--hero-scroll-progress) * -24px));
  background:
    linear-gradient(145deg, rgba(200, 255, 61, 0.2), rgba(244, 240, 231, 0.04)),
    rgba(5, 5, 5, 0.6);
  overflow: hidden;
}

.v2-panel--rear::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(200, 255, 61, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(200, 255, 61, 0.18) 1px, transparent 1px);
  background-size: 18px 18px, 18px 18px;
  opacity: 0.58;
}

.v2-orbit {
  position: absolute;
  border: 1px solid rgba(200, 255, 61, 0.42);
  border-radius: 999px;
}

.v2-orbit--one {
  inset: 4% 2%;
  transform: rotateX(66deg) rotateZ(calc(8deg + var(--hero-scroll-progress) * 16deg));
}

.v2-orbit--two {
  inset: 16% 10%;
  border-color: rgba(110, 231, 249, 0.3);
  transform: rotateX(72deg) rotateZ(calc(-12deg - var(--hero-scroll-progress) * 14deg));
}

.v2-story {
  margin-top: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
  gap: clamp(24px, 4vw, 68px);
}

.v2-story__left {
  position: sticky;
  top: clamp(80px, 10vh, 120px);
  align-self: start;
  max-height: calc(100svh - clamp(110px, 12vh, 150px));
  display: grid;
  grid-template-rows: auto auto auto minmax(280px, 1fr) auto;
  gap: clamp(10px, 1.4vh, 18px);
  align-content: start;
}

.v2-story__eyebrow {
  margin: 0;
  color: var(--v2-lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v2-story__left h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  word-break: normal;
}

.v2-story__lede {
  margin: 0;
  max-width: 45ch;
  color: var(--v2-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
}

.v2-story-preview {
  position: relative;
  height: clamp(320px, 42svh, 480px);
  min-height: 0;
  border: 1px solid var(--v2-line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 54% 32%, rgba(200, 255, 61, 0.18), transparent 35%),
    linear-gradient(145deg, rgba(244, 240, 231, 0.08), rgba(244, 240, 231, 0.02)),
    #090909;
  box-shadow: var(--v2-shadow);
  overflow: hidden;
}

.v2-story-preview__shell {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(244, 240, 231, 0.2);
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.66);
}

.v2-story-preview__shell header {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(244, 240, 231, 0.12);
}

.v2-story-preview__shell header i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(244, 240, 231, 0.62);
}

.v2-story-preview__hero {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 40px;
  height: 164px;
  border-radius: 10px;
  background: rgba(244, 240, 231, 0.1);
  transition: all 220ms ease;
}

.v2-story-preview__grid {
  position: absolute;
  left: 12px;
  right: 140px;
  top: 214px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.v2-story-preview__grid b {
  display: block;
  height: 78px;
  border-radius: 10px;
  background: rgba(244, 240, 231, 0.09);
  transition: all 220ms ease;
}

.v2-story-preview__mobile {
  position: absolute;
  right: 12px;
  top: 214px;
  width: 138px;
  height: 196px;
  border: 1px solid rgba(244, 240, 231, 0.16);
  border-radius: 16px;
  background: rgba(244, 240, 231, 0.08);
  opacity: 0.28;
  transition: all 220ms ease;
}

.v2-story-preview__search,
.v2-story-preview__cta {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 12px;
  border-radius: 999px;
  transition: all 220ms ease;
}

.v2-story-preview__search {
  bottom: 92px;
  width: 42%;
  background: rgba(244, 240, 231, 0.24);
}

.v2-story-preview__cta {
  bottom: 58px;
  width: 34%;
  background: rgba(200, 255, 61, 0.5);
}

.v2-story-preview__trust,
.v2-story-preview__motion {
  position: absolute;
  right: 12px;
  border-radius: 10px;
  transition: all 220ms ease;
}

.v2-story-preview__trust {
  top: 40px;
  width: 142px;
  height: 78px;
  background: rgba(244, 240, 231, 0.08);
  opacity: 0.46;
}

.v2-story-preview__motion {
  top: 130px;
  width: 142px;
  height: 62px;
  background: rgba(200, 255, 61, 0.14);
  opacity: 0.2;
}

.v2-story-progress {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(244, 240, 231, 0.14);
  border-radius: 12px;
  background: rgba(5, 5, 5, 0.62);
}

.v2-story-progress span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(244, 240, 231, 0.84);
}

.v2-story-progress i {
  --v2-story-progress: 0.14;
  height: 5px;
  border-radius: 999px;
  display: block;
  width: calc(var(--v2-story-progress) * 100%);
  background: linear-gradient(90deg, var(--v2-lime), #f4f0e7);
}

.v2-story-state h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 2.7rem);
  line-height: 0.95;
}

.v2-story-state p {
  margin: 0;
  max-width: 42ch;
  color: var(--v2-muted);
}

.v2-story__steps {
  display: grid;
  gap: clamp(34px, 5vh, 54px);
  padding-top: clamp(12svh, 16svh, 20svh);
  padding-bottom: clamp(30svh, 36svh, 44svh);
}

.v2-step {
  min-height: clamp(300px, 48svh, 460px);
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 200ms ease;
}

.v2-step[data-v2-active] {
  opacity: 1;
}

.v2-step__card {
  width: min(440px, 100%);
  padding: 22px 20px;
  border: 1px solid rgba(244, 240, 231, 0.16);
  border-radius: 16px;
  background: rgba(244, 240, 231, 0.04);
  transform: translateY(16px);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.v2-step[data-v2-active] .v2-step__card {
  transform: translateY(0);
  border-color: rgba(200, 255, 61, 0.42);
  background: rgba(200, 255, 61, 0.08);
}

.v2-step__card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--v2-lime);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.v2-step__card h4 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 0.94;
}

.v2-step__card p {
  margin: 0;
  color: var(--v2-muted);
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
}

.v2-story-preview[data-v2-story-state="bad-site"] .v2-story-preview__hero {
  filter: blur(2.3px) grayscale(0.92);
  opacity: 0.32;
  transform: scale(0.97);
}

.v2-story-preview[data-v2-story-state="bad-site"] .v2-story-preview__grid b {
  background: rgba(244, 240, 231, 0.05);
}

.v2-story-preview[data-v2-story-state="bad-site"] .v2-story-preview__cta {
  width: 24%;
  opacity: 0.4;
}

.v2-story-preview[data-v2-story-state="layout-rebuilt"] .v2-story-preview__hero {
  filter: none;
  opacity: 0.96;
  background: linear-gradient(90deg, rgba(244, 240, 231, 0.34), rgba(244, 240, 231, 0.08));
  transform: scale(1);
}

.v2-story-preview[data-v2-story-state="layout-rebuilt"] .v2-story-preview__grid b {
  background: rgba(244, 240, 231, 0.14);
}

.v2-story-preview[data-v2-story-state="motion-added"] .v2-story-preview__hero {
  box-shadow: 0 0 0 1px rgba(200, 255, 61, 0.44) inset, 0 24px 42px rgba(0, 0, 0, 0.52);
  transform: translateY(-8px);
}

.v2-story-preview[data-v2-story-state="motion-added"] .v2-story-preview__motion {
  opacity: 1;
  background: rgba(200, 255, 61, 0.3);
  box-shadow: 0 0 28px rgba(200, 255, 61, 0.38);
}

.v2-story-preview[data-v2-story-state="found-faster"] .v2-story-preview__search {
  width: 72%;
  background: rgba(110, 231, 249, 0.82);
  box-shadow: 0 0 0 1px rgba(110, 231, 249, 0.5), 0 0 24px rgba(110, 231, 249, 0.35);
}

.v2-story-preview[data-v2-story-state="found-faster"] .v2-story-preview__grid b:nth-child(1) {
  background: linear-gradient(90deg, rgba(110, 231, 249, 0.34), rgba(244, 240, 231, 0.1));
}

.v2-story-preview[data-v2-story-state="contact-clearer"] .v2-story-preview__cta {
  width: 74%;
  background: rgba(200, 255, 61, 0.88);
  box-shadow: 0 0 26px rgba(200, 255, 61, 0.42);
}

.v2-story-preview[data-v2-story-state="contact-clearer"] .v2-story-preview__trust {
  opacity: 0.96;
  background: rgba(244, 240, 231, 0.26);
  border: 1px solid rgba(244, 240, 231, 0.3);
}

.v2-story-preview[data-v2-story-state="every-screen"] .v2-story-preview__mobile {
  opacity: 0.96;
  border-color: rgba(200, 255, 61, 0.34);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
  transform: translateY(-6px) scale(1.04);
}

.v2-story-preview[data-v2-story-state="every-screen"] .v2-story-preview__hero {
  right: 164px;
}

.v2-story-preview[data-v2-story-state="ready-to-improve"] .v2-story-preview__hero {
  background: linear-gradient(90deg, rgba(200, 255, 61, 0.76), rgba(244, 240, 231, 0.22));
  box-shadow: 0 0 0 1px rgba(200, 255, 61, 0.44) inset, 0 20px 34px rgba(0, 0, 0, 0.46);
}

.v2-story-preview[data-v2-story-state="ready-to-improve"] .v2-story-preview__grid b {
  background: rgba(244, 240, 231, 0.16);
}

.v2-story-preview[data-v2-story-state="ready-to-improve"] .v2-story-preview__trust {
  opacity: 0.94;
  border: 1px solid rgba(200, 255, 61, 0.34);
}

.v2-story-preview[data-v2-story-state="ready-to-improve"] .v2-story-preview__mobile {
  opacity: 0.94;
}

.v2-lower {
  margin-top: clamp(70px, 10vh, 130px);
  display: grid;
  gap: clamp(16px, 2vh, 22px);
}

.v2-lower > p {
  margin: 0;
  color: var(--v2-lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v2-lower > h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.92;
}

.v2-lower > p.v2-lower__lede {
  color: var(--v2-muted);
  max-width: 64ch;
  font-size: clamp(0.95rem, 1.4vw, 1.14rem);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}

.v2-lower-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-lower-grid article {
  border: 1px solid rgba(244, 240, 231, 0.14);
  border-radius: 14px;
  padding: 16px;
  background: rgba(244, 240, 231, 0.04);
}

.v2-lower-grid article h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.v2-lower-grid article p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 0.94rem;
}

.v2-lower-console {
}

.v2-seo-proof {
  position: relative;
}

.v2-seo-console {
  display: grid;
  gap: clamp(12px, 1.8vw, 16px);
  grid-template-columns: minmax(160px, 0.9fr) minmax(360px, 1.4fr) minmax(200px, 0.9fr);
  align-items: start;
}

.v2-seo-console__nodes {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.v2-seo-console__nodes[data-seo-node-group="pages"] {
  justify-items: end;
}

.v2-seo-console__nodes[data-seo-node-group="system"] {
  justify-items: start;
}

.v2-seo-node {
  width: 100%;
  border: 1px solid rgba(244, 240, 231, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  min-height: 40px;
  color: rgba(244, 240, 231, 0.88);
  background: rgba(244, 240, 231, 0.04);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.v2-seo-node:hover {
  background: rgba(244, 240, 231, 0.08);
  border-color: rgba(200, 255, 61, 0.38);
}

.v2-seo-node[aria-selected="true"] {
  background: rgba(200, 255, 61, 0.18);
  border-color: rgba(200, 255, 61, 0.72);
  color: var(--v2-lime);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(200, 255, 61, 0.28), 0 10px 20px rgba(0, 0, 0, 0.34);
}

.v2-seo-node:focus-visible {
  outline: 2px solid rgba(200, 255, 61, 0.76);
  outline-offset: 2px;
}

.v2-seo-console__panel {
  border: 1px solid rgba(244, 240, 231, 0.16);
  border-radius: 18px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(244, 240, 231, 0.08), rgba(244, 240, 231, 0.02)),
    rgba(6, 6, 6, 0.86);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(200, 255, 61, 0.18) inset;
  display: grid;
  gap: 12px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.v2-seo-console__panel.is-updating {
  transform: translateY(-2px);
}

.v2-seo-console__panel-content h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 0.94;
}

.v2-seo-console__panel-kicker {
  margin: 0;
  color: var(--v2-lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v2-seo-console__panel-body {
  margin: 0;
  color: var(--v2-muted);
  max-width: 46ch;
}

.v2-seo-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v2-seo-signals span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(244, 240, 231, 0.22);
  border-radius: 999px;
  background: rgba(244, 240, 231, 0.06);
  color: rgba(244, 240, 231, 0.92);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.v2-seo-mockup {
  position: relative;
  min-height: clamp(260px, 38svh, 390px);
  border-radius: 12px;
  border: 1px solid rgba(244, 240, 231, 0.2);
  background:
    linear-gradient(145deg, rgba(244, 240, 231, 0.1), rgba(244, 240, 231, 0.02)),
    rgba(4, 4, 4, 0.7);
  overflow: hidden;
}

.v2-seo-mockup__backplate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.v2-seo-mockup__stage {
  position: relative;
  padding: 12px 10px 14px;
  min-height: 100%;
  border: 1px solid rgba(244, 240, 231, 0.1);
  margin: 6px;
  border-radius: 10px;
  background:
    radial-gradient(60% 72% at 18% 26%, rgba(200, 255, 61, 0.22), transparent 74%),
    rgba(6, 6, 6, 0.82);
}

.v2-seo-mockup__browser-top {
  display: block;
  height: 10px;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(4, 4, 4, 0.95), rgba(244, 240, 231, 0.26), rgba(4, 4, 4, 0.95));
  position: relative;
}

.v2-seo-mockup__block {
  position: absolute;
  border: 1px solid rgba(244, 240, 231, 0.22);
  border-radius: 8px;
  background: rgba(244, 240, 231, 0.06);
  color: rgba(244, 240, 231, 0.84);
  font-size: 0.67rem;
  font-weight: 800;
  display: grid;
  align-items: center;
  justify-items: center;
  letter-spacing: 0.02em;
  transition: opacity 200ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  opacity: 0.2;
}

.v2-seo-mockup__block--query { inset: 26px 56px 0 auto; width: 54%; height: 23px; }
.v2-seo-mockup__block--offer { inset: 56px 12px 0 12px; height: 70px; }
.v2-seo-mockup__block--services { inset: 56px 12px auto auto; width: 38%; height: 58px; }
.v2-seo-mockup__block--proof { right: 12px; bottom: 116px; width: 44%; height: 58px; }
.v2-seo-mockup__block--trust { left: 12px; bottom: 116px; width: 42%; height: 50px; }
.v2-seo-mockup__block--contact { left: 12px; bottom: 56px; width: 52%; height: 44px; }
.v2-seo-mockup__block--cta { right: 12px; bottom: 56px; width: 40%; height: 44px; }
.v2-seo-mockup__block--brief { right: 12px; bottom: 12px; left: 12px; height: 30px; }

.v2-seo-mockup__line {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(200, 255, 61, 0.2), rgba(244, 240, 231, 0.8), rgba(200, 255, 61, 0.2));
  opacity: 0.22;
  transition: opacity 220ms ease;
}

.v2-seo-mockup__line[data-seo-line="main"] {
  height: 2px;
  left: 22px;
  right: 22px;
  top: 150px;
}

.v2-seo-mockup__line[data-seo-line="secondary"] {
  width: 2px;
  top: 130px;
  bottom: 20px;
  left: 50%;
}

.v2-seo-console[data-seo-state="home"] .v2-seo-mockup__block--offer,
.v2-seo-console[data-seo-state="home"] .v2-seo-mockup__block--cta,
.v2-seo-console[data-seo-state="home"] .v2-seo-mockup__line {
  border-color: rgba(200, 255, 61, 0.55);
  background: rgba(200, 255, 61, 0.2);
  opacity: 1;
  box-shadow: 0 0 16px rgba(200, 255, 61, 0.25);
}

.v2-seo-console[data-seo-state="service"] .v2-seo-mockup__block--services,
.v2-seo-console[data-seo-state="service"] .v2-seo-mockup__block--offer,
.v2-seo-console[data-seo-state="service"] .v2-seo-mockup__block--cta,
.v2-seo-console[data-seo-state="service"] .v2-seo-mockup__line[data-seo-line="main"] {
  opacity: 1;
  border-color: rgba(200, 255, 61, 0.55);
  background: rgba(200, 255, 61, 0.2);
}

.v2-seo-console[data-seo-state="industry"] .v2-seo-mockup__block--offer,
.v2-seo-console[data-seo-state="industry"] .v2-seo-mockup__block--query,
.v2-seo-console[data-seo-state="industry"] .v2-seo-mockup__block--trust,
.v2-seo-console[data-seo-state="industry"] .v2-seo-mockup__line[data-seo-line="secondary"] {
  opacity: 1;
  border-color: rgba(110, 231, 249, 0.7);
  background: rgba(110, 231, 249, 0.2);
}

.v2-seo-console[data-seo-state="proof"] .v2-seo-mockup__block--proof,
.v2-seo-console[data-seo-state="proof"] .v2-seo-mockup__block--trust,
.v2-seo-console[data-seo-state="proof"] .v2-seo-mockup__line {
  opacity: 1;
  border-color: rgba(244, 240, 231, 0.7);
  background: rgba(244, 240, 231, 0.22);
}

.v2-seo-console[data-seo-state="contact"] .v2-seo-mockup__block--contact,
.v2-seo-console[data-seo-state="contact"] .v2-seo-mockup__block--cta,
.v2-seo-console[data-seo-state="contact"] .v2-seo-mockup__line[data-seo-line="main"] {
  opacity: 1;
  border-color: rgba(200, 255, 61, 0.72);
  background: rgba(200, 255, 61, 0.2);
}

.v2-seo-console[data-seo-state="intent"] .v2-seo-mockup__block--query,
.v2-seo-console[data-seo-state="intent"] .v2-seo-mockup__block--offer,
.v2-seo-console[data-seo-state="intent"] .v2-seo-mockup__block--cta {
  opacity: 1;
  border-color: rgba(200, 255, 61, 0.64);
  background: rgba(200, 255, 61, 0.22);
}

.v2-seo-console[data-seo-state="trust"] .v2-seo-mockup__block--trust,
.v2-seo-console[data-seo-state="trust"] .v2-seo-mockup__block--proof,
.v2-seo-console[data-seo-state="trust"] .v2-seo-mockup__block--cta {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(244, 240, 231, 0.24);
}

.v2-seo-console[data-seo-state="cta"] .v2-seo-mockup__block--cta,
.v2-seo-console[data-seo-state="cta"] .v2-seo-mockup__block--contact,
.v2-seo-console[data-seo-state="cta"] .v2-seo-mockup__line[data-seo-line="main"] {
  opacity: 1;
  border-color: rgba(200, 255, 61, 0.82);
  background: rgba(200, 255, 61, 0.26);
}

.v2-seo-console[data-seo-state="brief"] .v2-seo-mockup__block--brief,
.v2-seo-console[data-seo-state="brief"] .v2-seo-mockup__block--contact,
.v2-seo-console[data-seo-state="brief"] .v2-seo-mockup__block--query {
  opacity: 1;
  border-color: rgba(200, 255, 61, 0.75);
  background: rgba(200, 255, 61, 0.22);
}

.v2-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.v2-motion-demos {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-motion-demo {
  border: 1px solid rgba(244, 240, 231, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(244, 240, 231, 0.08), rgba(244, 240, 231, 0.03)),
    rgba(6, 6, 6, 0.86);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.v2-motion-demo__num {
  color: var(--v2-lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v2-motion-demo h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.v2-motion-demo p {
  margin: 0;
  color: var(--v2-muted);
}

.v2-motion-demo__stage {
  border: 1px solid rgba(244, 240, 231, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(244, 240, 231, 0.06), rgba(244, 240, 231, 0.02)),
    rgba(4, 4, 4, 0.85);
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.v2-motion-demo__stage--pull {
  display: grid;
  place-items: center;
}

.v2-motion-pull-btn {
  border: none;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 800;
  color: #070707;
  background: linear-gradient(90deg, rgba(200, 255, 61, 0.96), rgba(244, 240, 231, 0.9));
  box-shadow: 0 0 20px rgba(200, 255, 61, 0.28);
  transform: translate3d(var(--motion-pull-x, 0px), var(--motion-pull-y, 0px), 0);
  transition: transform 120ms ease, box-shadow 180ms ease;
}

.v2-motion-demo__stage--reveal {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: 16px;
}

.v2-motion-reveal-copy {
  display: grid;
  gap: 8px;
}

.v2-motion-reveal-copy span {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 800;
  line-height: 0.96;
  color: rgba(244, 240, 231, 0.94);
  clip-path: inset(0 100% 0 0);
  opacity: 0.2;
  transition: clip-path 460ms cubic-bezier(0.22, 1, 0.36, 1), opacity 460ms ease;
}

.v2-motion-demo__stage--reveal.is-revealed .v2-motion-reveal-copy span {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.v2-motion-demo__stage--reveal.is-revealed .v2-motion-reveal-copy span:nth-child(2) {
  transition-delay: 120ms;
}

.v2-motion-replay {
  border: 1px solid rgba(244, 240, 231, 0.2);
  border-radius: 999px;
  min-height: 32px;
  padding: 0 10px;
  color: rgba(244, 240, 231, 0.9);
  background: rgba(244, 240, 231, 0.04);
  font-size: 0.72rem;
  font-weight: 800;
}

.v2-motion-demo__stage--mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.v2-motion-mask-cover {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(4, 4, 4, 0.96), rgba(4, 4, 4, 0.72)),
    linear-gradient(90deg, rgba(200, 255, 61, 0.28), transparent 46%);
  transform: translateX(0%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-motion-demo__stage--mask.is-revealed .v2-motion-mask-cover {
  transform: translateX(102%);
}

.v2-motion-demo__stage--depth {
  --depth-x: 0px;
  --depth-y: 0px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.v2-motion-depth-layer {
  position: absolute;
  border-radius: 12px;
  border: 1px solid rgba(244, 240, 231, 0.2);
  background: rgba(244, 240, 231, 0.06);
}

.v2-motion-depth-layer--back {
  inset: 18% 10%;
  transform: translate3d(calc(var(--depth-x) * 0.28), calc(var(--depth-y) * 0.24), 0);
}

.v2-motion-depth-layer--mid {
  inset: 24% 16%;
  background: rgba(244, 240, 231, 0.1);
  transform: translate3d(calc(var(--depth-x) * 0.52), calc(var(--depth-y) * 0.46), 18px);
}

.v2-motion-depth-layer--front {
  inset: 34% 24%;
  background:
    linear-gradient(145deg, rgba(200, 255, 61, 0.72), rgba(244, 240, 231, 0.22)),
    rgba(244, 240, 231, 0.1);
  box-shadow: 0 0 24px rgba(200, 255, 61, 0.25);
  transform: translate3d(calc(var(--depth-x) * 0.88), calc(var(--depth-y) * 0.8), 46px);
}

.v2-motion-demo__stage--cursor {
  --cursor-x: 50%;
  --cursor-y: 50%;
  --cursor-color: var(--v2-lime);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-content: center;
  padding: 14px;
}

.v2-motion-demo__stage--cursor > button,
.v2-motion-demo__stage--cursor > span {
  min-height: 44px;
  border: 1px solid rgba(244, 240, 231, 0.18);
  border-radius: 10px;
  background: rgba(244, 240, 231, 0.05);
  color: rgba(244, 240, 231, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.v2-motion-demo__stage--cursor > button {
  cursor: pointer;
}

.v2-motion-cursor-dot {
  position: absolute;
  left: var(--cursor-x);
  top: var(--cursor-y);
  transform: translate(-50%, -50%) scale(var(--cursor-scale, 1));
  min-width: 46px;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(244, 240, 231, 0.24);
  background: color-mix(in srgb, var(--cursor-color) 36%, rgba(4, 4, 4, 0.65));
  color: rgba(244, 240, 231, 0.94);
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease, background 180ms ease;
}

.v2-motion-demo__stage--cursor.is-active .v2-motion-cursor-dot {
  opacity: 1;
}

.v2-motion-demo__stage--scroll {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 8px;
  padding: 10px;
}

.v2-motion-scroll-panels {
  position: relative;
  border: 1px solid rgba(244, 240, 231, 0.14);
  border-radius: 10px;
  background: rgba(244, 240, 231, 0.03);
  overflow: hidden;
}

.v2-motion-scroll-panels section {
  position: absolute;
  inset: 0;
  padding: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.v2-motion-scroll-panels section[data-active] {
  opacity: 1;
  transform: translateY(0);
}

.v2-motion-scroll-panels section strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.v2-motion-scroll-panels section p {
  margin: 0;
  color: var(--v2-muted);
}

.v2-motion-scroll-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.v2-motion-scroll-controls button {
  border: 1px solid rgba(244, 240, 231, 0.2);
  border-radius: 999px;
  min-height: 30px;
  padding: 0 10px;
  color: rgba(244, 240, 231, 0.9);
  background: rgba(244, 240, 231, 0.05);
  font-size: 0.7rem;
  font-weight: 800;
}

.v2-motion-scroll-controls span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--v2-lime);
}

.v2-worlds {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.26fr);
  align-items: stretch;
  gap: clamp(14px, 2vw, 22px);
}

.v2-worlds-preview {
  position: relative;
  border: 1px solid rgba(244, 240, 231, 0.16);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(244, 240, 231, 0.08), rgba(244, 240, 231, 0.02)),
    rgba(6, 6, 6, 0.86);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(200, 255, 61, 0.18) inset;
  min-height: clamp(520px, 66svh, 680px);
}

.v2-worlds-preview__media {
  position: relative;
  min-height: clamp(390px, 50svh, 560px);
  background:
    radial-gradient(circle at 20% 22%, rgba(200, 255, 61, 0.22), transparent 40%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.2) 52%, rgba(5, 5, 5, 0.8));
}

.v2-worlds-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 260ms ease, transform 460ms ease;
  opacity: 1;
}

.v2-worlds-preview.is-switching .v2-worlds-preview__media img {
  opacity: 0.3;
  transform: scale(1.02);
}

.v2-worlds-preview__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.72), rgba(3, 3, 3, 0.08) 54%, rgba(3, 3, 3, 0.68)),
    linear-gradient(180deg, rgba(244, 240, 231, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 231, 0.08) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
}

.v2-worlds-preview[data-worlds-fallback="true"] .v2-worlds-preview__media img {
  opacity: 0;
}

.v2-worlds-preview__content {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px 16px 16px;
  border: 1px solid rgba(244, 240, 231, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.86), rgba(4, 4, 4, 0.58)),
    rgba(6, 6, 6, 0.74);
  backdrop-filter: blur(10px);
}

.v2-worlds-preview__content h3 {
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.v2-worlds-preview__content p {
  margin: 0;
  color: var(--v2-muted);
}

.v2-worlds-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v2-worlds-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(244, 240, 231, 0.2);
  border-radius: 999px;
  background: rgba(244, 240, 231, 0.06);
  color: rgba(244, 240, 231, 0.92);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.v2-worlds-rail {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
  align-self: start;
  padding: 12px;
  border: 1px solid rgba(244, 240, 231, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(244, 240, 231, 0.07), rgba(244, 240, 231, 0.02)),
    rgba(6, 6, 6, 0.72);
}

.v2-worlds-rail button {
  width: 100%;
  border: 1px solid rgba(244, 240, 231, 0.18);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(244, 240, 231, 0.04);
  color: rgba(244, 240, 231, 0.9);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.v2-worlds-rail button[aria-selected="true"] {
  background: rgba(200, 255, 61, 0.16);
  border-color: rgba(200, 255, 61, 0.62);
  color: var(--v2-lime);
  transform: translateY(-2px);
}

.v2-worlds-rail button:focus-visible {
  outline: 2px solid rgba(200, 255, 61, 0.76);
  outline-offset: 2px;
}

@media (max-width: 1180px) {
  .v2-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .v2-hero__stage {
    min-height: min(700px, 76vh);
  }

  .v2-hero-object {
    inset: 10% 5% 12% 10%;
  }

  .v2-story {
    grid-template-columns: 1fr;
  }

  .v2-story__left {
    position: relative;
    top: auto;
    max-height: none;
    display: block;
  }

  .v2-step {
    min-height: clamp(260px, 44svh, 420px);
  }

  .v2-worlds {
    grid-template-columns: 1fr;
  }

  .v2-worlds-preview {
    min-height: 0;
  }

  .v2-worlds-preview__media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .v2-worlds-rail {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .v2-worlds-rail button {
    width: auto;
    text-align: center;
  }

  .v2-motion-demos {
    grid-template-columns: 1fr;
  }

  .v2-seo-console {
    grid-template-columns: 1fr;
  }

  .v2-seo-console__nodes {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
  }

  .v2-seo-console__nodes[data-seo-node-group="pages"] {
    justify-items: start;
    order: 1;
  }

  .v2-seo-console__nodes[data-seo-node-group="system"] {
    order: 3;
  }

  .v2-seo-console__panel {
    order: 2;
    gap: 10px;
  }

  .v2-seo-node {
    flex: 0 0 auto;
    white-space: nowrap;
    width: auto;
    min-height: 34px;
  }

  .v2-seo-mockup {
    min-height: clamp(250px, 46svh, 340px);
  }
}

@media (max-width: 780px) {
  .v2-main {
    width: min(1320px, calc(100vw - 22px));
  }

  .intro-stage {
    width: 100vw;
    padding: 16px;
  }

  .intro-loader-text {
    top: 28px;
    letter-spacing: 0.16em;
  }

  .intro-website-object {
    width: min(92vw, 620px);
    min-width: 0;
    transform:
      translate3d(
        calc(var(--intro-settle, 0) * 5vw),
        calc((1 - var(--intro-assemble, 0)) * 80px - var(--intro-settle, 0) * 4vh),
        calc(10px + var(--intro-tilt, 0) * 16px - var(--intro-settle, 0) * 20px)
      )
      rotateX(calc(15deg - var(--intro-tilt, 0) * 10deg))
      rotateY(calc(-13deg + var(--intro-tilt, 0) * 8deg))
      scale(calc(0.88 + var(--intro-assemble, 0) * 0.12 - var(--intro-settle, 0) * 0.1));
  }

  .intro-panel--left,
  .intro-panel--right {
    display: none;
  }

  .intro-panel--foreground {
    width: 56%;
    left: 22%;
    bottom: -6%;
  }

  .intro-browser-frame {
    inset: 8% 6%;
  }

  .v2-hero__copy h1 {
    font-size: clamp(2.1rem, 12vw, 4rem);
  }

  .v2-tags span {
    flex: 1 1 calc(50% - 8px);
  }

  .v2-hero__stage {
    min-height: 500px;
    transform: none;
  }

  .v2-hero-object {
    inset: 10% 6% 14% 8%;
    transform: translate3d(0, 0, 20px) rotateX(-8deg) rotateY(8deg);
  }

  .v2-panel--left,
  .v2-panel--right {
    display: none;
  }

  .v2-story__left h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 0.96;
  }

  .v2-story-preview {
    min-height: 320px;
    height: clamp(320px, 54svh, 430px);
  }

  .v2-step {
    min-height: auto;
    padding: 20px;
  }

  .v2-lower-grid {
    grid-template-columns: 1fr;
  }

  .v2-worlds-rail {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .v2-worlds-rail button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .v2-seo-console {
    gap: 10px;
  }

  .v2-seo-console__panel {
    padding: 12px;
  }

  .v2-seo-console__panel-body {
    max-width: none;
    font-size: 0.93rem;
  }

  .v2-seo-signals span {
    min-height: 28px;
    font-size: 0.64rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-intro,
  .v2-step,
  .v2-panel,
  .v2-hero__stage,
  .v2-hero-object,
  .intro-website-object,
  .intro-panel,
  .intro-grid {
    transition: none !important;
    animation: none !important;
  }

  .intro-website-object {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) scale(1);
  }
}
