:root {
  --plum-950: #16070f;
  --plum-900: #230c1a;
  --wine-800: #3c1024;
  --wine-700: #55152f;
  --coral: #ff7a6b;
  --rose: #ff9fb2;
  --champagne: #f0d9b5;
  --ink: #f7eef2;
  --muted: rgba(247, 238, 242, 0.68);
  --faint: rgba(247, 238, 242, 0.5);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --grad-cta: linear-gradient(120deg, #ff6f7d 0%, #ff8a5c 55%, #f6c88a 100%);
  --shadow-soft: 0 24px 60px -28px rgba(0, 0, 0, 0.85);
  --shadow-glow: 0 18px 44px -18px rgba(255, 111, 125, 0.55);
  --radius: 22px;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(1100px 620px at 12% -8%, rgba(255, 122, 107, 0.22), transparent 60%),
    radial-gradient(900px 540px at 92% 6%, rgba(160, 92, 255, 0.16), transparent 62%),
    linear-gradient(180deg, var(--plum-950) 0%, var(--plum-900) 45%, #12060c 100%);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}

p { margin: 0; }

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-primary {
  background: var(--grad-cta);
  color: #2a0a13;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover, .btn-primary:focus-visible { transform: translateY(-2px); filter: brightness(1.06); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: var(--glass);
  border-color: var(--glass-border);
  color: var(--ink);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn-block { width: 100%; }

:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(18, 6, 12, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad-cta);
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}
.header-nav { display: none; gap: 1.6rem; font-size: 0.9rem; color: var(--muted); }
.header-nav a { text-decoration: none; }
.header-nav a:hover { color: var(--ink); }
@media (min-width: 860px) { .header-nav { display: flex; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem); }
.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.7rem, 7.5vw, 4.6rem);
  margin: 1.4rem 0 1.1rem;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(100deg, var(--rose), var(--champagne));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead { color: var(--muted); font-size: 1.06rem; max-width: 34rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.live-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.4rem;
  margin-top: 1.8rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #5cf0a8;
  box-shadow: 0 0 0 4px rgba(92, 240, 168, 0.16);
  display: inline-block;
  margin-right: 0.5rem;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(92, 240, 168, 0); } }

.trust-line { color: var(--faint); font-size: 0.85rem; margin-top: 0.6rem; }

/* Hero collage */
.collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
}
.collage figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--glass-border); }
.collage img { width: 100%; height: 100%; object-fit: cover; }
.collage .tall { grid-row: span 2; aspect-ratio: 3 / 4.4; }
.collage .short { aspect-ratio: 4 / 3.1; }

.float-card {
  position: absolute;
  left: -0.6rem;
  bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  border-radius: 16px;
  background: rgba(28, 10, 19, 0.72);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: translateY(-9px); } }
.float-card strong { display: block; font-size: 0.95rem; }

.glow {
  position: absolute;
  inset: auto;
  width: 420px; height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}
.glow-a { top: -80px; left: -120px; background: #ff5f7e; }
.glow-b { bottom: -140px; right: -100px; background: #8a5cff; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stat { background: rgba(24, 9, 16, 0.85); padding: 1.5rem 1.2rem; text-align: center; }
.stat b { display: block; font-family: "Cormorant Garamond", serif; font-size: 2rem; }
.stat span { font-size: 0.82rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-head { max-width: 40rem; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.8rem; }
.section-head p { color: var(--muted); }

/* ---------- Profiles ---------- */
.profiles {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
}
.profile {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.profile:hover {
  transform: translateY(-6px);
  border-color: color-mix(in oklab, var(--accent) 55%, transparent);
  box-shadow: 0 30px 70px -30px color-mix(in oklab, var(--accent) 60%, black);
}
.profile-media { position: relative; aspect-ratio: 4 / 4.6; overflow: hidden; }
.profile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.profile:hover .profile-media img { transform: scale(1.05); }
.profile-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(18, 6, 12, 0.92) 100%);
}
.status {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(12, 5, 9, 0.66);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.profile-name {
  position: absolute;
  left: 1.1rem; right: 1.1rem; bottom: 0.9rem;
  z-index: 2;
}
.profile-name h3 { font-size: 1.55rem; }
.profile-name span { font-size: 0.82rem; color: var(--muted); }
.profile-body { padding: 1.1rem 1.15rem 1.3rem; display: flex; flex-direction: column; gap: 0.95rem; flex: 1; }
.profile-body p { font-size: 0.92rem; color: var(--muted); }
.badges { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.badge {
  font-size: 0.74rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  color: var(--accent);
  background: color-mix(in oklab, var(--accent) 16%, transparent);
  border: 1px solid color-mix(in oklab, var(--accent) 34%, transparent);
}
.profile .btn-primary {
  margin-top: auto;
  background: linear-gradient(120deg, var(--accent), color-mix(in oklab, var(--accent) 45%, #ffd9a8));
  box-shadow: 0 16px 34px -18px color-mix(in oklab, var(--accent) 90%, black);
}

/* ---------- Reviews ---------- */
.reviews { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.review {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}
.stars { color: var(--champagne); letter-spacing: 0.18em; font-size: 0.9rem; }
.review p { margin: 0.8rem 0 1.1rem; color: var(--muted); font-size: 0.95rem; }
.review-by { font-size: 0.85rem; color: var(--faint); }
.disclaimer { margin-top: 1.6rem; font-size: 0.78rem; color: var(--faint); }

.trust-badges {
  display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2.2rem;
}
.trust-badges span {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--glass-border);
}

/* ---------- Final CTA ---------- */
.final {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 7vw, 4.6rem) clamp(1.4rem, 5vw, 3.5rem);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background:
    radial-gradient(700px 320px at 50% -10%, rgba(255, 122, 107, 0.3), transparent 70%),
    rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}
.final h2 { font-size: clamp(2.1rem, 5.5vw, 3.3rem); margin-bottom: 1rem; }
.final p { color: var(--muted); max-width: 34rem; margin-inline: auto; }
.final .btn { margin-top: 2rem; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 2.6rem 0 3.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--faint);
  font-size: 0.83rem;
  display: grid;
  gap: 0.6rem;
}

/* ---------- Popup ---------- */
.popup {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: min(340px, calc(100% - 2rem));
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(30, 11, 20, 0.9);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.popup.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.popup-text { font-size: 0.88rem; }
.popup-text small { display: block; color: var(--faint); font-size: 0.72rem; }
.popup-close {
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--muted);
  border-radius: 50%;
  width: 26px; height: 26px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.popup-close:hover { color: var(--ink); }

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

.hero-anim { opacity: 0; transform: translateY(22px); animation: enter 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) forwards; }
.hero-anim.d1 { animation-delay: 0.1s; }
.hero-anim.d2 { animation-delay: 0.24s; }
.hero-anim.d3 { animation-delay: 0.38s; }
@keyframes enter { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-anim { opacity: 1; transform: none; }
}
