:root {
  --bg: #04060c;
  --text: #f5f7ff;
  --muted: #aab3cb;
  --muted-strong: #d0d7ea;
  --violet: #9062ff;
  --violet-2: #c58cff;
  --blue: #39a3ff;
  --cyan: #6cf1ff;
  --green: #74ffbe;
  --shadow: 0 26px 90px rgba(4, 10, 24, .46);
  --header-h: 88px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #05070d 0%, #080c16 35%, #05070d 100%);
  overflow-x: hidden;
  transition: background .9s ease;
}
body.menu-open,
body.modal-open,
body.cabinet-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--violet); color: white; }

body[data-theme="hero"] { background: linear-gradient(180deg, #05070d 0%, #090e18 35%, #06080f 100%); }
body[data-theme="violet"] { background: linear-gradient(180deg, #070914 0%, #120d22 46%, #090b13 100%); }
body[data-theme="cyan"] { background: linear-gradient(180deg, #050a12 0%, #081625 44%, #060810 100%); }
body[data-theme="blue"] { background: linear-gradient(180deg, #050913 0%, #0b1020 44%, #06090f 100%); }
body[data-theme="violet-deep"] { background: linear-gradient(180deg, #080912 0%, #160d22 44%, #06080d 100%); }
body[data-theme="cyan-bright"] { background: linear-gradient(180deg, #061018 0%, #081b28 42%, #06080e 100%); }
body[data-theme="final"] { background: linear-gradient(180deg, #070915 0%, #0d1020 42%, #05070d 100%); }

#flow-field,
.background-shift,
.background-grid,
.background-noise,
.cursor { pointer-events: none; }
#flow-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .44;
}
.background-shift {
  position: fixed;
  inset: auto;
  z-index: 0;
  filter: blur(90px);
  mix-blend-mode: screen;
  opacity: .35;
}
.background-shift--one {
  width: 36vw;
  height: 36vw;
  left: -8vw;
  top: 8vh;
  background: radial-gradient(circle, rgba(140,95,255,.52), transparent 64%);
  animation: floatGlow 16s ease-in-out infinite alternate;
}
.background-shift--two {
  width: 30vw;
  height: 30vw;
  right: -6vw;
  top: 42vh;
  background: radial-gradient(circle, rgba(59,164,255,.42), transparent 62%);
  animation: floatGlow 18s ease-in-out infinite alternate-reverse;
}
body[data-theme="violet"] .background-shift--one,
body[data-theme="violet-deep"] .background-shift--one,
body[data-theme="final"] .background-shift--one {
  background: radial-gradient(circle, rgba(180,98,255,.55), transparent 64%);
}
body[data-theme="cyan"] .background-shift--one,
body[data-theme="cyan-bright"] .background-shift--one,
body[data-theme="blue"] .background-shift--one {
  background: radial-gradient(circle, rgba(52,179,255,.5), transparent 64%);
}
body[data-theme="violet"] .background-shift--two,
body[data-theme="violet-deep"] .background-shift--two { background: radial-gradient(circle, rgba(255,117,214,.22), transparent 64%); }
body[data-theme="cyan"] .background-shift--two,
body[data-theme="cyan-bright"] .background-shift--two,
body[data-theme="blue"] .background-shift--two { background: radial-gradient(circle, rgba(84,255,231,.28), transparent 64%); }
@keyframes floatGlow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(3vw, -4vh, 0) scale(1.12); }
}
.background-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: .09;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.background-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  gap: 16px;
  align-content: center;
  background: rgba(4, 6, 11, .98);
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__word {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 7vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -.08em;
}
.loader__track {
  width: min(290px, 56vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.loader__track span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  animation: loaderLine .9s var(--ease) forwards;
}
@keyframes loaderLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 0 clamp(18px, 3vw, 54px);
  transition: .35s var(--ease);
}
.header.is-scrolled {
  height: 74px;
  background: rgba(8, 10, 16, .68);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(22px);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .16em;
}
.wordmark__pulse {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(116,255,190,.92);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot { 50% { opacity: .45; transform: scale(.62); } }
.nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  color: #bec7dc;
  font-size: 13px;
  font-weight: 600;
}
.nav a {
  position: relative;
  padding: 8px 0;
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: white;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}
.nav a:hover { color: white; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.header__ghost,
.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: border-color .25s, background .25s, transform .25s;
}
.header__ghost {
  padding: 0 18px;
  color: var(--muted-strong);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.header__ghost:hover { color: white; border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.08); }
.header__cta {
  gap: 16px;
  padding: 0 10px 0 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.header__cta i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  color: #05070d;
  transform: rotate(45deg);
}
.menu-button,
.mobile-nav { display: none; }

.hero,
.motion,
.experience,
.platforms,
.cabinet-section,
.pricing,
.final-cta,
.footer {
  position: relative;
  z-index: 1;
  padding-left: clamp(18px, 4vw, 62px);
  padding-right: clamp(18px, 4vw, 62px);
}
.hero,
.motion,
.experience,
.platforms,
.cabinet-section,
.pricing,
.final-cta { padding-top: 36px; padding-bottom: 36px; }

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 22px);
  overflow: hidden;
}
.hero__halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  z-index: -1;
  mix-blend-mode: screen;
}
.hero__halo--one {
  width: min(48vw, 780px);
  aspect-ratio: 1;
  left: -6vw;
  top: 2vh;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,.38), rgba(138,82,255,.42) 24%, rgba(53,143,255,.18) 55%, transparent 74%);
  animation: heroAurora 12s ease-in-out infinite alternate;
}
.hero__halo--two {
  width: min(40vw, 640px);
  aspect-ratio: 1;
  right: -8vw;
  top: 22vh;
  background: radial-gradient(circle at 50% 50%, rgba(53,171,255,.28), rgba(80,115,255,.18) 32%, transparent 74%);
  animation: heroAurora 14s ease-in-out infinite alternate-reverse;
}
@keyframes heroAurora { to { transform: translate3d(0, -3vh, 0) scale(1.08); } }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  min-height: calc(100svh - 140px);
}
.hero__content { max-width: 790px; }
.hero__topline,
.hero__kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #b7c0d6;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.hero__topline {
  justify-content: space-between;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  margin-bottom: 20px;
}
.hero__topline span:first-child { display: inline-flex; align-items: center; gap: 10px; }
.hero__topline i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(116,255,190,.94);
}
.hero__kicker { margin-bottom: 12px; font-size: 12px; font-weight: 700; }
.hero__title {
  margin: 0 0 20px;
  font-family: "Space Grotesk", sans-serif;
  line-height: .88;
  letter-spacing: -.08em;
  text-transform: uppercase;
}
.hero__title-line {
  display: block;
  font-size: clamp(5rem, 15vw, 12rem);
  will-change: transform;
}
.hero__title-line--solid { color: white; text-shadow: 0 0 48px rgba(161, 103, 255, .16); }
.hero__title-line--outline {
  margin-left: clamp(24px, 8vw, 120px);
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255,255,255,.72);
  text-shadow: 0 0 40px rgba(74, 149, 255, .12);
}
.hero__description {
  max-width: 640px;
  margin: 0;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.72;
  color: var(--muted-strong);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 22px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-chip {
  min-width: 150px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.hero-chip strong { display: block; margin-bottom: 6px; font-size: 16px; }
.hero-chip span { color: var(--muted); font-size: 13px; }
.hero__visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}
.hero-panel,
.hero-float,
.motion-card,
.scene-card,
.cabinet-teaser__info,
.preview-shell,
.price-card,
.modal__content,
.cabinet-card,
.purchase-card {
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.04);
  background: linear-gradient(180deg, rgba(17, 22, 38, .82), rgba(9, 13, 24, .88));
  backdrop-filter: blur(22px);
}
.hero-panel {
  position: relative;
  width: min(100%, 520px);
  padding: 26px;
  border-radius: 34px;
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 30%, transparent 70%, rgba(72,156,255,.08));
}
.hero-panel__top,
.hero-panel__stats { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 12px; }
.hero-panel__top {
  margin-bottom: 26px;
  color: #cdd5ea;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-panel__status { color: var(--green); }
.hero-panel__word {
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 7vw, 4.6rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.08em;
}
.hero-panel__wave { position: relative; z-index: 1; display: grid; gap: 12px; margin: 24px 0 26px; }
.hero-panel__wave span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(112,76,255,.12), rgba(72,166,255,.75), rgba(121,239,255,.15));
  animation: waveShift 8s ease-in-out infinite;
}
.hero-panel__wave span:nth-child(2) { width: 84%; animation-delay: -.7s; }
.hero-panel__wave span:nth-child(3) { width: 92%; animation-delay: -1.4s; }
.hero-panel__wave span:nth-child(4) { width: 72%; animation-delay: -2s; }
@keyframes waveShift { 50% { transform: translateX(10px); opacity: .72; } }
.hero-panel__stats div { position: relative; z-index: 1; flex: 1; padding: 16px; border-radius: 22px; background: rgba(255,255,255,.04); }
.hero-panel__stats small { display: block; margin-bottom: 7px; color: var(--muted); }
.hero-panel__stats strong { font-size: 17px; }
.hero-float {
  position: absolute;
  padding: 16px 18px;
  border-radius: 22px;
  max-width: 260px;
}
.hero-float span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }
.hero-float strong { display: block; margin: 10px 0 8px; font-size: 22px; }
.hero-float p { margin: 0; color: var(--muted-strong); font-size: 13px; line-height: 1.55; }
.hero-float--one { left: -8px; bottom: 46px; }
.hero-float--two { right: 2px; top: 56px; }
.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #cad2e8;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.scroll-hint i { animation: bounceArrow 1.8s ease-in-out infinite; }
@keyframes bounceArrow { 50% { transform: translateY(5px); } }

.liquid-button,
.outline-button,
.price-card__button,
.dashboard-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.liquid-button {
  --mx: 50%;
  --my: 50%;
  overflow: hidden;
  color: white;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(110deg, rgba(125,79,255,.96), rgba(56,154,255,.88));
  box-shadow: 0 18px 60px rgba(88, 75, 255, .3), inset 0 1px 0 rgba(255,255,255,.18);
}
.liquid-button::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  left: var(--mx);
  top: var(--my);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,.24);
  filter: blur(22px);
  opacity: 0;
  transition: opacity .25s;
}
.liquid-button:hover::before { opacity: 1; }
.liquid-button > * { position: relative; z-index: 1; }
.liquid-button--light { background: linear-gradient(110deg, rgba(255,255,255,.96), rgba(212,233,255,.94)); color: #05070d; }
.liquid-button--full,
.outline-button--full { width: 100%; }
.outline-button {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--muted-strong);
}
.outline-button:hover,
.price-card__button:hover,
.dashboard-action:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.1); color: white; }

.section-index {
  display: inline-block;
  margin-bottom: 14px;
  color: #9ca7c6;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.section-intro { max-width: 860px; margin-bottom: 28px; }
.section-intro--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro--split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}
.section-intro h2,
.final-cta h2,
.modal h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.06em;
}
.section-intro h2 em,
.final-cta h2 span {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255,255,255,.8);
}
.section-intro p,
.modal__copy { max-width: 650px; margin: 14px 0 0; color: var(--muted-strong); font-size: 16px; line-height: 1.7; }

.motion__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}
.motion-card { padding: 26px; border-radius: 28px; min-height: 250px; }
.motion-card--wide { position: relative; overflow: hidden; }
.motion-card__index,
.cabinet-note {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: rgba(255,255,255,.07);
  color: #e0e7f7;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.motion-card h3,
.scene-card h3,
.cabinet-teaser__info h3,
.auth-success h3,
.cabinet-card h4 {
  margin: 0 0 10px;
  line-height: 1.12;
}
.motion-card h3,
.scene-card h3,
.cabinet-teaser__info h3 { font-size: 26px; }
.motion-card p,
.scene-card p,
.cabinet-teaser__info p,
.purchase-card p { margin: 0; color: var(--muted-strong); line-height: 1.7; }
.motion-lines {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: grid;
  gap: 12px;
}
.motion-lines i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(164,91,255,.16), rgba(88,179,255,.82), rgba(95,241,255,.18));
  animation: waveShift 7s ease-in-out infinite;
}
.motion-lines i:nth-child(2) { width: 82%; animation-delay: -.8s; }
.motion-lines i:nth-child(3) { width: 68%; animation-delay: -1.4s; }

.experience-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 18px;
}
.scene-card { min-height: 260px; padding: 24px; border-radius: 30px; transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.scene-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 18px;
  background: rgba(255,255,255,.06);
  color: #dde5f4;
  font-weight: 700;
}
.scene-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.16); box-shadow: 0 28px 80px rgba(7, 12, 24, .42); }
.scene-card--game span { color: #8ff0ff; }
.scene-card--video span { color: #f0b3ff; }
.scene-card--social span { color: #b0bcff; }
.scene-card--work span { color: #84ffc8; }

.platforms {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 26px;
  align-items: center;
}
.platform-dock {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.platform-dock li a {
  position: relative;
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 170px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  color: white;
  box-shadow: var(--shadow);
}
.platform-dock li a::before {
  content: "";
  position: absolute;
  inset: 100% 0 0;
  background: var(--fill);
  transition: inset .45s var(--ease);
}
.platform-dock li a .icon,
.platform-dock li a small { position: relative; z-index: 1; transition: .45s var(--ease); }
.platform-dock li a .icon { font-size: 42px; }
.platform-dock li a small { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.platform-dock li a:hover::before { inset: 0; }
.platform-dock li a:hover .icon,
.platform-dock li a:hover small { transform: rotateY(360deg); color: #fff; }

.cabinet-teaser {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}
.cabinet-teaser__info,
.preview-shell { padding: 28px; border-radius: 30px; }
.cabinet-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.cabinet-list li { color: var(--muted-strong); line-height: 1.55; }
.cabinet-list li::before { content: "✦"; color: var(--cyan); margin-right: 10px; }
.preview-shell__top { display: flex; gap: 8px; margin-bottom: 20px; }
.preview-shell__top span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.18); }
.preview-shell__grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  min-height: 360px;
}
.preview-block--sidebar,
.preview-row,
.preview-row--stats i {
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
}
.preview-main { display: grid; gap: 14px; }
.preview-row--hero { min-height: 92px; }
.preview-row--stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; min-height: 110px; background: transparent; border: 0; }
.preview-row--table { min-height: 120px; }
.preview-row--table.short { min-height: 72px; }

.pricing { overflow: hidden; }
.pricing__orb {
  position: absolute;
  right: -5vw;
  top: 10%;
  width: 26vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141,98,255,.28), transparent 70%);
  filter: blur(20px);
  opacity: .8;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.price-card { position: relative; padding: 28px; border-radius: 28px; }
.price-card__badge {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(210,230,255,.95));
  color: #081018;
  font-size: 12px;
  font-weight: 800;
}
.price-card__term { display: block; color: #d5ddf0; font-size: 15px; margin-bottom: 12px; }
.price-card__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; }
.price-card__price b { font-family: "Space Grotesk", sans-serif; font-size: clamp(3rem, 4vw, 4.2rem); letter-spacing: -.06em; }
.price-card__price span { font-size: 24px; color: #d7def0; }
.price-card p { margin: 0 0 22px; color: var(--muted-strong); line-height: 1.65; }
.price-card__button { width: 100%; color: white; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07); }
.price-card--featured { transform: translateY(-10px); border-color: rgba(255,255,255,.16); background: linear-gradient(180deg, rgba(35, 27, 61, .86), rgba(10, 14, 24, .92)); }

.final-cta { padding-top: 56px; padding-bottom: 70px; text-align: center; }
.final-cta::before {
  content: "";
  position: absolute;
  inset: 12% 18% auto;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 90, 255, .2), transparent 70%);
  filter: blur(34px);
  z-index: -1;
}
.final-cta p { margin: 0 0 14px; color: #c5cee4; font-size: 17px; }
.final-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.final-cta__grid {
  position: absolute;
  inset: 18px 10% auto;
  height: 70%;
  z-index: -1;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  transform: perspective(800px) rotateX(60deg) scale(1.2);
}
.footer { padding-top: 26px; padding-bottom: 40px; }
.footer__top,
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__top { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); }
.footer__top p,
.footer__bottom { color: #b4bfd8; }
.footer__bottom { margin-top: 16px; font-size: 14px; }
.footer__bottom button { color: inherit; }

.modal {
  width: min(560px, calc(100vw - 24px));
  padding: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: transparent;
  color: inherit;
}
.modal::backdrop { background: rgba(4, 6, 11, .68); backdrop-filter: blur(8px); }
.modal--small { width: min(500px, calc(100vw - 24px)); }
.modal__content { position: relative; padding: 28px; border-radius: 28px; }
.modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.08);
}
.modal__eyebrow { color: #9ca7c6; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.auth-step { display: none; margin-top: 24px; }
.auth-step--active { display: block; }
.field { display: grid; gap: 10px; margin-bottom: 16px; }
.field span { color: #d8e0f0; font-size: 14px; font-weight: 600; }
.field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  color: white;
  outline: none;
}
.field input:focus { border-color: rgba(130, 170, 255, .7); box-shadow: 0 0 0 3px rgba(78, 123, 255, .18); }
.auth-hint,
.auth-helper { margin-bottom: 14px; color: #d1d8ea; line-height: 1.6; }
.auth-helper b,
.auth-hint b { color: white; }
.modal__actions-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-success { text-align: center; }
.auth-success__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(123,89,255,.28), rgba(79,205,255,.28));
  font-size: 26px;
}

.cabinet-app {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.cabinet-app.is-open { opacity: 1; visibility: visible; }
.cabinet-app__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 12, .78);
  backdrop-filter: blur(14px);
}
.cabinet-app__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr;
  width: min(1500px, calc(100vw - 32px));
  height: min(920px, calc(100vh - 32px));
  margin: auto;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(9, 13, 24, .95), rgba(7, 10, 18, .98));
  box-shadow: 0 40px 120px rgba(0, 0, 0, .55);
}
.cabinet-app__sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.cabinet-app__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cabinet-app__brand strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: .08em;
}
.cabinet-app__brand small { color: var(--muted); letter-spacing: .16em; }
.cabinet-nav {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  text-align: left;
  color: #d8e0f0;
  background: rgba(255,255,255,.04);
  transition: .25s ease;
}
.cabinet-nav.is-active,
.cabinet-nav:hover {
  background: linear-gradient(110deg, rgba(123,89,255,.25), rgba(56,154,255,.16));
  color: white;
}
.cabinet-app__sidebar-foot { margin-top: auto; }
.cabinet-app__main {
  overflow: auto;
  padding: 24px;
}
.cabinet-app__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cabinet-app__header small {
  display: block;
  margin-bottom: 8px;
  color: #9ba7c5;
  letter-spacing: .18em;
}
.cabinet-app__header h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.cabinet-app__header-actions { display: flex; align-items: center; gap: 12px; }
.cabinet-app__status {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9f5ff, #8df3ff);
  color: #081018;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.cabinet-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-size: 24px;
}
.cabinet-tab { display: none; }
.cabinet-tab.is-active { display: block; }
.cabinet-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.cabinet-stats article,
.subscription-extra article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.cabinet-stats small,
.subscription-summary small,
.subscription-hero small,
.subscription-extra small { display: block; margin-bottom: 8px; color: var(--muted); }
.cabinet-stats strong,
.subscription-summary strong,
.subscription-hero strong,
.subscription-extra strong { font-size: 18px; }
.cabinet-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}
.cabinet-card {
  padding: 24px;
  border-radius: 28px;
}
.cabinet-card--full { width: 100%; }
.cabinet-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.cabinet-card__head h4 { font-size: 24px; }
.cabinet-card__head span { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.cabinet-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.cabinet-actions-grid--single { grid-template-columns: 1fr; margin-top: 8px; }
.dashboard-action {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #eef2ff;
}
.cabinet-console {
  min-height: 150px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(4, 8, 16, .72);
  color: #9bffbe;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  line-height: 1.65;
  white-space: pre-line;
}
.subscription-summary,
.subscription-extra {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.subscription-hero {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.subscription-hero > div {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.cabinet-purchase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.purchase-card {
  padding: 22px;
  border-radius: 24px;
}
.purchase-card span { display: block; margin-bottom: 8px; color: #d5ddf0; }
.purchase-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 42px;
  letter-spacing: -.05em;
}
.purchase-card--accent { background: linear-gradient(180deg, rgba(35, 27, 61, .86), rgba(10, 14, 24, .92)); }
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.security-note {
  margin-top: 14px;
  color: var(--muted-strong);
  line-height: 1.6;
}
.history-table {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.history-table__head,
.history-row {
  display: grid;
  grid-template-columns: 180px 1fr 140px;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
}
.history-table__head {
  background: rgba(255,255,255,.06);
  font-weight: 700;
  color: #e8edff;
}
.history-row {
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted-strong);
  background: rgba(255,255,255,.02);
}

.cursor {
  position: fixed;
  z-index: 200;
  opacity: 0;
  transition: opacity .25s ease;
}
.cursor--dot { width: 7px; height: 7px; border-radius: 50%; background: white; }
.cursor--ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.46);
  transition: transform .18s ease, opacity .2s ease, border-color .2s ease, width .2s ease, height .2s ease;
}
.cursor--ring.is-active { width: 56px; height: 56px; border-color: rgba(110,226,255,.82); }

.reveal,
.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .58s var(--ease), transform .58s var(--ease);
}
.reveal.is-visible,
.section-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1280px) {
  .hero__grid,
  .cabinet-teaser,
  .platforms,
  .motion__grid,
  .pricing-grid,
  .cabinet-grid,
  .cabinet-purchase-grid { grid-template-columns: 1fr 1fr; }
  .motion-card--wide { grid-column: 1 / -1; }
  .cabinet-stats,
  .subscription-hero { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .nav,
  .header__actions { display: none; }
  .menu-button {
    position: relative;
    z-index: 101;
    display: grid;
    gap: 6px;
    padding: 0;
  }
  .menu-button span {
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: white;
    transition: transform .28s ease, opacity .28s ease;
  }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    inset: 78px 18px auto;
    z-index: 100;
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    background: rgba(10, 14, 24, .95);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .28s ease;
  }
  .mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav a,
  .mobile-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    color: #edf2ff;
    text-align: center;
  }
  .hero__grid,
  .cabinet-teaser,
  .platforms,
  .motion__grid,
  .pricing-grid,
  .section-intro--split,
  .cabinet-grid,
  .cabinet-purchase-grid,
  .security-grid,
  .subscription-summary,
  .subscription-extra,
  .subscription-hero {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero__visual { min-height: auto; padding-top: 12px; }
  .hero-float { position: static; margin-top: 14px; max-width: none; }
  .experience-track { grid-auto-flow: row; grid-auto-columns: auto; }
  .platform-dock { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card--featured { transform: none; }
  .cabinet-app__shell { grid-template-columns: 1fr; width: calc(100vw - 16px); height: calc(100vh - 16px); }
  .cabinet-app__sidebar {
    gap: 8px;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .cabinet-app__sidebar-foot { margin-top: 8px; }
  .cabinet-app__main { padding: 18px; }
  .cabinet-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .history-table__head,
  .history-row { grid-template-columns: 120px 1fr 100px; }
}

@media (max-width: 640px) {
  :root { --header-h: 78px; }
  .hero__title-line { font-size: clamp(3.8rem, 18vw, 6rem); }
  .hero__title-line--outline { margin-left: 12vw; }
  .hero-panel,
  .hero-float,
  .motion-card,
  .scene-card,
  .cabinet-teaser__info,
  .preview-shell,
  .price-card,
  .modal__content,
  .cabinet-card,
  .purchase-card { padding: 20px; border-radius: 24px; }
  .hero__actions,
  .final-cta__actions,
  .modal__actions-row,
  .cabinet-actions-grid,
  .cabinet-actions-grid--single { grid-template-columns: 1fr; display: grid; }
  .liquid-button,
  .outline-button,
  .dashboard-action { width: 100%; }
  .hero-chip { width: 100%; }
  .platform-dock li a { min-height: 132px; }
  .footer__top,
  .footer__bottom { align-items: start; }
  .cabinet-stats { grid-template-columns: 1fr; }
  .history-table__head,
  .history-row { grid-template-columns: 1fr; gap: 6px; }
}

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

/* v6 animation upgrade */
.background-vortex {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(88vw, 1200px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: .24;
  filter: blur(26px) saturate(1.2);
  background:
    radial-gradient(circle at center, rgba(255,255,255,.06), transparent 30%),
    conic-gradient(from 0deg, rgba(131,87,255,.28), rgba(62,160,255,.14), rgba(84,255,231,.2), rgba(131,87,255,.28));
  mask-image: radial-gradient(circle at center, black 22%, transparent 68%);
  animation: vortexSpin 26s linear infinite;
}
@keyframes vortexSpin {
  from { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.08); }
  to { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

.hero__visual { perspective: 1400px; }
.hero-panel {
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto 10% -18%;
  height: 36%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98,116,255,.28), transparent 70%);
  filter: blur(26px);
  transform: translateZ(-40px);
}
.hero-panel__word,
.hero-panel__wave,
.hero-panel__stats { transform: translateZ(34px); }
.hero-float { transform-style: preserve-3d; }

.motion-stage {
  margin-bottom: 22px;
  min-height: 78vh;
  perspective: 1600px;
}
.motion-stage__scene {
  position: relative;
  min-height: 72vh;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(12,16,29,.58), rgba(8,11,19,.32));
  overflow: hidden;
  transform-style: preserve-3d;
}
.motion-stage__scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 28%, rgba(163,103,255,.22), transparent 35%),
    radial-gradient(circle at 75% 68%, rgba(76,185,255,.2), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 30%);
}
.motion-stage__scene::after {
  content: "";
  position: absolute;
  inset: auto 12% -26%;
  height: 44%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66,138,255,.24), transparent 70%);
  filter: blur(34px);
}
.motion-stage__device {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(44vw, 560px);
  min-width: 290px;
  padding: 20px;
  border-radius: 32px;
  transform: translate3d(-50%, -50%, 80px) rotateX(14deg) rotateY(-18deg);
  background: linear-gradient(180deg, rgba(17,22,38,.92), rgba(8,12,22,.96));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 120px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
  transform-style: preserve-3d;
}
.motion-stage__device-top { display: flex; gap: 8px; margin-bottom: 16px; }
.motion-stage__device-top span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.motion-stage__device-screen {
  min-height: 340px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8,12,22,.88), rgba(13,18,31,.94));
  border: 1px solid rgba(255,255,255,.08);
}
.motion-stage__title {
  margin-bottom: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  letter-spacing: -.05em;
}
.motion-stage__bars { display: grid; gap: 12px; margin-bottom: 18px; }
.motion-stage__bars i {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(161,96,255,.18), rgba(70,169,255,.95), rgba(108,241,255,.16));
  animation: waveShift 6s ease-in-out infinite;
}
.motion-stage__bars i:nth-child(2) { width: 86%; animation-delay: -.5s; }
.motion-stage__bars i:nth-child(3) { width: 92%; animation-delay: -1s; }
.motion-stage__bars i:nth-child(4) { width: 72%; animation-delay: -1.5s; }
.motion-stage__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.motion-stage__grid b {
  display: block;
  min-height: 110px;
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.motion-stage__card {
  position: absolute;
  width: min(280px, 32vw);
  min-width: 220px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16,21,38,.88), rgba(8,11,20,.9));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}
.motion-stage__card span {
  display: block;
  margin-bottom: 8px;
  color: #9fb0d8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}
.motion-stage__card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.06;
}
.motion-stage__card p { margin: 0; color: var(--muted-strong); line-height: 1.55; }
.motion-stage__card--one { left: 8%; top: 14%; transform: translate3d(0,0,100px) rotateY(22deg); }
.motion-stage__card--two { right: 8%; top: 18%; transform: translate3d(0,0,110px) rotateY(-20deg); }
.motion-stage__card--three { right: 18%; bottom: 10%; transform: translate3d(0,0,120px) rotateX(8deg) rotateY(-12deg); }

.motion__grid { position: relative; z-index: 2; }
.motion-card { transform: translateZ(0); }
.motion-card--wide {
  background: linear-gradient(180deg, rgba(28,18,50,.84), rgba(8,13,24,.92));
}
.scene-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.experience-pin {
  perspective: 1400px;
}
.experience-track {
  position: relative;
  padding: 12px 0 6px;
  transform-style: preserve-3d;
}
.scene-card:nth-child(1) { transform: rotateY(10deg) rotateX(3deg); }
.scene-card:nth-child(2) { transform: rotateY(4deg) translateY(28px); }
.scene-card:nth-child(3) { transform: rotateY(-4deg) translateY(56px); }
.scene-card:nth-child(4) { transform: rotateY(-10deg) translateY(82px); }
.scene-card::after {
  content: "";
  position: absolute;
  inset: auto 12% -14%;
  height: 26%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85,130,255,.22), transparent 72%);
  filter: blur(18px);
}

@media (max-width: 980px) {
  .background-vortex { width: 140vw; }
  .motion-stage { min-height: auto; }
  .motion-stage__scene { min-height: auto; padding: 20px; }
  .motion-stage__device,
  .motion-stage__card {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    left: auto;
    top: auto;
    margin: 0 0 14px;
    transform: none !important;
  }
  .motion-stage__device { transform: none !important; }
  .motion-stage__device-screen { min-height: 280px; }
  .scene-card:nth-child(1),
  .scene-card:nth-child(2),
  .scene-card:nth-child(3),
  .scene-card:nth-child(4) { transform: none; }
}
