/* ────────────────────────────────────────────────────────────
   Rossi — landing styles (rossims.ru)
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
:root {
  --bg-0: #07070b;
  --bg-1: #0f0f15;
  --fg: #ffffff;
  --fg-muted: rgba(255, 255, 255, 0.62);
  --fg-soft: rgba(255, 255, 255, 0.86);
  --rose-500: #ef4444;
  --rose-400: #f87171;
  --rose-600: #dc2626;
  --rose-700: #b91c1c;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.06);
  --shadow-glow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

html {
  background: var(--bg-0);
  color: var(--fg);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background:
    radial-gradient(ellipse 800px 500px at 100% 0%, rgba(239, 68, 68, 0.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at 0% 100%, rgba(220, 38, 38, 0.08), transparent 60%),
    var(--bg-0);
  min-height: 100dvh;
  color: var(--fg);
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* ────── grain texture ────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ────── scroll progress bar ────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--rose-500), var(--rose-400) 50%, #fbbf24);
  z-index: 60;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.55);
  transition: width 0.06s linear;
  pointer-events: none;
}

/* ────── cursor follower (desktop only) ────── */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose-500);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.9);
  pointer-events: none;
  z-index: 100;
  transform: translate3d(-50%, -50%, 0) scale(0);
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
  opacity: 0;
}
.cursor-dot.is-active {
  transform: translate3d(-50%, -50%, 0) scale(1);
  opacity: 1;
}
.cursor-dot.is-hover {
  transform: translate3d(-50%, -50%, 0) scale(3.5);
  opacity: 0.4;
  background: rgba(239, 68, 68, 0.5);
  mix-blend-mode: difference;
}
@media (hover: none), (max-width: 720px) {
  .cursor-dot { display: none; }
}

/* ────── ambient blobs ────── */
.bg-glow {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.bg-glow > span {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.55;
  will-change: transform;
}
.bg-glow__a {
  width: 520px; height: 520px;
  background: rgba(239, 68, 68, 0.22);
  top: -180px; right: -120px;
  animation: float-a 18s ease-in-out infinite;
}
.bg-glow__b {
  width: 520px; height: 520px;
  background: rgba(244, 63, 94, 0.16);
  bottom: -200px; left: -160px;
  animation: float-b 22s ease-in-out infinite;
}
.bg-glow__c {
  width: 380px; height: 380px;
  background: rgba(168, 85, 247, 0.10);
  top: 35%; left: 55%;
  animation: float-c 26s ease-in-out infinite;
}
@keyframes float-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 60px); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, -40px); }
}
@keyframes float-c {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, -30px); }
}

/* ────── topbar — compact, max-width on desktop so doesn't sprawl ────── */
.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: calc(100% - 32px);
  max-width: 720px;
  padding: 8px 8px 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 14, 0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s;
}
.topbar.is-hidden {
  transform: translateX(-50%) translateY(-140%);
  opacity: 0;
  pointer-events: none;
}
.topbar__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.topbar__logo {
  height: 24px;
  width: auto;
  display: block;
  /* Logo PNG is white-on-transparent — leave it as is. */
}
.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, 0.30);
  background: rgba(239, 68, 68, 0.10);
  color: rgba(252, 165, 165, 0.95);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.topbar__cta svg { width: 16px; height: 16px; }
.topbar__cta:hover {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.50);
  color: #fff;
}

/* ────── shared elements ────── */
.section {
  position: relative;
  z-index: 1;
  padding: 96px 24px 56px;
}
.section__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.section__head {
  max-width: 760px;
  margin: 0 0 42px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, 0.30);
  background: rgba(239, 68, 68, 0.08);
  font-size: 12.5px;
  color: rgba(252, 165, 165, 0.95);
  font-weight: 500;
}
.pill__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose-500);
  box-shadow: 0 0 8px var(--rose-500);
}

.display {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 5vw + 0.4rem, 4.6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.display--accent {
  background: linear-gradient(120deg, var(--rose-400) 0%, var(--rose-600) 50%, #fb7185 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 6s ease-in-out infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.h2 {
  font-size: clamp(1.85rem, 3vw + 0.4rem, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 14px;
}
.lead {
  font-size: clamp(0.95rem, 0.5vw + 0.85rem, 1.05rem);
  color: var(--fg-muted);
  margin: 0;
  max-width: 600px;
  line-height: 1.55;
}

/* ────── hero spotlight (cursor-follow soft light) ────── */
.hero {
  --spot-x: 50%;
  --spot-y: 30%;
}
.hero__spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    600px 420px at var(--spot-x) var(--spot-y),
    rgba(239, 68, 68, 0.18),
    rgba(168, 85, 247, 0.08) 35%,
    transparent 70%
  );
  transition: background-position 0.4s ease;
  mix-blend-mode: screen;
}

/* Concentric pulsing rings under the phone */
.hero__rings {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 460px; height: 460px;
  pointer-events: none;
  z-index: 0;
}
.hero__rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(239, 68, 68, 0.20);
  border-radius: 50%;
  animation: ring-pulse 5s ease-out infinite;
}
.hero__rings span:nth-child(2) { animation-delay: 1.6s; border-color: rgba(168, 85, 247, 0.15); }
.hero__rings span:nth-child(3) { animation-delay: 3.2s; border-color: rgba(251, 191, 36, 0.10); }
@keyframes ring-pulse {
  0%   { transform: scale(0.5); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
@media (max-width: 900px) {
  .hero__rings { display: none; }
}

/* ────── hero ────── */
.hero {
  min-height: 100dvh;
  padding-top: 130px;
  padding-bottom: 96px;
  display: flex;
  align-items: center;
}
.hero__grid {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 80px;
  }
}
.hero__copy { min-width: 0; }
.store-block { margin-top: 28px; }
.store-block__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  margin: 0 0 10px;
}
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.store-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg);
  font-size: 14px;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.25s, background-color 0.25s,
              box-shadow 0.25s;
}
.store-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 25%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 60%
  );
  transform: translateX(-110%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.store-btn:hover::before {
  transform: translateX(110%);
}
.store-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.08);
  box-shadow: 0 20px 40px -15px rgba(239, 68, 68, 0.30);
}
.store-btn__label {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}
.store-btn__hint {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
}
.store-btn__name {
  font-size: 14px;
  font-weight: 600;
  margin-top: 2px;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  font-size: 12.5px;
  color: var(--fg-muted);
}
.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose-500);
  box-shadow: 0 0 6px var(--rose-500);
}
.chip-dot--em { background: #34d399; box-shadow: 0 0 6px #34d399; }
.chip-dot--am { background: #fbbf24; box-shadow: 0 0 6px #fbbf24; }
.chip-dot--ro { background: var(--rose-400); box-shadow: 0 0 6px var(--rose-400); }

/* ────── iPhone screenshot ────── */
.hero__phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}
.phone {
  position: relative;
  width: 420px;
  border-radius: 44px;
  overflow: hidden;
  border: 1.5px solid #2a2a30;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 30px 80px -20px rgba(244, 63, 94, 0.30),
    0 60px 120px -30px rgba(0, 0, 0, 0.8);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(-1.5deg);
  animation: phone-float 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  z-index: 2;
}
@keyframes phone-float {
  0%, 100% { transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(-1.5deg) translateY(0); }
  50% { transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(-1.5deg) translateY(-10px); }
}
.phone__shot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 42px;
}
.phone__halo {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 70% 80% at 30% 30%, rgba(239, 68, 68, 0.45), transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 70%, rgba(168, 85, 247, 0.30), transparent 70%);
  filter: blur(50px);
  z-index: 0;
  animation: halo-pulse 4s ease-in-out infinite;
}
@keyframes halo-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.phone__shadow {
  position: absolute;
  inset: auto -20px -50px;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(244, 63, 94, 0.40), transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

/* ────── floating chat bubbles around phone ────── */
.float-bubble {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: 16px;
  background: rgba(20, 20, 26, 0.80);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.6);
  font-size: 12px;
  white-space: nowrap;
  animation: bubble-float 5s ease-in-out infinite;
}
.float-bubble--top {
  top: 12%;
  left: -52px;
  animation-delay: 0s;
}
.float-bubble--bot {
  bottom: 18%;
  right: -56px;
  animation-delay: 2s;
}
@keyframes bubble-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-bubble__avatar {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}
.float-bubble__avatar--em {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}
.float-bubble__avatar--vio {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}
.float-bubble__body {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.float-bubble__name {
  font-weight: 600;
  color: #fff;
  font-size: 12px;
}
.float-bubble__msg {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  margin-top: 2px;
}
.float-bubble__live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.float-call {
  position: absolute;
  z-index: 3;
  top: 42%;
  left: -68px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.45), rgba(220, 38, 38, 0.35));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(239, 68, 68, 0.40);
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 16px 32px -10px rgba(239, 68, 68, 0.40);
  animation: bubble-float 6s ease-in-out infinite;
  animation-delay: 1s;
}
.float-call svg { width: 16px; height: 16px; }
.float-call__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  border: 2px solid rgba(239, 68, 68, 0.5);
  pointer-events: none;
  animation: ring-pulse 2.4s ease-out infinite;
}
.float-call__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.float-call__name { font-weight: 600; font-size: 12px; }
.float-call__sub { font-size: 11px; color: rgba(255, 255, 255, 0.85); margin-top: 2px; }

@media (max-width: 900px) {
  .float-bubble, .float-call { display: none; }
}

/* ────── stats strip ────── */
.stats {
  position: relative;
  z-index: 1;
  padding: 56px 24px 32px;
}
.stats__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 720px) {
  .stats__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
.stat {
  position: relative;
  padding: 22px 22px 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, background-color 0.3s;
}
.stat:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 68, 68, 0.30);
  background: rgba(239, 68, 68, 0.04);
}
.stat::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.16), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.stat__value {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #fca5a5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.stat__suffix {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--rose-400);
  margin-left: 2px;
}
.stat__label {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ────── marquee strip ────── */
.marquee {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding: 18px 0;
  border-block: 1px solid var(--border);
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.04), transparent);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  gap: 36px;
  animation: marquee 38s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose-500);
  box-shadow: 0 0 8px var(--rose-500);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* ────── card grid ────── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
.feature-card {
  position: relative;
  padding: 22px 22px 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s, background-color 0.3s,
              box-shadow 0.3s;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.4), rgba(168, 85, 247, 0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 280px 140px at 30% 0%, rgba(239, 68, 68, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.30);
  background: rgba(239, 68, 68, 0.04);
  box-shadow: 0 30px 60px -20px rgba(239, 68, 68, 0.20);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { opacity: 1; }

/* Cursor-following spotlight on data-spotlight cards */
[data-spotlight] {
  --mx: 50%;
  --my: 50%;
  position: relative;
}
[data-spotlight]::before,
[data-spotlight]::after { z-index: 0; }
[data-spotlight] > * { position: relative; z-index: 1; }
.feature-card[data-spotlight]::after {
  background: radial-gradient(
    circle 280px at var(--mx) var(--my),
    rgba(239, 68, 68, 0.18),
    transparent 60%
  );
}
.step[data-spotlight] {
  position: relative;
  overflow: hidden;
}
.step[data-spotlight]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 240px at var(--mx) var(--my),
    rgba(239, 68, 68, 0.14),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.step[data-spotlight]:hover::after { opacity: 1; }
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.15);
  color: var(--rose-400);
  margin-bottom: 14px;
}
.feature-card__icon svg { width: 18px; height: 18px; }
.feature-card__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
}
.feature-card__text {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 0;
}

/* ────── steps ────── */
.step-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step {
  display: grid;
  grid-template-columns: 56px 64px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 22px;
  transition: transform 0.25s, border-color 0.25s, background-color 0.25s;
}
.step:hover {
  transform: translateX(3px);
  border-color: rgba(239, 68, 68, 0.30);
  background: rgba(239, 68, 68, 0.04);
}
.step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.15);
  color: var(--rose-400);
}
.step__icon svg { width: 22px; height: 22px; }
.step__num {
  font-family: 'Manrope', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  z-index: 1;
}
/* Decorative huge background number behind step (counter-style) */
.step::before {
  content: counter(step-num, decimal-leading-zero);
  counter-increment: step-num;
  position: absolute;
  right: -10px;
  bottom: -28px;
  font-size: 7rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(239, 68, 68, 0.06);
  pointer-events: none;
  line-height: 0.85;
  z-index: 0;
}
.step-list { counter-reset: step-num; }
.step__body h3 { margin: 0 0 4px; font-size: 16px; font-weight: 700; }
.step__body p { margin: 0; font-size: 13px; color: var(--fg-muted); }

/* ────── CTA card ────── */
.cta {
  margin-top: 28px;
  padding: 28px 30px;
  border-radius: 24px;
  border: 1px solid rgba(239, 68, 68, 0.30);
  background:
    linear-gradient(135deg, rgba(239, 68, 68, 0.16) 0%, rgba(220, 38, 38, 0.04) 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 400px 200px at 100% 100%, rgba(239, 68, 68, 0.18), transparent 70%);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta__eyebrow {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(252, 165, 165, 0.95);
  margin-bottom: 8px;
  font-weight: 600;
}
.cta__title {
  margin: 0 0 4px;
  font-size: clamp(1.3rem, 1.5vw + 0.6rem, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cta__sub {
  margin: 0 0 18px;
  font-size: 13.5px;
  color: var(--fg-muted);
}

/* ────── about / FAQ ────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
  }
}
.faq {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.25s, background-color 0.25s;
}
.faq__item:hover { border-color: rgba(239, 68, 68, 0.20); }
.faq__item details { display: block; }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 16px 20px;
  font-size: 14.5px;
  font-weight: 500;
  list-style: none;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev {
  display: inline-block;
  width: 12px; height: 12px;
  border-right: 2px solid var(--fg-muted);
  border-bottom: 2px solid var(--fg-muted);
  transform: rotate(45deg);
  transition: transform 0.25s, border-color 0.25s;
  margin-top: -3px;
}
.faq__item details[open] .faq__chev {
  transform: rotate(-135deg);
  margin-top: 3px;
  border-color: var(--rose-400);
}
.faq__item details > p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: var(--fg-soft);
  line-height: 1.65;
}
.faq__item details > p a {
  color: var(--rose-400);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.security-card {
  position: relative;
  padding: 28px 26px;
  background:
    linear-gradient(135deg, rgba(239, 68, 68, 0.16), rgba(168, 85, 247, 0.08));
  border: 1px solid rgba(239, 68, 68, 0.20);
  border-radius: 22px;
  overflow: hidden;
}
.security-card__icon {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: rgba(239, 68, 68, 0.18);
  color: var(--rose-400);
  border-radius: 12px;
  margin-bottom: 14px;
}
.security-card__icon svg { width: 22px; height: 22px; }
.security-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.security-card p {
  margin: 0;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ────── footer ────── */
.footer {
  position: relative;
  z-index: 1;
  padding: 56px 24px 96px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer__logo {
  height: 38px;
  width: auto;
  margin-bottom: 4px;
}
.footer__url {
  margin: 4px 0 14px;
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.footer__line { margin: 0 0 6px; font-size: 13px; color: var(--fg-muted); }
.footer__copy { margin: 0 0 6px; font-size: 12px; color: rgba(255,255,255,0.5); }
.footer__support { margin: 0 0 14px; font-size: 12px; color: var(--fg-muted); }
.footer__support a {
  color: var(--rose-400);
  transition: color 0.2s;
}
.footer__support a:hover { color: var(--rose-500); }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  font-size: 12px;
}
.footer__nav a { color: var(--fg-muted); transition: color 0.2s; }
.footer__nav a:hover { color: var(--rose-400); }
.footer__sep { color: rgba(255,255,255,0.25); }

/* ────── reveal-on-scroll animation ────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone { animation: none; }
  .bg-glow > span { animation: none; }
}

/* ────── mobile tweaks ────── */
@media (max-width: 720px) {
  .section { padding: 64px 16px 40px; }
  .topbar {
    top: 12px;
    padding: 6px 6px 6px 14px;
    width: calc(100% - 24px);
  }
  .topbar__logo { height: 20px; }
  .topbar__cta {
    padding: 6px 11px 6px 9px;
    font-size: 12px;
  }
  .topbar__cta svg { width: 14px; height: 14px; }
  .topbar__cta span { display: none; }   /* icon-only on mobile */

  .hero { padding-top: 96px; padding-bottom: 56px; min-height: auto; }
  .hero__grid { gap: 36px; }

  /* User wants the phone screenshot HIDDEN on mobile — too cramped. */
  .hero__phone { display: none; }

  .step { grid-template-columns: 44px 48px 1fr; gap: 12px; padding: 14px 16px; }
  .step__icon { width: 36px; height: 36px; }
  .step__icon svg { width: 18px; height: 18px; }
  .feature-card { padding: 18px; }
  .cta { padding: 22px 20px; }
  .footer { padding: 40px 16px 80px; }
  .display { font-size: clamp(2.2rem, 8vw, 3rem); }
  .h2 { font-size: clamp(1.55rem, 6vw, 2.1rem); }
}

/* ────── legal pages (privacy/policy/child-safety) ────── */
.legal {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  /* Extra top padding so first heading isn't hidden behind the floating
   * pill-topbar. Larger on mobile because layout shifts more. */
  padding: 150px 24px 100px;
}
@media (max-width: 720px) {
  .legal { padding: 120px 16px 80px; }
}
.legal::before {
  content: '';
  position: fixed;
  top: -40%;
  right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.12), transparent 70%);
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}
/* Inner sections inside privacy/policy reused `.section`/`.hero` from the
 * landing — that piles 96-130px of extra top padding on every block. Strip it
 * so legal pages flow tightly under the back-button. */
.legal section,
.legal .section,
.legal .hero,
.legal .sections {
  padding: 0;
  margin: 0;
  min-height: 0;
}
.legal .sections,
.legal .hero { display: block; }
.legal h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.legal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}
.legal p, .legal li {
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.7;
}
.legal ul, .legal ol { padding-left: 1.4em; }
.legal a { color: var(--rose-400); text-decoration: underline; text-underline-offset: 3px; }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-muted);
  transition: color 0.2s, border-color 0.2s;
}
.legal__back:hover { color: var(--rose-400); border-color: rgba(239, 68, 68, 0.30); }

/* Compat for the existing privacy/policy markup (`.glass-card`, `.eyebrow`,
 * `.section-grid`, `.detail`, etc.) — gives those pages the new dark glass
 * look without rewriting their layouts. */
.legal .glass-card,
.legal .hero-card,
.legal .summary-card,
.legal .section-card {
  position: relative;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  margin-bottom: 18px;
  overflow: hidden;
}
.legal .container { max-width: 100%; padding: 0; }
.legal .hero-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}
@media (min-width: 900px) {
  .legal .hero-grid { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); }
}
.legal .hero-title { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 12px 0 12px; }
.legal .hero-copy { color: var(--fg-muted); font-size: 14px; line-height: 1.65; margin: 0 0 14px; }
.legal .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, 0.30);
  background: rgba(239, 68, 68, 0.08);
  font-size: 12px;
  color: rgba(252, 165, 165, 0.95);
  font-weight: 500;
}
.legal .eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose-500);
  box-shadow: 0 0 8px var(--rose-500);
}
.legal .hero-points,
.legal .summary-list { display: grid; gap: 12px; }
.legal .point,
.legal .summary-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
}
.legal .point strong,
.legal .summary-item strong { display: block; font-size: 13px; margin-bottom: 4px; color: var(--fg); }
.legal .point span,
.legal .summary-item span { font-size: 12.5px; color: var(--fg-muted); line-height: 1.5; }
.legal .summary-card h2,
.legal .section-card h2 { font-size: 1.3rem; margin: 0 0 8px; }
.legal .summary-card > p { color: var(--fg-muted); font-size: 14px; margin: 0 0 14px; line-height: 1.6; }
.legal .section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.legal .section-head > div { min-width: 0; }
.legal .section-head h2 { margin: 0 0 4px; }
.legal .section-head p { margin: 0; color: var(--fg-muted); font-size: 13.5px; }
.legal .section-badge {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.15);
  color: var(--rose-400);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center; justify-content: center;
}
.legal .section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) {
  .legal .section-grid { grid-template-columns: repeat(2, 1fr); }
}
.legal .detail {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
}
.legal .detail h3 { margin: 0 0 5px; font-size: 14px; font-weight: 600; }
.legal .detail p { margin: 0; font-size: 12.5px; color: var(--fg-muted); line-height: 1.55; }
.legal .reveal,
.legal .reveal-delay-1,
.legal .reveal-delay-2,
.legal .reveal-delay-3 { opacity: 1; transform: none; }

/* ────── phone video — mute toggle ────── */
.phone__mute {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 5;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.phone__mute:hover {
  background: rgba(0, 0, 0, 0.78);
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.55);
}
.phone__mute:active { transform: scale(0.96); }
.phone__mute svg { width: 18px; height: 18px; }
.phone__mute svg.phone__mute-icon--off { display: block; }
.phone__mute svg.phone__mute-icon--on { display: none; }
.phone[data-muted="false"] .phone__mute svg.phone__mute-icon--off { display: none; }
.phone[data-muted="false"] .phone__mute svg.phone__mute-icon--on { display: block; }
