:root {
  --ink: #080912;
  --ink-2: #0d0f1d;
  --ink-3: #14172a;
  --paper: #f3f1ed;
  --paper-2: #e9edf9;
  --white: #fbfbff;
  --text: #f5f4fb;
  --text-dark: #10111a;
  --muted: #a5a5b7;
  --muted-dark: #5e6170;
  --purple: #9b59b6;
  --purple-bright: #a855f7;
  --purple-deep: #6d28d9;
  --cyan: #02a7c4;
  --cyan-bright: #2edcf4;
  --pink: #d247a8;
  --green: #37d996;
  --amber: #f6b84a;
  --line: rgba(255, 255, 255, 0.11);
  --line-dark: rgba(16, 17, 26, 0.13);
  --glass: rgba(12, 13, 26, 0.64);
  --shell: 1220px;
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.auth-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: rgba(168, 85, 247, 0.7);
}

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

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

button,
input {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.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;
}

.page-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 126px 0;
  scroll-margin-top: 96px;
}

.section-label {
  margin: 0 0 18px;
  color: var(--purple-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -0.055em;
  line-height: 0.95;
}

h1 em,
h2 em,
h3 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 900ms var(--ease);
}

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

/* Navigation */

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  min-height: 66px;
  margin: 0 auto;
  padding: 9px 10px 9px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  pointer-events: auto;
  background: rgba(8, 9, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  backdrop-filter: blur(24px) saturate(1.35);
  transition: width 300ms var(--ease), background 300ms ease, border-color 300ms ease, transform 300ms var(--ease);
}

.site-header.is-scrolled .nav-shell {
  width: min(1040px, calc(100% - 40px));
  background: rgba(8, 9, 18, 0.88);
  border-color: rgba(255, 255, 255, 0.19);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42), 0 0 44px rgba(109, 40, 217, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 0 26px rgba(155, 89, 182, 0.23);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-links a,
.nav-login {
  padding: 10px 13px;
  color: #b7b6c5;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease;
}

.nav-menu-index,
.nav-menu-copy small,
.nav-links > a > i {
  display: none;
}

.nav-menu-copy {
  display: contents;
}

.nav-menu-copy strong {
  font: inherit;
}

.nav-links a:hover,
.nav-login:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-cart-link {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.nav-cart-link:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 85, 247, 0.55);
  background: rgba(168, 85, 247, 0.11);
}

.nav-cart-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cart-count {
  position: absolute;
  top: -3px;
  right: -2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-deep));
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 850;
  line-height: 1;
}

.language-switcher {
  padding: 3px;
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: inherit;
  cursor: pointer;
}

.language-option {
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  display: grid;
  place-items: center;
  color: #858596;
  border-radius: 999px;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  transition: color 180ms ease, background 220ms var(--ease), box-shadow 220ms ease;
}

.language-switcher:hover {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
}

.nav-login,
.nav-menu-meta button,
.footer-link-button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.nav-login {
  background: transparent;
}

.nav-menu-meta {
  display: none;
}

.download-icon {
  width: 20px;
  height: 20px;
  display: none;
  overflow: visible;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-option.is-active {
  color: var(--white);
  background: linear-gradient(135deg, rgba(168,85,247,.78), rgba(2,167,196,.48));
  box-shadow: 0 5px 18px rgba(109,40,217,.22), inset 0 1px 0 rgba(255,255,255,.18);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 250ms var(--ease), width 250ms var(--ease);
}

.nav-toggle span:first-child { transform: translate(-50%, -4px); }
.nav-toggle span:last-child { transform: translate(-50%, 4px); }

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(168,85,247,.48);
  background: rgba(168,85,247,.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 24px rgba(109,40,217,.15);
}

/* Buttons */

.button {
  position: relative;
  min-height: 50px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  isolation: isolate;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.42) 49%, transparent 64%);
  transform: translateX(-120%) skewX(-16deg);
}

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

.button:hover::before {
  opacity: 1;
  animation: buttonShine 720ms var(--ease);
}

@keyframes buttonShine {
  to { transform: translateX(120%) skewX(-16deg); }
}

.button-small {
  min-height: 46px;
  padding: 12px 16px;
  font-size: 13px;
}

.button-large {
  min-height: 58px;
  padding: 16px 24px;
  min-width: 168px;
}

.button-primary {
  color: #fff;
  background:
    radial-gradient(circle at 28% 8%, rgba(255, 255, 255, 0.25), transparent 30%),
    linear-gradient(135deg, #b66be7, #8b3ec4 46%, #6d28d9);
  border-color: rgba(222, 193, 255, 0.35);
  box-shadow: 0 14px 38px rgba(109, 40, 217, 0.31), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 50px rgba(109, 40, 217, 0.43), 0 0 34px rgba(168, 85, 247, 0.16);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.button-arrow {
  width: 28px;
  height: 28px;
  margin: -7px -10px -7px 1px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  font-size: 15px;
}

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

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  padding: 166px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(126, 63, 178, 0.18), transparent 27%),
    linear-gradient(180deg, #0b0c19 0%, #090b17 48%, #0c1221 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 18, 0.45));
}

.hero-noise,
.hero-starfield,
.final-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-noise {
  z-index: 1;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-starfield {
  z-index: 0;
  opacity: 0.66;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.78) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(81,211,242,.66) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(205,155,255,.5) 0 1px, transparent 1.6px);
  background-size: 151px 151px, 223px 223px, 307px 307px;
  background-position: 17px 33px, 73px 104px, 131px 41px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.7) 60%, transparent 100%);
}

.hero-orb {
  position: absolute;
  z-index: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.23;
  pointer-events: none;
}

.hero-orb-one {
  top: 20%;
  left: -250px;
  background: var(--purple-bright);
}

.hero-orb-two {
  top: 5%;
  right: -280px;
  background: var(--cyan);
}

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

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 920px;
  margin: 0 auto 68px;
  text-align: center;
}

.eyebrow-pill {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 28px;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #cccad7;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(55, 217, 150, 0.12), 0 0 18px rgba(55, 217, 150, 0.55);
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(64px, 8vw, 122px);
  font-weight: 650;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: #c99be7;
  text-shadow: 0 0 44px rgba(168, 85, 247, 0.22);
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 3%;
  bottom: -6px;
  height: 10px;
  opacity: 0.74;
  border-top: 3px solid #a855f7;
  border-radius: 50%;
  transform: rotate(-1.5deg);
}

.hero-lede {
  max-width: 720px;
  margin: 30px auto 0;
  color: #b5b4c3;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.hero-lede strong {
  color: var(--white);
  font-weight: 650;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-reassurance {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #8e8d9e;
  font-size: 12px;
}

.hero-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-reassurance i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(55, 217, 150, 0.38);
  border-radius: 50%;
  color: var(--green);
  font-size: 10px;
  font-style: normal;
}

.hero-world {
  position: relative;
  min-height: 680px;
  margin: 0 auto;
  padding: 110px 64px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
  border-radius: 52px 52px 0 0;
  background:
    radial-gradient(ellipse at 50% 95%, rgba(12, 189, 213, 0.38), transparent 34%),
    radial-gradient(ellipse at 35% 70%, rgba(161, 74, 209, 0.28), transparent 43%),
    linear-gradient(180deg, rgba(27, 37, 72, 0.7) 0%, rgba(30, 28, 69, 0.76) 54%, rgba(10, 18, 35, 0.98) 100%);
  box-shadow: 0 -12px 90px rgba(82, 52, 155, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  perspective: 1600px;
}

.hero-world::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.7) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(65,211,236,.7) 0 1px, transparent 1.5px);
  background-size: 123px 123px, 211px 211px;
  background-position: 13px 17px, 77px 93px;
  mask-image: linear-gradient(to bottom, #000, transparent 74%);
}

.aurora {
  position: absolute;
  width: 70%;
  height: 54%;
  top: -20%;
  border-radius: 50%;
  filter: blur(40px);
  mix-blend-mode: screen;
  opacity: 0.32;
  pointer-events: none;
}

.aurora-a {
  left: -12%;
  background: conic-gradient(from 170deg, transparent, rgba(2, 167, 196, 0.48), rgba(155, 89, 182, 0.48), transparent 68%);
  transform: rotate(-7deg);
}

.aurora-b {
  right: -18%;
  background: conic-gradient(from 215deg, transparent, rgba(210, 71, 168, 0.38), rgba(46, 220, 244, 0.36), transparent 68%);
  transform: rotate(9deg);
}

.horizon-grid {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 0;
  height: 46%;
  opacity: 0.22;
  transform: perspective(560px) rotateX(66deg) scale(1.3);
  transform-origin: bottom;
  background-image:
    linear-gradient(rgba(84, 210, 244, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 210, 244, 0.18) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to top, #000, transparent);
}

.mountain {
  position: absolute;
  left: -10%;
  bottom: -4px;
  width: 120%;
  pointer-events: none;
  clip-path: polygon(0 100%, 0 74%, 8% 62%, 16% 72%, 24% 45%, 31% 67%, 42% 34%, 51% 71%, 61% 52%, 70% 64%, 80% 39%, 90% 67%, 100% 48%, 100% 100%);
}

.mountain-back {
  height: 41%;
  opacity: 0.65;
  background: linear-gradient(155deg, #253e58, #35254f 48%, #102d3a);
}

.mountain-front {
  height: 28%;
  background: linear-gradient(160deg, #101729, #151125 47%, #071820);
  clip-path: polygon(0 100%, 0 62%, 10% 48%, 19% 69%, 28% 42%, 41% 70%, 53% 47%, 65% 71%, 78% 41%, 89% 69%, 100% 53%, 100% 100%);
}

.floating-chip {
  position: absolute;
  z-index: 4;
  min-width: 190px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  background: rgba(10, 12, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.09);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.floating-chip strong,
.floating-chip small {
  display: block;
}

.floating-chip strong {
  font-size: 12px;
}

.floating-chip small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.chip-left {
  left: 18px;
  top: 170px;
  transform: rotate(-3deg);
  animation: chipFloat 5s ease-in-out infinite;
}

.chip-right {
  right: 18px;
  top: 230px;
  transform: rotate(3deg);
  animation: chipFloat 5.8s ease-in-out 600ms infinite reverse;
}

@keyframes chipFloat {
  50% { translate: 0 -10px; }
}

.chip-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ddbdf4;
  background: rgba(168, 85, 247, 0.16);
  border: 1px solid rgba(168, 85, 247, 0.26);
  border-radius: 10px;
  font-size: 18px;
}

.chip-icon-cyan {
  color: #96efff;
  background: rgba(2, 167, 196, 0.16);
  border-color: rgba(2, 167, 196, 0.3);
}

.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  background: #080812;
  box-shadow: 0 32px 90px rgba(0,0,0,.56), inset 0 1px 0 rgba(255,255,255,.09);
}

.window-bar {
  height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c8c6d3;
  background: linear-gradient(180deg, rgba(28, 29, 50, 0.96), rgba(16, 17, 34, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
}

.window-brand img {
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

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

.window-controls i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.19);
}

.hero-app {
  position: relative;
  z-index: 3;
  width: min(990px, 100%);
  margin: 0 auto -72px;
  transform: rotateX(3deg) translateZ(0);
  transform-origin: center bottom;
  transition: transform 400ms var(--ease);
}

.hero-app > img,
.product-window > img,
.how-window > img {
  width: 100%;
  height: auto;
}

.proof-strip {
  position: relative;
  z-index: 4;
  min-height: 118px;
  margin: 0;
  padding: 24px 0 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  align-items: center;
  gap: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-intro {
  display: grid;
  gap: 5px;
}

.proof-kicker {
  color: var(--purple-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-intro strong {
  color: #d9d8e3;
  font-size: 14px;
  font-weight: 600;
}

.proof-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proof-items span {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: #8d8b9d;
  border-left: 1px solid rgba(255,255,255,.09);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

/* Manifesto */

.manifesto {
  min-height: 770px;
  display: flex;
  align-items: center;
  color: var(--text-dark);
  overflow: hidden;
  background: #f4f1eb;
}

.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 17, 26, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 26, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 84%);
}

.manifesto-shell {
  position: relative;
  z-index: 1;
  text-align: center;
}

.manifesto h2 {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(50px, 6.5vw, 92px);
  font-weight: 600;
}

.manifesto h2 em {
  color: var(--purple-deep);
}

.manifesto-map {
  position: relative;
  max-width: 1020px;
  height: 260px;
  margin: 48px auto -32px;
}

.manifesto-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.manifesto-map path {
  fill: none;
  stroke: rgba(85, 83, 74, 0.22);
  stroke-width: 1.5;
  stroke-dasharray: 6 10;
}

.map-label {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  color: var(--text-dark);
  border: 1px solid rgba(16, 17, 26, 0.12);
  border-radius: 2px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 3px 3px 0 rgba(16, 17, 26, 0.08);
}

.label-one { left: 5%; top: 18%; background: #c9b7f6; transform: rotate(-3deg); }
.label-two { right: 4%; top: 24%; background: #8de6ec; transform: rotate(2deg); }
.label-three { left: 20%; bottom: 12%; background: #f4d477; transform: rotate(1deg); }
.label-four { right: 21%; bottom: 5%; background: #da9ac8; transform: rotate(-2deg); }

/* Product */

.product {
  color: var(--text-dark);
  background: #eef1f8;
}

.product::before,
.plans::before,
.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  background-image: radial-gradient(rgba(24, 26, 39, 0.1) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 72px;
}

.section-heading h2,
.plans-heading h2,
.reviews-heading h2,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 620;
}

.section-heading h2 em,
.plans-heading h2 em,
.reviews-heading h2 em,
.faq-heading h2 em {
  color: var(--purple-deep);
}

.section-heading > p,
.plans-heading > p,
.faq-heading > p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.product-stage {
  position: relative;
  z-index: 1;
  min-height: 650px;
  padding: 30px;
  display: grid;
  grid-template-columns: 0.78fr 1.55fr;
  gap: 30px;
  overflow: hidden;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 12%, rgba(2, 167, 196, 0.14), transparent 28%),
    radial-gradient(circle at 8% 78%, rgba(155, 89, 182, 0.21), transparent 34%),
    #0a0b13;
  box-shadow: 0 34px 100px rgba(19, 25, 45, 0.17);
}

.product-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.product-stage-copy,
.product-visual {
  position: relative;
  z-index: 2;
}

.product-stage-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-tabs {
  display: grid;
  gap: 6px;
}

.product-tab {
  min-height: 54px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #858596;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms var(--ease);
}

.product-tab span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.product-tab:hover {
  color: #d7d5e1;
  transform: translateX(3px);
}

.product-tab.is-active {
  color: var(--white);
  background: linear-gradient(90deg, rgba(155, 89, 182, 0.2), rgba(155, 89, 182, 0.06));
  border-color: rgba(168, 85, 247, 0.26);
  box-shadow: inset 3px 0 0 var(--purple-bright);
}

.product-detail {
  padding: 30px 10px 10px;
}

.product-detail h3 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.product-detail > p:not(.section-label) {
  color: #9998aa;
  font-size: 15px;
  line-height: 1.6;
}

.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-points span {
  padding: 7px 9px;
  color: #c8c6d3;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  font-size: 10px;
  font-weight: 700;
}

.product-visual {
  display: flex;
  align-items: center;
}

.visual-glow {
  position: absolute;
  inset: 16% 5% 13% 4%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.35), rgba(2, 167, 196, 0.26));
  filter: blur(90px);
}

.product-window {
  width: 115%;
  max-width: none;
  margin-right: -18%;
  transform: perspective(1300px) rotateY(-7deg) rotateX(2deg);
  transition: opacity 180ms ease, transform 500ms var(--ease);
}

.product-window.is-changing {
  opacity: 0.18;
  transform: perspective(1300px) rotateY(-5deg) rotateX(2deg) scale(0.985);
}

.benefit-grid {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  position: relative;
  min-height: 490px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 26, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.64);
  box-shadow: 0 24px 70px rgba(42, 47, 69, 0.08);
}

.benefit-card-wide {
  min-height: 530px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 28px;
  color: var(--text);
  border-color: rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 80% 10%, rgba(62, 103, 255, 0.22), transparent 27%),
    linear-gradient(135deg, #0a0b15, #111028 58%, #0a1722);
}

.benefit-card-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.benefit-card h3 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 620;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.benefit-card h3 em {
  color: var(--purple-deep);
}

.benefit-card-wide h3 em,
.benefit-card-gradient h3 em {
  color: #d2a4ef;
}

.benefit-card p:not(.section-label) {
  max-width: 520px;
  color: var(--muted-dark);
  line-height: 1.65;
}

.benefit-card-wide p:not(.section-label),
.benefit-card-gradient p:not(.section-label) {
  color: #aaa8b8;
}

.text-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--purple-deep);
  font-size: 13px;
  font-weight: 750;
}

.benefit-card-wide .text-link {
  color: #d6b3ed;
}

.benefit-card-media {
  position: relative;
  align-self: stretch;
}

.benefit-games {
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
}

.benefit-games img {
  position: absolute;
  width: 260%;
  max-width: none;
  left: -30%;
  top: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0,0,0,.48);
  transform: perspective(1200px) rotateY(-4deg);
}

.mini-scan {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 34px;
  min-height: 178px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 38px;
  padding: 22px 26px;
  color: var(--white);
  border-radius: 24px;
  background: #111321;
}

.scan-ring {
  position: relative;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 14px 34px rgba(0,0,0,.2);
  isolation: isolate;
}

.scan-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 8px;
  border-radius: 50%;
  background: conic-gradient(from -90deg, #a855f7 0 71.4%, #c177ff 71.7% 72%, rgba(255,255,255,.09) 72.3% 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 8px rgba(168,85,247,.22));
}

.scan-ring span,
.scan-ring small {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
}

.scan-ring span {
  margin-top: -12px;
  font-size: 26px;
  font-weight: 750;
}

.scan-ring small {
  margin-top: 32px;
  color: var(--muted);
  font-size: 10px;
}

.scan-lines {
  display: grid;
  gap: 13px;
}

.scan-lines i {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
}

.scan-lines i::before {
  content: "";
  display: block;
  width: var(--width, 72%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple-bright), var(--cyan));
}

.scan-lines i:nth-child(2)::before { --width: 54%; }
.scan-lines i:nth-child(3)::before { --width: 83%; }
.scan-lines i:nth-child(4)::before { --width: 37%; }

.benefit-card-gradient {
  display: flex;
  flex-direction: column;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 70%, rgba(2, 167, 196, 0.19), transparent 33%),
    radial-gradient(circle at 18% 10%, rgba(168, 85, 247, 0.3), transparent 36%),
    #11101e;
  border-color: rgba(255,255,255,.12);
}

.prompt-stack {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  margin-top: auto;
  padding-top: 22px;
  display: grid;
  gap: 10px;
}

.prompt-stack span {
  min-height: 50px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cfccda;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  font-size: 12px;
}

.prompt-stack span::after {
  content: "↗";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: rgba(168,85,247,.23);
}

/* How */

.how {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 5%, rgba(155, 89, 182, 0.18), transparent 26%),
    #090a12;
}

.how::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

.section-heading-light h2 em {
  color: #c58fe7;
}

.section-heading-light > p {
  color: #9b99aa;
}

.steps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,.025);
}

.step-card {
  position: relative;
  min-height: 530px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.step-card:last-child {
  border-right: 0;
}

.step-number {
  color: #5f6072;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
}

.step-visual {
  min-height: 230px;
  margin: 28px 0 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(155, 89, 182, 0.16), transparent 50%),
    rgba(255,255,255,.025);
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 27px;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.step-card > p {
  margin: 0;
  color: #9291a1;
  font-size: 14px;
  line-height: 1.65;
}

.scan-visual {
  position: relative;
}

.radar-ring {
  position: absolute;
  border: 1px solid rgba(188, 122, 233, 0.34);
  border-radius: 50%;
}

.radar-ring-one {
  width: 150px;
  height: 150px;
  animation: radar 2.8s ease-out infinite;
}

.radar-ring-two {
  width: 92px;
  height: 92px;
  animation: radar 2.8s ease-out 1.2s infinite;
}

@keyframes radar {
  from { opacity: .8; transform: scale(.5); }
  to { opacity: 0; transform: scale(1.7); }
}

.radar-core {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #dfb7f7;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 20px;
  box-shadow: 0 0 36px rgba(168,85,247,.22);
  font-size: 32px;
}

.review-visual {
  padding: 30px;
  align-content: center;
  gap: 10px;
}

.review-visual span {
  width: min(230px, 100%);
  min-height: 44px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #c8c6d3;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px;
  background: rgba(255,255,255,.04);
  font-size: 12px;
}

.review-visual i {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--purple-bright), var(--cyan));
}

.review-visual b {
  font-weight: 500;
}

.apply-visual {
  padding: 22px;
  grid-template-columns: auto auto auto auto auto;
  gap: 8px;
}

.apply-visual span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: #cac8d6;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 17px;
  background: rgba(255,255,255,.045);
  font-size: 10px;
  font-weight: 750;
}

.apply-visual b {
  color: var(--purple-bright);
  font-size: 18px;
  font-weight: 400;
}

.how-demo {
  position: relative;
  z-index: 1;
  min-height: 520px;
  margin-top: 24px;
  padding: 54px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 30%, rgba(2, 167, 196, 0.16), transparent 32%),
    rgba(255,255,255,.035);
}

.how-demo h3 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 620;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.how-demo-copy > p:not(.section-label) {
  color: #9998a8;
  line-height: 1.65;
}

.inline-proof {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c6c5d2;
  font-size: 12px;
  font-weight: 700;
}

.inline-proof i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 18px rgba(46, 220, 244, 0.55);
}

.how-window {
  width: 118%;
  max-width: none;
  transform: perspective(1200px) rotateY(-7deg);
}

/* Product video */

.video-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(2,167,196,.15), transparent 28%),
    radial-gradient(circle at 16% 80%, rgba(168,85,247,.19), transparent 31%),
    #090a12;
}

.video-card {
  position: relative;
  padding: 26px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(20,16,39,.96), rgba(7,22,31,.96));
  box-shadow: 0 34px 100px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.08);
}

.video-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -260px;
  border: 1px solid rgba(168,85,247,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(168,85,247,.035), 0 0 0 160px rgba(2,167,196,.025);
  pointer-events: none;
}

.video-copy {
  position: relative;
  z-index: 1;
  padding: 26px 0 26px 28px;
}

.video-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(43px, 5vw, 70px);
  font-weight: 620;
}

.video-copy h2 em {
  color: #d0a0ed;
}

.video-copy > p:not(.section-label) {
  margin-bottom: 28px;
  color: #a7a5b5;
  line-height: 1.65;
}

.video-frame-shell {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: #05050a;
  box-shadow: 0 28px 70px rgba(0,0,0,.5), 0 0 54px rgba(168,85,247,.12);
}

.video-frame-shell iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Plans */

.plans {
  color: var(--text-dark);
  background: #f1efeb;
}

.plans-heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto 64px;
  text-align: center;
}

.plans-heading > p {
  max-width: 620px;
  margin: 24px auto 0;
}

.plans-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.plan-card {
  position: relative;
  min-height: 580px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16, 17, 26, 0.12);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 22px 60px rgba(50, 48, 42, 0.07);
}

.plan-card.is-featured {
  color: var(--text);
  border-color: rgba(192, 130, 235, 0.42);
  background:
    radial-gradient(circle at 80% 0%, rgba(2, 167, 196, 0.21), transparent 35%),
    radial-gradient(circle at 10% 80%, rgba(155, 89, 182, 0.22), transparent 37%),
    #0e0f19;
  box-shadow: 0 28px 80px rgba(22, 15, 35, 0.2), inset 0 1px 0 rgba(255,255,255,.09);
  transform: translateY(-12px);
}

.plan-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 7px 12px;
  color: var(--white);
  background: linear-gradient(90deg, var(--purple), var(--purple-bright));
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(109,40,217,.25);
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  white-space: nowrap;
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: none;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 26, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 9px 24px rgba(35, 33, 45, 0.08);
}

.plan-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(9, 10, 18, 0.16));
}

.is-featured .plan-logo {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.plan-tag {
  padding: 6px 8px;
  color: var(--purple-deep);
  border: 1px solid rgba(109,40,217,.17);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .08em;
}

.is-featured .plan-tag {
  color: #d4abea;
  border-color: rgba(168,85,247,.24);
}

.plan-card h3 {
  margin: 36px 0 8px;
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.plan-description {
  min-height: 68px;
  margin-bottom: 24px;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.55;
}

.is-featured .plan-description {
  color: #9998a8;
}

.plan-price {
  min-height: 58px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  border-bottom: 1px solid rgba(16,17,26,.1);
}

.is-featured .plan-price {
  border-color: rgba(255,255,255,.1);
}

.plan-price strong {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.05em;
}

.plan-price span {
  padding-bottom: 4px;
  color: #7a7884;
  font-size: 10px;
}

.plan-card ul {
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 22px;
  color: #4f515c;
  font-size: 11px;
  line-height: 1.4;
}

.is-featured li {
  color: #b4b2c0;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  color: var(--purple-deep);
  border: 1px solid rgba(109,40,217,.22);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 850;
}

.is-featured li::before {
  color: #d8b7ed;
  border-color: rgba(168,85,247,.32);
}

.button-plan {
  width: 100%;
  margin-top: auto;
  min-height: 48px;
  color: var(--text-dark);
  background: transparent;
  border-color: rgba(16,17,26,.18);
}

.button-plan:hover {
  background: rgba(16,17,26,.05);
  border-color: rgba(16,17,26,.3);
}

.button-plan-primary {
  color: var(--white);
  background: linear-gradient(135deg, #a95bdd, #7131bd);
  border-color: rgba(224,193,255,.3);
  box-shadow: 0 14px 36px rgba(109,40,217,.28);
}

.button-plan-primary:hover {
  background: linear-gradient(135deg, #b86de4, #7b38c7);
  border-color: rgba(224,193,255,.4);
}

.plans-note {
  position: relative;
  z-index: 1;
  margin: 36px 0 0;
  color: var(--muted-dark);
  font-size: 13px;
  text-align: center;
}

.plans-note a {
  color: var(--purple-deep);
  font-weight: 750;
}

/* Reviews */

.reviews {
  color: var(--text-dark);
  background: #e8edf8;
}

.reviews-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.rating-summary {
  min-width: 240px;
  padding: 19px 22px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(16,17,26,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.56);
}

.rating-stars,
.review-card-top span {
  color: var(--purple-deep);
  font-size: 13px;
  letter-spacing: .08em;
}

.rating-summary strong {
  font-size: 18px;
}

.rating-summary small {
  color: var(--muted-dark);
}

.review-carousel {
  position: relative;
  z-index: 1;
  padding-bottom: 58px;
}

.review-viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.review-track {
  width: max-content;
  display: flex;
  gap: 16px;
  will-change: transform;
  animation: reviewMarquee 54s linear infinite;
}

.review-set {
  display: flex;
  gap: 16px;
}

.review-carousel:hover .review-track,
.review-carousel:focus-within .review-track,
.review-carousel.is-paused .review-track {
  animation-play-state: paused;
}

@keyframes reviewMarquee {
  to { transform: translateX(calc(-50% - 8px)); }
}

.review-card {
  width: clamp(300px, 30vw, 410px);
  flex: 0 0 auto;
  min-height: 330px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16,17,26,.11);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 20px 60px rgba(57, 65, 89, 0.07);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card-top i {
  padding: 6px 8px;
  color: var(--purple-deep);
  border: 1px solid rgba(109,40,217,.14);
  border-radius: 999px;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .08em;
}

.review-card blockquote {
  margin: 38px 0 34px;
  color: #242631;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.38;
  letter-spacing: -0.02em;
}

.review-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 11px;
}

.review-author .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8c5ee, #73ced9);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.5);
}

.review-author strong {
  font-size: 12px;
}

.review-placeholder {
  opacity: .7;
}

.carousel-toggle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--text-dark);
  border: 1px solid rgba(16,17,26,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.64);
  box-shadow: 0 12px 32px rgba(57,65,89,.09);
  cursor: pointer;
  transition: transform 220ms var(--ease), background 180ms ease;
}

.carousel-toggle:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255,255,255,.92);
}

.carousel-toggle-icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.carousel-toggle-icon::before,
.carousel-toggle-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  width: 3px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms var(--ease), clip-path 220ms var(--ease);
}

.carousel-toggle-icon::before { left: 2px; }
.carousel-toggle-icon::after { right: 2px; }

.review-carousel.is-paused .carousel-toggle-icon::before {
  inset: 0;
  width: 14px;
  clip-path: polygon(12% 0, 100% 50%, 12% 100%);
  transform: translateX(1px);
}

.review-carousel.is-paused .carousel-toggle-icon::after {
  opacity: 0;
}

/* FAQ */

.faq {
  color: var(--text-dark);
  background: #f4f1eb;
}

.faq-shell {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading > p {
  margin: 24px 0;
}

.faq-list {
  border-top: 1px solid rgba(16,17,26,.13);
}

.faq-item {
  border-bottom: 1px solid rgba(16,17,26,.13);
}

.faq-trigger {
  width: 100%;
  min-height: 92px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-dark);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -.02em;
  text-align: left;
}

.faq-icon {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16,17,26,.16);
  border-radius: 50%;
  transition: background 280ms var(--ease), border-color 280ms ease, transform 280ms var(--ease);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 280ms var(--ease);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon {
  color: var(--white);
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  transform: scale(1.03);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg) scaleX(0);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 420ms cubic-bezier(.2,.8,.2,1), opacity 260ms ease;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-panel > div {
  overflow: hidden;
}

.faq-panel p {
  max-width: 680px;
  margin: 0 0 30px;
  color: var(--muted-dark);
  line-height: 1.7;
}

/* Final CTA */

.final-cta {
  padding: 36px 0 100px;
  background: #f4f1eb;
}

.final-card {
  position: relative;
  min-height: 680px;
  padding: 90px 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 44px;
  background:
    radial-gradient(circle at 78% 38%, rgba(2, 167, 196, 0.27), transparent 30%),
    radial-gradient(circle at 20% 0%, rgba(155, 89, 182, 0.34), transparent 38%),
    linear-gradient(140deg, #0b0d1b, #15102b 58%, #071c27);
  box-shadow: 0 34px 100px rgba(18, 18, 27, 0.24), inset 0 1px 0 rgba(255,255,255,.1);
}

.final-copy {
  position: relative;
  z-index: 4;
  width: 58%;
}

.final-copy h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 620;
}

.final-copy > p:not(.section-label) {
  max-width: 520px;
  margin: 26px 0 0;
  color: #a9a8b7;
  font-size: 18px;
}

.final-copy .hero-actions {
  justify-content: flex-start;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(255,255,255,.9);
  box-shadow: 0 16px 44px rgba(255,255,255,.12);
}

.button-glass {
  color: var(--white);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.final-app {
  position: absolute;
  z-index: 3;
  width: 70%;
  height: 78%;
  right: -24%;
  bottom: -4%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(0,0,0,.58);
  transform: perspective(1300px) rotateY(-11deg) rotateX(4deg) rotateZ(-2deg);
}

.final-app img {
  position: absolute;
  width: 225%;
  max-width: none;
  left: -35%;
  top: -8%;
  display: block;
}

.final-glow {
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 70%;
  height: 80%;
  border-radius: 50%;
  background: rgba(2, 167, 196, 0.26);
  filter: blur(100px);
}

.final-stars {
  opacity: .5;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.7) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(175,115,231,.6) 0 1px, transparent 1.6px);
  background-size: 131px 131px, 219px 219px;
  background-position: 18px 28px, 90px 74px;
}

.final-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.final-orbit-one {
  width: 640px;
  height: 640px;
  right: -180px;
  top: -260px;
}

.final-orbit-two {
  width: 420px;
  height: 420px;
  right: 50px;
  bottom: -240px;
}

/* Footer */

.site-footer {
  padding: 76px 0 28px;
  background: #080912;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-shell {
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 54px;
}

.footer-brand-column > p {
  max-width: 260px;
  margin: 18px 0 22px;
  color: #858596;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #aaa8b8;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 10px;
  background: rgba(255,255,255,.035);
  font-size: 10px;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-socials img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.6);
  opacity: .76;
  transition: filter 220ms ease, opacity 220ms ease, transform 260ms var(--ease);
}

.footer-socials a:hover {
  color: var(--white);
  border-color: rgba(168,85,247,.38);
  background: rgba(168,85,247,.12);
}

.footer-socials a:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.08) rotate(-4deg);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 12px;
}

.footer-column a {
  width: max-content;
  max-width: 100%;
  color: #858596;
  font-size: 12px;
  transition: color 180ms ease;
}

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

.footer-link-button {
  width: max-content;
  max-width: 100%;
  padding: 0;
  color: #858596;
  background: transparent;
  font-size: 12px;
  text-align: left;
  transition: color 180ms ease;
}

.footer-link-button:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: #686878;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
}

.private-preview {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.private-preview i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(55,217,150,.4);
}

/* Account modal */

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.auth-modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.auth-modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 12, .68);
  -webkit-backdrop-filter: blur(18px) saturate(.8);
  backdrop-filter: blur(18px) saturate(.8);
}

.auth-dialog {
  position: relative;
  width: min(1040px, 100%);
  min-height: 720px;
  max-height: min(860px, calc(100vh - 32px));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(470px, 1.18fr);
  color: var(--text);
  border: 1px solid rgba(178,186,229,.22);
  border-radius: 28px;
  background: #080a17;
  box-shadow: 0 40px 120px rgba(0,0,0,.66), inset 0 1px 0 rgba(255,255,255,.08);
  transform: translateY(18px) scale(.98);
  transition: transform 320ms var(--ease);
}

.auth-modal[aria-hidden="false"] .auth-dialog {
  transform: translateY(0) scale(1);
}

.auth-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.05);
  cursor: pointer;
  z-index: 4;
}

.auth-close span {
  position: absolute;
  left: 12px;
  top: 19px;
  width: 15px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.auth-close span:last-child { transform: rotate(-45deg); }

.auth-side {
  position: relative;
  min-width: 0;
  padding: 38px 34px 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(181,163,232,.16);
  background:
    linear-gradient(155deg, rgba(57,37,91,.97) 0%, rgba(24,28,50,.98) 48%, rgba(7,47,61,.96) 100%);
}

.auth-side::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 72%);
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.auth-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.auth-brand img { border-radius: 10px; }

.auth-side-core {
  position: relative;
  z-index: 1;
  margin: auto 0;
  padding: 30px 24px;
  border: 1px solid rgba(203,180,255,.18);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(59,45,86,.68), rgba(9,54,68,.6));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055);
}

.auth-side-core .section-label { margin-bottom: 14px; color: #d9b9ff; }
.auth-side-core h3 { margin: 0; font-size: clamp(38px, 4vw, 54px); line-height: .98; letter-spacing: -.055em; }
.auth-side-core > p:last-child { max-width: 280px; margin: 18px 0 0; color: #a9abc0; font-size: 13px; line-height: 1.55; }

.auth-steps {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.auth-steps li {
  min-height: 55px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px;
  background: rgba(255,255,255,.035);
}

.auth-steps span { color: #d2adfa; font-size: 11px; font-weight: 850; }
.auth-steps strong { color: #f0eff7; font-size: 12px; }
.auth-side-glow { position: absolute; right: -110px; bottom: -120px; width: 360px; height: 360px; border-radius: 50%; background: rgba(10,188,212,.18); filter: blur(70px); }

.auth-workspace {
  min-width: 0;
  padding: 54px 44px 38px;
  overflow: auto;
  background:
    radial-gradient(circle at 100% 100%, rgba(17,179,203,.1), transparent 34%),
    radial-gradient(circle at 0 0, rgba(128,70,196,.1), transparent 38%),
    #080a17;
}

.auth-tabs {
  width: min(370px, calc(100% - 54px));
  margin: 0 0 50px;
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}

.auth-tabs button {
  min-height: 39px;
  border: 0;
  border-radius: 999px;
  color: #858596;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.auth-tabs button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, rgba(163,91,226,.72), rgba(71,78,165,.55));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.auth-tabs.is-hidden {
  display: none;
}

.auth-heading h2,
.auth-success h2 {
  margin: 0 0 10px;
  font-size: clamp(42px, 5.4vw, 60px);
  font-weight: 650;
  letter-spacing: -.055em;
}

.auth-heading > p:last-child,
.auth-success p {
  margin-bottom: 30px;
  color: #9a99aa;
}

.auth-form { display: grid; gap: 16px; }

.auth-form label:not(.auth-check) {
  display: grid;
  gap: 7px;
  color: #c9c7d4;
  font-size: 12px;
  font-weight: 700;
}

.auth-form input:not([type="checkbox"]) {
  width: 100%;
  height: 55px;
  padding: 0 15px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  outline: 0;
  background: rgba(255,255,255,.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.auth-form input:focus {
  border-color: rgba(168,85,247,.72);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 4px rgba(168,85,247,.12);
}

.auth-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-field-hint { color: #77798d; font-size: 10px; font-weight: 550; line-height: 1.45; }
.password-field { position: relative; display: block; }
.password-field input { padding-right: 52px !important; }
.password-field button {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.password-field i {
  position: absolute;
  inset: 12px 9px;
  border: 1.5px solid #898899;
  border-radius: 50% 50% 45% 45%;
}

.password-field i::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #898899;
  transform: translate(-50%, -50%);
}

.password-field button.is-visible i::before {
  content: "";
  position: absolute;
  left: -3px; top: 6px;
  width: 25px; height: 1.5px;
  background: #898899;
  transform: rotate(-35deg);
}

.auth-form-row { display: flex; justify-content: flex-end; margin-top: -5px; }
.auth-form-row button, .auth-check a { color: #c58fe7; text-decoration: underline; text-underline-offset: 3px; }
.auth-form-row button { padding: 0; border: 0; background: transparent; cursor: pointer; font: inherit; font-size: 12px; }

.auth-back {
  width: max-content;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #aaa8b8;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.auth-back:hover { color: var(--white); }
.auth-forgot-note { margin: -3px 0 4px; color: #777687; font-size: 11px; line-height: 1.55; }
.auth-forgot-success { padding: 18px; border: 1px solid rgba(55,217,150,.25); border-radius: 15px; color: #b8f2d7; background: rgba(55,217,150,.08); font-size: 13px; line-height: 1.6; }

.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #a9a7b6;
  font-size: 12px;
  cursor: pointer;
}

.auth-check input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--purple-bright); }

.auth-submit {
  min-height: 55px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, #a65ae2, #7024dc 58%, #163b8c);
  box-shadow: 0 14px 36px rgba(109,40,217,.26), inset 0 1px 0 rgba(255,255,255,.25);
  cursor: pointer;
  font-weight: 800;
}

.auth-submit:disabled { cursor: wait; opacity: .65; }
.auth-error { padding: 11px 13px; border: 1px solid rgba(255,104,132,.35); border-radius: 12px; color: #ffb6c4; background: rgba(255,74,109,.09); font-size: 12px; }
.auth-socials { margin-top: 24px; text-align: center; }
.auth-socials > span { color: #707080; font-size: 11px; }
.auth-socials > div { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.auth-socials a { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; color: #e1dfea; background: rgba(255,255,255,.045); font-size: 12px; font-weight: 750; }
.auth-socials a:hover { border-color: rgba(196,150,238,.35); background: rgba(255,255,255,.075); }
.auth-socials img { width: 19px; height: 19px; object-fit: contain; }
.auth-success { padding: 54px 12px 26px; text-align: center; }
.auth-success-mark { width: 70px; height: 70px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--green); box-shadow: 0 0 45px rgba(55,217,150,.3); font-size: 28px; font-weight: 900; }
.auth-success .auth-submit { width: 100%; justify-content: center; }

/* Non-blocking cookie controls */

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 180;
  width: min(720px, calc(100% - 36px));
  padding: 14px;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 14px;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(10,11,21,.9);
  box-shadow: 0 24px 70px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  backdrop-filter: blur(22px) saturate(1.25);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 240ms ease, transform 300ms var(--ease);
}

.cookie-banner.is-visible { opacity: 1; transform: translateY(0); }
.cookie-mark { position: relative; width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(135deg, rgba(168,85,247,.3), rgba(2,167,196,.22)); }
.cookie-mark i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: #d3a7f1; }
.cookie-mark i:nth-child(1) { left: 10px; top: 11px; }
.cookie-mark i:nth-child(2) { left: 22px; top: 10px; }
.cookie-mark i:nth-child(3) { left: 17px; top: 23px; }
.cookie-copy strong { display: block; margin-bottom: 2px; font-size: 13px; }
.cookie-copy p { margin: 0; color: #9796a7; font-size: 11px; line-height: 1.45; }
.cookie-copy a { color: #d5b2ed; text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-height: 40px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: #c7c5d2; background: rgba(255,255,255,.04); cursor: pointer; font-size: 11px; font-weight: 800; white-space: nowrap; }
.cookie-actions button.is-primary { color: var(--white); border-color: rgba(168,85,247,.4); background: linear-gradient(135deg, #9a55d7, #6423d2); }
.cookie-settings-control { position: fixed; left: 14px; bottom: 14px; z-index: 90; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; color: #a9a7b6; background: rgba(10,11,21,.8); box-shadow: 0 12px 32px rgba(0,0,0,.3); backdrop-filter: blur(14px); cursor: pointer; }
.cookie-settings-control > span { position: relative; width: 100%; height: 100%; display: block; }
.cookie-settings-control i { position: absolute; left: 11px; right: 11px; height: 1.5px; background: currentColor; }
.cookie-settings-control i:nth-child(1) { top: 13px; }
.cookie-settings-control i:nth-child(2) { top: 20px; }
.cookie-settings-control i:nth-child(3) { top: 27px; }
.cookie-settings-control i::after { content: ""; position: absolute; top: -2px; width: 5px; height: 5px; border: 1.5px solid currentColor; border-radius: 50%; background: #0b0c16; }
.cookie-settings-control i:nth-child(1)::after { left: 3px; }
.cookie-settings-control i:nth-child(2)::after { right: 2px; }
.cookie-settings-control i:nth-child(3)::after { left: 7px; }

/* Full FAQ */

.faq-page-hero {
  position: relative;
  min-height: 690px;
  padding: 180px 0 90px;
  overflow: hidden;
  color: var(--text-dark);
  background:
    linear-gradient(rgba(98,76,126,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98,76,126,.055) 1px, transparent 1px),
    #f3f1ed;
  background-size: 34px 34px;
}

.faq-page-glow { position: absolute; width: 700px; height: 430px; left: 50%; top: 90px; border-radius: 50%; background: radial-gradient(circle, rgba(179,126,227,.25), rgba(69,193,219,.11) 45%, transparent 70%); filter: blur(30px); transform: translateX(-50%); }
.faq-page-hero-shell { position: relative; text-align: center; }
.faq-page-hero h1 { max-width: 900px; margin: 0 auto; font-size: clamp(66px, 9vw, 122px); font-weight: 680; }
.faq-page-hero h1 em { color: var(--purple-deep); }
.faq-page-hero-shell > p:not(.section-label) { max-width: 660px; margin: 30px auto 38px; color: #5f6170; font-size: 18px; }
.faq-search { position: relative; width: min(720px, 100%); margin: 0 auto; display: block; }
.faq-search input { width: 100%; height: 66px; padding: 0 24px 0 58px; color: var(--text-dark); border: 1px solid rgba(16,17,26,.14); border-radius: 999px; outline: 0; background: rgba(255,255,255,.8); box-shadow: 0 18px 55px rgba(44,34,60,.09), inset 0 1px 0 #fff; font-size: 15px; }
.faq-search input:focus { border-color: rgba(109,40,217,.48); box-shadow: 0 18px 55px rgba(44,34,60,.1), 0 0 0 5px rgba(109,40,217,.08); }
.faq-search-icon { position: absolute; z-index: 1; left: 24px; top: 22px; width: 19px; height: 19px; border: 2px solid #696979; border-radius: 50%; }
.faq-search-icon::after { content: ""; position: absolute; right: -6px; bottom: -4px; width: 8px; height: 2px; border-radius: 999px; background: #696979; transform: rotate(45deg); }
.faq-filters { margin-top: 18px; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.faq-filters button { min-height: 38px; padding: 8px 15px; border: 1px solid rgba(16,17,26,.12); border-radius: 999px; color: #656675; background: rgba(255,255,255,.48); cursor: pointer; font-size: 11px; font-weight: 800; }
.faq-filters button.is-active { color: #fff; border-color: var(--purple-deep); background: var(--purple-deep); box-shadow: 0 10px 24px rgba(109,40,217,.2); }
.faq-page-content { color: var(--text-dark); background: #f3f1ed; }
.faq-page-layout { display: grid; grid-template-columns: minmax(270px, .68fr) minmax(0, 1.32fr); align-items: start; gap: 60px; }
.faq-support-card { position: sticky; top: 115px; padding: 34px; overflow: hidden; border: 1px solid rgba(16,17,26,.12); border-radius: 28px; background: rgba(255,255,255,.68); box-shadow: 0 24px 65px rgba(42,47,69,.07); }
.faq-support-card h2 { position: relative; margin: 0 0 16px; font-size: 42px; font-weight: 640; letter-spacing: -.055em; line-height: 1; }
.faq-support-card > p:not(.section-label) { position: relative; color: #666978; }
.faq-support-card > div { position: relative; display: grid; gap: 9px; }
.faq-support-card .button { width: 100%; }
.faq-support-card .button-ghost { color: var(--text-dark); border-color: rgba(16,17,26,.12); }
.faq-support-orb { position: absolute; right: -30px; top: -50px; width: 180px; height: 180px; display: grid; place-items: center; border-radius: 50%; color: rgba(109,40,217,.11); background: radial-gradient(circle, rgba(168,85,247,.18), transparent 70%); font: 700 100px/1 Georgia, serif; }
.faq-page-list .faq-item { border-color: rgba(16,17,26,.14); }
.faq-page-list .faq-trigger { color: var(--text-dark); }
.faq-page-list .faq-icon { color: var(--text-dark); border-color: rgba(16,17,26,.15); background: rgba(255,255,255,.5); }
.faq-page-list .faq-panel p { color: #656876; }
.faq-page-list .faq-item.is-open .faq-icon { color: #fff; }
.faq-empty { padding: 30px; color: #666978; border: 1px dashed rgba(16,17,26,.18); border-radius: 20px; text-align: center; }
.faq-page-cta { padding-top: 0; color: var(--text); background: #f3f1ed; }
.faq-final-card { min-height: 520px; }

/* Responsive */

@media (max-width: 1100px) {
  .nav-links a {
    padding-inline: 9px;
  }

  .hero-world {
    min-height: 600px;
    padding-inline: 42px;
  }

  .floating-chip {
    display: none;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .proof-intro {
    text-align: center;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .plan-card.is-featured {
    transform: none;
  }

  .plan-card {
    min-height: 550px;
  }

  .final-app {
    right: -34%;
  }
}

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

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    display: grid;
    position: absolute;
    top: calc(100% + 10px);
    left: auto;
    right: 0;
    width: min(430px, calc(100vw - 20px));
    padding: 10px;
    grid-template-columns: 1fr;
    gap: 4px;
    visibility: hidden;
    opacity: 0;
    background:
      radial-gradient(circle at 85% 0, rgba(46,220,244,.1), transparent 36%),
      radial-gradient(circle at 12% 10%, rgba(168,85,247,.15), transparent 42%),
      rgba(8, 9, 18, 0.96);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 250ms var(--ease), visibility 220ms;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links > a {
    min-height: 68px;
    padding: 11px 12px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 10px;
    color: #ebe9f2;
    border: 1px solid transparent;
    border-radius: 17px;
    background: transparent;
    text-align: left;
  }

  .nav-links > a:hover,
  .nav-links > a:focus-visible {
    border-color: rgba(255,255,255,.09);
    background: rgba(255,255,255,.055);
  }

  .nav-menu-index {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #b47be6;
    border: 1px solid rgba(168,85,247,.18);
    border-radius: 10px;
    background: rgba(168,85,247,.075);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
  }

  .nav-menu-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
  }

  .nav-menu-copy strong {
    color: #efedf6;
    font-size: 13px;
    font-weight: 800;
  }

  .nav-menu-copy small {
    display: block;
    color: #777687;
    font-size: 10px;
    font-weight: 600;
  }

  .nav-links > a > i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    justify-self: end;
    color: #777687;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    font-size: 11px;
    font-style: normal;
  }

  .nav-menu-meta {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 5px;
    padding: 10px 4px 2px;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .nav-menu-meta a,
  .nav-menu-meta button {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d2cfdd;
    border: 1px solid rgba(168,85,247,.19);
    border-radius: 14px;
    background: rgba(168,85,247,.07);
    font-size: 12px;
    font-weight: 750;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    align-content: center;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-login {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-world {
    min-height: 510px;
    padding: 90px 22px 0;
    border-radius: 38px 38px 0 0;
  }

  .hero-app {
    margin-bottom: -40px;
  }

  .section-heading,
  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .section-heading > p {
    max-width: 600px;
  }

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

  .product-stage-copy {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 26px;
  }

  .product-detail {
    padding-top: 10px;
  }

  .product-window {
    width: 108%;
    margin-right: -8%;
    transform: perspective(1300px) rotateY(-4deg);
  }

  .faq-page-layout {
    grid-template-columns: 1fr;
  }

  .faq-support-card {
    position: relative;
    top: auto;
  }

  .benefit-card-wide {
    grid-template-columns: 1fr;
    min-height: 760px;
  }

  .benefit-card-media {
    min-height: 390px;
  }

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

  .step-card {
    min-height: auto;
    display: grid;
    grid-template-columns: 52px 240px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 10px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-card:last-child {
    border-bottom: 0;
  }

  .step-number {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .step-visual {
    grid-column: 2;
    grid-row: 1 / 3;
    min-height: 190px;
    margin: 0;
  }

  .step-card h3 {
    grid-column: 3;
    align-self: end;
    margin: 0;
  }

  .step-card > p {
    grid-column: 3;
    align-self: start;
  }

  .how-demo {
    grid-template-columns: 1fr;
  }

  .how-window {
    width: 110%;
  }

  .video-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .video-copy {
    padding: 34px 20px 22px;
  }

  .review-card {
    min-height: 260px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .faq-heading {
    position: static;
  }

  .final-card {
    min-height: 820px;
    align-items: flex-start;
  }

  .final-copy {
    width: 100%;
  }

  .final-app {
    width: 100%;
    height: 52%;
    right: -10%;
    bottom: -5%;
  }
}

@media (max-width: 680px) {
  .how {
    overflow: visible;
  }

  .page-shell {
    width: min(100% - 28px, var(--shell));
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    top: 10px;
  }

  .nav-shell,
  .site-header.is-scrolled .nav-shell {
    width: calc(100% - 20px);
    min-height: 60px;
    padding: 7px 8px 7px 12px;
    gap: 9px;
  }

  .nav-links {
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
  }

  .brand span {
    display: none;
  }

  .language-option {
    min-width: 30px;
    height: 28px;
    padding-inline: 6px;
  }

  .nav-actions .button {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .nav-actions .button-arrow {
    display: none;
  }

  .nav-download-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .nav-download .download-icon {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .hero-copy {
    margin-bottom: 46px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 82px);
    line-height: .96;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 16px;
  }

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

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

  .hero-reassurance {
    gap: 10px 16px;
    flex-wrap: wrap;
  }

  .hero-world {
    min-height: 350px;
    padding: 62px 10px 0;
    border-radius: 28px 28px 0 0;
  }

  .hero-app {
    width: 140%;
    margin-left: -20%;
    border-radius: 12px;
  }

  .window-bar {
    height: 32px;
  }

  .proof-strip {
    padding-top: 30px;
  }

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

  .proof-items span {
    min-height: 34px;
    font-size: 10px;
  }

  .manifesto {
    min-height: 650px;
  }

  .manifesto h2,
  .section-heading h2,
  .plans-heading h2,
  .reviews-heading h2,
  .faq-heading h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .manifesto-map {
    height: 230px;
    margin-top: 30px;
  }

  .map-label {
    font-size: 8px;
  }

  .label-one { left: 0; }
  .label-two { right: 0; }
  .label-three { left: 6%; }
  .label-four { right: 5%; }

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

  .section-heading > p,
  .plans-heading > p,
  .faq-heading > p {
    font-size: 15px;
  }

  .product-stage {
    min-height: 650px;
    padding: 16px;
    border-radius: 26px;
  }

  .product-stage-copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .product-tab {
    min-height: 58px;
    padding: 11px;
    gap: 8px;
    font-size: 11px;
  }

  .product-detail h3 {
    font-size: 32px;
  }

  .product-visual {
    min-height: 270px;
    margin: 0 -16px -16px;
    padding: 20px 0 0;
    overflow: hidden;
  }

  .product-window {
    width: 120%;
    margin: 0 -10%;
    transform: none;
    border-radius: 14px;
  }

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

  .benefit-card,
  .benefit-card-wide {
    grid-column: auto;
    min-height: 520px;
    padding: 26px;
    border-radius: 24px;
  }

  .benefit-card-wide {
    min-height: 680px;
  }

  .benefit-card h3 {
    font-size: 40px;
  }

  .benefit-card-media {
    min-height: 240px;
    overflow: hidden;
    border-radius: 18px;
  }

  .benefit-games img {
    position: absolute;
    width: 350%;
    left: -52%;
    top: 0;
    transform: none;
  }

  .mini-scan {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .mini-scan {
    gap: 20px;
    padding: 18px;
  }

  .scan-ring {
    width: 96px;
    height: 96px;
  }

  .steps-grid {
    display: block;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .step-card {
    position: sticky;
    top: 88px;
    min-height: 590px;
    margin-bottom: 24vh;
    padding: 24px;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 26px;
    background:
      radial-gradient(circle at 70% 8%, rgba(168,85,247,.18), transparent 35%),
      #0d0e1a;
    box-shadow: 0 -8px 32px rgba(0,0,0,.28), 0 34px 70px rgba(0,0,0,.44);
  }

  .step-card:nth-child(1) { z-index: 1; }
  .step-card:nth-child(2) { z-index: 2; top: 102px; background: radial-gradient(circle at 25% 5%, rgba(2,167,196,.15), transparent 36%), #10111e; }
  .step-card:nth-child(3) { z-index: 3; top: 116px; margin-bottom: 0; background: radial-gradient(circle at 75% 3%, rgba(210,71,168,.15), transparent 38%), #12121f; }

  .step-number {
    display: block;
  }

  .step-visual {
    min-height: 220px;
    margin: 20px 0 28px;
  }

  .step-card h3 {
    margin-bottom: 10px;
  }

  .how-demo {
    min-height: 650px;
    padding: 28px 22px;
    border-radius: 26px;
  }

  .how-demo h3 {
    font-size: 40px;
  }

  .how-window {
    width: 118%;
    margin: 18px -9% -28px;
    transform: none;
    border-radius: 14px;
  }

  .video-section {
    padding-top: 22px;
  }

  .video-card {
    padding: 12px;
    border-radius: 26px;
  }

  .video-copy {
    padding: 30px 12px 20px;
  }

  .video-copy h2 {
    font-size: 43px;
  }

  .video-frame-shell {
    border-radius: 18px;
  }

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

  .plan-card {
    min-height: auto;
    padding: 25px 22px;
  }

  .plan-description {
    min-height: 0;
  }

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

  .rating-summary {
    min-width: 0;
  }

  .review-card blockquote {
    font-size: 21px;
  }

  .faq-trigger {
    min-height: 78px;
    font-size: 16px;
  }

  .final-cta {
    padding: 10px 0 68px;
  }

  .final-card {
    min-height: 760px;
    padding: 62px 24px;
    border-radius: 30px;
  }

  .final-copy h2 {
    font-size: 56px;
  }

  .final-app {
    width: 150%;
    height: 46%;
    right: -64%;
    bottom: 0;
    transform: rotate(-3deg);
  }

  .final-app img {
    width: 340%;
    left: -58%;
    top: -10%;
  }

  .footer-shell {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 26px;
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }

  .footer-brand-column .brand span {
    display: inline;
  }

  .footer-bottom {
    gap: 15px;
    flex-direction: column;
  }

  .auth-modal {
    padding: 10px;
    align-items: end;
  }

  .auth-dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
    min-height: 0;
    display: block;
    border-radius: 28px;
  }

  .auth-side { display: none; }
  .auth-workspace { max-height: calc(100dvh - 20px); padding: 24px 18px 20px; }
  .auth-tabs { width: calc(100% - 52px); margin: 0 0 32px; }
  .auth-heading h2, .auth-success h2 { font-size: 40px; }
  .auth-field-grid { grid-template-columns: 1fr; }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    grid-template-columns: auto 1fr;
    gap: 10px;
    border-radius: 18px;
  }

  .cookie-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions button { min-height: 42px; }
  .cookie-settings-control { left: 10px; bottom: 10px; }

  .faq-page-hero {
    min-height: 620px;
    padding: 138px 0 70px;
  }

  .faq-page-hero h1 { font-size: clamp(52px, 15vw, 74px); }
  .faq-page-hero-shell > p:not(.section-label) { margin-top: 24px; font-size: 16px; }
  .faq-search input { height: 58px; padding-left: 52px; font-size: 13px; }
  .faq-search-icon { left: 22px; top: 19px; }
  .faq-page-layout { gap: 30px; }
  .faq-support-card { padding: 26px; }
  .faq-support-card h2 { font-size: 36px; }
  .faq-page-list .faq-trigger { padding-inline: 4px; }
  .faq-final-card { min-height: 560px; }
}

@media (max-width: 420px) {
  .nav-shell,
  .site-header.is-scrolled .nav-shell {
    gap: 6px;
    padding-left: 9px;
  }

  .brand img { width: 32px; height: 32px; }
  .language-switcher { padding: 2px; }
  .language-option { min-width: 27px; padding-inline: 4px; }
  .nav-actions { gap: 3px; }
  .nav-toggle, .nav-actions .button { width: 42px; height: 42px; min-width: 42px; min-height: 42px; }

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

  .product-tab {
    min-height: 48px;
  }

  .mini-scan {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .scan-lines {
    width: 100%;
  }

  .cookie-mark { display: none; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { grid-column: 1; }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

  .review-track {
    animation: none;
  }

  .review-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .review-card {
    scroll-snap-align: start;
  }
}
