:root {
  color-scheme: dark;
  --bg: #000004;
  --surface: #090810;
  --text: #ffffff;
  --muted: #a9a3b8;
  --pink: #ff3fae;
  --purple: #9b4dff;
  --border: rgba(155, 77, 255, 0.32);
  --glow: rgba(255, 63, 174, 0.38);
  --ok: #54d98a;
  --danger: #ff526c;
  --radius: 28px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 45% at 12% -10%, rgba(255, 63, 174, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 40% at 95% 8%, rgba(155, 77, 255, 0.26), transparent 50%),
    radial-gradient(ellipse 45% 35% at 70% 90%, rgba(255, 63, 174, 0.12), transparent 55%),
    linear-gradient(180deg, #000004 0%, #05040b 50%, #000004 100%);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
  animation: float 14s ease-in-out infinite;
}
.orb-a {
  width: 280px; height: 280px;
  background: var(--pink);
  top: 18%; left: -80px;
}
.orb-b {
  width: 320px; height: 320px;
  background: var(--purple);
  top: 55%; right: -120px;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-28px) scale(1.06); }
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 63, 174, 0.35); }
  50% { box-shadow: 0 0 40px 4px rgba(255, 63, 174, 0.25); }
}

/* Content visible by default; JS only enhances entrance */
.reveal { opacity: 1; transform: none; }
html.js-ready .reveal:not(.show) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js-ready .reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 4, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px var(--glow);
  overflow: hidden;
}
.brand-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  background-size: 200% 200%;
  animation: shimmer 6s linear infinite;
  box-shadow: 0 14px 40px var(--glow);
}
.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.hero {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(155, 77, 255, 0.12);
  color: #e7d7ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 12px var(--ok);
}
h1 {
  font-family: Syne, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  font-weight: 800;
}
h1 .grad {
  background: linear-gradient(120deg, #fff 10%, var(--pink) 45%, var(--purple) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 34rem;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.trust strong { color: var(--text); display: block; font-size: 1.05rem; }

/* Phone / Discover */
.phone-stage { display: flex; justify-content: center; }
.phone {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 9 / 18.8;
  border-radius: 44px;
  padding: 11px;
  background: linear-gradient(160deg, rgba(255,255,255,0.2), rgba(255,255,255,0.03));
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.08);
  animation: pulse-glow 5s ease-in-out infinite;
}
.phone-inner {
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #0b0812 0%, #05040a 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 12px 14px;
}
.phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 16px;
  border-radius: 20px;
  background: #050508;
  z-index: 5;
}
.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  padding-top: 4px;
}
.phone-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
}
.mini-mark {
  width: 18px; height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}
.mini-logo {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(255, 63, 174, 0.35);
}
.phone-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 3px;
}
.tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: default;
}
.tab.active {
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.discover-stage {
  position: relative;
  flex: 1;
  min-height: 0;
}
.discover-deck {
  position: absolute;
  inset: 0;
}
.discover-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #15101d;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  touch-action: none;
  user-select: none;
  cursor: grab;
}
.discover-card.is-back {
  transform: scale(0.94) translateY(12px);
  filter: blur(1.5px) brightness(0.72);
  opacity: 0.9;
  pointer-events: none;
}
.discover-card.is-front {
  z-index: 2;
}
.card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-color: #2a1a30;
}
.card-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.08) 0%,
    transparent 42%,
    rgba(0,0,0,0.28) 70%,
    rgba(0,0,0,0.82) 100%
  );
}
.card-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
}
.card-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.card-name-row h3 {
  margin: 0;
  font-family: Syne, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.badge-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}
.badge-premium {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255, 63, 174, 0.55);
  color: #ffd0ea;
}
.card-loc {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f3eefc;
}
.card-loc .pin { font-size: 0.75rem; }
.card-loc .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}
.card-loc .online { color: rgba(255,255,255,0.72); font-weight: 700; }
.card-tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.card-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.7rem;
  font-weight: 700;
}

.discover-stamp {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg) scale(0.8);
  padding: 8px 14px;
  border: 3px solid white;
  border-radius: 12px;
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.discover-stamp.like { color: var(--pink); border-color: var(--pink); }
.discover-stamp.skip { color: var(--danger); border-color: var(--danger); }
.discover-stamp.show {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-12deg) scale(1);
}
.discover-stamp.show.soft { opacity: 0.55; }

.discover-toast {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 6;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(10, 8, 16, 0.92);
  border: 1px solid var(--border);
  color: #f0e8ff;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.discover-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.discover-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
  padding: 0 4px;
}
.circle-btn {
  height: 48px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: white;
  font-size: 1.15rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.circle-btn:hover { transform: translateY(-2px); }
.circle-btn:active { transform: scale(0.94); }
.circle-btn.danger {
  border-color: rgba(255, 82, 108, 0.55);
  color: var(--danger);
  box-shadow: inset 0 0 0 1px rgba(255, 82, 108, 0.2);
}
.circle-btn.primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border: 0;
  box-shadow: 0 10px 24px rgba(255, 63, 174, 0.35);
}
.circle-btn.like {
  border-color: rgba(255, 63, 174, 0.5);
  color: var(--pink);
}
.phone-hint {
  margin: 10px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
}

section { padding: 72px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 34px;
}
.section-head h2 {
  font-family: Syne, sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  letter-spacing: -0.04em;
  margin: 0 0 12px;
  line-height: 1.08;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 63, 174, 0.45);
  background: rgba(255, 63, 174, 0.06);
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(255,63,174,0.25), rgba(155,77,255,0.25));
  font-size: 1.25rem;
}
.feature h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-family: Syne, sans-serif;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.price-card, .gift-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 40%;
  height: 220px;
  background: radial-gradient(circle, rgba(155,77,255,0.28), transparent 70%);
  pointer-events: none;
}
.price-card h3, .gift-card h3 {
  font-family: Syne, sans-serif;
  margin: 0 0 8px;
  font-size: 1.5rem;
}
.price-card > p, .gift-card > p {
  color: var(--muted);
  margin: 0 0 20px;
}
.plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 10px;
}
.plan.featured {
  border-color: rgba(255, 63, 174, 0.5);
  background: linear-gradient(135deg, rgba(255,63,174,0.14), rgba(155,77,255,0.12));
}
.plan strong { display: block; font-size: 1rem; }
.plan span { color: var(--muted); font-size: 0.85rem; }
.plan .tag {
  color: var(--pink);
  font-weight: 800;
  font-size: 1.15rem;
  white-space: nowrap;
}
.perk-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.perk-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #ddd6ea;
  font-size: 0.95rem;
}
.perk-list li::before {
  content: "✦";
  color: var(--pink);
  font-size: 0.85rem;
  margin-top: 2px;
}

.gifts { display: grid; gap: 10px; }
.gift-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.gift-row .left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.gift-emoji {
  width: 42px; height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  font-size: 1.25rem;
}
.gift-art {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,63,174,0.25), rgba(20,12,28,0.95));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.28);
}
.gift-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gift-row strong { display: block; }
.gift-row small { color: var(--muted); }
.gift-row .price {
  color: var(--pink);
  font-weight: 800;
  white-space: nowrap;
}

.pay-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(84, 217, 138, 0.08);
  border: 1px solid rgba(84, 217, 138, 0.25);
  color: #c9f5da;
  font-size: 0.92rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.legal-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  transition: transform 0.2s, border-color 0.2s;
  min-height: 140px;
}
.legal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,63,174,0.45);
}
.legal-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-family: Syne, sans-serif;
}
.legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-box {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255,63,174,0.08), rgba(155,77,255,0.05));
}
.contact-box h3 {
  margin: 0 0 10px;
  font-family: Syne, sans-serif;
}
.contact-box p, .contact-box a {
  color: var(--muted);
  margin: 0 0 8px;
}
.contact-box a { color: var(--pink); font-weight: 700; }

footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-links a:hover { color: var(--text); }

@media (max-width: 920px) {
  .hero, .pricing, .contacts { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero { padding-top: 42px; }
  .phone { width: min(100%, 320px); }
}
@media (max-width: 560px) {
  .legal-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
}
