@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --brand-50: #fdf2f8;
  --brand-100: #fce7f3;
  --brand-200: #fbcfe8;
  --brand-300: #f9a8d4;
  --brand-400: #f472b6;
  --brand-500: #ec4899;
  --brand-600: #db2777;
  --brand-700: #be185d;
  --brand-800: #9d174d;
  --brand-900: #831843;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

html.smooth-scroll {
  scroll-behavior: smooth;
}

body {
  -webkit-tap-highlight-color: transparent;
}

body.drawer-open {
  overflow: hidden;
  touch-action: none;
}

.safe-bottom {
  padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-700 { animation-delay: 0.7s; }

/* ── Global scroll reveal ── */
.reveal,
.cta-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--d, 0) * 0.1s);
}

.reveal.visible,
.cta-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-paused *,
.anim-paused::before,
.anim-paused::after {
  animation-play-state: paused !important;
}

.perf-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.reveal-group .reveal-child {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--d, 0) * 0.08s);
}

.reveal-group.visible .reveal-child {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Hero ── */
.hero-section {
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  contain: strict;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: none;
  animation: hero-orb-drift 10s ease-in-out infinite;
  will-change: transform;
}

.hero-orb-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.5) 0%, rgba(236, 72, 153, 0.15) 45%, transparent 70%);
  top: -15%;
  right: -10%;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 168, 212, 0.55) 0%, rgba(249, 168, 212, 0.12) 45%, transparent 70%);
  bottom: 5%;
  left: -12%;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(219, 39, 119, 0.35) 0%, rgba(219, 39, 119, 0.1) 45%, transparent 70%);
  top: 35%;
  left: 40%;
  animation-delay: -7s;
}

@keyframes hero-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -20px) scale(1.06); }
}

.hero-float-icon {
  animation: hero-icon-float 3.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-float-icon.delay {
  animation-delay: -1.2s;
}

@keyframes hero-icon-float {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-12px); }
}

.hero-float-icon.delay {
  animation-name: hero-icon-float-alt;
}

@keyframes hero-icon-float-alt {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-14px); }
}

.hero-phone-wrap {
  position: relative;
  animation: hero-phone-float 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes hero-phone-float {
  0%, 100% { transform: translateY(0) rotateX(1deg) rotateY(-2deg); }
  50% { transform: translateY(-16px) rotateX(-1deg) rotateY(2deg); }
}

.hero-phone-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 65%);
  animation: cta-glow-pulse 4s ease-in-out infinite;
  z-index: -1;
  border-radius: 50%;
}

#hero-phone {
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  #hero-phone.is-parallax {
    will-change: transform;
  }
}

#hero-phone-wrap:hover .hero-phone-glow {
  animation-duration: 2.5s;
  opacity: 1;
}

/* ── Hero split layout ── */
.hero-section--split {
  background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 45%, #fce7f3 100%);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(219, 39, 119, 0.1) 0%, transparent 45%),
    linear-gradient(rgba(236, 72, 153, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 72, 153, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 32px 32px, 32px 32px;
  opacity: 0.9;
}

.hero-split-grid {
  padding-top: 0.5rem;
}

@media (min-width: 1024px) {
  .hero-split-grid {
    min-height: calc(100vh - 8rem);
    align-items: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: white;
  border: 1px solid rgba(236, 72, 153, 0.25);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-600);
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.1);
  margin-bottom: 1.25rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-500);
  animation: cta-pulse-dot 2s ease-in-out infinite;
}

.hero-stat-pill {
  background: white;
  border: 1px solid rgba(252, 231, 243, 0.9);
  border-radius: 1rem;
  padding: 0.75rem 0.5rem;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(236, 72, 153, 0.14);
}

.hero-float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: white;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(190, 24, 93, 0.12);
  font-size: 0.7rem;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
  pointer-events: none;
  animation: hero-chip-float 4s ease-in-out infinite;
}

.hero-float-chip--1 { top: 8%; left: -4%; animation-delay: 0s; }
.hero-float-chip--2 { top: 55%; right: -6%; animation-delay: -1.5s; }
.hero-float-chip--3 { bottom: 12%; left: 5%; animation-delay: -2.8s; }

@keyframes hero-chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1023px) {
  .hero-float-chip { display: none; }
}

/* ── Feature cards v2 (bento) ── */
.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-600));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  color: var(--brand-600);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.08) rotate(-4deg);
}

.feature-card--accent {
  background: linear-gradient(145deg, #fff 0%, #fdf2f8 100%);
  border-color: rgba(236, 72, 153, 0.2) !important;
}

.feature-card--wide {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .feature-card--wide {
    grid-column: span 2;
  }
}

.features-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .features-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .features-bento {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Match screen */
.app-match {
  background: linear-gradient(165deg, #831843 0%, #be185d 40%, #ec4899 100%);
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 16px;
  color: white;
  position: relative;
  overflow: hidden;
}

.app-match::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.app-match-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.app-match-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid white;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.app-match-avatar + .app-match-avatar {
  margin-left: -20px;
}

.app-match-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-match-heart {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 2;
}

.app-match-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.app-match-sub {
  font-size: 11px;
  opacity: 0.9;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.app-match-btn {
  background: white;
  color: var(--brand-700);
  font-size: 11px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}

/* Visitors screen */
.app-visitors {
  background: #fafafa;
}

.app-visitors .visitors-header {
  padding: 12px 14px;
  font-weight: 700;
  font-size: 13px;
  color: #1e293b;
  background: white;
  border-bottom: 1px solid #fce7f3;
}

.app-visitors .visitor-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #f1f5f9;
}

.app-visitors .visitor-row > div:nth-child(2) {
  flex: 1;
  min-width: 0;
}

.app-visitors .visitor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.app-visitors .visitor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-visitors .visitor-name {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
}

.app-visitors .visitor-time {
  font-size: 10px;
  color: #94a3b8;
}

.app-visitors .visitor-badge {
  font-size: 9px;
  background: var(--brand-100);
  color: var(--brand-700);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  margin-left: auto;
  flex-shrink: 0;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(236, 72, 153, 0.14);
  border-color: rgba(236, 72, 153, 0.35) !important;
}

/* ── Why cards ── */
.why-card {
  border-radius: 1rem;
  transition: transform 0.35s ease,
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(236, 72, 153, 0.12);
  border-color: rgba(236, 72, 153, 0.3) !important;
}

.why-card .why-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

/* ── Carousel phones ── */
.carousel-slide .mini-phone {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}

.carousel-slide:hover .mini-phone {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 60px rgba(190, 24, 93, 0.18);
}

/* ── Section ambient glow ── */
.section-ambient {
  position: relative;
  overflow: hidden;
}

.section-ambient::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.section-ambient::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 39, 119, 0.06) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .section-ambient::before {
    animation: hero-orb-drift 14s ease-in-out infinite;
  }
  .section-ambient::after {
    animation: hero-orb-drift 18s ease-in-out infinite reverse;
  }
}

/* ── FAQ ── */
.faq-item {
  border-radius: 1rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.2);
}

@media (max-width: 1023px) {
  .cta-particle { display: none; }
  .cta-orb { animation: none; }
  .hero-orb { animation: none; }
  .hero-phone-wrap { animation: none; }
  .hero-float-icon { animation: none; }
  .hero-float-chip { animation: none; }
  .hero-phone-glow { animation: none; }
  .cta-float-card,
  .cta-btn-ghost {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .cta-orbit { animation: none; }
  .cta-float-card { animation: none; }
  .cta-chat-bubble { animation: none; opacity: 1; transform: none; }
  .cta-tap-like,
  .cta-like-burst { animation: none; }
  .cta-btn-shine { animation: none; }
  .cta-badge-dot { animation: none; }

  .reveal,
  .cta-reveal,
  .reveal-group .reveal-child {
    transform: none !important;
    transition: opacity 0.45s ease !important;
  }

  .reveal.visible,
  .cta-reveal.visible,
  .reveal-group.visible .reveal-child {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .cta-reveal, .reveal-group .reveal-child {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-orb, .hero-float-icon, .hero-phone-wrap, .hero-phone-glow,
  .section-ambient::before, .section-ambient::after {
    animation: none !important;
  }
  .feature-card:hover, .why-card:hover, .carousel-slide:hover .mini-phone {
    transform: none;
  }
}

.faq-btn.active + div {
  max-height: 500px !important;
  opacity: 1 !important;
}

.faq-btn.active i {
  transform: rotate(180deg);
}

/* ── Navbar ── */
#navbar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

@media (min-width: 768px) {
  #navbar {
    background: transparent;
    border-bottom: none;
  }
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 3px rgba(236, 72, 153, 0.06);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(252, 231, 243, 0.9);
}

@media (min-width: 768px) {
  #navbar.scrolled {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

/* ── Mobile Drawer ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  height: 100dvh;
  background: #fff;
  z-index: 70;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(190, 24, 93, 0.1);
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid #fce7f3;
}

.drawer-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-50);
  color: #64748b;
  border: 1px solid var(--brand-100);
  transition: background 0.2s, color 0.2s;
}

.drawer-close-btn:active {
  background: var(--brand-100);
  color: #1e293b;
}

.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: 14px;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.drawer-link:active,
.drawer-link:hover {
  background: var(--brand-50);
  color: var(--brand-600);
}

.drawer-link i {
  color: var(--brand-500);
  flex-shrink: 0;
}

.drawer-footer {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid #fce7f3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.drawer-cta:active {
  transform: scale(0.98);
}

.drawer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
}

.drawer-legal a {
  color: #64748b;
  transition: color 0.2s;
}

.drawer-legal a:hover {
  color: var(--brand-600);
}

/* ── Carousel ── */
.carousel-track {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  scroll-snap-align: center;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .mini-phone {
    height: 380px;
  }

  .app-promo .promo-title {
    font-size: 22px;
  }

  .app-video .call-ring,
  .app-voice .voice-ring {
    width: 110px;
    height: 110px;
  }

  .app-video .call-avatar,
  .app-voice .voice-avatar {
    width: 94px;
    height: 94px;
    font-size: 36px;
  }
}

.heart-pattern {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

/* ── Legal content ── */
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #334155;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
  color: #64748b;
  line-height: 1.75;
  font-size: 0.925rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0;
}

.legal-content ul li {
  margin-bottom: 0.35rem;
}

.legal-content a {
  color: var(--brand-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--brand-700);
}

/* ── App Screen Mockups ── */
.app-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-size: 11px;
  position: relative;
}

.app-screen-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.app-screen-header--safe {
  padding-top: 26px;
  padding-bottom: 6px;
}

.phone-mockup .app-screen-header--safe {
  padding-top: 24px;
}

.mini-phone .app-screen-header--safe {
  padding-top: 28px;
}

.app-screen-header img {
  height: 26px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
}

.phone-mockup .app-screen-header img {
  height: 24px;
}

.app-discover .app-screen-header--safe {
  background: #fff;
}

.app-grid .app-screen-header img,
.app-screen-header.dark img {
  filter: brightness(0) invert(1);
}

.profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.mini-card-photo {
  height: 70px;
  overflow: hidden;
  display: block;
}

.mini-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.call-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.chat-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.chat-avatar-img.xs {
  width: 28px;
  height: 28px;
}

.app-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.app-avatar-lg {
  width: 100%;
  height: 100%;
  font-size: 72px;
  border-radius: 0;
}

.app-avatar-md {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 18px;
}

.app-avatar-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
}

.app-avatar-xs {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 11px;
}

.av-pink   { background: linear-gradient(135deg, #f472b6, #ec4899); }
.av-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.av-rose   { background: linear-gradient(135deg, #fb7185, #e11d48); }
.av-magenta { background: linear-gradient(135deg, #ec4899, #db2777); }
.av-teal   { background: linear-gradient(135deg, #2dd4bf, #0891b2); }
.av-fuchsia { background: linear-gradient(135deg, #e879f9, #c026d3); }

/* Discover / Swipe screen */
.app-discover {
  background: #fff;
}

.app-discover .profile-area {
  flex: 1;
  position: relative;
  overflow: hidden;
  margin: 0 10px;
  border-radius: 20px;
}

.app-discover .profile-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #fbcfe8 0%, #ec4899 40%, #be185d 100%);
}

.app-discover .profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  color: white;
  z-index: 1;
}

.app-discover .profile-name {
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-discover .online-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.app-discover .profile-loc {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.app-discover .profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.app-discover .tag {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 10px;
}

.app-discover .actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 12px 0 8px;
}

.app-discover .act-btn {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-discover .act-btn.sm {
  width: 44px;
  height: 44px;
  background: white;
}

.app-discover .act-btn.lg {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.45);
}

.app-tabbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 14px;
  border-top: 1px solid #fce7f3;
  flex-shrink: 0;
}

.app-tabbar .tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #94a3b8;
  font-size: 9px;
}

.app-tabbar .tab.active {
  color: var(--brand-500);
}

/* Grid discover screen */
.app-grid {
  background: linear-gradient(180deg, var(--brand-500) 0%, var(--brand-600) 60%, var(--brand-700) 100%);
}

.app-grid .grid-title {
  text-align: center;
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 0 10px;
  opacity: 0.9;
}

.app-grid .profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 12px;
  flex: 1;
}

.app-grid .mini-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-grid .mini-card-photo {
  height: 70px;
  display: block;
  overflow: hidden;
}

.app-grid .mini-card-info {
  padding: 6px 8px;
  color: white;
}

.app-grid .mini-card-name {
  font-weight: 700;
  font-size: 11px;
}

.app-grid .mini-card-age {
  font-size: 10px;
  opacity: 0.75;
}

/* Video call screen */
.app-video {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.app-video .call-status {
  text-align: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 10px 0 6px;
  opacity: 0.7;
}

.app-video .call-avatar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.app-video .call-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid rgba(236, 72, 153, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(236, 72, 153, 0); }
}

.app-video .call-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  font-size: 48px;
}

.app-video .call-name {
  text-align: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
}

.app-video .call-controls {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 16px 0 20px;
}

.app-video .call-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-video .call-btn.end { background: #ef4444; }
.app-video .call-btn.accept { background: #22c55e; }

/* Voice call screen */
.app-voice {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.app-voice .voice-status {
  text-align: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 10px 0 4px;
  opacity: 0.7;
}

.app-voice .voice-avatar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 12px;
}

.app-voice .voice-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid rgba(236, 72, 153, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-ring 2s ease-in-out infinite;
}

.app-voice .voice-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  font-size: 48px;
}

.app-voice .voice-name {
  text-align: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.app-voice .voice-duration {
  text-align: center;
  color: var(--brand-300);
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.app-voice .voice-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 32px;
  padding: 0 24px;
}

.app-voice .wave-bar {
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-400), var(--brand-600));
  animation: voice-wave 1.2s ease-in-out infinite;
}

.app-voice .wave-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.app-voice .wave-bar:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.app-voice .wave-bar:nth-child(3) { height: 24px; animation-delay: 0.2s; }
.app-voice .wave-bar:nth-child(4) { height: 14px; animation-delay: 0.3s; }
.app-voice .wave-bar:nth-child(5) { height: 28px; animation-delay: 0.15s; }
.app-voice .wave-bar:nth-child(6) { height: 18px; animation-delay: 0.25s; }
.app-voice .wave-bar:nth-child(7) { height: 10px; animation-delay: 0.05s; }
.app-voice .wave-bar:nth-child(8) { height: 22px; animation-delay: 0.35s; }
.app-voice .wave-bar:nth-child(9) { height: 12px; animation-delay: 0.2s; }
.app-voice .wave-bar:nth-child(10) { height: 20px; animation-delay: 0.1s; }

@keyframes voice-wave {
  0%, 100% { transform: scaleY(0.5); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

.app-voice .voice-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 16px 0 20px;
}

.app-voice .voice-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.app-voice .voice-btn.mute {
  background: rgba(255, 255, 255, 0.12);
}

.app-voice .voice-btn.end {
  width: 56px;
  height: 56px;
  background: #ef4444;
  border: none;
}

.app-voice .voice-btn.speaker {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  border: none;
}

/* Chat screen */
.app-chat {
  background: #f8fafc;
}

.app-chat .chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: white;
  border-bottom: 1px solid #fce7f3;
}

.app-chat .chat-header-name {
  font-weight: 700;
  font-size: 13px;
  color: #1e293b;
}

.app-chat .chat-header-status {
  font-size: 10px;
  color: #22c55e;
}

.app-chat .chat-messages {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.app-chat .bubble {
  max-width: 75%;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 11px;
  line-height: 1.4;
}

.app-chat .bubble.them {
  background: white;
  color: #334155;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.app-chat .bubble.me {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.app-chat .chat-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: white;
  border-top: 1px solid #fce7f3;
}

.app-chat .chat-input-field {
  flex: 1;
  background: #fdf2f8;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  color: #94a3b8;
}

.app-chat .chat-send {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Promo screens */
.app-promo {
  background: linear-gradient(160deg, var(--brand-500) 0%, var(--brand-600) 50%, var(--brand-700) 100%);
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 20px;
  color: white;
}

.app-promo .promo-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.app-promo .promo-sub {
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 4px;
}

.app-promo .promo-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
}

.app-promo .promo-desc {
  font-size: 11px;
  opacity: 0.8;
  line-height: 1.5;
}

.app-promo .heart-bubble {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-600));
  border-radius: 50% 50% 50% 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(190, 24, 93, 0.3);
  transform: rotate(-15deg);
}

/* Mini phone for carousel */
.mini-phone {
  width: 100%;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: #1e293b;
  border: 3px solid #334155;
  box-shadow: 0 20px 50px rgba(190, 24, 93, 0.15);
  position: relative;
}

.mini-phone-notch {
  width: 80px;
  height: 14px;
  background: #1e293b;
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.mini-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
}

.footer-phone {
  display: none;
}

/* ── CTA Showcase ── */
.cta-showcase {
  position: relative;
  background: #0f172a;
  color: white;
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  contain: strict;
}

.cta-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(236, 72, 153, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 60%, rgba(219, 39, 119, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(244, 114, 182, 0.15) 0%, transparent 45%);
}

@media (min-width: 1024px) {
  .cta-mesh {
    animation: cta-mesh-shift 12s ease-in-out infinite alternate;
  }
}

@keyframes cta-mesh-shift {
  0% { transform: scale(1) translate(0, 0); opacity: 1; }
  100% { transform: scale(1.08) translate(2%, -2%); opacity: 0.85; }
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: none;
  animation: cta-orb-float 8s ease-in-out infinite;
}

.cta-orb-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, rgba(236, 72, 153, 0.12) 50%, transparent 72%);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.cta-orb-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(219, 39, 119, 0.3) 0%, rgba(219, 39, 119, 0.1) 50%, transparent 72%);
  bottom: 10%;
  right: -8%;
  animation-delay: -3s;
}

.cta-orb-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(249, 168, 212, 0.25) 0%, rgba(249, 168, 212, 0.08) 50%, transparent 72%);
  top: 40%;
  left: 45%;
  animation-delay: -5s;
}

@keyframes cta-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}

.cta-particle {
  position: absolute;
  color: rgba(236, 72, 153, 0.35);
  font-size: calc(12px + var(--i) * 4px);
  left: calc(10% + var(--i) * 14%);
  bottom: -20px;
  animation: cta-particle-rise 6s ease-in infinite;
  animation-delay: calc(var(--i) * -1.1s);
  opacity: 0;
}

@keyframes cta-particle-rise {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.cta-copy {
  text-align: center;
  position: relative;
  z-index: 30;
}

@media (min-width: 1024px) {
  .cta-copy { text-align: left; }
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.cta-badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: cta-pulse-dot 2s ease-in-out infinite;
}

@keyframes cta-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-title-accent {
  background: linear-gradient(135deg, var(--brand-400), var(--brand-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-desc {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 2rem;
}

@media (min-width: 1024px) {
  .cta-desc { margin-left: 0; margin-right: 0; }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 480px) {
  .cta-buttons { flex-direction: row; justify-content: center; }
}

@media (min-width: 1024px) {
  .cta-buttons { justify-content: flex-start; }
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover { transform: translateY(-2px); }
.cta-btn:active { transform: translateY(0); }

.cta-btn-primary {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  color: white;
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.45);
}

.cta-btn-primary:hover {
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.55);
}

.cta-btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: cta-shine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cta-shine {
  0%, 80%, 100% { transform: translateX(-100%); }
  40% { transform: translateX(100%); }
}

.cta-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(8px);
}

.cta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}

.cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .cta-stats { justify-content: flex-start; }
}

.cta-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-stat strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-500);
}

.cta-stat span {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cta-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}

/* Stage */
.cta-stage {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.cta-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(236, 72, 153, 0.15);
  animation: cta-orbit-spin 20s linear infinite;
  pointer-events: none;
}

.cta-orbit-1 {
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  margin: -170px 0 0 -170px;
}

.cta-orbit-2 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  margin: -200px 0 0 -200px;
  animation-direction: reverse;
  animation-duration: 28s;
  border-color: rgba(236, 72, 153, 0.08);
}

@keyframes cta-orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 12px 40px rgba(190, 24, 93, 0.15);
  z-index: 20;
  animation: cta-float-card 4s ease-in-out infinite;
  pointer-events: none;
}

.cta-float-icon { font-size: 22px; }

.cta-float-title {
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.cta-float-sub {
  font-size: 10px;
  color: #64748b;
}

.cta-float-1 {
  top: 8%;
  right: 0;
  animation-delay: 0s;
}

.cta-float-2 {
  top: 42%;
  left: -4%;
  animation-delay: -1.3s;
}

.cta-float-3 {
  bottom: 12%;
  right: 4%;
  animation-delay: -2.6s;
}

@keyframes cta-float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 639px) {
  .cta-float-1 { right: 4%; top: 0; }
  .cta-float-2 { left: 4%; top: auto; bottom: 8%; }
  .cta-float-3 { display: none; }
}

.cta-phone-wrap {
  position: relative;
  z-index: 10;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .cta-phone-wrap {
    animation: cta-phone-float 5s ease-in-out infinite;
  }
}

@keyframes cta-phone-float {
  0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-4deg); }
  50% { transform: translateY(-14px) rotateX(-1deg) rotateY(4deg); }
}

.cta-phone-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.45) 0%, transparent 65%);
  animation: cta-glow-pulse 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes cta-glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.cta-phone-device {
  width: 220px;
  height: 440px;
  background: #1e293b;
  border-radius: 32px;
  border: 4px solid #334155;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .cta-phone-device { width: 250px; height: 500px; }
}

.cta-phone-notch {
  width: 90px;
  height: 16px;
  background: #1e293b;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.cta-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.cta-phone-device .app-discover .profile-area {
  margin: 0 8px;
}

.cta-phone-device .actions {
  padding: 10px 0 16px;
}

.cta-tap-like {
  position: relative;
  animation: cta-like-pulse 2s ease-in-out infinite;
}

@keyframes cta-like-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 6px 20px rgba(236, 72, 153, 0.45); }
  50% { transform: scale(1.08); box-shadow: 0 10px 32px rgba(236, 72, 153, 0.65); }
}

.cta-like-burst {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(236, 72, 153, 0.5);
  animation: cta-like-ring 2s ease-out infinite;
}

@keyframes cta-like-ring {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.cta-chat-preview {
  position: absolute;
  bottom: 18%;
  left: -8%;
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .cta-chat-preview { left: 2%; bottom: 10%; }
}

.cta-chat-bubble {
  background: white;
  color: #334155;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  animation: cta-chat-pop 4s ease-in-out infinite;
}

.cta-chat-2 {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  color: white;
  border-radius: 16px 16px 4px 16px;
  align-self: flex-end;
  margin-left: 40px;
  animation-delay: 2s;
}

@keyframes cta-chat-pop {
  0%, 15%, 85%, 100% { opacity: 0; transform: translateY(10px) scale(0.9); }
  25%, 75% { opacity: 1; transform: translateY(0) scale(1); }
}

.cta-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-stage.cta-reveal.visible {
  transition-delay: 0.15s;
}

@media (prefers-reduced-motion: reduce) {
  .cta-mesh, .cta-orb, .cta-particle, .cta-orbit,
  .cta-float-card, .cta-phone-wrap, .cta-phone-glow,
  .cta-tap-like, .cta-like-burst, .cta-chat-bubble,
  .cta-btn-shine, .cta-badge-dot,
  .app-voice .wave-bar {
    animation: none !important;
  }
  .cta-reveal { opacity: 1; transform: none; }
  .cta-phone-wrap { transform: none; }
}

/* Mobile app screen scaling inside hero phone */
@media (max-width: 639px) {
  .phone-mockup .app-discover .profile-name {
    font-size: 16px;
  }

  .phone-mockup .app-discover .act-btn.sm {
    width: 38px;
    height: 38px;
  }

  .phone-mockup .app-discover .act-btn.lg {
    width: 50px;
    height: 50px;
  }

  .phone-mockup .app-screen-header img {
    height: 22px;
  }

  .phone-mockup .app-avatar-lg {
    font-size: 60px;
  }
}
