/* ============================================================================
   Vynte Dating — style.css
   Pure CSS, no build step, no Tailwind
   ============================================================================ */

/* ── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose: #e8889a;
  --rose-dark: #d47090;
  --rose-glow: rgba(232, 136, 154, 0.3);
  --accent: #7c6aff;
  --accent-glow: rgba(124, 106, 255, 0.3);
  --glow: #00e5a0;
  --gold: #ffb800;
  --bg: #0b0b12;
  --surface: #12121a;
  --surface-2: #1a1a26;
  --text: #e8e8f0;
  --muted: #8a8a9e;
  --dim: #5a5a6e;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.02);
  --glass-hover: rgba(255, 255, 255, 0.04);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --max-w: 1100px;
  --section-py: 100px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ──────────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.eyebrow--mint { color: var(--glow); }

h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ── Gradients & Effects ─────────────────────────────────────────────────── */
.rose-gradient-text {
  background: linear-gradient(135deg, var(--rose), #c47aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mint-gradient-text {
  background: linear-gradient(135deg, var(--glow), #4ad8c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rose-gradient-bg {
  background: linear-gradient(135deg, var(--rose), #c47aff);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--rose {
  background: linear-gradient(135deg, var(--rose), #c47aff);
  color: #fff;
  box-shadow: 0 4px 20px var(--rose-glow);
}
.btn--rose:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px var(--rose-glow);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn--outline:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn--sm {
  padding: 8px 20px;
  font-size: 13px;
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ── Glass Card ──────────────────────────────────────────────────────────── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s ease;
}
.glass-card:hover {
  border-color: var(--border-hover);
}

/* ── Scroll Reveal ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-child {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-child.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navbar ───────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(11, 11, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.navbar__brand svg {
  width: 28px;
  height: 28px;
}
.navbar__brand span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero__text {
  flex: 1;
  max-width: 500px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero__trust {
  margin-top: 20px;
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.04em;
}
.hero__trust span {
  margin: 0 6px;
  opacity: 0.4;
}
.hero__mockup {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 380px;
}
.hero__bg-rose {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 136, 154, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__bg-purple {
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 106, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 136, 154, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 136, 154, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── Swipe Card Mockup ───────────────────────────────────────────────────── */
.swipe-card {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: float 5s ease-in-out infinite;
  position: relative;
}
.swipe-card__photo {
  height: 260px;
  background: linear-gradient(135deg, var(--rose-dark), var(--accent));
  position: relative;
  display: flex;
  align-items: flex-end;
}
.swipe-card__dots {
  position: absolute;
  top: 12px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 4px;
}
.swipe-card__dot {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
}
.swipe-card__dot--active { background: #fff; }
.swipe-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}
.swipe-card__name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.swipe-card__age {
  font-weight: 400;
  opacity: 0.85;
}
.swipe-card__location {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.swipe-card__body {
  padding: 14px 16px 16px;
}
.swipe-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.swipe-card__tag {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(232, 136, 154, 0.12);
  color: var(--rose);
  border: 1px solid rgba(232, 136, 154, 0.15);
}
.swipe-card__bio {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 14px;
  padding-left: 10px;
  border-left: 2px solid rgba(232, 136, 154, 0.2);
}
.swipe-card__stats {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.swipe-card__stat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--dim);
}
.swipe-card__stat-icon {
  width: 14px;
  height: 14px;
  color: var(--glow);
}
.swipe-card__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.swipe-card__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.swipe-card__btn--pass {
  color: var(--muted);
}
.swipe-card__btn--pass:hover {
  border-color: rgba(255, 70, 70, 0.3);
  color: #ff4646;
  background: rgba(255, 70, 70, 0.06);
}
.swipe-card__btn--like {
  color: var(--rose);
  animation: heartPulse 2s ease-in-out infinite;
}
.swipe-card__btn--like:hover {
  border-color: var(--rose);
  background: rgba(232, 136, 154, 0.1);
}

/* Energy border wrapper */
.mockup-wrapper {
  position: relative;
  padding: 2px;
  border-radius: calc(var(--radius-lg) + 2px);
}
.mockup-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0%,
    rgba(232, 136, 154, 0.4) 8%,
    transparent 16%,
    transparent 50%,
    rgba(124, 106, 255, 0.3) 58%,
    transparent 66%
  );
  animation: borderRotate 4s linear infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 2px;
  z-index: -1;
}

/* ── How It Works / Timeline ─────────────────────────────────────────────── */
.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose), var(--accent));
  opacity: 0.3;
}
.timeline__step {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}
.timeline__step:last-child { margin-bottom: 0; }
.timeline__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--accent));
  box-shadow: 0 4px 20px var(--rose-glow);
  position: relative;
  z-index: 1;
}
.timeline__content h3 {
  margin-bottom: 8px;
}
.timeline__content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Zigzag Feature Sections ─────────────────────────────────────────────── */
.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
}
.feature-row--reverse { flex-direction: row-reverse; }
.feature-text { flex: 1; max-width: 440px; }
.feature-visual { flex: 1; display: flex; justify-content: center; }

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.bullet-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(0, 229, 160, 0.12);
  border: 1px solid rgba(0, 229, 160, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%2300e5a0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Privacy Visual (before/after) ───────────────────────────────────────── */
.reveal-visual {
  display: flex;
  gap: 16px;
  align-items: center;
}
.reveal-visual__card {
  width: 180px;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
}
.reveal-visual__card--hidden {
  background: var(--surface);
  border: 1px solid var(--border);
}
.reveal-visual__card--revealed {
  background: var(--surface);
  border: 1px solid rgba(0, 229, 160, 0.2);
  box-shadow: 0 0 30px rgba(0, 229, 160, 0.06);
}
.reveal-visual__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 12px;
}
.reveal-visual__avatar--blurred {
  background: linear-gradient(135deg, var(--dim), var(--surface-2));
  filter: blur(4px);
}
.reveal-visual__avatar--shown {
  background: linear-gradient(135deg, var(--rose), var(--accent));
}
.reveal-visual__name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.reveal-visual__sub {
  font-size: 11px;
  color: var(--dim);
}
.reveal-visual__arrow {
  font-size: 24px;
  color: var(--glow);
  animation: pulse 2s ease-in-out infinite;
}

/* ── Game Card Mockup ────────────────────────────────────────────────────── */
.game-card {
  width: 280px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.game-card__header {
  font-size: 12px;
  font-weight: 700;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.game-card__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.game-card__item:last-child { border-bottom: none; }
.game-card__game {
  font-size: 14px;
  font-weight: 600;
}
.game-card__hours {
  font-size: 12px;
  color: var(--dim);
}
.game-card__mutual {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(0, 229, 160, 0.06);
  border: 1px solid rgba(0, 229, 160, 0.1);
  font-size: 12px;
  color: var(--glow);
  font-weight: 600;
}

/* ── Safety Cards ────────────────────────────────────────────────────────── */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.safety-card {
  padding: 24px;
  text-align: center;
}
.safety-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--glow);
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.12);
}
.safety-card__icon--rose {
  color: var(--rose);
  background: rgba(232, 136, 154, 0.08);
  border-color: rgba(232, 136, 154, 0.12);
}
.safety-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.safety-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Requirements ────────────────────────────────────────────────────────── */
.requirements-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 36px;
}
.requirements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.requirements-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.requirements-list__check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 229, 160, 0.12);
  border: 1px solid rgba(0, 229, 160, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--glow);
}
.requirements-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.requirements-note {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--dim);
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq {
  max-width: 680px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--rose); }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--muted);
}
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}
.faq-answer p {
  padding-bottom: 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA Section ─────────────────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 80px 0 60px;
  border-top: 1px solid rgba(232, 136, 154, 0.08);
  background: linear-gradient(180deg, rgba(232, 136, 154, 0.03) 0%, transparent 100%);
}
.cta-section h2 { margin-bottom: 12px; }
.cta-section .subtitle {
  margin: 0 auto 32px;
  text-align: center;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer__inner {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer__brand {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer__brand-logo svg { width: 22px; height: 22px; color: var(--rose); }
.footer__tagline {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.6;
}
.footer__links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  flex: 1;
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 8px; }
.footer__col a {
  font-size: 13px;
  color: var(--dim);
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--dim);
  text-align: center;
}

/* ── Hero Entrance Animations ────────────────────────────────────────────── */
.hero__text .eyebrow,
.hero__text h1,
.hero__text .subtitle,
.hero__ctas,
.hero__trust {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.7s ease forwards;
}
.hero__text .eyebrow { animation-delay: 0.1s; }
.hero__text h1 { animation-delay: 0.25s; }
.hero__text .subtitle { animation-delay: 0.4s; }
.hero__ctas { animation-delay: 0.55s; }
.hero__trust { animation-delay: 0.7s; }
.hero__mockup {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  animation: heroMockupIn 0.8s ease 0.4s forwards;
}

/* ── Online Dot ──────────────────────────────────────────────────────────── */
.swipe-card__online {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 8px rgba(0, 229, 160, 0.5);
  z-index: 2;
}

/* ── Compatibility Badge ─────────────────────────────────────────────────── */
.swipe-card__compat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(0, 229, 160, 0.1);
  color: var(--glow);
  border: 1px solid rgba(0, 229, 160, 0.15);
  margin-bottom: 12px;
}
.swipe-card__compat-bar {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 229, 160, 0.2);
  overflow: hidden;
}
.swipe-card__compat-fill {
  width: 87%;
  height: 100%;
  border-radius: 2px;
  background: var(--glow);
}

/* ── Superlike Button ────────────────────────────────────────────────────── */
.swipe-card__btn--super {
  color: var(--gold);
}
.swipe-card__btn--super:hover {
  border-color: rgba(255, 184, 0, 0.3);
  background: rgba(255, 184, 0, 0.06);
}

/* ── Match Notification ──────────────────────────────────────────────────── */
.match-notif {
  position: absolute;
  top: -16px;
  right: -24px;
  padding: 8px 14px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid rgba(232, 136, 154, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rose);
  white-space: nowrap;
  z-index: 5;
  animation: matchPop 0.5s ease 1.5s both, float 4s ease-in-out 2s infinite;
}
.match-notif__heart {
  width: 16px;
  height: 16px;
  color: var(--rose);
}

/* ── Trust Strip ─────────────────────────────────────────────────────────── */
.trust-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip__inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.trust-strip__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-strip__icon--rose {
  color: var(--rose);
  background: rgba(232, 136, 154, 0.08);
  border: 1px solid rgba(232, 136, 154, 0.12);
}
.trust-strip__icon--mint {
  color: var(--glow);
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.12);
}
.trust-strip__icon--purple {
  color: var(--accent);
  background: rgba(124, 106, 255, 0.08);
  border: 1px solid rgba(124, 106, 255, 0.12);
}
.trust-strip__label {
  font-size: 11px;
  color: var(--dim);
  font-weight: 500;
}

/* ── Gradient Dividers ───────────────────────────────────────────────────── */
.section-divider {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, rgba(232, 136, 154, 0.15), rgba(124, 106, 255, 0.15), transparent);
  margin: 0;
}

/* ── Safety Card Hover Lift ──────────────────────────────────────────────── */
.safety-card {
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.safety-grid .glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ── Game Card Hover ─────────────────────────────────────────────────────── */
.game-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ── Hero Particles ──────────────────────────────────────────────────────── */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0;
  animation: particleDrift 8s ease-in-out infinite;
}
.hero__particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.hero__particle:nth-child(2) { left: 25%; top: 70%; animation-delay: 1.5s; animation-duration: 9s; background: var(--accent); }
.hero__particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 3s; animation-duration: 6s; }
.hero__particle:nth-child(4) { left: 70%; top: 60%; animation-delay: 2s; animation-duration: 8s; background: var(--glow); width: 2px; height: 2px; }
.hero__particle:nth-child(5) { left: 85%; top: 15%; animation-delay: 4s; animation-duration: 10s; background: var(--accent); }
.hero__particle:nth-child(6) { left: 40%; top: 85%; animation-delay: 5s; animation-duration: 7s; width: 2px; height: 2px; }
.hero__particle:nth-child(7) { left: 60%; top: 45%; animation-delay: 1s; animation-duration: 9s; background: var(--accent); }
.hero__particle:nth-child(8) { left: 15%; top: 50%; animation-delay: 3.5s; animation-duration: 8s; background: var(--glow); width: 2px; height: 2px; }

/* ── Keyframes ───────────────────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes heartPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 136, 154, 0.3); }
  50% { box-shadow: 0 0 16px 4px rgba(232, 136, 154, 0.15); }
}

@keyframes borderRotate {
  from { --angle: 0deg; }
  to { --angle: 360deg; }
}
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroMockupIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes matchPop {
  0% { opacity: 0; transform: scale(0.8) translateY(8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes particleDrift {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  20% { opacity: 0.4; }
  50% { opacity: 0.2; transform: translateY(-30px) translateX(15px); }
  80% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-60px) translateX(-10px); }
}

/* ── Canvas Background ──────────────────────────────────────────────────── */
.canvas-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.canvas-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.canvas-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 136, 154, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 136, 154, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}
.canvas-bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}
.canvas-bg__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(11,11,18,0.8) 100%);
}

/* ── Shimmer Gradient Text ──────────────────────────────────────────────── */
.rose-gradient-text-shimmer {
  background: linear-gradient(90deg, var(--rose) 0%, #c47aff 25%, var(--rose) 50%, #c47aff 75%, var(--rose) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShimmer 6s linear infinite;
}

@keyframes gradientShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Animated Rose Gradient Button ──────────────────────────────────────── */
.btn--rose-animated {
  background: linear-gradient(135deg, var(--rose), #c47aff, var(--rose));
  background-size: 200% 200%;
  animation: gradientShimmer 4s ease infinite;
  color: #fff;
  box-shadow: 0 4px 20px var(--rose-glow);
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn--rose-animated:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(232, 136, 154, 0.25), 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ── Footer Glow Divider ────────────────────────────────────────────────── */
.footer-glow-divider {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent 5%, rgba(232,136,154,0.3) 30%, rgba(124,106,255,0.15) 70%, transparent 95%);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* ── Footer Ambient Particles ───────────────────────────────────────────── */
.footer-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.footer-spark {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: footerSpark ease-in-out infinite;
}

@keyframes footerSpark {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.3); }
  15% { opacity: 0.6; transform: translateY(-4px) scale(1); }
  50% { opacity: 0.3; transform: translateY(-10px) scale(0.7); }
  85% { opacity: 0.1; transform: translateY(-16px) scale(0.4); }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-py: 64px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hero__text { max-width: 100%; }
  .hero__text .subtitle { margin: 0 auto; }
  .hero__ctas { justify-content: center; }
  .hero__mockup { max-width: 280px; }

  .feature-row,
  .feature-row--reverse {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .feature-text { max-width: 100%; }
  .bullet-list { align-items: flex-start; text-align: left; }

  .timeline::before { left: 24px; }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .reveal-visual {
    flex-direction: column;
    gap: 12px;
  }
  .reveal-visual__card { width: 100%; max-width: 220px; }

  .trust-strip__inner {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .match-notif {
    top: -12px;
    right: -8px;
    font-size: 11px;
    padding: 6px 10px;
  }

  .footer__inner { flex-direction: column; gap: 32px; }
  .footer__brand { max-width: 100%; }
  .footer__links { gap: 32px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 6 cards = clean 3x2 grid on desktop */
@media (min-width: 1025px) {
  .safety-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Reduced Motion ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-child {
    opacity: 1;
    transform: none;
  }
  .rose-gradient-text-shimmer {
    animation: none;
    background: linear-gradient(135deg, var(--rose), #c47aff);
    -webkit-background-clip: text;
    background-clip: text;
  }
  .btn--rose-animated {
    animation: none;
    background: linear-gradient(135deg, var(--rose), #c47aff);
  }
}
