@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  color-scheme: dark;
  --bg: #05050a;
  --bg-soft: #090911;
  --surface: rgba(18, 17, 29, 0.74);
  --surface-strong: rgba(25, 23, 40, 0.92);
  --surface-muted: rgba(255, 255, 255, 0.045);
  --text: #f7f5ff;
  --text-soft: #b7b3c9;
  --text-muted: #858097;
  --accent: #a855f7;
  --accent-2: #6366f1;
  --cyan: #54dce2;
  --gold: #efbe67;
  --danger: #ff6d8b;
  --border: rgba(195, 181, 255, 0.15);
  --border-strong: rgba(196, 177, 255, 0.28);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --glow: 0 0 70px rgba(120, 80, 220, 0.2);
  --gradient: linear-gradient(135deg, var(--accent), var(--accent-2));
  --gradient-cool: linear-gradient(135deg, #b264ff 0%, #725ef7 58%, #3cbecb 125%);
  --container: min(1180px, calc(100% - 40px));
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 6%, rgba(100, 55, 200, 0.14), transparent 29rem),
    radial-gradient(circle at 12% 36%, rgba(46, 173, 188, 0.055), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(168, 85, 247, 0.46);
  color: #fff;
}

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

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

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

a {
  color: inherit;
}

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

p:last-child {
  margin-bottom: 0;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.particle-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.reading-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--gradient-cool);
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition:
    padding 260ms var(--ease),
    background-color 260ms ease,
    border-color 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  padding: 11px 0;
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(5, 5, 10, 0.74);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 9px 18px rgba(47, 196, 204, 0.14));
}

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

.site-nav a:not(.button) {
  position: relative;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 550;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gradient);
  content: '';
  transition: transform 200ms var(--ease);
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: var(--text);
}

.site-nav a:not(.button):hover::after,
.site-nav a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

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

.menu-toggle {
  position: relative;
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: currentColor;
  content: '';
  transition:
    top 220ms var(--ease),
    transform 220ms var(--ease),
    opacity 180ms ease;
}

.menu-toggle::before {
  top: calc(50% - 6px);
}

.menu-toggle span {
  top: 50%;
}

.menu-toggle::after {
  top: calc(50% + 6px);
}

.menu-toggle[aria-expanded='true'] span {
  opacity: 0;
}

.menu-toggle[aria-expanded='true']::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle[aria-expanded='true']::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    opacity 220ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button--primary {
  background: var(--gradient);
  box-shadow: 0 16px 36px rgba(114, 75, 230, 0.27);
}

.button--primary:hover {
  box-shadow: 0 20px 46px rgba(123, 78, 242, 0.38);
}

.button--ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.button--ghost:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.075);
}

.button--compact {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 12px;
}

.button--store {
  min-height: 58px;
  justify-content: flex-start;
  padding: 9px 19px;
  border-radius: 17px;
}

.button--store svg {
  flex: 0 0 auto;
}

.store-button-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.store-button-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.store-button-copy strong {
  font-size: 14px;
  line-height: 1.1;
}

.button[aria-disabled='true'],
.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.button[aria-disabled='true'] {
  position: relative;
}

.button[aria-disabled='true']::after {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #171421;
  color: #c9c2da;
  content: 'Coming soon';
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9d2ed;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 12px;
  color: #fff;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

:focus-visible {
  outline: 3px solid rgba(92, 220, 226, 0.7);
  outline-offset: 4px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 920px;
  align-items: center;
  overflow: hidden;
  padding: 152px 0 105px;
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 5%;
  left: 54%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 75, 221, 0.18), rgba(5, 5, 10, 0) 68%);
  content: '';
  filter: blur(8px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 0.78fr);
}

.hero-copy {
  padding-top: 6px;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 6vw, 6.35rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.96;
  text-wrap: balance;
}

.gradient-text {
  background: linear-gradient(100deg, #fff 0%, #e7ddff 42%, #a992ff 72%, #6ce5e7 118%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 590px;
  margin-bottom: 33px;
  color: var(--text-soft);
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  line-height: 1.72;
}

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

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 550;
}

.hero-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(84, 220, 226, 0.8);
}

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

.phone-stage::before {
  position: absolute;
  width: 92%;
  height: 72%;
  border: 1px solid rgba(141, 109, 237, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 69, 214, 0.12), transparent 67%);
  content: '';
  filter: blur(12px);
}

.phone-scene {
  --scene-x: 0deg;
  --scene-y: 0deg;
  position: relative;
  width: min(370px, 78vw);
  transform: rotateY(var(--scene-x)) rotateX(var(--scene-y));
  transform-style: preserve-3d;
  transition: transform 420ms var(--ease);
}

.real-screen-fan {
  width: min(590px, 46vw);
  height: 660px;
}

.real-device {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 36px;
  background: #fff;
  box-shadow:
    0 45px 95px rgba(0, 0, 0, 0.54),
    0 0 0 8px rgba(21, 19, 31, 0.9),
    0 0 70px rgba(103, 67, 210, 0.16);
  transform-style: preserve-3d;
}

.real-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.real-device--main {
  z-index: 3;
  top: 3px;
  left: 50%;
  width: 300px;
  height: 648px;
  transform: translateX(-50%) translateZ(54px);
}

.real-device--left,
.real-device--right {
  z-index: 1;
  top: 88px;
  width: 232px;
  height: 515px;
  opacity: 0.76;
}

.real-device--left {
  left: -7px;
  transform: rotate(-8deg) translateZ(5px);
}

.real-device--right {
  right: -7px;
  transform: rotate(8deg) translateZ(5px);
}

.real-device--left::after,
.real-device--right::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 10, 0.32), transparent 60%);
  content: '';
  pointer-events: none;
}

.real-device--right::after {
  background: linear-gradient(-90deg, rgba(5, 5, 10, 0.32), transparent 60%);
}

.phone {
  position: relative;
  z-index: 3;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 48px;
  background: linear-gradient(145deg, rgba(65, 60, 84, 0.84), rgba(12, 12, 19, 0.98));
  box-shadow:
    0 60px 110px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(115, 83, 197, 0.11),
    0 0 85px rgba(94, 58, 189, 0.22);
}

.phone::before {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 50%;
  width: 84px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #05050a;
  content: '';
}

.phone-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  border-radius: 39px;
  background: #f9f9fb;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.floating-card {
  position: absolute;
  z-index: 5;
  border: 1px solid var(--border-strong);
  background: rgba(18, 16, 30, 0.83);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  backdrop-filter: blur(24px) saturate(1.25);
  transform: translateZ(48px);
}

.floating-card--shuffle {
  top: 17%;
  left: -39%;
  width: 190px;
  padding: 14px;
  border-radius: 20px;
}

.floating-card--story {
  right: -31%;
  bottom: 17%;
  width: 172px;
  padding: 12px;
  border-radius: 22px;
}

.float-label {
  margin-bottom: 9px;
  color: #aaa1c4;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.float-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(182, 157, 255, 0.34);
  border-radius: 50%;
  background: linear-gradient(145deg, #5c4c91, #29213f);
  color: #d5c9ff;
  font-size: 18px;
  font-weight: 800;
}

.float-profile strong {
  display: block;
  font-size: 12px;
  letter-spacing: -0.02em;
}

.float-profile small {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 9px;
}

.float-story-image {
  position: relative;
  overflow: hidden;
  height: 154px;
  border-radius: 15px;
  background:
    linear-gradient(to top, rgba(7, 5, 16, 0.94), transparent 62%),
    url('../assets/screens/stories.webp') center 45% / 250% auto;
}

.float-story-copy {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
}

.float-story-copy strong {
  display: block;
  font-size: 11px;
}

.float-story-copy small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 8px;
}

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

.section--tight {
  padding-block: 92px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.final-cta h2,
.legal-hero h1,
.creator-intro h1 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 4.7vw, 4.7rem);
  font-weight: 740;
  letter-spacing: -0.062em;
  line-height: 1.01;
  text-wrap: balance;
}

.section-heading p,
.split-copy > p,
.final-cta > p,
.creator-intro > p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
}

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

.feature-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(12, 11, 20, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    transform 350ms var(--ease),
    border-color 300ms ease,
    background-color 300ms ease;
}

.feature-card::after {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 84, 229, 0.13), transparent 68%);
  content: '';
  pointer-events: none;
  right: -70px;
  bottom: -85px;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background-color: rgba(18, 16, 29, 0.92);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid rgba(184, 158, 255, 0.19);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(145, 99, 239, 0.17), rgba(55, 176, 185, 0.06));
  color: #c7b4ff;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.feature-card h3 {
  margin-bottom: 11px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.feature-card p {
  max-width: 29ch;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.72;
}

.feature-card--chat {
  background:
    linear-gradient(160deg, rgba(93, 56, 176, 0.11), transparent 60%),
    rgba(12, 11, 20, 0.82);
}

.mini-bubbles {
  position: absolute;
  top: 30px;
  right: 25px;
  display: grid;
  width: 92px;
  gap: 7px;
}

.mini-bubbles span {
  height: 22px;
  border-radius: 11px 11px 11px 4px;
  background: rgba(255, 255, 255, 0.07);
}

.mini-bubbles span:nth-child(2) {
  width: 78%;
  margin-left: auto;
  border-radius: 11px 11px 4px;
  background: linear-gradient(135deg, #a25cf0, #6b61eb);
}

.real-app-showcase {
  padding-top: 136px;
}

.real-screen-grid {
  display: grid;
  align-items: start;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.real-screen-card {
  min-width: 0;
}

.real-screen-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.38);
  transition:
    transform 360ms var(--ease),
    border-color 250ms ease,
    box-shadow 300ms ease;
}

.real-screen-frame::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 18%;
  background: linear-gradient(to top, rgba(5, 5, 10, 0.44), transparent);
  content: '';
  pointer-events: none;
}

.real-screen-card:hover .real-screen-frame {
  transform: translateY(-8px);
  border-color: rgba(190, 166, 255, 0.31);
  box-shadow: 0 36px 78px rgba(0, 0, 0, 0.48);
}

.real-screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.real-screen-card h3 {
  margin-bottom: 8px;
  font-size: 16px;
  letter-spacing: -0.025em;
}

.real-screen-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.journey {
  position: relative;
  margin-top: 136px;
  padding-top: 122px;
}

.journey::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  content: '';
}

.steps {
  position: relative;
  display: grid;
  gap: 68px;
  grid-template-columns: repeat(3, 1fr);
}

.steps::before {
  position: absolute;
  top: 22px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.2), rgba(99, 102, 241, 0.74), rgba(84, 220, 226, 0.18));
  content: '';
}

.step {
  position: relative;
  text-align: center;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 45px;
  height: 45px;
  margin: 0 auto 25px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: #0a0911;
  color: #c9b7ff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(106, 70, 202, 0.15);
}

.step h3 {
  margin-bottom: 9px;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.step p {
  max-width: 29ch;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 13px;
}

.premium-section {
  overflow: hidden;
}

.premium-section::before {
  position: absolute;
  top: 13%;
  right: -12%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 126, 64, 0.11), transparent 67%);
  content: '';
}

.split-section {
  display: grid;
  align-items: center;
  gap: clamp(52px, 8vw, 112px);
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.74fr);
}

.split-copy .button {
  margin-top: 30px;
}

.premium-visual {
  position: relative;
  min-height: 520px;
}

.real-premium-stack {
  min-height: 620px;
}

.real-device--premium-profile {
  z-index: 1;
  top: 20px;
  right: 4px;
  width: 292px;
  height: 580px;
  transform: rotate(5deg);
}

.real-device--premium-chat {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 274px;
  height: 560px;
  transform: rotate(-5deg);
}

.boost-card,
.priority-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(229, 185, 105, 0.23);
  background: rgba(18, 16, 27, 0.84);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.boost-card {
  z-index: 2;
  top: 22px;
  right: 0;
  width: min(390px, 92%);
  padding: 24px;
  border-radius: 30px;
  transform: rotate(2deg);
}

.boost-card::before {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 181, 87, 0.18), transparent 67%);
  content: '';
}

.boost-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: #d8c7a8;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.boost-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(239, 190, 103, 0.17);
  border-radius: 999px;
  background: rgba(239, 190, 103, 0.08);
}

.boost-status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: '';
  box-shadow: 0 0 12px rgba(239, 190, 103, 0.8);
}

.boost-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.boost-avatar {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: linear-gradient(145deg, #4b3c69, #1b1729);
  box-shadow: 0 0 0 6px rgba(239, 190, 103, 0.06);
}

.boost-avatar img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.boost-profile strong {
  display: block;
  font-size: 18px;
}

.boost-profile p {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 12px;
}

.boost-graph {
  display: flex;
  height: 80px;
  align-items: flex-end;
  gap: 7px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.boost-graph i {
  flex: 1;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(to top, rgba(134, 87, 222, 0.32), rgba(239, 190, 103, 0.86));
}

.priority-card {
  z-index: 3;
  bottom: 25px;
  left: 0;
  width: min(420px, 94%);
  padding: 25px;
  border-color: rgba(122, 103, 216, 0.26);
  border-radius: 27px;
  background:
    linear-gradient(145deg, rgba(60, 37, 114, 0.86), rgba(19, 42, 73, 0.9)),
    #171526;
  transform: rotate(-2.2deg);
}

.priority-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 17px;
  padding: 7px 11px;
  border: 1px solid rgba(245, 203, 126, 0.25);
  border-radius: 999px;
  background: rgba(245, 203, 126, 0.1);
  color: #f2d79b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.priority-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.priority-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.safety-section {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.016), rgba(255, 255, 255, 0.006));
}

.safety-rail {
  display: grid;
  margin-top: 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  grid-template-columns: repeat(3, 1fr);
}

.safety-item {
  position: relative;
  padding: 38px 32px;
}

.safety-item + .safety-item {
  border-left: 1px solid var(--border);
}

.safety-item svg {
  width: 26px;
  height: 26px;
  margin-bottom: 45px;
  color: #af97f4;
}

.safety-item h3 {
  margin-bottom: 10px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.safety-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.72;
}

.final-section {
  padding-top: 134px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px);
  border: 1px solid var(--border);
  border-radius: 38px;
  background:
    radial-gradient(circle at 84% 20%, rgba(87, 198, 205, 0.1), transparent 27rem),
    radial-gradient(circle at 20% 90%, rgba(135, 83, 231, 0.22), transparent 30rem),
    linear-gradient(145deg, rgba(34, 26, 59, 0.74), rgba(9, 9, 15, 0.9));
  box-shadow: var(--shadow);
}

.final-cta::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 47%;
  height: 100%;
  background-image: url('../assets/logo-mark.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(330px, 78%);
  content: '';
  filter: drop-shadow(0 30px 55px rgba(53, 195, 203, 0.13));
  opacity: 0.13;
  pointer-events: none;
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.final-cta > p {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.final-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.site-footer {
  padding: 74px 0 28px;
}

.footer-main {
  display: grid;
  align-items: start;
  gap: 80px;
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  grid-template-columns: minmax(230px, 1fr) auto;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 12px;
}

.footer-links {
  display: grid;
  gap: 13px 38px;
  grid-template-columns: repeat(2, auto);
}

.footer-links a {
  color: var(--text-soft);
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 23px;
  color: #706b80;
  font-size: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

.feature-card:nth-child(2),
.safety-item:nth-child(2) {
  transition-delay: 70ms;
}

.feature-card:nth-child(3),
.safety-item:nth-child(3) {
  transition-delay: 140ms;
}

.feature-card:nth-child(4) {
  transition-delay: 60ms;
}

.feature-card:nth-child(5) {
  transition-delay: 120ms;
}

.feature-card:nth-child(6) {
  transition-delay: 180ms;
}

/* Creator Studio */

.creator-page {
  background:
    radial-gradient(circle at 80% 18%, rgba(106, 69, 214, 0.14), transparent 33rem),
    var(--bg);
}

.creator-header {
  position: relative;
}

.creator-main {
  position: relative;
  padding: 132px 0 92px;
}

.creator-intro {
  max-width: 820px;
  margin-bottom: 52px;
}

.creator-intro h1 {
  margin-bottom: 17px;
}

.creator-workspace {
  display: grid;
  align-items: start;
  gap: 28px;
  grid-template-columns: minmax(310px, 0.74fr) minmax(430px, 1.26fr);
}

.creator-controls,
.preview-shell {
  border: 1px solid var(--border);
  background: rgba(13, 12, 21, 0.78);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.creator-controls {
  padding: 25px;
  border-radius: 27px;
}

.creator-control-title {
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mode-tabs {
  display: grid;
  gap: 7px;
  margin-bottom: 30px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  grid-template-columns: repeat(3, 1fr);
}

.mode-tab {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.mode-tab.is-selected {
  background: linear-gradient(135deg, rgba(162, 91, 237, 0.86), rgba(96, 91, 227, 0.88));
  color: #fff;
  box-shadow: 0 10px 25px rgba(91, 62, 175, 0.22);
}

.mode-form[hidden] {
  display: none;
}

.field {
  display: grid;
  gap: 9px;
  margin-bottom: 21px;
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.field label,
.field-label {
  color: #dcd6eb;
  font-size: 12px;
  font-weight: 650;
}

.field-count {
  color: var(--text-muted);
  font-size: 9px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(196, 180, 255, 0.11);
  border-radius: 15px;
  outline: 0;
  background: rgba(255, 255, 255, 0.035);
  color: #f5f3fb;
  font-size: 12px;
  line-height: 1.6;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field input {
  height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 114px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(155, 108, 244, 0.55);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 4px rgba(121, 80, 209, 0.1);
}

.theme-grid {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(4, 1fr);
}

.theme-button {
  display: grid;
  min-width: 0;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 8px;
  text-align: center;
  cursor: pointer;
}

.theme-swatch {
  width: 100%;
  height: 38px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--swatch-gradient);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: border-color 180ms ease, transform 180ms var(--ease);
}

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

.theme-button.is-selected {
  color: #fff;
}

.theme-button.is-selected .theme-swatch {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(154, 108, 243, 0.17);
}

.creator-download {
  width: 100%;
  margin-top: 27px;
}

.creator-download.is-loading {
  opacity: 0.72;
}

.download-status {
  min-height: 19px;
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 10px;
  text-align: center;
}

.creator-tip {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(83, 218, 224, 0.13);
  border-radius: 16px;
  background: rgba(48, 172, 182, 0.055);
}

.creator-tip strong {
  display: block;
  margin-bottom: 5px;
  color: #b5edf0;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.creator-tip p {
  margin: 0;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.6;
}

.preview-shell {
  position: sticky;
  top: 100px;
  padding: 23px;
  border-radius: 30px;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
}

.preview-toolbar strong {
  display: block;
  font-size: 12px;
}

.preview-toolbar small {
  color: var(--text-muted);
  font-size: 9px;
}

.preview-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 9px;
}

.preview-meta span + span::before {
  margin-right: 8px;
  content: '·';
}

.creator-preview-wrap {
  display: grid;
  min-height: 665px;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    #090810;
  background-size: 26px 26px;
}

.creator-preview {
  --card-gradient: linear-gradient(145deg, #151126 0%, #281653 52%, #0b2236 100%);
  --card-accent: #b79aff;
  --card-glow: rgba(126, 87, 255, 0.32);
  position: relative;
  display: flex;
  width: min(430px, 100%);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 27px;
  background: var(--card-gradient);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5), 0 0 70px var(--card-glow);
  isolation: isolate;
}

.creator-preview::before,
.creator-preview::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: '';
  filter: blur(4px);
}

.creator-preview::before {
  top: -24%;
  right: -22%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 65%);
}

.creator-preview::after {
  bottom: -28%;
  left: -20%;
  width: 76%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--card-glow), transparent 68%);
}

.preview-card-header {
  position: absolute;
  z-index: 4;
  top: 25px;
  right: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.preview-card-footer {
  position: absolute;
  z-index: 4;
  right: 26px;
  bottom: 23px;
  left: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
}

.preview-card-footer strong {
  color: rgba(255, 255, 255, 0.82);
}

.preview-content {
  display: flex;
  width: 100%;
  min-height: 100%;
}

.preview-mask-mark {
  position: absolute;
  top: 54px;
  right: 28px;
  width: 51px;
  height: 51px;
  opacity: 0.94;
}

.preview-mask-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preview-confession {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 88px 40px 72px;
}

.preview-quote {
  margin: 0 0 -8px;
  color: var(--card-accent);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 0.9;
  opacity: 0.72;
}

.preview-confession-text {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.22;
  text-wrap: balance;
}

.preview-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 650;
}

.preview-avatar {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--card-accent);
  font-weight: 800;
}

.preview-profile {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 70px;
  text-align: center;
}

.preview-profile-avatar {
  display: grid;
  width: 108px;
  height: 108px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.25);
}

.preview-profile-avatar img {
  width: 82px;
  height: 82px;
}

.preview-profile-name {
  margin: 0 0 9px;
  font-size: 30px;
  font-weight: 720;
  letter-spacing: -0.05em;
}

.preview-profile-bio {
  max-width: 31ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.71);
  font-size: 13px;
  line-height: 1.65;
}

.preview-profile-rule {
  width: 58px;
  height: 1px;
  margin: 32px 0 22px;
  background: var(--card-accent);
  opacity: 0.5;
}

.preview-profile-prompt {
  max-width: 28ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.6;
}

.preview-chat {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 78px 27px 68px;
}

.preview-chat-header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.preview-chat-header strong {
  display: block;
  font-size: 11px;
}

.preview-chat-header small {
  display: block;
  margin-top: 1px;
  color: #78edb0;
  font-size: 8px;
}

.preview-chat-messages {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.preview-message {
  max-width: 82%;
  margin: 0;
  padding: 13px 15px;
  border-radius: 17px;
  font-size: 12px;
  line-height: 1.5;
}

.preview-message--incoming {
  align-self: flex-start;
  border-bottom-left-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-message--outgoing {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  background: linear-gradient(135deg, #a45df0, #6e61ed);
}

/* Legal and support pages */

.legal-main {
  padding: 150px 0 72px;
}

.legal-hero {
  max-width: 900px;
  margin-bottom: 64px;
}

.legal-hero h1 {
  margin-bottom: 17px;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 12px;
}

.legal-layout {
  display: grid;
  align-items: start;
  gap: 62px;
  grid-template-columns: minmax(0, 1fr) 220px;
}

.legal-document {
  max-width: 780px;
}

.legal-document > p:first-child {
  color: #d0cada;
  font-size: 17px;
  line-height: 1.8;
}

.legal-document h2,
.legal-document h3 {
  scroll-margin-top: 110px;
  letter-spacing: -0.032em;
}

.legal-document h2 {
  margin: 52px 0 15px;
  font-size: 23px;
}

.legal-document h3 {
  margin: 36px 0 12px;
  color: #e8e4f1;
  font-size: 17px;
}

.legal-document p,
.legal-document li {
  color: #aaa5b7;
  font-size: 14px;
  line-height: 1.82;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  padding-left: 21px;
}

.legal-document strong {
  color: #e9e5f2;
  font-weight: 650;
}

.legal-document a {
  color: #c3a8ff;
  text-decoration-color: rgba(195, 168, 255, 0.36);
  text-underline-offset: 3px;
}

.legal-document a:hover {
  color: #e3d8ff;
}

.legal-aside {
  position: sticky;
  top: 105px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.025);
}

.legal-aside strong {
  display: block;
  margin-bottom: 13px;
  color: #d8d2e6;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-aside nav {
  display: grid;
  gap: 10px;
}

.legal-aside a {
  color: var(--text-muted);
  font-size: 11px;
  text-decoration: none;
}

.legal-aside a:hover {
  color: #fff;
}

.contact-box,
.safety-callout {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(117, 76, 213, 0.12), rgba(50, 178, 187, 0.04)),
    rgba(255, 255, 255, 0.025);
}

.contact-box p,
.safety-callout p {
  margin: 0;
}

.contact-box p + p,
.safety-callout p + p {
  margin-top: 8px;
}

.contact-box a {
  font-size: 18px;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  gap: 14px;
  margin-top: 25px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.faq-card h3 {
  margin-top: 0;
}

.faq-card ul {
  margin-bottom: 0;
}

@media (max-width: 1060px) {
  .hero-grid {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.72fr);
  }

  .floating-card--shuffle {
    left: -18%;
  }

  .floating-card--story {
    right: -10%;
  }

  .real-screen-fan {
    width: min(500px, 45vw);
  }

  .real-device--main {
    width: 278px;
  }

  .real-device--left,
  .real-device--right {
    width: 205px;
  }

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

  .real-screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .real-screen-frame {
    height: 610px;
  }

  .creator-workspace {
    grid-template-columns: minmax(300px, 0.83fr) minmax(390px, 1.17fr);
  }
}

@media (max-width: 840px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .site-header {
    padding: 12px 0;
  }

  .site-header.is-scrolled {
    padding: 8px 0;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    min-height: 100dvh;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 105px 24px 40px;
    background: rgba(5, 5, 10, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 220ms ease, transform 280ms var(--ease);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a:not(.button) {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 20px;
  }

  .site-nav a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    width: 100%;
    margin-top: 22px;
  }

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

  .hero {
    min-height: auto;
    padding: 132px 0 80px;
  }

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

  .hero-copy {
    max-width: 690px;
    text-align: center;
  }

  .hero h1 {
    margin-inline: auto;
    font-size: clamp(3.15rem, 12vw, 5.9rem);
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .phone-stage {
    min-height: 650px;
  }

  .phone-scene {
    width: min(350px, 73vw);
  }

  .phone-scene.real-screen-fan {
    width: min(580px, 92vw);
    height: 650px;
  }

  .real-device--main {
    width: 296px;
  }

  .real-device--left {
    left: 6%;
  }

  .real-device--right {
    right: 6%;
  }

  .floating-card--shuffle {
    left: -26%;
  }

  .floating-card--story {
    right: -20%;
  }

  .section {
    padding: 96px 0;
  }

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

  .steps {
    gap: 30px;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .premium-visual {
    width: min(590px, 100%);
    margin: 0 auto;
  }

  .real-premium-stack {
    min-height: 650px;
  }

  .safety-rail {
    grid-template-columns: 1fr;
  }

  .safety-item + .safety-item {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .safety-item svg {
    margin-bottom: 24px;
  }

  .creator-workspace {
    grid-template-columns: 1fr;
  }

  .preview-shell {
    position: static;
  }

  .preview-shell[data-reveal] {
    opacity: 1;
    transform: none;
  }

  .creator-preview-wrap {
    min-height: 620px;
  }

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

  .legal-aside {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 560px);
  }

  body {
    font-size: 15px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero h1 {
    margin-bottom: 21px;
    font-size: clamp(3rem, 14.2vw, 4.5rem);
    letter-spacing: -0.072em;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 430px);
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

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

  .hero-actions .text-link {
    justify-content: center;
    padding: 10px;
  }

  .hero-meta {
    font-size: 10px;
  }

  .phone-stage {
    min-height: 560px;
  }

  .phone-scene {
    width: min(300px, 72vw);
  }

  .phone-stage {
    min-height: 610px;
  }

  .phone-stage[data-reveal] {
    opacity: 1;
    transform: none;
  }

  .phone-scene.real-screen-fan {
    width: min(430px, 100%);
    height: 585px;
  }

  .real-device--main {
    width: 265px;
    height: 570px;
  }

  .real-device--left,
  .real-device--right {
    top: 105px;
    width: 170px;
    height: 395px;
    opacity: 0.62;
  }

  .real-device--left {
    left: -2%;
  }

  .real-device--right {
    right: -2%;
  }

  .floating-card--shuffle {
    top: 11%;
    left: -21%;
    width: 150px;
    padding: 11px;
  }

  .floating-card--story {
    right: -17%;
    bottom: 12%;
    width: 135px;
    padding: 9px;
  }

  .float-avatar {
    width: 34px;
    height: 34px;
  }

  .float-story-image {
    height: 118px;
  }

  .section-heading h2,
  .split-copy h2,
  .final-cta h2,
  .legal-hero h1,
  .creator-intro h1 {
    font-size: clamp(2.35rem, 11.6vw, 3.7rem);
  }

  .section-heading p,
  .split-copy > p,
  .final-cta > p,
  .creator-intro > p {
    font-size: 14px;
  }

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

  .real-app-showcase {
    padding-top: 104px;
  }

  .real-screen-grid {
    grid-template-columns: 1fr;
  }

  .real-screen-card {
    display: grid;
    align-items: center;
    gap: 5px 20px;
    grid-template-columns: minmax(160px, 0.78fr) 1fr;
  }

  .real-screen-frame {
    height: 390px;
    margin: 0;
    grid-row: span 2;
  }

  .real-screen-card h3 {
    align-self: end;
    margin: 0;
  }

  .real-screen-card p {
    align-self: start;
  }

  .feature-card {
    min-height: 240px;
    padding: 24px;
  }

  .feature-icon {
    margin-bottom: 38px;
  }

  .journey {
    margin-top: 108px;
    padding-top: 94px;
  }

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

  .steps::before {
    top: 0;
    bottom: 0;
    left: 22px;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, rgba(168, 85, 247, 0.2), rgba(99, 102, 241, 0.74), rgba(84, 220, 226, 0.18));
  }

  .step {
    display: grid;
    min-height: 128px;
    align-items: start;
    gap: 0 20px;
    padding-left: 0;
    text-align: left;
    grid-template-columns: 45px 1fr;
  }

  .step-number {
    margin: 0;
    grid-row: span 2;
  }

  .step h3 {
    margin-top: 8px;
  }

  .step p {
    margin: 0;
  }

  .premium-visual {
    min-height: 480px;
  }

  .real-premium-stack {
    min-height: 535px;
  }

  .real-device--premium-profile {
    right: 4%;
    width: 235px;
    height: 475px;
  }

  .real-device--premium-chat {
    left: 4%;
    width: 224px;
    height: 455px;
  }

  .boost-card {
    width: 94%;
    padding: 20px;
  }

  .priority-card {
    width: 95%;
    padding: 21px;
  }

  .priority-card p {
    font-size: 15px;
  }

  .final-cta {
    padding: 43px 25px;
    border-radius: 28px;
  }

  .final-cta::after {
    top: auto;
    bottom: -22px;
    width: 180px;
    height: 180px;
    background-size: contain;
  }

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

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

  .footer-main {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .creator-main,
  .legal-main {
    padding-top: 118px;
  }

  .creator-controls,
  .preview-shell {
    padding: 18px;
    border-radius: 22px;
  }

  .mode-tabs {
    gap: 4px;
  }

  .mode-tab {
    font-size: 10px;
  }

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

  .theme-swatch {
    height: 44px;
  }

  .preview-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .creator-preview-wrap {
    min-height: 0;
    padding: 13px;
  }

  .creator-preview {
    border-radius: 21px;
  }

  .preview-confession {
    padding: 75px 27px 60px;
  }

  .preview-confession-text {
    font-size: clamp(18px, 6.2vw, 26px);
  }

  .preview-profile {
    padding-inline: 26px;
  }

  .preview-profile-avatar {
    width: 84px;
    height: 84px;
    border-radius: 27px;
  }

  .preview-profile-avatar img {
    width: 65px;
    height: 65px;
  }

  .preview-profile-name {
    font-size: 25px;
  }

  .preview-chat {
    padding-inline: 19px;
  }

  .legal-hero {
    margin-bottom: 43px;
  }

  .legal-document > p:first-child {
    font-size: 15px;
  }

  .legal-document h2 {
    font-size: 20px;
  }

  .legal-document p,
  .legal-document li {
    font-size: 13px;
  }

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

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
