/* ============================================================
   Anyone Want To — landing page
   Design language: Stitch "Kinetic Pulse" / "The Social Curator"
   Display: Cabinet Grotesk · Body & app UI: Inter (brand anchor)
   ============================================================ */

:root {
  /* Brand — violet (app primary) */
  --violet: #6b1cf5;
  --violet-bright: #7c3bff;
  --violet-deep: #5e00e3;
  --lavender: #ac8eff;
  --lavender-lt: #c9b3ff;

  /* Deep ink (app inverseSurface) */
  --ink: #16052a;
  --ink-2: #200a3a;
  --ink-3: #2a0f4a;

  /* Light surfaces (app) */
  --surface: #fdf3ff;
  --surface-low: #f9ecff;
  --surface-container: #f3e2ff;
  --surface-high: #ebd4ff;
  --white: #ffffff;

  /* Ink text (app onSurface — never #000) */
  --on-surface: #38274c;
  --on-surface-var: #67537c;
  --on-surface-soft: #7d6a93;

  /* Accents */
  --cyan: #37d4ff;
  --cyan-deep: #00647b;
  --pink: #ff769b;
  --pink-deep: #b60051;

  /* Light-on-dark text ramp */
  --on-ink: #f7f0ff;
  --on-ink-2: rgba(233, 221, 255, 0.82);
  --on-ink-3: rgba(220, 205, 248, 0.62);

  /* Type */
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Radii (app radii scale) */
  --r-sm: 8px;
  --r: 16px;
  --r-md: 24px;
  --r-lg: 32px;
  --r-xl: 48px;
  --r-full: 9999px;

  /* Rhythm */
  --edge: clamp(1.25rem, 5vw, 6rem);
  --section-y: clamp(5rem, 11vw, 9rem);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  /* Z-scale */
  --z-nav: 100;
  --z-toast: 200;

  --maxw: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--on-surface);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.04; letter-spacing: -0.03em; text-wrap: balance; }
em { font-style: italic; }

.visually-hidden, .skip-link:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 1rem; left: 1rem; z-index: 999;
  background: var(--violet); color: var(--on-ink); padding: 0.6rem 1rem;
  border-radius: var(--r-full); font-weight: 600; font-size: 0.9rem;
}
:focus-visible { outline: 2.5px solid var(--lavender); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-py: 0.85rem; --btn-px: 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--r-full); border: none; cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.3s ease, filter 0.3s ease;
  white-space: nowrap; line-height: 1;
}
.btn--sm { --btn-py: 0.6rem; --btn-px: 1.1rem; font-size: 0.92rem; }
.btn--lg { --btn-py: 1rem; --btn-px: 1.7rem; font-size: 1.02rem; }

.btn--gradient {
  color: var(--on-ink);
  background-image: linear-gradient(135deg, var(--violet) 0%, var(--lavender) 100%);
  box-shadow: 0 10px 30px -8px rgba(107, 28, 245, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn--gradient:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(107, 28, 245, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3); filter: saturate(1.08); }
.btn--gradient:active { transform: translateY(-1px); }

.btn--glass {
  color: var(--on-ink);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.btn--glass:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.14); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.3); }

.btn--ghost-light {
  color: var(--on-ink); background: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.28);
}
.btn--ghost-light:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.1); }

/* store buttons */
.store { padding-top: 0.6rem; padding-bottom: 0.6rem; }
.store__icon { width: 26px; height: 26px; flex: none; }
.store__text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; text-align: left; }
.store__text small { font-size: 0.66rem; font-weight: 500; opacity: 0.85; letter-spacing: 0.01em; }
.store__text strong { font-size: 1.05rem; font-weight: 700; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  padding: clamp(0.7rem, 1.6vw, 1.1rem) var(--edge);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.55rem 0.7rem 0.55rem 1.1rem;
  border-radius: var(--r-full);
  background: rgba(28, 10, 52, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.is-scrolled .nav__inner {
  background: rgba(22, 5, 42, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 12px 30px -12px rgba(0, 0, 0, 0.6);
}
.brand { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--on-ink); font-weight: 700; }
.brand__mark {
  display: grid; place-items: center; width: 30px; height: 30px; flex: none;
  border-radius: 9px; color: var(--white); overflow: hidden;
  background-image: linear-gradient(135deg, var(--violet), var(--lavender));
  box-shadow: 0 4px 14px -3px rgba(107, 28, 245, 0.7);
}
.brand__glyph { width: 76%; height: auto; display: block; }
.brand__word { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; letter-spacing: -0.02em; }
.nav__links { display: flex; gap: 1.7rem; margin-left: auto; }
.nav__links a { color: var(--on-ink-2); font-size: 0.94rem; font-weight: 500; transition: color 0.25s ease; }
.nav__links a:hover { color: var(--on-ink); }
.nav__cta { margin-left: 0; }

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% -10%, #33115e 0%, transparent 55%),
    radial-gradient(90% 70% at 0% 10%, #240b45 0%, transparent 50%),
    linear-gradient(180deg, #180630 0%, var(--ink) 60%, #12041f 100%);
  color: var(--on-ink);
  padding: clamp(8rem, 15vw, 11rem) var(--edge) clamp(3.5rem, 7vw, 6rem);
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(172, 142, 255, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(172, 142, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 20%, transparent 75%);
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; opacity: 0.7;
  will-change: transform;
}
.hero__glow--a { width: 46vw; height: 46vw; top: -12vw; right: -8vw; background: radial-gradient(circle, rgba(124, 59, 255, 0.75), transparent 68%); animation: drift 18s var(--ease-out) infinite alternate; }
.hero__glow--b { width: 40vw; height: 40vw; bottom: -14vw; left: -10vw; background: radial-gradient(circle, rgba(55, 212, 255, 0.28), transparent 66%); animation: drift 22s var(--ease-out) infinite alternate-reverse; }
.hero__glow--c { width: 28vw; height: 28vw; top: 30%; left: 44%; background: radial-gradient(circle, rgba(255, 118, 155, 0.22), transparent 66%); animation: drift 26s var(--ease-out) infinite alternate; }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(4%, 6%, 0) scale(1.12); } }

.hero__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__copy { max-width: 34rem; }

.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.85rem 0.4rem 0.7rem; border-radius: var(--r-full);
  background: rgba(172, 142, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(172, 142, 255, 0.28);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em; color: var(--lavender-lt);
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(55, 212, 255, 0.6); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(55, 212, 255, 0.55); } 70%, 100% { box-shadow: 0 0 0 8px rgba(55, 212, 255, 0); } }

.hero__heading {
  margin: 1.3rem 0 0; font-weight: 800;
  font-size: clamp(2.25rem, 6.4vw, 5.1rem); line-height: 0.98; letter-spacing: -0.035em;
}
/* keep the nowrap rotator (e.g. "catch the game?") inside small phones */
@media (max-width: 380px) { .hero__heading { font-size: 2rem; } }
.hero__heading > span { display: block; }
.hero__rotator { position: relative; margin-top: 0.1em; min-height: 1.05em; }
.hero__rotator-track { position: relative; display: inline-block; }
.hero__word {
  display: inline-block; color: var(--lavender-lt);
  position: relative; white-space: nowrap;
}
.hero__word::after {
  content: ""; position: absolute; left: -0.06em; right: -0.06em; bottom: 0.06em; height: 0.42em; z-index: -1;
  background: linear-gradient(90deg, rgba(124, 59, 255, 0.45), rgba(55, 212, 255, 0.32));
  border-radius: 4px; transform: scaleX(1); transform-origin: left;
}
/* rotator swap states (JS-driven) */
.js .hero__word { transition: opacity 0.42s var(--ease-out), transform 0.42s var(--ease-out), filter 0.42s var(--ease-out); }
.hero__word.is-out { opacity: 0; transform: translateY(-0.35em); filter: blur(6px); position: absolute; left: 0; top: 0; }
.hero__word.is-in { opacity: 0; transform: translateY(0.4em); filter: blur(6px); }

.hero__sub {
  margin-top: 1.6rem; font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.55; color: var(--on-ink-2); max-width: 33rem;
}
.hero__sub em { color: var(--lavender-lt); font-weight: 500; }

.hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__note { margin-top: 1.25rem; font-size: 0.9rem; color: var(--on-ink-3); font-weight: 500; }

.hero__trust {
  position: relative; max-width: var(--maxw); margin: clamp(3rem, 6vw, 5rem) auto 0;
  display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap;
  color: var(--on-ink-3); font-size: 0.86rem; font-weight: 500;
}
.hero__trust i { width: 5px; height: 5px; border-radius: 50%; background: var(--on-ink-3); opacity: 0.5; }
.hero__trust span:first-child { color: var(--on-ink-2); font-weight: 600; }

/* ---------- Phone / device frames (real app screenshots) ---------- */
.hero__device { position: relative; justify-self: center; perspective: 1600px; }

.phone, .device {
  position: relative; border-radius: 44px; padding: 11px;
  background: linear-gradient(155deg, #3a1e5e, #170733 55%, #241041);
}
.phone {
  width: clamp(258px, 27vw, 320px);
  box-shadow:
    0 2px 3px rgba(0,0,0,0.5),
    inset 0 0 0 1.5px rgba(255,255,255,0.09),
    0 40px 80px -24px rgba(10, 2, 24, 0.85),
    0 0 90px -30px rgba(124, 59, 255, 0.55);
  animation: float 7s ease-in-out infinite;
  transform: rotateY(-8deg) rotateX(3deg) rotateZ(0.4deg);
}
@keyframes float { 0%, 100% { transform: rotateY(-8deg) rotateX(3deg) translateY(0); } 50% { transform: rotateY(-6deg) rotateX(2deg) translateY(-14px); } }

/* smaller framed device used inside the how-it-works steps */
.device {
  width: clamp(230px, 82%, 296px); padding: 9px; border-radius: 40px; margin: 0 auto;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.09),
    0 34px 60px -30px rgba(56, 39, 76, 0.5),
    0 0 70px -34px rgba(124, 59, 255, 0.4);
}

.phone__screen, .device__screen {
  position: relative; aspect-ratio: 760 / 1644; border-radius: 32px; overflow: hidden;
  background: var(--surface); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}
.device__screen { border-radius: 30px; }
.phone__shot { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.phone__shadow {
  position: absolute; left: 50%; bottom: -6%; width: 68%; height: 40px; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(10,2,24,0.6), transparent 70%); filter: blur(14px); z-index: -1;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; text-align: left; }
  .hero__copy { max-width: none; }
  .hero__device { margin-top: 0.5rem; }
}

/* ============================================================
   THE SHIFT
   ============================================================ */
.shift {
  background: linear-gradient(180deg, #12041f 0%, var(--surface) 22%);
  padding: clamp(4.5rem, 9vw, 8rem) var(--edge) clamp(1.5rem, 3vw, 2.5rem);
}
.shift__inner { max-width: var(--maxw); margin: 0 auto; }
.shift__heading {
  font-size: clamp(2.1rem, 5.2vw, 4rem); color: var(--on-surface); letter-spacing: -0.035em;
  max-width: 15ch;
}
.shift__cols {
  margin-top: clamp(2rem, 4vw, 3.2rem); display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem); max-width: 60rem;
}
.shift__lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.6; color: var(--on-surface-var); max-width: 42ch; }
.shift__lead--strong { color: var(--on-surface); }
.shift__lead--strong strong { color: var(--violet-deep); font-weight: 700; }
@media (max-width: 680px) { .shift__cols { grid-template-columns: 1fr; } }

/* ============================================================
   Shared section bits
   ============================================================ */
.how, .features { background: var(--surface); padding: var(--section-y) var(--edge); }
.how__head { max-width: var(--maxw); margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.kicker {
  display: inline-flex; align-items: center; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.02em; color: var(--violet); padding: 0.35rem 0.8rem; border-radius: var(--r-full);
  background: rgba(107, 28, 245, 0.09); margin-bottom: 1.1rem;
}
.kicker--light { color: var(--lavender-lt); background: rgba(172, 142, 255, 0.14); }
.section-heading { font-size: clamp(1.9rem, 4.4vw, 3.3rem); color: var(--on-surface); letter-spacing: -0.035em; }

/* ---------- Steps ---------- */
.step {
  max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5.5rem); align-items: center;
  padding: clamp(2.2rem, 5vw, 4rem) 0;
}
.step + .step { border-top: 0; }
.step--reverse .step__text { order: 2; }
.step__num {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1; letter-spacing: -0.03em; color: transparent;
  -webkit-text-stroke: 1.5px rgba(107, 28, 245, 0.35);
  display: block; margin-bottom: 0.7rem;
}
.step__title { font-size: clamp(1.5rem, 3vw, 2.15rem); color: var(--on-surface); letter-spacing: -0.03em; }
.step__desc { margin-top: 0.9rem; font-size: clamp(1rem, 1.4vw, 1.14rem); line-height: 1.6; color: var(--on-surface-var); max-width: 40ch; }

.step__visual { display: flex; justify-content: center; }

@media (max-width: 780px) {
  .step { grid-template-columns: 1fr; gap: 1.75rem; padding: 2rem 0; }
  .step--reverse .step__text { order: 0; }
  .step__visual { order: 2; }
  .step__desc { max-width: none; }
}

/* ============================================================
   FEATURES — bento
   ============================================================ */
.features { background: linear-gradient(180deg, var(--surface) 0%, var(--surface-low) 100%); }
.bento {
  max-width: var(--maxw); margin: 0 auto; display: grid;
  grid-template-columns: repeat(2, 1fr); gap: clamp(0.9rem, 1.6vw, 1.3rem);
}
.feature {
  position: relative; border-radius: var(--r-md); padding: clamp(1.5rem, 2.6vw, 2.2rem); overflow: hidden;
  background: linear-gradient(160deg, var(--white), var(--surface));
  box-shadow: inset 0 0 0 1px rgba(187, 164, 210, 0.16);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -26px rgba(56, 39, 76, 0.4), inset 0 0 0 1px rgba(187,164,210,0.2); }
.feature--wide { grid-column: span 2; }
.feature__icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; margin-bottom: 1.1rem;
  color: var(--violet); background: rgba(107, 28, 245, 0.1);
}
.feature__icon--cyan { color: var(--cyan-deep); background: rgba(0, 100, 123, 0.1); }
.feature__icon--pink { color: var(--pink-deep); background: rgba(182, 0, 81, 0.1); }
.feature__title { font-size: clamp(1.15rem, 1.9vw, 1.45rem); color: var(--on-surface); letter-spacing: -0.02em; }
.feature__desc { margin-top: 0.55rem; font-size: 1rem; line-height: 1.55; color: var(--on-surface-var); max-width: 46ch; }

/* accent feature (drenched violet) */
.feature--accent {
  color: var(--on-ink);
  background:
    radial-gradient(120% 130% at 100% 0%, #8a4dff 0%, transparent 55%),
    linear-gradient(150deg, var(--violet-deep), #3a0f8a 70%, var(--ink-3));
  box-shadow: 0 24px 50px -24px rgba(107, 28, 245, 0.55);
}
.feature--accent .feature__title { color: #fff; }
.feature--accent .feature__desc { color: rgba(233, 221, 255, 0.86); }
.feature__icon--onaccent { color: #fff; background: rgba(255, 255, 255, 0.16); }

@media (max-width: 680px) {
  .bento { grid-template-columns: 1fr; }
  .feature--wide { grid-column: span 1; }
}

/* ============================================================
   FOR GROUPS
   ============================================================ */
.groups {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 120% at 100% 0%, #33115e, transparent 55%),
    linear-gradient(160deg, var(--ink-2), var(--ink) 65%, #12041f);
  color: var(--on-ink);
  padding: var(--section-y) var(--edge);
}
.groups__inner {
  max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.groups__heading { font-size: clamp(1.9rem, 4vw, 3rem); color: #fff; letter-spacing: -0.035em; max-width: 16ch; }
.groups__desc { margin-top: 1.3rem; font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.6; color: var(--on-ink-2); max-width: 44ch; }
.groups__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.groups__stats { list-style: none; padding: 0; display: grid; gap: 1rem; }
.groups__stats li {
  display: flex; align-items: baseline; gap: 1rem; padding: 1.3rem 1.5rem; border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}
.groups__stats b { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--lavender-lt); line-height: 1; letter-spacing: -0.03em; min-width: 1.6ch; }
.groups__stats span { font-size: 0.98rem; color: var(--on-ink-2); font-weight: 500; }
@media (max-width: 820px) { .groups__inner { grid-template-columns: 1fr; } }

/* ============================================================
   REQUEST ACCESS (form)
   ============================================================ */
.request { background: linear-gradient(180deg, var(--surface-low) 0%, var(--surface) 100%); padding: var(--section-y) var(--edge); }
.request__inner {
  max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.request__lead { margin-top: 1.3rem; font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.6; color: var(--on-surface-var); max-width: 42ch; }
.request__points { list-style: none; padding: 0; margin-top: 1.6rem; display: grid; gap: 0.7rem; }
.request__points li {
  position: relative; padding-left: 1.9rem; color: var(--on-surface); font-weight: 500; font-size: 1rem;
}
.request__points li::before {
  content: ""; position: absolute; left: 0; top: 0.15rem; width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background:
    linear-gradient(135deg, var(--violet), var(--lavender));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center / 0.8rem no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center / 0.8rem no-repeat;
}

.request__form {
  display: grid; gap: 1rem; border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.2rem);
  background: linear-gradient(160deg, var(--white), var(--surface-low));
  box-shadow: 0 30px 60px -30px rgba(56, 39, 76, 0.35), inset 0 0 0 1px rgba(187, 164, 210, 0.16);
}
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--on-surface); }
.field label span { color: var(--on-surface-soft); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--on-surface);
  background: var(--surface); border: none; border-radius: 12px; padding: 0.8rem 0.9rem;
  box-shadow: inset 0 0 0 1.5px rgba(187, 164, 210, 0.4);
  transition: box-shadow 0.2s var(--ease-out); -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2367537c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85rem center; background-size: 1.1rem; padding-right: 2.4rem;
}
.field textarea { resize: vertical; min-height: 3.5rem; }
.field input::placeholder, .field textarea::placeholder { color: var(--on-surface-soft); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; box-shadow: inset 0 0 0 2px var(--violet);
}
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.request__submit { margin-top: 0.3rem; width: 100%; }
.request__status { margin: 0; font-size: 0.92rem; font-weight: 600; min-height: 1.2em; }
.request__status.is-ok { color: #1f8a4c; }
.request__status.is-err { color: var(--error); }
.request__fineprint { margin: 0; font-size: 0.8rem; line-height: 1.5; color: var(--on-surface-soft); }
.request__fineprint a { color: var(--violet-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 820px) { .request__inner { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .field input, .field select, .field textarea { transition: none !important; }
}

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.get {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(180deg, #12041f 0%, #1c0838 45%, #12041f 100%);
  color: var(--on-ink);
  padding: clamp(5rem, 11vw, 8.5rem) var(--edge);
}
.get__glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.get__glow--a { width: 40vw; height: 40vw; top: -12vw; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(124, 59, 255, 0.5), transparent 65%); }
.get__glow--b { width: 30vw; height: 30vw; bottom: -14vw; right: 8%; background: radial-gradient(circle, rgba(55, 212, 255, 0.22), transparent 65%); }
.get__inner { position: relative; max-width: 44rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.get__heading { font-size: clamp(2.6rem, 7vw, 5rem); color: #fff; letter-spacing: -0.04em; line-height: 0.98; }
.get__sub { margin-top: 1.3rem; font-size: clamp(1.05rem, 1.6vw, 1.24rem); line-height: 1.55; color: var(--on-ink-2); max-width: 34rem; }
.get__cta { justify-content: center; margin-top: 2.2rem; }
.get__note { margin-top: 1.6rem; font-size: 0.9rem; color: var(--on-ink-3); font-weight: 500; }
.get__note a { color: var(--lavender-lt); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #100320; color: var(--on-ink-2); padding: clamp(3.5rem, 7vw, 5rem) var(--edge) 2.5rem; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1.8fr;
  gap: clamp(2rem, 5vw, 4rem); padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand--footer { color: var(--on-ink); }
.footer__tag { margin-top: 0.8rem; font-size: 0.95rem; color: var(--on-ink-3); max-width: 22ch; }
.footer__nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.footer__nav h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-ink-3); margin-bottom: 0.9rem; }
.footer__nav a { display: block; font-size: 0.95rem; color: var(--on-ink-2); padding: 0.28rem 0; transition: color 0.25s ease; }
.footer__nav a:hover { color: var(--on-ink); }
.footer__base {
  max-width: var(--maxw); margin: 1.8rem auto 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--on-ink-3);
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Reveal motion
   ============================================================ */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); will-change: opacity, transform; }
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__glow, .phone, .pill__dot { animation: none !important; }
  .js .hero__word { transition: none !important; }
  .btn, .feature { transition: none !important; }
}

/* ============================================================
   Legal / document pages (privacy, delete account)
   ============================================================ */
.doc-body { background: var(--surface); color: var(--on-surface); min-height: 100vh; display: flex; flex-direction: column; }
.doc-topbar {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 860px; width: 100%; margin: 0 auto; padding: 1.5rem var(--edge) 0.5rem;
}
.doc-topbar .brand, .doc-topbar .brand__word { color: var(--on-surface); }
.doc-topbar .brand__mark { color: #fff; }
.doc-back { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.92rem; font-weight: 600; color: var(--violet); }
.doc-back:hover { color: var(--violet-deep); }

.doc {
  max-width: 720px; width: 100%; margin: 0 auto; flex: 1;
  padding: clamp(1.5rem, 4vw, 2.75rem) var(--edge) 4.5rem;
}
.doc__eyebrow { display: inline-block; color: var(--violet); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.6rem; }
.doc h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--on-surface); letter-spacing: -0.03em; line-height: 1.05; }
.doc__meta { color: var(--on-surface-var); font-size: 0.9rem; margin-top: 0.7rem; }
.doc h2 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); color: var(--on-surface); letter-spacing: -0.02em; margin: 2.4rem 0 0.7rem; }
.doc p, .doc li { font-size: 1.02rem; line-height: 1.7; color: var(--on-surface-var); max-width: 68ch; }
.doc p { margin-bottom: 1rem; }
.doc strong { color: var(--on-surface); font-weight: 700; }
.doc a { color: var(--violet-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.doc a:hover { color: var(--violet); }
.doc a.btn, .doc a.btn:hover { color: var(--on-ink); text-decoration: none; }
.doc ul { margin: 0 0 1.1rem; padding-left: 1.25rem; }
.doc li { margin-bottom: 0.5rem; }
.doc__lead { font-size: clamp(1.1rem, 1.7vw, 1.28rem) !important; color: var(--on-surface) !important; line-height: 1.55 !important; margin: 1.6rem 0 0.6rem; }
.doc__callout {
  background: linear-gradient(160deg, var(--surface-container), var(--surface-low));
  border-radius: var(--r-md); padding: clamp(1.2rem, 3vw, 1.9rem); margin: 1.8rem 0;
  box-shadow: inset 0 0 0 1px rgba(187, 164, 210, 0.18);
}
.doc__callout p:last-child { margin-bottom: 0; }
.doc__steps { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: 0.7rem; }
.doc__steps li { position: relative; padding-left: 2.4rem; max-width: none; }
.doc__steps li b { color: var(--on-surface); }
.doc__stepnum {
  position: absolute; left: 0; top: 0.05rem; width: 1.7rem; height: 1.7rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.85rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--lavender));
}
.doc-footer {
  max-width: 860px; width: 100%; margin: 0 auto;
  padding: 1.5rem var(--edge) 2.5rem; color: var(--on-surface-soft); font-size: 0.85rem;
  display: flex; justify-content: space-between; gap: 1rem 1.5rem; flex-wrap: wrap; align-items: center;
  border-top: 1px solid rgba(187, 164, 210, 0.22);
}
.doc-footer nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.doc-footer a { color: var(--on-surface-var); font-weight: 500; }
.doc-footer a:hover { color: var(--on-surface); }
