:root {
  --background: 18 100% 99%;
  --foreground: 345 23% 13%;
  --card: 0 0% 100%;
  --primary: 340 98% 61%;
  --primary-foreground: 0 0% 100%;
  --primary-strong: 10 100% 66%;
  --primary-soft: 15 100% 96%;
  --primary-tint: 336 100% 96%;
  --highlight: 48 100% 98%;
  --secondary: 0 0% 100%;
  --muted: 24 43% 97%;
  --muted-foreground: 345 10% 41%;
  --accent: 340 100% 98%;
  --border: 17 30% 90%;
  --hero-gradient: linear-gradient(134deg, hsl(var(--primary-strong)) 0%, hsl(var(--primary)) 100%);
  --hero-soft-gradient: linear-gradient(134deg, hsl(var(--primary-soft)) 0%, hsl(var(--primary-tint)) 100%);
  --shadow-soft: 0 10px 30px -16px hsl(var(--foreground) / 0.18);
  --shadow-strong: 0 24px 60px -20px hsl(var(--primary) / 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.landing-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease, backdrop-filter 200ms ease;
}

.site-header--scrolled {
  border-color: hsl(var(--border) / 0.9);
  background: hsl(var(--background) / 0.88);
  -webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
}

.brand-mark img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-wordmark {
  font-size: 1.25rem;
  font-weight: 800;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-pill,
.mobile-link,
.site-footer button,
.site-footer a {
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.nav-pill {
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: hsl(var(--foreground) / 0.78);
}

.nav-pill:hover,
.site-footer button:hover,
.site-footer a:hover {
  color: hsl(var(--foreground));
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: 999px;
  background: var(--hero-gradient);
  color: hsl(var(--primary-foreground));
  box-shadow: 0 12px 24px -12px hsl(var(--primary) / 0.75);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.menu-button {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--secondary));
  box-shadow: var(--shadow-soft);
}

.menu-button__bar {
  width: 1.125rem;
  height: 0.125rem;
  border-radius: 999px;
  background: hsl(var(--foreground));
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button--open {
  background: hsl(var(--accent));
}

.menu-button--open .menu-button__bar:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.menu-button--open .menu-button__bar:nth-child(2) {
  opacity: 0;
}

.menu-button--open .menu-button__bar:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.mobile-backdrop {
  position: fixed;
  inset: 4rem 0 0;
  z-index: 40;
  background: hsl(var(--foreground) / 0.16);
  -webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-backdrop--open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  position: relative;
  z-index: 45;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  box-shadow: var(--shadow-soft);
  animation: slide-down 220ms ease-out;
}

.mobile-panel__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-block: 1rem;
}

.mobile-link {
  width: 100%;
  text-align: left;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  font-weight: 600;
  color: hsl(var(--foreground) / 0.86);
}

.mobile-link:hover {
  background: hsl(var(--accent));
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  background: var(--hero-gradient);
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  box-shadow: 0 12px 24px -12px hsl(var(--primary) / 0.8);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--hero-gradient);
  color: hsl(var(--primary-foreground));
}

.hero-section::before,
.final-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 25%, hsl(var(--primary-foreground) / 0.22), transparent 35%),
    radial-gradient(circle at 80% 70%, hsl(var(--primary-foreground) / 0.14), transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  padding-block: 5rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.5rem;
}

.hero-copy h1,
.section-heading h2,
.final-banner h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 800;
}

.hero-copy h1 {
  font-size: clamp(2.75rem, 9vw, 4.75rem);
  max-width: 9ch;
}

.hero-copy p {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: hsl(var(--primary-foreground) / 0.92);
}

.hero-pill,
.section-kicker,
.status-pill,
.moment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-pill {
  padding: 0.55rem 0.95rem;
  background: hsl(var(--primary-foreground) / 0.18);
  -webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-primary,
.hero-secondary,
.plan-button,
.final-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.hero-primary,
.final-banner__button,
.plan-button--primary {
  background: hsl(var(--secondary));
  color: hsl(var(--primary));
  box-shadow: 0 14px 28px -18px hsl(var(--foreground) / 0.4);
}

.hero-secondary,
.plan-button--secondary {
  border: 1px solid hsl(var(--primary-foreground) / 0.42);
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary-foreground) / 0.08);
}

.plan-button--secondary {
  background: hsl(var(--background));
  border-color: hsl(var(--border));
  color: hsl(var(--foreground));
}

.hero-primary:hover,
.hero-secondary:hover,
.plan-button:hover,
.final-banner__button:hover,
.feature-card:hover,
.story-card:hover,
.plan-surface:hover,
.moment-card:hover {
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  font-size: 0.9rem;
  color: hsl(var(--primary-foreground) / 0.85);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 22rem;
  justify-self: center;
}

.swipe-stage {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, hsl(var(--primary-strong) / 0.16), hsl(var(--primary) / 0.82)),
    radial-gradient(circle at 25% 24%, hsl(var(--highlight)), transparent 34%), var(--hero-gradient);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.swipe-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--foreground) / 0.64), transparent 56%);
}

.status-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  padding: 0.55rem 0.85rem;
  background: hsl(var(--primary-foreground) / 0.18);
  color: hsl(var(--primary-foreground));
  -webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(8px);
}

.swipe-copy {
  position: absolute;
  inset-inline: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
}

.swipe-name {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
}

.swipe-subtitle {
  margin: 0.2rem 0 0;
  color: hsl(var(--primary-foreground) / 0.88);
}

.floating-note {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  animation: floaty 6s ease-in-out infinite;
}

.floating-note--left {
  left: -1rem;
  top: 12%;
}

.floating-note--right {
  right: -1rem;
  bottom: 14%;
  animation-delay: 2s;
}

.content-section {
  padding: 4.5rem 0;
}

.content-section--muted,
.site-footer {
  background: hsl(var(--muted));
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.section-kicker {
  padding: 0.45rem 0.85rem;
  background: hsl(var(--accent));
  color: hsl(var(--primary));
}

.section-heading h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.section-heading h2 span {
  background: var(--hero-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading p,
.moment-copy p,
.footer-brand-block p,
.trust-line,
.plan-caption,
.site-footer li,
.site-footer p {
  color: hsl(var(--muted-foreground));
}

.feature-grid,
.story-grid,
.pricing-grid,
.moment-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-card,
.story-card,
.plan-surface,
.moment-card,
.final-banner {
  border-radius: 1.25rem;
}

.feature-card,
.story-card,
.plan-surface,
.moment-card {
  background: hsl(var(--card));
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card,
.story-card,
.plan-surface {
  padding: 1.5rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: var(--hero-soft-gradient);
  color: hsl(var(--primary));
  font-size: 1.35rem;
}

.feature-card h3,
.moment-copy h3,
.site-footer h3 {
  margin: 1rem 0 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.feature-card p {
  margin-top: 0.65rem;
}

.plan-surface {
  display: flex;
  flex-direction: column;
  border: 1px solid hsl(var(--border));
}

.plan-surface--featured {
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 24px 48px -30px hsl(var(--primary) / 0.75);
}

.plan-topline,
.plan-price-row,
.footer-bottom,
.final-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.plan-price-row {
  margin-top: 1.4rem;
  align-items: baseline;
  justify-content: flex-start;
}

.plan-price-row strong {
  font-size: clamp(2rem, 6vw, 2.4rem);
  font-weight: 800;
}

.plan-price-row span {
  color: hsl(var(--muted-foreground));
}

.plan-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.plan-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.plan-list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  font-weight: 800;
  flex: none;
}

.is-included span {
  color: hsl(var(--primary));
}

.is-disabled {
  color: hsl(var(--muted-foreground));
  text-decoration: line-through;
}

.story-card {
  margin: 0;
}

.story-card blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
}

.story-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.story-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--hero-gradient);
  color: hsl(var(--primary-foreground));
  font-weight: 800;
}

.moment-card {
  overflow: hidden;
}

.moment-media {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--hero-gradient);
  overflow: hidden;
}

.moment-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 24%, hsl(var(--primary-foreground) / 0.24), transparent 20%),
    radial-gradient(circle at 50% 76%, hsl(var(--foreground) / 0.14), transparent 30%);
  opacity: 0.85;
}

.moment-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--foreground) / 0.64), transparent 55%);
}

.moment-media--1 {
  background: radial-gradient(circle at 30% 20%, hsl(var(--highlight)), transparent 28%),
    linear-gradient(140deg, hsl(var(--primary-strong)), hsl(var(--primary)));
}

.moment-media--2 {
  background: radial-gradient(circle at 70% 18%, hsl(var(--primary-foreground) / 0.45), transparent 20%),
    linear-gradient(145deg, hsl(var(--primary)), hsl(var(--primary-strong)));
}

.moment-media--3 {
  background: radial-gradient(circle at 50% 12%, hsl(var(--highlight)), transparent 18%),
    linear-gradient(160deg, hsl(var(--primary-strong)), hsl(var(--primary)) 70%);
}

.moment-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.moment-badge,
.moment-play {
  position: absolute;
  z-index: 1;
}

.moment-badge {
  top: 1rem;
  left: 1rem;
  padding: 0.55rem 0.8rem;
  background: hsl(var(--primary-foreground) / 0.18);
  color: hsl(var(--primary-foreground));
  -webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(8px);
}

.moment-play {
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: hsl(var(--primary-foreground) / 0.18);
  color: hsl(var(--primary-foreground));
  font-weight: 800;
  -webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(8px);
}

.moment-copy {
  padding: 1.25rem;
}

.trust-line {
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.final-banner {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background: var(--hero-gradient);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-strong);
}

.final-banner > * {
  position: relative;
  z-index: 1;
}

.final-banner h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  max-width: 12ch;
}

.final-banner p {
  margin-top: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.9);
}

.site-footer {
  border-top: 1px solid hsl(var(--border));
  padding: 3.5rem 0 1.5rem;
}

.footer-brand-block p {
  margin-top: 1rem;
  max-width: 22rem;
}

.site-footer ul {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.site-footer button,
.site-footer a {
  text-align: left;
  color: hsl(var(--muted-foreground));
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid hsl(var(--border));
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 4rem, 1200px);
  }

  .site-header__inner {
    min-height: 5rem;
  }

  .desktop-nav {
    display: inline-flex;
  }

  .menu-button,
  .mobile-panel,
  .mobile-backdrop {
    display: none !important;
  }

  .hero-grid,
  .feature-grid,
  .story-grid,
  .pricing-grid,
  .moment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    padding-block: 7.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
  }

  .final-banner {
    padding: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .feature-grid,
  .story-grid,
  .pricing-grid,
  .moment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hero-grid,
  .section-heading,
  .hero-copy {
    text-align: center;
  }

  .hero-copy {
    justify-items: center;
  }

  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .hero-primary,
  .hero-secondary,
  .plan-button,
  .final-banner__button {
    width: 100%;
  }

  .floating-note--left {
    left: 0.25rem;
  }

  .floating-note--right {
    right: 0.25rem;
  }

  .moment-media {
    aspect-ratio: 4 / 5;
  }

  .plan-topline,
  .final-banner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 479px) {
  .content-section {
    padding: 3.5rem 0;
  }

  .container {
    width: min(100% - 1.5rem, 1200px);
  }

  .hero-grid {
    padding-block: 4.25rem;
  }

  .floating-note {
    font-size: 0.78rem;
    padding: 0.7rem 0.85rem;
  }

  .mobile-backdrop {
    top: 4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Image */
.hero-img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px -20px hsl(340 100% 61% / 0.38);
}

/* Story Avatar Images */
.story-avatar-img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  object-fit: cover;
}

/* Gallery Grid Container */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-top: 2.75rem;
}

/* Gallery Card */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  cursor: pointer;
  transition: all 180ms ease;
  aspect-ratio: 4/5;
  box-shadow: 0 10px 30px -16px hsl(var(--foreground) / 0.18);
}

/* Gallery Card Image */
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

/* State Dropdown Styling - Footer */
.state-dropdown {
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  background-color: hsl(var(--card));
  color: hsl(var(--foreground));
  font-family: inherit;
  font-size: 0.925rem;
  cursor: pointer;
  transition: all 200ms ease;
  width: 100%;
}

.state-dropdown:hover {
  border-color: hsl(var(--primary));
}

.state-dropdown:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

/* State Dropdown Styling - Navigation */
.state-dropdown-nav {
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  background-color: hsl(var(--card));
  color: hsl(var(--foreground));
  font-family: inherit;
  font-size: 0.925rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  max-width: 140px;
}

.state-dropdown-nav:hover {
  border-color: hsl(var(--primary));
}

.state-dropdown-nav:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

/* Exit Intent Popup */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.exit-popup.is-visible {
  pointer-events: auto;
}

.exit-popup__backdrop {
  position: absolute;
  inset: 0;
  background: hsl(var(--foreground) / 0.4);
  -webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 300ms ease;
}

.exit-popup.is-visible .exit-popup__backdrop {
  opacity: 1;
}

.exit-popup__modal {
  position: relative;
  z-index: 1;
  background: hsl(var(--card));
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 32px 64px -16px hsl(var(--primary) / 0.35);
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 300ms ease;
}

.exit-popup.is-visible .exit-popup__modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.exit-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 200ms ease;
}

.exit-popup__close:hover {
  background: hsl(var(--accent));
  color: hsl(var(--primary));
  transform: rotate(90deg);
}

.exit-popup__content {
  text-align: center;
}

.exit-popup__tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: hsl(var(--primary-soft));
  color: hsl(var(--primary));
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.exit-popup__content h2 {
  margin: 0.8rem 0 0.5rem;
  font-size: 1.85rem;
  font-weight: 800;
  color: hsl(var(--foreground));
}

.exit-popup__content > p {
  margin: 0 0 1.25rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
}

.exit-popup__highlight {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, hsl(var(--primary-soft)), hsl(var(--primary-tint)));
  border: 2px solid hsl(var(--primary) / 0.3);
  border-radius: 0.9rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: hsl(var(--primary));
  margin: 1rem 0;
}

.exit-popup__subtext {
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  margin: 1rem 0 1.5rem;
}

.exit-popup__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--hero-gradient);
  color: hsl(var(--primary-foreground));
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 12px 24px -12px hsl(var(--primary) / 0.75);
  transition: transform 200ms ease, box-shadow 200ms ease;
  margin-bottom: 0.75rem;
}

.exit-popup__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -14px hsl(var(--primary) / 0.85);
}

.exit-popup__decline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: hsl(var(--muted-foreground));
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 200ms ease;
}

.exit-popup__decline:hover {
  border-color: hsl(var(--muted-foreground));
  color: hsl(var(--foreground));
  background: hsl(var(--muted));
}

/* Video Player with Center Button */
.vid-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.vid-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: hsl(var(--primary-foreground) / 0.18);
  border: 2px solid hsl(var(--primary-foreground) / 0.4);
  color: hsl(var(--primary-foreground));
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 200ms ease;
  -webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -8px hsl(var(--foreground) / 0.2);
}

.center-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: hsl(var(--primary-foreground) / 0.28);
  border-color: hsl(var(--primary-foreground) / 0.6);
  box-shadow: 0 12px 32px -8px hsl(var(--foreground) / 0.3);
}

.center-play-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
}

/* Ripple Effect */
.ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid hsl(var(--primary));
  pointer-events: none;
  z-index: 5;
}

@keyframes ripple-out {
  0% {
    width: 52px;
    height: 52px;
    opacity: 0.8;
  }
  100% {
    width: 110px;
    height: 110px;
    opacity: 0;
  }
}

.ripple.animate {
  animation: ripple-out 0.55s ease-out forwards;
}