/* ═══════════════════════════════════════════════
   drshka — main.css
   Aesthetic: Warm editorial · playful bold · organic
   ═══════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────── */
:root {
  --bg:     #F8F5F0;
  --bg2:    #FFFDF9;
  --ink:    #0D0B14;
  --ink2:   #4A3F35;
  --ink3:   #A0948A;
  --y:      #FFE500;
  --p:      #FF2D78;
  --b:      #00A8E8;
  --g:      #00CC6A;
  --o:      #FF6B2B;
  --purple: #A855F7;
  --cyan:   #00D4FF;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }

/* ── SCROLL PROGRESS ─────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  z-index: 9000;
  background: linear-gradient(90deg, var(--y), var(--p), var(--b), var(--g));
  transform-origin: left;
  transform: scaleX(0);
}

/* ── CUSTOM CURSOR ───────────────────────────── */
#cur-dot {
  position: fixed;
  width: 7px; height: 7px;
  background: var(--p);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), background .2s, opacity .2s;
  will-change: left, top;
}
#cur-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255, 45, 120, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-out), height .35s var(--ease-out), border-color .3s, opacity .2s;
  will-change: left, top;
}
body.hov #cur-dot  { width: 0; height: 0; opacity: 0; }
body.hov #cur-ring { width: 60px; height: 60px; border-color: var(--ink); border-width: 1px; }

/* ── NAV ─────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 22px 52px;
  background: rgba(237,233,227,.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(13,11,20,.06);
  transition: background .35s, backdrop-filter .35s, box-shadow .35s, padding .35s;
}
#nav.scrolled {
  background: rgba(248, 245, 240, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(13,11,20,.07);
  padding: 14px 52px;
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-dr { color: var(--purple); }
.logo-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--y);
  border: 1px solid rgba(0,0,0,.12);
  animation: logoPulse 2.2s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.5); }
}
.nav-cta {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  background: var(--ink);
  color: var(--y);
  padding: 12px 24px;
  border-radius: 100px;
  transition: transform .2s, background .2s, color .2s;
}
.nav-cta:hover { background: var(--p); color: #fff; transform: scale(1.04); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }

/* ── NOISE OVERLAY ───────────────────────────── */
.noise-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background: #F0EDE8;
}

/* ── BLOB LAYER ──────────────────────────────── */
.blob-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* GPU-only: JS двигает через transform, border-radius морфит тоже через JS */
.blob {
  position: absolute;
  will-change: transform, border-radius;
}

/* цвета и прозрачность — размер и позиция через JS */
.blob-1 { background:#C084FC; opacity:.30; }
.blob-2 { background:#6EC6BB; opacity:.28; }
.blob-3 { background:#FFD166; opacity:.32; }
.blob-4 { background:#FFB3C6; opacity:.30; }
.blob-5 { background:#FFD166; opacity:.26; }
.blob-6 { background:#A78BFA; opacity:.28; }
.blob-7 { background:#86EFAC; opacity:.26; }
.blob-8 { background:#FDA4AF; opacity:.30; }
.blob-9 { background:#C084FC; opacity:.22; }

/* движение и морфинг блобов управляется через blobs.js */

/* Canvas занимает всю hero — рисует ДРшка конфетти */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* UI — абсолютно позиционирован, сразу под надписью (надпись на ~42% высоты) */
.hero-ui {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 40px 24px 52px;
  text-align: center;
  top: 64%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(240,237,232,.88) 18%,
    rgba(240,237,232,.98) 100%);
}

/* кнопки строго по центру в одну строку */
.hero-ui .hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  /* сброс анимации из общего стиля — управляем отсюда */
  animation: fadeUp .7s 1.8s both;
}

.hero-meta {
  opacity: 0;
  animation: fadeUp .7s 1.6s forwards;
}
.hero-meta .hero-sub {
  margin-bottom: 0;
  animation: none;
  opacity: 1;
}

.hero-ctas {
  opacity: 0;
  animation: fadeUp .7s 1.8s forwards;
}

/* hero orbs removed */

/* ── HERO CTAs ───────────────────────────────── */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s 1.2s forwards;
}

.cta-main {
  position: relative;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  background: var(--y);
  color: var(--ink);
  padding: 18px 40px;
  border-radius: 100px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .2s var(--ease-out), box-shadow .2s;
  animation: ctaPulse 3s 2.5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,229,0,.5); }
  50%       { box-shadow: 0 0 0 20px rgba(255,229,0,0); }
}
.cta-main:hover { transform: scale(1.04); box-shadow: 0 12px 36px rgba(255,229,0,.4); }

.cta-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shimmer 3.5s 2s ease-in-out infinite;
}
@keyframes shimmer {
  0%  { transform: translateX(-100%); }
  30% { transform: translateX(100%); }
  100%{ transform: translateX(100%); }
}

.cta-ghost {
  font-size: 15px;
  color: var(--ink2);
  letter-spacing: .01em;
  border-bottom: 1.5px solid rgba(13,11,20,.2);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.cta-ghost:hover { color: var(--p); border-color: var(--p); }

/* ── HERO BADGE ──────────────────────────────── */
.hero-badge {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(13,11,20,.08);
  backdrop-filter: blur(14px);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 12px;
  color: var(--ink2);
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(13,11,20,.07);
  opacity: 0;
  animation: fadeUp .8s 1.5s forwards;
}
.hb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--g);
  flex-shrink: 0;
  animation: logoPulse 2s ease-in-out infinite;
}

/* hero orbs removed — replaced by dot grid */

/* ── TYPING TEXT ─────────────────────────────── */
.hero-sub {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp .8s 1s forwards;
  min-height: 2em;
}
.typing-text {
  display: inline;
}
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--p);
  vertical-align: middle;
  margin-left: 2px;
  animation: blinkCursor .7s step-end infinite;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Keyframes shared */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   MARQUEE RIBBON
══════════════════════════════════════ */
.marquee-ribbon {
  background: var(--ink);
  color: var(--y);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeRoll 28s linear infinite;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
}
.marquee-track span { padding: 0 28px; white-space: nowrap; }
.marquee-track .sep { color: var(--p); padding: 0 4px; }

@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   HORIZONTAL FEATURES SCROLL
══════════════════════════════════════ */
#features { /* height set by JS */ }

.features-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.features-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.f-panel {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Label panel ─────────────────────────────── */
.f-panel--label { background: var(--ink); }

.f-label-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  text-align: center;
}
.f-eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.f-label-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 52px;
}
.f-label-hint {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.4);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.f-label-hint svg { opacity: .5; }

/* Panel progress dots */
.panel-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.panel-dot {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.2);
  transition: width .4s var(--ease-out), background .4s;
}
.panel-dot--active {
  width: 24px;
  background: var(--y);
}

/* Blobs in label panel */
.f-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: blobMorph 18s ease-in-out infinite;
}
.f-blob--a {
  width: 520px; height: 480px;
  background: #FF2D78;
  opacity: .12;
  top: -140px; right: -120px;
}
.f-blob--b {
  width: 360px; height: 340px;
  background: var(--y);
  opacity: .1;
  bottom: -80px; left: -60px;
  animation-delay: -9s;
}
@keyframes blobMorph {
  0%   { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; transform: translate(0,0) rotate(0deg); }
  25%  { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; transform: translate(-35px,45px) rotate(5deg); }
  50%  { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; transform: translate(45px,-35px) rotate(-4deg); }
  75%  { border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; transform: translate(-20px,-45px) rotate(6deg); }
  100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; transform: translate(0,0) rotate(0deg); }
}

/* ── Content panels ──────────────────────────── */
.f-panel--1 { background: var(--bg2); }
.f-panel--2 { background: #0F0E17; }
.f-panel--3 { background: #F3F0FF; }

.f-panel-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
  padding: 60px 80px;
  height: 100%;
  position: relative;
  overflow: visible;
}
.f-panel-inner--rev { flex-direction: row-reverse; }

.f-panel-visual { position: relative; flex-shrink: 0; }
.f-text { flex: 0 0 auto; width: clamp(280px, 30vw, 420px); }

.f-num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(200px, 28vw, 380px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
  color: rgba(13,11,20,.05);
  position: absolute;
  left: clamp(-180px, -15vw, -60px);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}
.f-panel--2 .f-num { color: rgba(255,255,255,.07); }
.f-panel--3 .f-num { color: rgba(168,85,247,.08); }

.f-text { position: relative; z-index: 1; }

.f-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}
.f-panel--2 .f-title { color: #fff; }
.f-panel--3 .f-title { color: var(--ink); }

.f-desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink2);
  margin-bottom: 28px;
}
.f-panel--2 .f-desc { color: rgba(255,255,255,.55); }

.f-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.f-list li {
  font-size: 15px;
  color: var(--ink2);
  padding-left: 20px;
  position: relative;
}
.f-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--g);
  font-weight: 700;
}
.f-panel--2 .f-list li { color: rgba(255,255,255,.5); }
.f-panel--2 .f-list li::before { color: var(--g); }

/* ── PHONE FRAME ─────────────────────────────── */
.phone-frame {
  width: 310px;
  background: #fff;
  border-radius: 40px;
  box-shadow:
    0 0 0 1px rgba(13,11,20,.08),
    0 28px 72px rgba(13,11,20,.16),
    inset 0 0 0 1.5px rgba(255,255,255,.9);
  overflow: hidden;
  position: relative;
}
.phone-frame--dark {
  background: #1A1825;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 28px 72px rgba(13,11,20,.4),
    inset 0 0 0 1.5px rgba(255,255,255,.06);
}
.phone-notch {
  width: 100px;
  height: 28px;
  background: var(--ink);
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
}
.phone-frame--dark .phone-notch { background: #0D0B14; }
.phone-screen {
  padding: 16px 18px 24px;
  min-height: 360px;
}

/* ── PHONE GLOW ──────────────────────────────── */
.phone-glow {
  position: absolute;
  width: 280px;
  height: 260px;
  border-radius: 50%;
  filter: blur(55px);
  opacity: .3;
  pointer-events: none;
  bottom: -60px;
  right: -60px;
  animation: blobMorph 16s ease-in-out infinite;
}
.phone-glow--cyan   { background: var(--cyan); }
.phone-glow--orange { background: var(--o); }
.phone-glow--purple { background: var(--purple); }

/* ── PHONE SCREEN APP ───────────────────────── */
.phone-screen--app {
  background: #FFFBF5;
  padding: 16px 14px 20px;
  font-family: 'Inter', 'DM Sans', sans-serif;
}

/* ── MOCK PROFILE ────────────────────────────── */
.mock-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.mock-avatar-wrap { position: relative; }
.mock-avatar-grad {
  width: 56px; height: 56px;
  border-radius: 16px;
  padding: 2.5px;
  background: linear-gradient(135deg, #A855F7, #FB7185, #F59E0B);
}
.mock-avatar-inner {
  width: 100%; height: 100%;
  border-radius: 13px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
}
.mock-profile-name {
  font-size: 14px;
  font-weight: 700;
  color: #1C1917;
  font-family: 'Unbounded', sans-serif;
}
.mock-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  background: #FFF7ED;
  border: 1px solid #FFEDD5;
  font-size: 10px;
  font-weight: 500;
  color: #78716C;
}

/* ── MOCK CATEGORY TABS ──────────────────────── */
.mock-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}
.mock-tab {
  font-size: 10px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid #FFEDD5;
  color: #78716C;
  white-space: nowrap;
  flex-shrink: 0;
}
.mock-tab--active {
  background: linear-gradient(135deg, #A855F7, #9333EA);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 8px rgba(168,85,247,.35);
}

/* ── WISHLIST GRID MOCK ──────────────────────── */
.wish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.wcard {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid hsla(258, 90%, 66%, 0.08);
  box-shadow:
    0 2px 6px rgba(0,0,0,.04),
    0 6px 16px hsla(258,90%,66%,.07);
}
.wcard--add { opacity: .55; }

.wcard-img {
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #F5F5F4;
}
.wcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Фоны — имитация фото товара */
.wcard-img--bag  { background: linear-gradient(145deg, #FFF1F2 0%, #FDA4AF 100%); }
.wcard-img--book { background: linear-gradient(145deg, #EFF6FF 0%, #BFDBFE 100%); }
.wcard-img--perf { background: linear-gradient(145deg, #FAF5FF 0%, #DDD6FE 100%); }
.wcard-img--empty { background: #F5F5F4; color: #A8A29E; }

/* Декоративные блобы внутри фото-заглушки */
.wcard-img--bag::before  { content:''; position:absolute; width:52px; height:40px; background:rgba(251,113,133,.25); border-radius:50%; top:42%; left:50%; transform:translate(-50%,-50%); }
.wcard-img--bag::after   { content:''; position:absolute; width:20px; height:22px; background:rgba(251,113,133,.18); border-radius:4px; top:52%; left:52%; transform:translate(-50%,-50%); }
.wcard-img--book::before { content:''; position:absolute; width:30px; height:40px; background:rgba(96,165,250,.3); border-radius:4px; top:50%; left:50%; transform:translate(-50%,-50%); }
.wcard-img--perf::before { content:''; position:absolute; width:18px; height:36px; background:rgba(168,85,247,.28); border-radius:3px 3px 8px 8px; top:50%; left:50%; transform:translate(-50%,-50%); }
.wcard-img--perf::after  { content:''; position:absolute; width:28px; height:5px; background:rgba(168,85,247,.18); border-radius:100px; top:calc(50% + 20px); left:50%; transform:translate(-50%,-50%); }

/* Стеклянный бейдж цены — glass morphism как в приложении */
.wcard-price-badge {
  position: absolute;
  top: 7px; right: 7px;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 100px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.5);
  color: #15803d;
  line-height: 1.4;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

/* Бейдж статуса */
.wcard-status-badge {
  position: absolute;
  bottom: 7px; left: 7px;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.wcard-status--free  { background: rgba(209,250,229,.92); color: #065F46; }
.wcard-status--taken { background: rgba(254,226,226,.92); color: #991B1B; }

/* Бейдж сбора */
.wcard-pool-badge {
  position: absolute;
  bottom: 7px; left: 7px; right: 7px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 4px 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.wcard-pool-bar {
  flex: 1; height: 4px;
  background: rgba(168,85,247,.15);
  border-radius: 100px;
  overflow: hidden;
}
.wcard-pool-fill {
  height: 100%;
  background: linear-gradient(90deg, #A855F7, #C084FC);
  border-radius: 100px;
}
.wcard-pool-badge span { font-size: 9px; font-weight: 700; color: #A855F7; flex-shrink: 0; }

.wcard-body { padding: 8px 10px 9px; }
.wcard-title {
  font-size: 10.5px;
  font-weight: 600;
  color: #1C1917;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── WISHLIST MOCK ───────────────────────────── */
.app-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(13,11,20,.06);
}
.app-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900; font-size: 15px;
  color: var(--ink);
  flex-shrink: 0;
}
.av-yellow { background: var(--y); }
.app-info { flex: 1; }
.app-name  { font-size: 13px; font-weight: 600; color: var(--ink); }
.app-sub   { font-size: 11px; color: var(--ink3); margin-top: 1px; }
.app-pill  { font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.pill-yellow { background: var(--y); color: var(--ink); }

.wish-list { display: flex; flex-direction: column; gap: 8px; }
.wish-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  background: var(--bg);
  border-radius: 10px;
  transition: background .2s;
}
.wish-row--add { opacity: .4; }
.wish-emoji { font-size: 18px; flex-shrink: 0; }
.wish-meta  { flex: 1; min-width: 0; }
.wish-name  { font-size: 11px; font-weight: 500; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wish-price { font-size: 10px; color: var(--ink3); margin-top: 1px; }
.wish-tag   { font-size: 9px; font-weight: 700; padding: 3px 7px; border-radius: 100px; flex-shrink: 0; }
.tag-free  { background: #D1FAE5; color: #065F46; }
.tag-taken { background: #FEE2E2; color: #991B1B; }
.tag-pool  { background: #EDE9FE; color: #5B21B6; }

/* ── NOTIF MOCK ──────────────────────────────── */
.notif-stack { display: flex; flex-direction: column; gap: 9px; }
.notif {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.07);
}
.notif--hot {
  background: rgba(255,229,0,.1);
  border-color: rgba(255,229,0,.2);
}
.notif-left { display: flex; gap: 10px; flex: 1; }
.notif-app-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.notif-content { flex: 1; }
.notif-app   { font-size: 10px; color: rgba(255,255,255,.3); margin-bottom: 2px; letter-spacing: .04em; }
.notif-title { font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.notif-body  { font-size: 11px; color: rgba(255,255,255,.5); line-height: 1.4; }
.notif-time  { font-size: 10px; color: rgba(255,255,255,.25); flex-shrink: 0; }

/* ── DASHBOARD MOCK ──────────────────────────── */
.phone-screen--dash { padding: 14px 12px 16px; }

.dash-header { margin-bottom: 12px; }
.dash-greeting {
  font-size: 12px;
  font-weight: 700;
  color: #1C1917;
  font-family: 'DM Sans', sans-serif;
}
.dash-name { color: #A855F7; }
.dash-sub  { font-size: 10px; color: #78716C; margin-top: 1px; }

.dash-section-label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.dash-section-icon { font-size: 12px; }
.dash-section-text {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #78716C;
}

.friend-list { display: flex; flex-direction: column; gap: 6px; }

.fcard {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 12px rgba(139,92,246,.05);
}
.fcard--today {
  background: linear-gradient(135deg, #fdf4ff, #f5f3ff);
  box-shadow: 0 2px 8px rgba(168,85,247,.15);
}
.fcard--soon {
  background: linear-gradient(135deg, #fff1f2, #fdf4ff);
  box-shadow: 0 2px 8px rgba(251,113,133,.12);
}

/* Аватар — квадратный с градиентной рамкой как в приложении */
.fcard-av-wrap {
  width: 36px; height: 36px;
  border-radius: 10px;
  padding: 2px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.fcard-av-wrap--grad {
  background: linear-gradient(135deg, #A855F7, #FB7185, #F59E0B);
}
.fcard-av-wrap--soft {
  background: linear-gradient(135deg, #C084FC, #818CF8);
}
.fcard-av-inner {
  width: 100%; height: 100%;
  border-radius: 8px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.fcard-info { flex: 1; min-width: 0; }
.fcard-name {
  font-size: 11px;
  font-weight: 600;
  color: #1C1917;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fcard-confetti { font-size: 10px; }
.fcard-fire     { font-size: 10px; }
.fcard-date { font-size: 9px; color: #78716C; margin-top: 1px; }

/* Круговой прогресс справа */
.fcard-circle {
  position: relative;
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.fcard-ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.fcard-circle-emoji {
  font-size: 13px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* ── POOL SCREEN ─────────────────────────────── */
.phone-screen--pool { padding: 14px 12px 16px; }

.pool-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.pool-header-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: #78716C;
}
.pool-header-pills { display: flex; gap: 6px; }
.pool-header-pill {
  display: flex; align-items: center; gap: 4px;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 600;
  color: #78716C;
}

/* Bento */
.pool-bento { display: flex; flex-direction: column; gap: 8px; }

/* Hero тайл */
.pool-hero-tile {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 130px;
  background: linear-gradient(150deg, #A855F7 0%, #7C3AED 40%, #4C1D95 100%);
}
.pool-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .22;
}
.pool-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(76,29,149,.85) 0%, transparent 60%);
}
/* Декоративные круги */
.pool-hero-tile::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.pool-hero-status {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; align-items: center; gap: 5px;
  padding: 4px 9px;
  border-radius: 100px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  font-size: 10px; font-weight: 700; color: #fff;
}
.pool-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #A78BFA;
}
.pool-hero-text {
  position: absolute;
  bottom: 12px; left: 14px; right: 14px;
}
.pool-hero-sub { font-size: 10px; color: rgba(255,255,255,.6); margin-bottom: 3px; }
.pool-hero-title { font-size: 15px; font-weight: 800; color: #fff; line-height: 1.2; font-family: 'Unbounded', sans-serif; }

/* Два маленьких тайла */
.pool-small-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pool-tile {
  background: #fff;
  border-radius: 20px;
  padding: 12px 13px;
  border: 1px solid hsla(258,90%,66%,.08);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.pool-tile-amount {
  font-size: 17px; font-weight: 900;
  color: #1C1917;
  font-family: 'Unbounded', sans-serif;
  line-height: 1;
  margin-bottom: 3px;
}
.pool-tile-sub { font-size: 10px; color: #A8A29E; }
.pool-tile-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #A8A29E; margin-bottom: 4px; }
.pool-tile-pct {
  font-size: 20px; font-weight: 900;
  color: #A855F7;
  font-family: 'Unbounded', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}
.pool-liquid-wrap { }
.pool-liquid-bg {
  height: 7px;
  background: hsla(258,90%,66%,.12);
  border-radius: 100px;
  overflow: hidden;
}
.pool-liquid-fill {
  height: 100%;
  background: linear-gradient(90deg, #A855F7, #C084FC);
  border-radius: 100px;
}

/* CTA кнопка */
.pool-cta-btn {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  border-radius: 18px;
  padding: 14px;
  text-align: center;
  font-size: 13px; font-weight: 700;
  color: #fff;
  box-shadow: 0 6px 20px rgba(139,92,246,.35);
}

/* Glow под телефоном */
.pool-glow-bg {
  position: absolute;
  width: 260px; height: 200px;
  background: #A855F7;
  border-radius: 50%;
  filter: blur(55px);
  opacity: .22;
  bottom: -50px; right: -50px;
  pointer-events: none;
}

/* ══════════════════════════════════════
   WHY — BENTO GRID
══════════════════════════════════════ */
#why { padding: 130px 52px; }
.why-wrap { max-width: 1200px; margin: 0 auto; }
.why-header { margin-bottom: 56px; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--ink);
}

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.bcard {
  background: var(--bg2);
  border-radius: 28px;
  padding: 36px;
  border: 1px solid rgba(13,11,20,.06);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s;
  cursor: default;
}
.bcard:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(13,11,20,.1); }

/* Gradient border on hover via pseudo-element */
.bcard::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--y), var(--p), var(--b), var(--purple));
  z-index: -1;
  opacity: 0;
  transition: opacity .4s;
}
.bcard:hover::after { opacity: 0.5; }

.bcard--wide { grid-column: span 2; }
.bcard--ink  { background: var(--ink); }
.bcard--cream { background: var(--bg); }

.bcard-content { position: relative; z-index: 2; max-width: 280px; }
.bcard-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.bcard-icon svg { display: block; }
.bcard-icon--pink   { background: rgba(255,45,120,.12);  color: var(--p); }
.bcard-icon--yellow { background: rgba(255,229,0,.2);    color: #9A7A00; }
.bcard-icon--blue   { background: rgba(0,168,232,.12);   color: var(--b); }
.bcard-icon--purple { background: rgba(168,85,247,.12);  color: var(--purple); }
.bcard--ink .bcard-icon--pink   { background: rgba(255,45,120,.2); color: #FF6B9D; }
.bcard--ink .bcard-icon--yellow { background: rgba(255,229,0,.15); color: var(--y); }
.bcard h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.bcard--ink h3 { color: #fff; }
.bcard p { font-size: 14px; line-height: 1.65; color: var(--ink2); }
.bcard--ink p { color: rgba(255,255,255,.5); }

/* Glow on hover (follows cursor via CSS vars) */
.bcard::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,120,.15) 0%, transparent 70%);
  pointer-events: none;
  left: var(--mx, 50%);
  top: var(--my, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s;
}
.bcard:hover::before { opacity: 1; }

/* Calendar deco */
.bcard-deco {
  position: absolute;
  right: 32px; top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.bcard-cal {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 16px 20px;
  min-width: 200px;
}
.cal-month {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
  margin-bottom: 10px;
}
.cal-days {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.cal-days span {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,.35);
  width: 28px; text-align: center;
}
.cal-day-hl {
  color: var(--ink) !important;
  background: var(--y);
  border-radius: 6px;
  padding: 2px 0;
}
.cal-event {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  background: rgba(255,229,0,.12);
  padding: 6px 10px;
  border-radius: 8px;
}

.bcard-glow { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.bcard-glow--pink { width: 280px; height: 260px; background: var(--p); opacity: .12; top: -60px; right: -40px; }

/* Tags */
.bcard-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.btag {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(13,11,20,.06);
  color: var(--ink2);
}
.btag--y { background: rgba(255,229,0,.2); color: #7A6800; }
.btag--p { background: rgba(168,85,247,.12); color: #6D28D9; }
.btag--b { background: rgba(0,168,232,.12); color: #0369A1; }

/* Avatars */
.bcard-avatars { display: flex; gap: -4px; margin-top: 20px; }
.bav {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900; font-size: 13px; color: #fff;
  border: 2px solid var(--bg2);
  margin-left: -6px;
  transition: transform .2s;
}
.bav:first-child { margin-left: 0; }
.bav-more { background: var(--ink); font-size: 11px; }
.bcard-avatars:hover .bav { transform: translateX(-3px); }
.bcard-avatars:hover .bav:first-child { transform: none; }

/* Chat bubbles in bento */
.bcard-chat {
  position: absolute;
  right: 28px; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 220px;
}
.chat-bubble {
  font-size: 13px;
  line-height: 1.4;
  padding: 10px 14px;
  background: rgba(13,11,20,.06);
  border-radius: 14px 14px 14px 4px;
  color: var(--ink2);
}
.chat-bubble--btn {
  background: var(--purple);
  color: #fff;
  font-weight: 600;
  border-radius: 14px 14px 14px 4px;
}
.chat-bubble--small { font-size: 12px; color: var(--ink3); background: rgba(0,204,106,.1); }

/* Reveal animation for bento cards */
.bcard[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), box-shadow .4s;
  transition-delay: var(--delay, 0s);
}
.bcard[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
.bcard[data-reveal].visible:hover { transform: translateY(-6px); }

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
#stats { background: var(--ink); padding: 80px 52px; }
.stats-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-sep  { width: 1px; height: 60px; background: rgba(255,255,255,.08); }
.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.35); }

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
#reviews { padding: 120px 0 120px 52px; overflow: hidden; }
.reviews-header { max-width: 1200px; margin: 0 auto; margin-bottom: 52px; }
.reviews-header .section-title { margin-bottom: 0; }

.reviews-mask {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 6%, black 88%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, black 6%, black 88%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 18px;
  animation: rvScroll 30s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }

@keyframes rvScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.rv-card {
  flex: 0 0 320px;
  background: var(--bg2);
  border: 1px solid rgba(13,11,20,.06);
  border-radius: 24px;
  padding: 28px;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.rv-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(13,11,20,.08); }
.rv-stars { font-size: 14px; color: var(--y); letter-spacing: 2px; margin-bottom: 14px; }
.rv-card p {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink2);
  margin-bottom: 20px;
}
.rv-author { display: flex; align-items: center; gap: 10px; }
.rv-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900; font-size: 13px; color: #fff;
  flex-shrink: 0;
}
.rv-author b  { display: block; font-size: 13px; font-weight: 600; color: var(--ink); }
.rv-author span { font-size: 11px; color: var(--ink3); margin-top: 1px; display: block; }

/* ══════════════════════════════════════
   SCROLL TIMELINE
══════════════════════════════════════ */
#timeline {
  padding: 120px 52px;
  background: var(--bg2);
}
.tl-wrap { max-width: 1000px; margin: 0 auto; }
.tl-header { margin-bottom: 72px; }

.tl-body {
  position: relative;
  padding-left: 60px;
}

/* Vertical track line */
.tl-line-track {
  position: absolute;
  left: 16px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(13,11,20,.08);
  border-radius: 2px;
}
.tl-line-fill {
  width: 100%;
  height: 0%;           /* grows via JS/GSAP */
  background: linear-gradient(180deg, var(--y), var(--p), var(--purple));
  border-radius: 2px;
  transform-origin: top;
}

.tl-steps { display: flex; flex-direction: column; gap: 0; }

.tl-step {
  position: relative;
  padding: 0 0 56px 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.tl-step.visible { opacity: 1; transform: none; }
.tl-step:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -49px;
  top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid rgba(13,11,20,.15);
  transition: background .4s, border-color .4s, transform .4s var(--ease-out);
  z-index: 1;
}
.tl-step.visible .tl-dot {
  background: var(--y);
  border-color: var(--y);
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(255,229,0,.25);
}

.tl-card {
  background: #fff;
  border: 1px solid rgba(13,11,20,.06);
  border-radius: 20px;
  padding: 28px 32px;
  transition: box-shadow .3s, transform .3s var(--ease-out);
}
.tl-card:hover { transform: translateX(6px); box-shadow: 0 12px 36px rgba(13,11,20,.08); }
.tl-card--accent {
  background: var(--ink);
  border-color: transparent;
}
.tl-card--accent h3 { color: #fff; }
.tl-card--accent p  { color: rgba(255,255,255,.55); }
.tl-card--accent .tl-num { color: rgba(255,229,0,.3); }

.tl-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink3);
  margin-bottom: 8px;
}
.tl-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 17px; font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.tl-card p { font-size: 15px; line-height: 1.65; color: var(--ink2); }

/* ══════════════════════════════════════
   BIG REVEAL TEXT
══════════════════════════════════════ */
#reveal-text {
  padding: 120px 52px;
  background: var(--ink);
  overflow: hidden;
  position: relative;
}
.rt-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.rt-mask {
  overflow: hidden;
}
.rt-text {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 6.5vw, 100px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: #fff;
  transform: translateY(110%);  /* revealed by GSAP */
  will-change: transform;
}
.rt-sub {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255,255,255,.4);
  margin-top: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s .3s, transform .8s .3s var(--ease-out);
}
.rt-sub.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   CTA FINAL
══════════════════════════════════════ */
#cta-final {
  position: relative;
  background: var(--bg2);
  padding: 160px 52px;
  overflow: hidden;
  text-align: center;
}
#cta-confetti {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.cta-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobMorph 20s ease-in-out infinite;
}
.cta-blob--1 { width: 480px; height: 460px; background: var(--p); opacity: .1; top: -120px; left: -80px; }
.cta-blob--2 { width: 380px; height: 360px; background: var(--y); opacity: .12; bottom: -80px; right: -60px; animation-delay: -8s; }
.cta-blob--3 { width: 260px; height: 240px; background: var(--b); opacity: .08; top: 40%; left: 40%; animation-delay: -14s; }

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

/* CTA stickers */
/* CTA accent orbs */
.cta-orbs { position: relative; height: 60px; margin-bottom: 8px; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  animation: orbDrift 14s ease-in-out infinite;
}
.cta-orb-1 { width: 60px; height: 60px; background: var(--y); left: calc(50% - 60px); top: 0; opacity: .7; }
.cta-orb-2 { width: 44px; height: 44px; background: var(--p); left: 50%;              top: 8px; opacity: .6; animation-delay: -5s; }
.cta-orb-3 { width: 36px; height: 36px; background: var(--b); left: calc(50% - 20px); top: 16px; opacity: .5; animation-delay: -9s; }

.cta-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 20px;
}
.cta-sub {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink2);
  margin-bottom: 44px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: .02em;
  background: var(--ink);
  color: #fff;
  padding: 20px 44px;
  border-radius: 100px;
  transition: transform .25s var(--ease-out), box-shadow .25s;
  margin-bottom: 20px;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(13,11,20,.24); }
.cta-note { font-size: 13px; color: var(--ink3); }

/* ── WORD REVEAL SPLIT TEXT ──────────────────── */
.w-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.w-inner {
  display: inline-block;
  /* GSAP animates yPercent on this */
}

/* data-reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--ink);
  padding: 40px 52px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900; font-size: 14px;
  color: #fff;
}
.footer-links { display: flex; gap: 24px; margin-left: auto; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }

/* ══════════════════════════════════════
   ZOOM TUNNEL SECTION
══════════════════════════════════════ */
#zoom-tunnel {
  height: 400vh;
  position: relative;
}
.zt-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
}
.zt-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Rings around the card — atmosphere */
.zt-bg-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.zt-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.zt-ring-1 { width: 900px; height: 900px; }
.zt-ring-2 { width: 1300px; height: 1300px; border-color: rgba(255,229,0,0.04); }
.zt-ring-3 { width: 1800px; height: 1800px; border-color: rgba(255,45,120,0.03); }

.zt-card {
  position: relative;
  width: 580px;
  max-width: 90vw;
  background: linear-gradient(145deg, #1a1726, #0d0b14);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 56px 52px;
  overflow: hidden;
  will-change: transform;
  /* starts small, grows via GSAP */
  transform: scale(0.12);
  opacity: 0;
}
.zt-card-inner { position: relative; z-index: 2; }
.zt-card-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 20px;
}
.zt-card-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.zt-card-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 36px;
}
.zt-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--y);
  color: var(--ink);
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  margin-bottom: 28px;
}
.zt-card-stars {
  font-size: 14px;
  color: rgba(255,255,255,.4);
}
.zt-card-stars span { margin-left: 6px; }

.zt-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.zt-blob-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(168,85,247,0.4) 0%, transparent 70%);
  top: -80px; right: -80px;
}
.zt-blob-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,45,120,0.3) 0%, transparent 70%);
  bottom: -40px; left: 20px;
}

.zt-progress-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: opacity .5s;
}
.zt-arrow-down {
  width: 20px; height: 20px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  animation: ztBounce 1.4s ease-in-out infinite;
}
@keyframes ztBounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(4px); }
}

/* ══════════════════════════════════════
   CARD STACK FLYAWAY SECTION
══════════════════════════════════════ */
#card-stack {
  height: 450vh;
  position: relative;
}
.cs-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
.cs-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 10;
}
.cs-deck {
  position: relative;
  width: 420px;
  max-width: 90vw;
  height: 320px;
}
.cs-card {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 40px 44px;
  will-change: transform, opacity;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.cs-card-0 { background: var(--ink); color: #fff; z-index: 4; }
.cs-card-1 { background: #fff9ec; color: var(--ink); z-index: 3; }
.cs-card-2 { background: #f0e8ff; color: var(--ink); z-index: 2; }
.cs-card-3 { background: #e8f5ff; color: var(--ink); z-index: 1; }

.cs-card-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  opacity: .3;
}
.cs-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.2;
}
.cs-card p {
  font-size: 14px;
  line-height: 1.55;
  opacity: .7;
  max-width: 280px;
}
.cs-card-icon {
  position: absolute;
  bottom: 28px;
  right: 32px;
  opacity: .12;
}
.cs-card-0 .cs-card-icon { opacity: .15; }
.cs-card-tag {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: 999px;
}

/* Stack shadow depth effect for cards below */
.cs-card:not(.cs-card-0) {
  box-shadow: 0 12px 48px rgba(13,11,20,0.1);
  transform: scale(0.95) translateY(10px);
}
.cs-card-2 { transform: scale(0.90) translateY(20px); }
.cs-card-3 { transform: scale(0.85) translateY(30px); }

.cs-progress {
  width: 280px;
  height: 3px;
  background: rgba(13,11,20,.1);
  border-radius: 999px;
  margin-top: 40px;
  overflow: hidden;
}
.cs-progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--p), var(--purple));
  border-radius: 999px;
  transition: width .1s;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bcard--wide { grid-column: span 2; }
  .f-panel-inner { gap: 48px; padding: 60px 48px; }
  .bcard-deco, .bcard-chat { display: none; }
}
@media (max-width: 768px) {
  #nav { padding: 14px 24px; }
  #nav.scrolled { padding: 10px 24px; }
  .hero-inner { padding: 100px 24px 80px; }
  .float-emoji { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bcard--wide { grid-column: span 1; }
  #why, #reviews { padding: 80px 24px; }
  #stats { padding: 60px 24px; }
  .stats-wrap { gap: 32px; }
  .stat-sep { display: none; }
  #cta-final { padding: 100px 24px; }
  footer { padding: 32px 24px; }
  .footer-links { margin-left: 0; }
  .footer-inner { flex-direction: column; gap: 16px; }
  .f-panel-inner { flex-direction: column; gap: 32px; padding: 40px 24px; }
  .f-panel-inner--rev { flex-direction: column; }
  body { cursor: auto; }
  #cur { display: none; }
}
