/* ===========================================================================
   ZOVA — marketing site styles. Brand = the gradient "Z" (magenta → purple →
   blue) + pink accents + "Find your person" voice. Light, airy, modern dating
   feel à la Tinder/Hinge/Bumble.
   =========================================================================== */
:root {
  --magenta: #c026d3;
  --purple: #8b5cf6;
  --indigo: #6366f1;
  --blue: #2563eb;
  --pink: #ec4899;
  --brand-grad: linear-gradient(135deg, #c026d3 0%, #8b5cf6 42%, #6366f1 72%, #2563eb 100%);
  --brand-grad-soft: linear-gradient(135deg, #f5e8ff 0%, #ece9ff 50%, #e6efff 100%);
  --ink: #1c1530;
  --ink-soft: #5b5470;
  --line: #ece8f5;
  --bg: #ffffff;
  --bg-tint: #faf8ff;
  --radius: 22px;
  --shadow-lg: 0 30px 70px -25px rgba(124, 58, 237, .45);
  --shadow-md: 0 16px 40px -18px rgba(76, 29, 149, .35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1140px, 92vw); margin-inline: auto; }
.grad-text {
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 1rem; border: none; cursor: pointer;
  padding: 14px 26px; border-radius: 999px; transition: transform .18s ease, box-shadow .18s ease, opacity .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-grad { background: var(--brand-grad); color: #fff; box-shadow: var(--shadow-md); }
.btn-grad:hover { box-shadow: 0 22px 50px -16px rgba(124, 58, 237, .6); }
.btn-light { background: #fff; color: var(--ink); box-shadow: 0 10px 30px -12px rgba(0,0,0,.2); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-store {
  background: #0b0b13; color: #fff; padding: 12px 22px; gap: 12px; text-align: left;
}
.btn-store small { display: block; font-size: .68rem; font-weight: 400; opacity: .8; line-height: 1.1; }
.btn-store strong { display: block; font-size: 1.05rem; font-weight: 600; line-height: 1.15; }
.btn-store svg { width: 26px; height: 26px; flex: none; }
.btn-store.disabled { opacity: .45; cursor: default; }
.btn-store.disabled:hover { transform: none; }
.btn-store { height: 56px; }
.gp-badge { display: inline-flex; transition: transform .18s ease; }
.gp-badge:hover { transform: translateY(-2px); }
.gp-badge img { height: 56px; display: block; border-radius: 8px; }
.gp-badge--soon { position: relative; cursor: default; }
.gp-badge--soon:hover { transform: none; }
.gp-badge--soon img { height: 56px; border-radius: 9px; }
.soon-tag { position: absolute; top: -9px; right: -8px; font-style: normal; font-weight: 600; font-size: .56rem; letter-spacing: .4px; text-transform: uppercase; color: #fff; background: linear-gradient(135deg,#ec4899,#8b5cf6); padding: 3px 8px; border-radius: 999px; box-shadow: 0 4px 10px -2px rgba(192,38,211,.5); pointer-events: none; }

/* ---- Nav ---- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
/* Logo lockup: the icon IS the "Z", text adds "OVA" → reads ZOVA, matched heights */
.brand { display: inline-flex; align-items: center; gap: 2px; font-weight: 800; font-size: 1.95rem; line-height: 1; letter-spacing: -.5px; }
.brand img { height: .74em; width: auto; display: block; transform: translateY(-1px); }
.nav-in .brand { font-size: 2.5rem; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: .95rem; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { padding: 10px 20px; font-size: .92rem; }
/* Mobile nav — a burger (injected by nav.js) toggles a full-width dropdown. */
.nav-burger { display: none; }
@media (max-width: 820px) {
  .nav-burger {
    display: inline-grid; place-items: center; width: 44px; height: 44px;
    border: none; background: transparent; color: var(--ink); cursor: pointer; margin: -6px 0;
  }
  .nav-burger svg { width: 27px; height: 27px; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,.97); backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 44px -22px rgba(76,29,149,.4);
    padding: 6px 0 12px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; font-size: 1.02rem; }
  .nav-cta { margin: 10px 18px 2px; justify-content: center; padding: 13px 20px; }
}
@media (max-width: 520px) { .nav-in .brand { font-size: 2.05rem; } }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; color: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: var(--brand-grad);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(255,255,255,.25), transparent 60%),
    radial-gradient(700px 600px at 0% 110%, rgba(37,99,235,.45), transparent 55%);
}
.hero-in { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 70px 0 90px; }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.2rem); line-height: 1.05; font-weight: 700; letter-spacing: -1px; }
.hero h1 .accent { color: #ffe1f1; }
.hero p.lead { font-size: clamp(1.05rem, 2.2vw, 1.3rem); opacity: .92; margin: 22px 0 30px; max-width: 30ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 20px; font-size: .9rem; opacity: .85; display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 18px; height: 18px; }

/* floating hearts */
.heart { position: absolute; color: rgba(255,255,255,.5); animation: float 7s ease-in-out infinite; z-index: -1; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-22px) rotate(8deg); } }

/* ---- Phone mockup (premium titanium frame) ---- */
.phone-stage { display: flex; justify-content: center; align-items: center; position: relative; }
.phone {
  position: relative; width: 304px; height: 620px; flex: none; border-radius: 58px;
  background: linear-gradient(135deg,#e3e4e8 0%,#b6b8be 20%,#f1f2f5 42%,#a9abb2 62%,#d4d6db 82%,#9c9ea5 100%);
  padding: 3px;
  box-shadow: 0 50px 90px -28px rgba(70,18,120,.55), 0 10px 28px -10px rgba(0,0,0,.45);
}
.phone__frame { width: 100%; height: 100%; background: #050507; border-radius: 57px; padding: 5px; }
.screen {
  position: relative; width: 100%; height: 100%; border-radius: 52px; overflow: hidden;
  background: linear-gradient(180deg,#1b1934 0%,#100f1f 100%); display: flex; flex-direction: column;
}
.phone__island {
  position: absolute; z-index: 6; top: 14px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 26px; background: #000; border-radius: 13px;
}
.phone__island::after { content:""; position:absolute; right:9px; top:50%; transform:translateY(-50%);
  width:8px; height:8px; border-radius:50%;
  background: radial-gradient(circle at 35% 30%, #39425e 0%, #11151f 52%, #000 100%); }
.phone__btn { position: absolute; background: linear-gradient(90deg,#9a9ca3,#cdcfd6 40%,#e7e8ec 55%,#a6a8af); border-radius: 2px; box-shadow: 0 1px 2px rgba(0,0,0,.3); }
.phone__btn--v1 { left:-3px; top:120px; width:3px; height:27px; }
.phone__btn--v2 { left:-3px; top:160px; width:3px; height:96px; }
.phone__btn--p  { right:-3px; top:166px; width:3px; height:80px; }
.phone__btn--cam { right:-3px; top:262px; width:3px; height:46px; }
.screen-shot { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:50% 0; display:block; }

.sb { display:flex; justify-content:space-between; align-items:center; padding:14px 24px 6px; color:#fff; font-size:.8rem; font-weight:600; }
.sb__icons { display:flex; gap:6px; align-items:center; }
.sb__icons svg { width:16px; height:16px; }
.app-head { display:flex; align-items:center; justify-content:center; padding:46px 18px 10px; }
.app-head .logo-z { display:flex; align-items:center; gap:7px; font-weight:700; color:#fff; font-size:1.16rem; letter-spacing:.3px; }
.app-head .logo-z img { width:42px; height:42px; }
.app-head .hpills { display:flex; gap:8px; }
.app-head .hpills span { width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,.12); display:grid; place-items:center; color:#fff; }
.app-head .hpills svg { width:16px; height:16px; }

.dcard { position:relative; flex:1; margin:2px 14px 0; border-radius:26px; overflow:hidden; box-shadow:0 18px 36px -16px rgba(0,0,0,.65); }
.dcard__photo { position:absolute; inset:0; background:#241f3d; }
.cardimg { position:absolute; inset:0; background-size:cover; background-position:50% 28%; background-repeat:no-repeat; transition:opacity .8s ease; will-change:opacity; }
.dcard__photo::after { content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,5,25,.28) 0%, transparent 22%); }
.dcard__top { position:absolute; top:13px; left:13px; right:13px; display:flex; justify-content:flex-end; align-items:flex-start; z-index:2; }
.dcard__dots { display:flex; gap:4px; }
.dcard__dots i { width:24px; height:4px; border-radius:2px; background:rgba(255,255,255,.5); }
.dcard__dots i.on { background:#fff; }
.dcard__badge { background:rgba(255,255,255,.94); color:var(--blue); font-size:.7rem; font-weight:700; padding:5px 10px; border-radius:999px; display:flex; gap:5px; align-items:center; }
.dcard__badge svg { width:12px; height:12px; }
.vbadge { width:19px; height:19px; flex:none; align-self:center; filter:drop-shadow(0 1px 2px rgba(0,0,0,.3)); }
.dcard__info { position:absolute; left:0; right:0; bottom:0; padding:54px 18px 16px; color:#fff;
  background:linear-gradient(transparent, rgba(14,8,30,.85)); }
.dcard__info h3 { font-size:1.55rem; font-weight:700; display:flex; align-items:baseline; gap:8px; }
.dcard__info h3 small { font-weight:400; font-size:1.05rem; opacity:.9; }
.dcard__meta { font-size:.82rem; opacity:.92; margin-top:3px; display:flex; align-items:center; gap:6px; }
.dcard__meta .dot-online { width:7px; height:7px; border-radius:50%; background:#34e89e; box-shadow:0 0 0 2px rgba(52,232,158,.3); }
.dchips { display:flex; flex-wrap:wrap; gap:6px; margin-top:11px; }
.dchips span { background:rgba(255,255,255,.2); border:1px solid rgba(255,255,255,.32); font-size:.7rem; padding:5px 11px; border-radius:999px; display:inline-flex; align-items:center; gap:5px; }
/* custom interest icon (Twemoji) shown inline with text */
/* Square footprint reserved up-front (width was auto) so the icon never reflows
   the text when it loads — paired with the JS preload of all interest icons. */
.zemoji { width:1.25em; height:1.25em; object-fit:contain; display:inline-block; vertical-align:-.18em; flex:none; }

.dact { display:flex; justify-content:center; align-items:center; gap:11px; padding:18px 6px 26px; }
.dact button { border:none; cursor:default; border-radius:50%; color:#fff; display:grid; place-items:center; box-shadow:0 9px 20px -8px rgba(0,0,0,.45); }
.dact button svg { width:46%; height:46%; }
.dact .a-undo  { width:40px; height:40px; background:linear-gradient(135deg,#fcd34d,#f59e0b); }
.dact .a-pass  { width:52px; height:52px; background:linear-gradient(135deg,#ff7a85,#ec4899); }
.dact .a-super { width:44px; height:44px; background:linear-gradient(135deg,#38bdf8,#22d3ee); }
.dact .a-like  { width:52px; height:52px; background:linear-gradient(135deg,#34d399,#10b981); }
.dact .a-msg   { width:40px; height:40px; background:linear-gradient(135deg,#a78bfa,#8b5cf6); }

.tabbar { display:flex; justify-content:space-around; align-items:center; padding:12px 16px 16px; border-top:1px solid rgba(255,255,255,.08); }
.tabbar a { color:rgba(255,255,255,.45); display:grid; place-items:center; }
.tabbar a.on { color:#fff; }
.tabbar svg { width:22px; height:22px; }

.match-badge {
  position:absolute; z-index:7; top:90px; right:-18px; background:rgba(255,255,255,.98);
  padding:7px 16px 7px 7px; border-radius:40px; color:#1a1430; font-weight:700; font-size:.84rem;
  box-shadow:0 18px 34px -12px rgba(192,38,211,.5), 0 4px 12px rgba(0,0,0,.14);
  display:flex; align-items:center; gap:9px; transform:rotate(5deg); animation:float 6s ease-in-out .4s infinite;
}
.like-badge {
  position:absolute; z-index:7; bottom:116px; left:-20px; background:rgba(255,255,255,.98);
  padding:7px 16px 7px 7px; border-radius:40px; color:#1a1430; font-weight:700; font-size:.82rem;
  box-shadow:0 18px 34px -12px rgba(59,130,246,.5), 0 4px 12px rgba(0,0,0,.14);
  display:flex; align-items:center; gap:9px; transform:rotate(-5deg); animation:float 7s ease-in-out 1s infinite;
}
.mb-ic, .lb-ic { width:28px; height:28px; border-radius:50%; display:grid; place-items:center; flex:none; }
.mb-ic { background:linear-gradient(135deg,#ec4899,#8b5cf6); box-shadow:0 4px 10px -2px rgba(236,72,153,.55); }
.lb-ic { background:linear-gradient(135deg,#3b82f6,#06b6d4); box-shadow:0 4px 10px -2px rgba(59,130,246,.55); }
.mb-ic svg, .lb-ic svg { width:16px; height:16px; }

/* ---- Success stories ---- */
.testimonials .tst-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:46px; }
.tst { background:#fff; border:1px solid #efe7f8; border-radius:22px; padding:26px 24px; box-shadow:0 18px 44px -26px rgba(90,30,140,.32); display:flex; flex-direction:column; gap:15px; }
.tst-stars { color:#fbbf24; letter-spacing:3px; font-size:1rem; }
.tst blockquote { margin:0; font-size:1.02rem; line-height:1.55; color:var(--ink, #241a3d); font-weight:500; }
.tst figcaption { display:flex; align-items:center; gap:12px; margin-top:auto; }
.tst figcaption img { width:50px; height:50px; border-radius:50%; object-fit:cover; flex:none; }
.tst figcaption b { display:flex; align-items:center; gap:5px; font-size:.96rem; font-weight:700; }
.tst figcaption span { display:block; color:var(--ink-soft); font-size:.8rem; margin-top:2px; }
.tst figcaption .vbadge { width:16px; height:16px; filter:none; align-self:auto; }
@media (max-width:880px){ .testimonials .tst-grid { grid-template-columns:1fr; max-width:440px; margin-inline:auto; } }

/* ---- Section shells ---- */
section.block { padding: 86px 0; }
.eyebrow { color: var(--purple); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; font-size: .82rem; }
.h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -.5px; margin: 12px 0; line-height: 1.1; }
.sub { color: var(--ink-soft); font-size: 1.08rem; max-width: 56ch; }
.center { text-align: center; margin-inline: auto; }
.center .sub { margin-inline: auto; }

/* ---- Features ---- */
.features { background: var(--bg-tint); }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feat .ico { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: var(--brand-grad-soft); color: var(--purple); margin-bottom: 18px; }
.feat .ico svg { width: 26px; height: 26px; }
.feat h3 { font-size: 1.18rem; font-weight: 600; margin-bottom: 8px; }
.feat p { color: var(--ink-soft); font-size: .95rem; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feat-grid { grid-template-columns: 1fr; } }

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.step { text-align: center; position: relative; }
.step .num {
  width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.6rem; font-weight: 700; color: #fff; background: var(--brand-grad); box-shadow: var(--shadow-md);
}
.step h3 { font-size: 1.22rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .97rem; max-width: 34ch; margin-inline: auto; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 36px; } }

/* ---- Stats band ---- */
.band { background: var(--brand-grad); color: #fff; border-radius: 30px; padding: 54px 40px; text-align: center; position: relative; overflow: hidden; }
.band::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(600px 300px at 50% -30%, rgba(255,255,255,.25), transparent 60%); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.stat .big { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
.stat .lbl { opacity: .9; font-size: .98rem; }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr; gap: 28px; } }

/* ---- Download CTA ---- */
.download { text-align: center; }
.download .panel {
  background: var(--brand-grad); color: #fff; border-radius: 34px; padding: 70px 30px; position: relative; overflow: hidden;
}
.download .panel::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(700px 350px at 80% 120%, rgba(37,99,235,.5), transparent 60%); }
.download h2 { position: relative; font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; letter-spacing: -.5px; }
.download p { position: relative; opacity: .92; margin: 16px auto 30px; max-width: 50ch; font-size: 1.1rem; }
.dl-row { position: relative; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---- Footer ---- */
footer { background: #0e0b1a; color: #c9c3de; padding: 60px 0 34px; }
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand { max-width: 320px; }
.foot-brand .brand { color: #fff; margin-bottom: 14px; font-size: 2.15rem; }
.foot-brand p { color: #9890b5; font-size: .95rem; }
.foot-cols { display: flex; gap: 70px; flex-wrap: wrap; }
.foot-col h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; font-weight: 600; }
.foot-col a { display: block; color: #9890b5; font-size: .93rem; padding: 5px 0; transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #7c749b; font-size: .88rem; }

/* ---- Legal pages ---- */
.legal-hero { background: var(--brand-grad); color: #fff; padding: 64px 0 56px; }
.legal-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
.legal-hero p { opacity: .9; margin-top: 8px; }
.legal-body { padding: 56px 0 90px; }
.legal-card { width: min(820px, 92vw); margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: clamp(26px, 5vw, 48px); box-shadow: var(--shadow-md); }
.legal-card h2 { font-size: 1.3rem; font-weight: 600; margin: 30px 0 12px; color: var(--ink); }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { color: var(--ink-soft); margin-bottom: 12px; }
.legal-card ul { color: var(--ink-soft); padding-left: 22px; margin-bottom: 12px; }
.legal-card li { margin-bottom: 8px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: #fff; opacity: .9; font-weight: 500; margin-bottom: 18px; }

@media (max-width: 880px) {
  .hero-in { grid-template-columns: 1fr; text-align: center; padding: 50px 0 70px; }
  .hero p.lead { margin-inline: auto; }
  .hero-cta, .hero-note { justify-content: center; }
  .phone-stage { margin-top: 36px; }
}
@media (max-width: 380px) { .phone { transform: scale(.9); } }
/* Phone: tuck the floating match/like badges onto the device edges so their
   negative offsets don't spill off-screen (and get clipped) on phones. */
@media (max-width: 520px) {
  .match-badge { right: 2px; top: 78px; font-size: .78rem; padding: 6px 13px 6px 6px; }
  .like-badge { left: 2px; bottom: 104px; font-size: .76rem; padding: 6px 13px 6px 6px; }
}

/* ---- Showcase (alternating feature rows) ---- */
.showcase { display:flex; flex-direction:column; gap:84px; margin-top:60px; }
.show-row { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.show-row.rev .show-visual { order:2; }
.show-text .eyebrow { display:block; margin-bottom:10px; }
.show-text h3 { font-size:clamp(1.6rem,3.2vw,2.2rem); font-weight:700; letter-spacing:-.5px; margin-bottom:14px; line-height:1.15; }
.show-text p { color:var(--ink-soft); font-size:1.06rem; margin-bottom:18px; }
.show-list { list-style:none; display:flex; flex-direction:column; gap:11px; }
.show-list li { display:flex; gap:11px; align-items:center; color:var(--ink); font-weight:500; }
.show-list .tick { width:24px; height:24px; flex:none; border-radius:50%; background:var(--brand-grad-soft); color:var(--purple); display:grid; place-items:center; }
.show-list .tick svg { width:14px; height:14px; }
.show-visual { display:flex; justify-content:center; }
.mock { width:100%; max-width:430px; aspect-ratio:4/3; border-radius:28px; position:relative; overflow:hidden; background:var(--brand-grad); box-shadow:var(--shadow-lg); color:#fff; }
.mock.soft { background:var(--brand-grad-soft); color:var(--ink); box-shadow:var(--shadow-md); border:1px solid var(--line); }
.mock-inner { position:absolute; inset:26px; display:flex; flex-direction:column; gap:12px; justify-content:center; }
@media (max-width:820px){
  .show-row{ grid-template-columns:1fr; gap:24px; }
  .show-row.rev .show-visual{ order:0; }
  /* On phones the fixed 4/3 box was shorter than the chat content, so bubbles
     overflowed and overlapped. Let the mock grow to fit its content instead. */
  .mock{ aspect-ratio:auto; }
  .mock-inner{ position:relative; inset:auto; padding:26px; }
}
.bubble { max-width:80%; padding:11px 15px; border-radius:18px; font-size:.92rem; line-height:1.4; }
.bubble.them { background:rgba(255,255,255,.92); color:var(--ink); border-bottom-left-radius:5px; align-self:flex-start; }
.bubble.me { background:rgba(255,255,255,.2); border:1px solid rgba(255,255,255,.32); border-bottom-right-radius:5px; align-self:flex-end; }
.perk { display:flex; align-items:center; gap:12px; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.22); padding:12px 14px; border-radius:16px; }
.perk .pico { width:40px; height:40px; border-radius:12px; background:rgba(255,255,255,.92); color:var(--purple); display:grid; place-items:center; flex:none; }
.perk .pico svg { width:21px; height:21px; }
.perk b { font-weight:600; }
.perk small { display:block; opacity:.85; font-size:.8rem; font-weight:400; }
.profile-mock { display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center; }
.profile-mock .pm-av { position:relative; width:94px; height:94px; border-radius:50%; overflow:hidden; background:#241f3d; border:3px solid rgba(255,255,255,.85); box-shadow:0 10px 24px -8px rgba(0,0,0,.45); }
.pm-l { position:absolute; inset:0; background-size:cover; background-position:50% 26%; transition:opacity .8s ease; }
.rp-avatars { position:relative; display:inline-flex; }
.rp-avatars img { width:62px; height:62px; border-radius:50%; object-fit:cover; border:3px solid #fff; box-shadow:0 8px 18px -8px rgba(0,0,0,.35); margin-left:-18px; transition:opacity .5s ease; }
.rp-avatars img:first-child { margin-left:0; }
.rp-v { position:absolute; right:-8px; bottom:-3px; width:31px; height:31px; filter:drop-shadow(0 4px 9px rgba(59,130,246,.5)); }
.rp-v svg { width:100%; height:100%; display:block; }
.chat-head { display:flex; align-items:center; gap:10px; padding-bottom:11px; border-bottom:1px solid rgba(255,255,255,.16); }
.chat-head img { width:42px; height:42px; border-radius:50%; object-fit:cover; object-position:50% 20%; border:2px solid rgba(255,255,255,.55); transition:opacity .45s ease; }
.chat-msgs { display:flex; flex-direction:column; gap:11px; transition:opacity .45s ease; }
.chat-meta { text-align:left; }
.chat-meta b { display:block; color:#fff; font-size:.98rem; font-weight:700; }
.chat-meta span { display:flex; align-items:center; gap:5px; color:rgba(255,255,255,.82); font-size:.78rem; }
.chat-meta .cdot { width:7px; height:7px; border-radius:50%; background:#34e89e; flex:none; }

/* ---- VIP ---- */
.vip-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:46px; }
.vip-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:32px 26px; text-align:center; transition:transform .2s,box-shadow .2s; }
.vip-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.vip-card .vico{ width:62px;height:62px;margin:0 auto 16px;border-radius:18px;display:grid;place-items:center;background:var(--brand-grad);color:#fff; }
.vip-card .vico svg{ width:30px;height:30px; }
.vip-card h3{ font-size:1.2rem;font-weight:600;margin-bottom:8px; }
.vip-card p{ color:var(--ink-soft);font-size:.95rem; }
.vip-note{ text-align:center; color:var(--ink-soft); margin-top:26px; font-size:.95rem; }
@media (max-width:760px){ .vip-grid{ grid-template-columns:1fr; } }

/* ---- Safety band ---- */
.safety { background:#0e0b1a; color:#fff; border-radius:30px; padding:54px clamp(24px,5vw,56px); display:grid; grid-template-columns:1.15fr 1fr; gap:40px; align-items:center; position:relative; overflow:hidden; }
.safety::after{ content:""; position:absolute; right:-60px; top:-60px; width:260px; height:260px; border-radius:50%; pointer-events:none; background:var(--brand-grad); opacity:.25; filter:blur(20px); }
.safety h2{ font-size:clamp(1.7rem,3.5vw,2.4rem); font-weight:700; letter-spacing:-.5px; position:relative; }
.safety p{ color:#b9b2d6; margin:14px 0 22px; position:relative; }
.safety .s-pts{ display:flex; flex-direction:column; gap:14px; position:relative; }
.safety .s-pt{ display:flex; gap:13px; align-items:center; }
.safety .s-ic{ width:46px;height:46px;border-radius:13px;background:rgba(255,255,255,.1);display:grid;place-items:center;flex:none;color:#fff; }
.safety .s-ic svg{ width:22px;height:22px; }
.safety .s-pt b{ display:block; } .safety .s-pt small{ color:#9890b5; }
@media (max-width:760px){ .safety{ grid-template-columns:1fr; gap:26px; } }

/* ---- FAQ ---- */
.faq-list{ max-width:780px; margin:44px auto 0; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; background:none; border:none; cursor:pointer; text-align:left; padding:22px 4px; font-size:1.08rem; font-weight:600; color:var(--ink); display:flex; justify-content:space-between; align-items:center; gap:16px; font-family:inherit; }
.faq-q .pm{ width:28px;height:28px;flex:none;border-radius:50%;background:var(--brand-grad-soft);color:var(--purple);display:grid;place-items:center;transition:transform .25s;font-size:1.3rem;line-height:1; }
.faq-item.open .faq-q .pm{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; color:var(--ink-soft); }
.faq-item.open .faq-a{ max-height:340px; }
.faq-a p{ padding:0 4px 22px; line-height:1.65; }

/* ---- Pricing ---- */
.plans { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:50px; align-items:stretch; }
.plan { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:34px 26px; display:flex; flex-direction:column; position:relative; transition:transform .2s,box-shadow .2s; }
.plan:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.plan.popular { border-color:transparent; box-shadow:var(--shadow-lg); }
.plan.popular::before { content:"BEST VALUE"; position:absolute; top:-12px; left:50%; transform:translateX(-50%); pointer-events:none; background:var(--brand-grad); color:#fff; font-size:.66rem; font-weight:700; letter-spacing:1.5px; padding:5px 14px; border-radius:999px; }
.plan h3 { font-size:1.18rem; font-weight:600; }
.plan .price { font-size:2.5rem; font-weight:700; margin:12px 0 0; letter-spacing:-1px; }
.plan .price span { font-size:1rem; font-weight:500; color:var(--ink-soft); letter-spacing:0; }
.plan .per { color:var(--ink-soft); font-size:.9rem; margin:2px 0 20px; }
.plan ul { list-style:none; display:flex; flex-direction:column; gap:11px; margin-bottom:26px; flex:1; }
.plan li { display:flex; gap:9px; align-items:flex-start; color:var(--ink); font-size:.94rem; }
.plan li .tick { color:#22c55e; flex:none; margin-top:2px; }
.plan li .tick svg { width:16px; height:16px; }
.plan .btn { width:100%; justify-content:center; }
@media (max-width:840px){ .plans{ grid-template-columns:1fr; max-width:430px; margin-inline:auto; } }
.packs { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:42px; }
.pack { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px 24px; }
.pack-h { display:flex; align-items:center; gap:11px; margin-bottom:14px; }
.pack-h .pico { width:44px;height:44px;border-radius:12px;background:var(--brand-grad);color:#fff;display:grid;place-items:center;flex:none; }
.pack-h .pico svg{ width:23px;height:23px; }
.pack-h h3 { font-size:1.12rem; font-weight:600; }
.pack-row { display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-top:1px solid var(--line); }
.pack-row:first-of-type { border-top:0; }
.pack-row b { font-weight:600; }
.pack-row .pr { color:var(--purple); font-weight:700; }
@media (max-width:840px){ .packs{ grid-template-columns:1fr; } }
.price-note { text-align:center; color:var(--ink-soft); font-size:.92rem; max-width:60ch; margin:34px auto 0; }

/* ---- Mobile polish (phones, from the responsive audit) ---- */
@media (max-width: 520px) {
  .band { padding: 40px 22px; }                 /* stats band — roomier text */
  .download .panel { padding: 52px 22px; }      /* download CTA — less cramped */
  .faq-q { padding: 20px 8px; font-size: 1rem; }/* FAQ rows — breathing room */
  .pack-row { flex-wrap: wrap; gap: 4px 10px; } /* pack price rows can wrap */
  .plan .btn { white-space: normal; }           /* plan CTA text may wrap */
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .foot-col a { padding: 8px 0; }               /* bigger footer tap targets */
  .legal-back { padding: 6px 2px; }             /* bigger Back tap target */
}
