[data-theme="dark"] .max-w-6xl th {
  color: #111827 !important;
}
/* SnapSync Privacy Policy page dark mode styles */
[data-theme="dark"] .max-w-6xl {
  background-color: #101624 !important;
  border-color: rgba(148, 163, 184, 0.25) !important;
  box-shadow: 0 2px 16px 0 rgba(15, 23, 42, 0.18) !important;
}
[data-theme="dark"] .max-w-6xl h1,
[data-theme="dark"] .max-w-6xl h2,
[data-theme="dark"] .max-w-6xl h3 {
  color: #e5e7eb !important;
}
[data-theme="dark"] .max-w-6xl p,
[data-theme="dark"] .max-w-6xl li,
[data-theme="dark"] .max-w-6xl ul {
  color: #e5e7eb !important;
}
[data-theme="dark"] .max-w-6xl a {
  color: #38bdf8 !important;
  text-decoration: underline;
}
[data-theme="dark"] .max-w-6xl table {
  background-color: #181f2e !important;
  color: #e5e7eb !important;
  border-color: rgba(148, 163, 184, 0.25) !important;
}
[data-theme="dark"] .max-w-6xl th,
[data-theme="dark"] .max-w-6xl td {
  border-color: rgba(148, 163, 184, 0.25) !important;
}
[data-theme="dark"] .max-w-6xl thead {
  background-color: #101624 !important;
}
[data-theme="dark"] .bg-page-background {
  background-color: #020617 !important;
}
/* Logo dark mode switch */
.logo-dark {
  display: none;
}
[data-theme="dark"] .logo-light {
  display: none !important;
}
[data-theme="dark"] .logo-dark {
  display: inline-block !important;
}
/* Header style for careers page: always white & rounded */
body.snap-careers-page .snap-header-inner {
  background: var(--snap-header-background);
  box-shadow: 0 2px 16px 0 rgba(15, 23, 42, 0.06);
  transition:
    background 0.3s,
    box-shadow 0.3s,
    border-radius 0.3s;
  border-radius: 1.5rem !important; /* rounded-3xl */
}
body.snap-careers-page header.scrolled .snap-header-inner {
  background: var(--snap-header-background);
  box-shadow: 0 2px 16px 0 rgba(15, 23, 42, 0.06);
  border-radius: 1.5rem !important; /* rounded-3xl */
}

/* AI Gallery benefits section width helper */
.snap-ai-benefits-wrapper {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* Examples hero: prevent horizontal scroll from 3D grid */
.real-examples-section {
  overflow-x: hidden;
}

/* Examples page: card hover effects (match live examples feel) */
.real-examples-bg .group\/product {
  transform: translateZ(0);
  transition:
    transform var(--snap-duration-mid) var(--snap-ease),
    box-shadow var(--snap-duration-mid) var(--snap-ease),
    filter var(--snap-duration-mid) var(--snap-ease);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.25);
}

.real-examples-bg .group\/product:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.35);
}

/* Subtle image brightening on hover */
.real-examples-bg .group\/product img {
  transition:
    transform var(--snap-duration-mid) var(--snap-ease),
    filter var(--snap-duration-mid) var(--snap-ease);
}

.real-examples-bg .group\/product:hover img {
  transform: scale(1.03);
  filter: brightness(1.05) saturate(1.02);
}

/* Darken gradient overlay slightly on hover for better caption contrast */
.real-examples-bg .group\/product > div:nth-of-type(1) {
  transition: opacity var(--snap-duration-mid) var(--snap-ease);
}

.real-examples-bg .group\/product:hover > div:nth-of-type(1) {
  opacity: 0.95;
}

/* AI Gallery feature cards (hover effects similar to fotoowl.ai) */
.snap-feature-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-color: rgba(148, 163, 184, 0.4); /* lighter default border */
  transition:
    transform var(--snap-duration-mid) var(--snap-ease),
    box-shadow var(--snap-duration-mid) var(--snap-ease),
    border-color var(--snap-duration-mid) var(--snap-ease),
    background-color var(--snap-duration-mid) var(--snap-ease);
}

.snap-feature-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at var(--snap-feature-glow-x, 0%) var(--snap-feature-glow-y, 0%),
    rgba(0, 156, 235, 0.22),
    transparent 70%
  );
  opacity: 0;
  transition: opacity var(--snap-duration-mid) var(--snap-ease);
  pointer-events: none;
}

.snap-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  border-color: rgba(0, 156, 235, 0.75);
  background-color: #ffffff;
}

.snap-feature-card:hover::before {
  opacity: 1;
}

.snap-feature-icon {
  background-color: rgba(0, 156, 235, 0.08);
  color: var(--snap-color-brand-yellow);
}

.snap-feature-card:hover .snap-feature-icon {
  background-color: rgba(0, 156, 235, 0.16);
  color: var(--snap-color-brand-yellow);
}

/* Spotlight templates section light/dark backgrounds */
.spotlight-templates-section {
  background-color: #f9fafb;
}
[data-theme="dark"] .spotlight-templates-section {
  background-color: #020617;
}
[data-theme="dark"] .spotlight-templates-section h2,
[data-theme="dark"] .spotlight-templates-section p {
  color: #e5e7eb;
}

/* Spotlight analytics section light/dark backgrounds */
.spotlight-analytics-section {
  background-color: #f9fafb;
}
[data-theme="dark"] .spotlight-analytics-section {
  background-color: #020617;
}
.spotlight-analytics-cards > div {
  background-color: #ffffff;
  border-color: rgba(148, 163, 184, 0.6);
}
[data-theme="dark"] .spotlight-analytics-cards > div {
  background-color: #0b1220; /* slightly lighter than page bg for card surface */
  border-color: rgba(148, 163, 184, 0.5);
}
[data-theme="dark"] .spotlight-analytics-cards p {
  color: #e5e7eb;
}

/* Spotlight story section (before/during/after) */
.spotlight-story-section {
  background-color: #f9fafb;
}
[data-theme="dark"] .spotlight-story-section {
  background-color: #020617;
}
.spotlight-story-cards > div {
  background-color: #ffffff;
  border-color: rgba(148, 163, 184, 0.6);
}
[data-theme="dark"] .spotlight-story-cards > div {
  background-color: #0b1220; /* card surface in dark mode */
  border-color: rgba(148, 163, 184, 0.5);
}
[data-theme="dark"] .spotlight-story-section p,
[data-theme="dark"] .spotlight-story-section span {
  color: #e5e7eb;
}

/* Why Everyone Loves Spotlight section */
.spotlight-love-section {
  background-color: #020617;
}
.spotlight-love-cards > div {
  background-color: #ffffff;
  border-color: rgba(148, 163, 184, 0.6);
}
[data-theme="dark"] .spotlight-love-cards > div {
  background-color: #0b1220; /* card surface in dark mode */
  border-color: rgba(148, 163, 184, 0.5);
}
[data-theme="dark"] .spotlight-love-section h2,
[data-theme="dark"] .spotlight-love-section h3,
[data-theme="dark"] .spotlight-love-section p,
[data-theme="dark"] .spotlight-love-section span {
  color: #e5e7eb;
}

/* What Event Organizers Say testimonials */
.spotlight-organizers-section {
  background-color: #ffffff;
}
[data-theme="dark"] .spotlight-organizers-section {
  background-color: #020617;
}
.spotlight-organizers-cards > div {
  background-color: #fdf2ff; /* keep light pastel feel in light mode */
}
[data-theme="dark"] .spotlight-organizers-cards > div {
  background-color: #0b1220; /* card surface in dark mode */
  border: 1px solid rgba(148, 163, 184, 0.4);
}
[data-theme="dark"] .spotlight-organizers-section p,
[data-theme="dark"] .spotlight-organizers-section h2 {
  color: #e5e7eb;
}

/* Marquee Frame - Unlock Powerful Benefits section */
.marquee-benefits-section {
  background-color: rgba(
    45,
    212,
    191,
    0.05
  ); /* bg-foto-teal/5 light approximation */
}

[data-theme="dark"] .marquee-benefits-section {
  background-color: #020617; /* match overall dark page background */
}

[data-theme="dark"] .marquee-benefits-section h2,
[data-theme="dark"] .marquee-benefits-section span,
[data-theme="dark"] .marquee-benefits-section p {
  color: #e5e7eb;
}

[data-theme="dark"] .marquee-benefits-section .bg-primary-100,
[data-theme="dark"] .marquee-benefits-section .bg-primary-200,
[data-theme="dark"] .marquee-benefits-section .bg-primary-300 {
  background-color: #0b1220; /* card surface on dark */
  border: 1px solid rgba(148, 163, 184, 0.45);
}

[data-theme="dark"] .marquee-benefits-section svg {
  color: #e5e7eb;
  stroke: #e5e7eb;
}

/* Marquee Frame - Amplify Your Brand gallery section */
.marquee-gallery-section {
  background-color: #ffffff;
}

[data-theme="dark"] .marquee-gallery-section {
  background-color: #020617; /* match dark page background */
}

[data-theme="dark"] .marquee-gallery-section h2,
[data-theme="dark"] .marquee-gallery-section p {
  color: #e5e7eb;
}

/* Events page mid sections (Instant Delivery, Branding, Privacy, Marketing, Perfect for Events) */
.events-feature-section {
  background-color: #f9fafb;
}
[data-theme="dark"] .events-feature-section {
  background-color: #020617;
}
[data-theme="dark"] .events-feature-section h2,
[data-theme="dark"] .events-feature-section h3,
[data-theme="dark"] .events-feature-section p,
[data-theme="dark"] .events-feature-section li,
[data-theme="dark"] .events-feature-section span {
  color: #e5e7eb;
}

/* Card surface for events sections: light in light mode, darker in dark mode */
.events-feature-card {
  background-color: #ffffff;
  border-color: rgba(148, 163, 184, 0.5);
}
[data-theme="dark"] .events-feature-card {
  background-color: #0b1220; /* slightly lighter than page background */
  border-color: rgba(148, 163, 184, 0.5);
}

/* Marquee Frame - Trusted by Event Organizers section */
.marquee-trust-section {
  background-color: #ffffff;
}

[data-theme="dark"] .marquee-trust-section {
  background-color: #020617;
}

[data-theme="dark"] .marquee-trust-section h2 {
  color: #e5e7eb;
}

/* Marquee Frame - Trusted section cards on dark */
[data-theme="dark"] .marquee-trust-section [data-slot="card"] {
  background-color: #020617;
  border-color: rgba(148, 163, 184, 0.55);
}

[data-theme="dark"] .marquee-trust-section [data-slot="card-content"] p {
  color: #e5e7eb;
}

/* Darken right-side stat cards in Trusted section on dark mode */
[data-theme="dark"] .marquee-trust-section .bg-primary-500 {
  background-color: #0257a4; /* darker blue */
  border-color: #0257a4;
}

[data-theme="dark"] .marquee-trust-section .bg-\[\#FB5084\] {
  background-color: #c43360; /* darker pink */
  border-color: #c43360;
}

[data-theme="dark"]
  .marquee-trust-section
  .bg-gradient-to-r.from-primary-500.to-\[\#FB5084\] {
  background-image: linear-gradient(to right, #0257a4, #c43360);
  border-color: #0257a4;
}

/* Gallery App - Why Web Galleries section */
.gallery-app-why-section {
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
}
[data-theme="dark"] .gallery-app-why-section {
  background: #020617 !important; /* override light gradient in dark mode */
}
[data-theme="dark"] .gallery-app-why-section h2,
[data-theme="dark"] .gallery-app-why-section p {
  color: #e5e7eb;
}
[data-theme="dark"] .gallery-app-why-section .bg-red-50,
[data-theme="dark"] .gallery-app-why-section .bg-emerald-50 {
  background-color: #0b1220;
  border-color: rgba(148, 163, 184, 0.5);
}
[data-theme="dark"] .gallery-app-why-section .bg-white {
  background-color: #020617;
  border-color: rgba(148, 163, 184, 0.5);
}

/* Icon pill backgrounds inside problem/solution cards in dark mode */
[data-theme="dark"] .gallery-app-why-section .bg-red-200 {
  background-color: rgba(248, 113, 113, 0.16);
  color: #ffffff !important; /* force white icons in dark mode */
}
[data-theme="dark"] .gallery-app-why-section .bg-emerald-200 {
  background-color: rgba(16, 185, 129, 0.16);
  color: #ffffff !important; /* force white icons in dark mode */
}

/* Ensure inner SVG icons inside pills are white in dark mode */
[data-theme="dark"] .gallery-app-why-section .bg-red-200 svg,
[data-theme="dark"] .gallery-app-why-section .bg-emerald-200 svg {
  color: #ffffff;
  stroke: #ffffff;
}

/* Gallery App - hero mobile frame on dark background */
[data-theme="dark"] .gallery-app-hero-phone {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

/* Photo Selection - Use Case card */
.snap-usecase-card {
  background: #020617; /* near-slate-950 */
  color: #f9fafb;
}

.snap-usecase-card h2,
.snap-usecase-card h3 {
  color: #f9fafb;
}

.snap-usecase-card p {
  color: #e5e7eb;
}

/* FAQ tabs - compact layout on mobile */
.snap-faq-tabs > button {
  flex: 1 1 0;
  min-width: 0;
  padding: 4px;
}

#snap-faq .snap-faq-card {
  min-width: 0;
  width: 100%;
  padding: 8px 8px;
  padding-top: 10px;
  gap: 6px;
}

#snap-faq .snap-faq-card svg {
  width: 24px;
  height: 24px;
}

#snap-faq .snap-faq-card span {
  font-size: 11px;
}

@media (min-width: 640px) {
  .snap-faq-tabs > button {
    padding: 6px;
  }

  #snap-faq .snap-faq-card {
    min-width: 140px;
    padding: 16px 16px;
    padding-top: 24px;
    gap: 8px;
  }

  #snap-faq .snap-faq-card svg {
    width: 40px;
    height: 40px;
  }

  #snap-faq .snap-faq-card span {
    font-size: 14px;
  }
}

/* Spotlight 3D hero section (SnapSync Spotlight page) */
.spotlight-hero-section {
  background: #111827;
}

.spotlight-3d-stage {
  position: relative;
  height: 300px;
}

@media (min-width: 768px) {
  .spotlight-3d-stage {
    height: 380px;
  }
}

.spotlight-3d-viewport {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.spotlight-3d-track {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.spotlight-3d-card {
  backface-visibility: hidden;
}

.spotlight-3d-card img {
  border-radius: 15px;
  border-width: 3px;
  border-style: solid;
  border-color: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.7);
}

/* Marquee Frame hero text colors */
[data-theme="dark"] .marquee-hero-section h1,
[data-theme="dark"] .marquee-hero-section p {
  color: #e5e7eb;
}

[data-theme="dark"] .marquee-hero-section .hero-cta-arrow {
  color: #000000;
}

/* Weddings page - force black arrow next to Learn more button */
.wedding-learn-arrow {
  color: #000000;
}

[data-theme="dark"] .wedding-learn-arrow {
  color: #000000;
}

/* Weddings page - feature cards and stats on dark mode */
.wedding-feature-section {
  background-color: #ffffff;
}

[data-theme="dark"] .wedding-feature-section {
  background-color: #020617; /* match dark page background */
  border-color: rgba(148, 163, 184, 0.55);
}

[data-theme="dark"] .wedding-feature-section h2,
[data-theme="dark"] .wedding-feature-section h3,
[data-theme="dark"] .wedding-feature-section p,
[data-theme="dark"] .wedding-feature-section li,
[data-theme="dark"] .wedding-feature-section span {
  color: #e5e7eb;
}

[data-theme="dark"] .wedding-feature-section .text-gray-600 {
  color: #cbd5f5; /* slightly softer gray for body text */
}

[data-theme="dark"] [data-wedding-testimonials] p {
  color: #e5e7eb;
}

[data-theme="dark"] [data-wedding-testimonials] .text-gray-500 {
  color: #9ca3af;
}

[data-theme="dark"] .wedding-stats-section {
  background-color: #020617;
}

[data-theme="dark"] .wedding-stats-section h2,
[data-theme="dark"] .wedding-stats-section p,
[data-theme="dark"] .wedding-stats-section .snap-stat-value {
  color: #e5e7eb;
}

[data-theme="dark"] .wedding-stats-section .text-gray-600 {
  color: #9ca3af;
}

/* Photographers page - hero and section text in dark mode */
[data-theme="dark"] .photographers-hero h1,
[data-theme="dark"] .photographers-hero p {
  color: #e5e7eb;
}

/* Photographers page - section headings and body text on dark background */
[data-theme="dark"] .photographers-section h2,
[data-theme="dark"] .photographers-section p {
  color: #e5e7eb;
}

/* Keep text inside white cards dark for readability on white surfaces */
[data-theme="dark"] .photographers-section .bg-white h3,
[data-theme="dark"] .photographers-section .bg-white p {
  color: #0f172a;
}

/* Photographers page - feature cards styling */
.photographers-card {
  background-color: #ffffff;
  border-color: rgba(148, 163, 184, 0.5);
}

[data-theme="dark"] .photographers-card {
  background-color: #0b1220; /* slightly lighter than page background */
  border-color: rgba(148, 163, 184, 0.55);
}

[data-theme="dark"] .photographers-card h3,
[data-theme="dark"] .photographers-card p {
  color: #e5e7eb !important;
}
:root {
  --snap-color-white: #ffffff;
  --snap-color-slate-900: #0f172a;
  --snap-color-slate-700: #334155;
  --snap-color-slate-600: #475569;
  --snap-color-slate-500: #64748b;
  --snap-color-slate-200: #e2e8f0;
  --snap-color-slate-100: #f8fafc;
  --snap-color-brand-yellow: #009ceb;

  /* Page & header background for light mode */
  --snap-page-background: #f5f5f5;
  --snap-header-background: #ffffff;

  --snap-border-soft: 1px solid rgba(15, 23, 42, 0.1);
  --snap-border-soft-strong: 1px solid rgba(15, 23, 42, 0.12);
  --snap-shadow-dropdown: 0 18px 40px rgba(15, 23, 42, 0.16);
  --snap-shadow-mobile: 0 14px 30px rgba(15, 23, 42, 0.12);

  --snap-radius-md: 10px;
  --snap-radius-lg: 12px;
  --snap-radius-xl: 18px;
  --snap-radius-pill: 9999px;

  --snap-duration-fast: 0.3s;
  --snap-duration-mid: 0.35s;
  --snap-duration-slow: 0.4s;
  --snap-duration-banner: 0.5s;

  --snap-ease: ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    "Plus Jakarta Sans",
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
}

.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.hidden {
  display: none;
}
.block {
  display: block;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.min-h-screen {
  min-height: 100vh;
}
.min-h-14 {
  min-height: 56px;
}
.w-full {
  width: 100%;
}
.h-9 {
  height: 36px;
}
.h-8 {
  height: 32px;
}
.w-8 {
  width: 32px;
}
.flex-col {
  flex-direction: column;
}
.flex-1 {
  flex: 1 1 0%;
}
.grow {
  flex-grow: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.flex-wrap {
  flex-wrap: wrap;
}
.overflow-hidden {
  overflow: hidden;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.top-0 {
  top: 0;
}
.top-1\/2 {
  top: 50%;
}
.top-20 {
  top: 80px;
}
.right-2 {
  right: 8px;
}
.-translate-y-1\/2 {
  transform: translateY(-50%);
}
.mx-auto {
  margin-inline: auto;
}
.ms-2 {
  margin-inline-start: 8px;
}
.mr-2 {
  margin-right: 8px;
}
.mr-4 {
  margin-right: 16px;
}
.ml-2 {
  margin-left: 8px;
}
.mt-36 {
  margin-top: 144px;
}
.max-w-4xl {
  max-width: 56rem;
}
.gap-0\.5 {
  gap: 2px;
}
.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 12px;
}
.gap-4 {
  gap: 16px;
}

/* Footer Foto Owl AI titles: mobile vs desktop */
.footer-title-mobile {
  display: block;
}

.footer-title-desktop {
  display: none;
}

@media (min-width: 768px) {
  .footer-title-mobile {
    display: none;
  }

  .footer-title-desktop {
    display: block;
  }
}

/* New Features cards layout for SnapSync */
.snap-features-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.snap-features-row > div {
  scroll-snap-align: start;
  flex: 0 0 85%;
  max-width: 85%;
}

@media (min-width: 768px) {
  .snap-features-row > div {
    flex-basis: 48%;
    max-width: 48%;
  }
}

@media (min-width: 1024px) {
  .snap-features-row {
    overflow-x: visible;
  }

  .snap-features-row > div {
    flex: 1 1 0%;
    max-width: none;
  }
}

/* Attractive buttons for New Features section */
.snap-feature-btn {
  border: 1px solid #009ceb;
  background: linear-gradient(135deg, #e6f6fd, #009ceb);
  color: #0f172a;
  padding-inline: 24px;
}

.snap-feature-btn:hover {
  background: linear-gradient(135deg, #009ceb, #44b0e6);
  color: #fff;
  transform: translateY(-1px);
}

.snap-feature-btn:active {
  transform: translateY(0);
}

/* Branding CTA button styling to closely match main site */

.branding-cta-btn {
  background-color: #009ceb;
  border: 2px solid #009ceb;
  color: #fff;
  border-radius: 9999px;
}

.branding-cta-btn:hover {
  background-color: #44b0e6;
}
.p-1 {
  padding: 4px;
}
.p-4 {
  padding: 16px;
}
.px-2 {
  padding-inline: 8px;
}
.px-3 {
  padding-inline: 12px;
}
.px-4 {
  padding-inline: 16px;
}
.py-1 {
  padding-block: 4px;
}
.py-2 {
  padding-block: 8px;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.cursor-pointer {
  cursor: pointer;
}
.text-center {
  text-align: center;
}
.text-sm {
  font-size: 14px;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.font-jakarta {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.text-black {
  color: #000;
}
.text-gray-900 {
  color: var(--snap-color-slate-900);
}
.text-gray-800 {
  color: var(--snap-color-slate-700);
}
.text-gray-700 {
  color: var(--snap-color-slate-700);
}
.fill-current {
  fill: currentColor;
}
.fill-gray-400 {
  fill: var(--snap-color-slate-500);
}
.bg-primary-500 {
  background: #009ceb;
}

.text-primary-500 {
  color: #009ceb;
}

.border-primary-500 {
  border-color: #009ceb;
}

.border-primary-300 {
  border-color: rgba(198, 129, 252, 0.45);
}

.hover\:ring-primary-500:hover {
  --tw-ring-color: #009ceb;
}

.focus-visible\:ring-primary-500:focus-visible {
  --tw-ring-color: #009ceb;
}

.hover\:text-primary-500:hover {
  color: #009ceb;
}

.snap-creator-card {
  width: min(320px, 100%);
}
.bg-gray-100 {
  background-color: #f3f4f6;
}
.rounded-full {
  border-radius: 9999px;
}
.w-6 {
  width: 24px;
}
.h-6 {
  height: 24px;
}
.bg-gradient-to-bl {
  background-image: linear-gradient(
    to bottom left,
    var(--tw-gradient-from),
    var(--tw-gradient-to)
  );
}
.from-\[\#fe3c76\] {
  --tw-gradient-from: #fe3c76;
}
.to-\[\#ff9a27\] {
  --tw-gradient-to: #ff9a27;
}
.text-secondary-foreground {
  color: #0f172a;
}
.shadow-xs {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
}
.whitespace-nowrap {
  white-space: nowrap;
}
.transition {
  transition: all 0.2s ease;
}
.transition-all {
  transition: all 0.3s ease;
}
.duration-200 {
  transition-duration: 0.2s;
}
.duration-300 {
  transition-duration: 0.3s;
}
.hover\:text-gray-900:hover {
  color: var(--snap-color-slate-900);
}
.hover\:bg-primary-500\/90:hover {
  background: #009ceb;
}

.backdrop-blur-xs {
  backdrop-filter: blur(4px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

[data-slot="button"] {
  border: 0;
  cursor: pointer;
}

.snap-force-ring {
  border: 2px solid transparent;
}

.snap-force-ring:hover,
.snap-force-ring:focus-visible {
  border-color: #009ceb;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px rgba(0, 156, 235, 0.85);
}

[data-theme="dark"] .snap-force-ring:hover,
[data-theme="dark"] .snap-force-ring:focus-visible {
  box-shadow:
    0 0 0 2px #0b1220,
    0 0 0 4px rgba(0, 156, 235, 0.9);
}

/* Creator Pass banner styling */
.snap-creator-banner {
  position: relative;
  background-image: linear-gradient(
    135deg,
    #fdf4ff 0%,
    #009ceb 45%,
    #ffffff 100%
  );
}

.snap-creator-dots {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-block: 32px;
}

.snap-creator-dots-left {
  left: 0;
  transform: translateX(-9px);
}

.snap-creator-dots-right {
  right: 0;
  transform: translateX(9px);
}

.snap-creator-dot {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background-color: #f4f4f4;
}

.snap-creator-stripes {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.06;
}

.snap-creator-stripes::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 0, 0, 0.4) 10px,
    rgba(0, 0, 0, 0.4) 20px
  );
}

.snap-creator-star {
  position: absolute;
  right: -12px;
  top: -48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.snap-creator-star img {
  width: 120px;
  height: 120px;
}

.snap-creator-star-label {
  position: absolute;
  top: 52px;
  left: 46px;
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.min-w-\[140px\] {
  min-width: 140px;
}
.max-w-\[140px\] {
  max-width: 140px;
}

.\!size-5 {
  width: 20px !important;
  height: 20px !important;
}

.size-4 {
  width: 16px;
  height: 16px;
}

@media (min-width: 768px) {
  .md\:top-14 {
    top: 56px;
  }
  .md\:p-3\.5 {
    padding: 14px;
  }
  .md\:px-4 {
    padding-inline: 16px;
  }
  .md\:grow {
    flex-grow: 1;
  }
  .md\:mt-30 {
    margin-top: 120px;
  }
  .md\:text-base {
    font-size: 16px;
  }
  .md\:mr-0 {
    margin-right: 0;
  }
  .md\:block {
    display: block;
  }
}

@media (min-width: 1024px) {
  .lg\:gap-8 {
    gap: 32px;
  }
  /* Show desktop-only content and hide mobile-only content on large screens */
  .lg\:hidden {
    display: none;
  }
  .lg\:block {
    display: block;
  }
}

@media (min-width: 1280px) {
  .xl\:flex {
    display: flex;
  }
  .xl\:hidden {
    display: none;
  }
}

[data-theme="dark"] {
  --snap-color-white: #0b1220;
  --snap-color-slate-900: #f8fafc;
  --snap-color-slate-700: #e2e8f0;
  --snap-color-slate-600: #cbd5e1;
  --snap-color-slate-500: #94a3b8;
  --snap-color-slate-200: #334155;
  --snap-color-slate-100: #1e293b;

  --snap-border-soft: 1px solid rgba(148, 163, 184, 0.25);
  --snap-border-soft-strong: 1px solid rgba(148, 163, 184, 0.35);
  --snap-shadow-dropdown: 0 18px 40px rgba(2, 6, 23, 0.45);
  --snap-shadow-mobile: 0 14px 30px rgba(2, 6, 23, 0.4);

  /* Explicit dark theme backgrounds */
  --snap-page-background: #020617;
  --snap-header-background: #020617;
}

[data-theme="dark"] .text-gray-900 {
  color: var(--snap-color-slate-900) !important;
}

[data-theme="dark"] .text-gray-800,
[data-theme="dark"] .text-gray-700 {
  color: var(--snap-color-slate-700) !important;
}

[data-theme="dark"] .text-gray-600,
[data-theme="dark"] .text-gray-500,
[data-theme="dark"] .text-gray-400 {
  color: var(--snap-color-slate-500) !important;
}

[data-theme="dark"] .fill-gray-400 {
  fill: var(--snap-color-slate-500) !important;
}

[data-theme="dark"] .hover\:text-gray-900:hover,
[data-theme="dark"] .hover\:text-gray-800:hover,
[data-theme="dark"] .hover\:text-gray-700:hover {
  color: var(--snap-color-slate-900) !important;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --snap-color-white: #0b1220;
    --snap-color-slate-900: #f8fafc;
    --snap-color-slate-700: #e2e8f0;
    --snap-color-slate-600: #cbd5e1;
    --snap-color-slate-500: #94a3b8;
    --snap-color-slate-200: #334155;
    --snap-color-slate-100: #1e293b;

    --snap-border-soft: 1px solid rgba(148, 163, 184, 0.25);
    --snap-border-soft-strong: 1px solid rgba(148, 163, 184, 0.35);
    --snap-shadow-dropdown: 0 18px 40px rgba(2, 6, 23, 0.45);
    --snap-shadow-mobile: 0 14px 30px rgba(2, 6, 23, 0.4);

    /* Prefer dark backgrounds when system is dark and no explicit light theme is set */
    --snap-page-background: #020617;
    --snap-header-background: #020617;
  }
}

body.bg-page-background {
  background-color: var(--snap-page-background);
  color: var(--snap-color-slate-900);
}

.bg-page-background {
  background-color: var(--snap-page-background);
}

.theme-toggle-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #009ceb;
  background: transparent;
  color: var(--snap-color-slate-700);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color var(--snap-duration-fast) var(--snap-ease),
    color var(--snap-duration-fast) var(--snap-ease),
    border-color var(--snap-duration-fast) var(--snap-ease);
}

.theme-toggle-btn::before,
.mobile-theme-toggle::before {
  content: "☀";
  font-size: 15px;
  line-height: 1;
  color: var(--snap-color-slate-700);
}

.theme-toggle-btn[data-theme-state="dark"]::before,
.mobile-theme-toggle[data-theme-state="dark"]::before {
  content: "🌙";
  font-size: 14px;
}

.theme-toggle-btn:hover,
.mobile-theme-toggle:hover {
  background: var(--snap-color-slate-100);
  color: var(--snap-color-slate-900);
}

.mobile-theme-toggle {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #009ceb;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 4px 0 8px 0;
  transition:
    background-color var(--snap-duration-fast) var(--snap-ease),
    color var(--snap-duration-fast) var(--snap-ease),
    border-color var(--snap-duration-fast) var(--snap-ease);
}

.menu-item {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--snap-duration-mid) var(--snap-ease),
    transform var(--snap-duration-mid) var(--snap-ease),
    visibility var(--snap-duration-mid) var(--snap-ease);
  z-index: 60;
  background: var(--snap-color-white);
  border: var(--snap-border-soft);
  border-radius: var(--snap-radius-xl);
  box-shadow: var(--snap-shadow-dropdown);
}

.dropdown-btn svg {
  transition: transform var(--snap-duration-mid) var(--snap-ease);
}

.menu-item:hover .dropdown-btn svg,
.menu-item.open .dropdown-btn svg {
  transform: rotate(180deg);
}

.menu-item:hover .dropdown-panel,
.menu-item.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-panel.products {
  width: 510px;
  padding: 14px;
}

.dropdown-panel.small {
  width: 260px;
  padding: 8px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  display: block;
  padding: 10px;
  border-radius: var(--snap-radius-lg);
  text-decoration: none;
  transition: background-color var(--snap-duration-fast) var(--snap-ease);
}

.product-card:hover,
.list-item:hover {
  background: var(--snap-color-slate-100);
}

.product-title {
  margin: 0 0 4px;
  color: var(--snap-color-slate-900);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.product-desc {
  margin: 0;
  color: var(--snap-color-slate-500);
  font-size: 14px;
  line-height: 1.45;
}

.badge-new {
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: var(--snap-radius-pill);
  background: var(--snap-color-brand-yellow);
  color: var(--snap-color-white);
  font-size: 11px;
  font-weight: 700;
  vertical-align: middle;
}

.list-item {
  display: block;
  padding: 10px;
  border-radius: var(--snap-radius-md);
  color: var(--snap-color-slate-700);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  transition: background-color var(--snap-duration-fast) var(--snap-ease);
}

.mobile-nav-panel {
  display: block;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 70;
  border: var(--snap-border-soft-strong);
  border-radius: var(--snap-radius-xl);
  background: var(--snap-color-white);
  box-shadow: var(--snap-shadow-mobile);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity var(--snap-duration-slow) var(--snap-ease),
    transform var(--snap-duration-slow) var(--snap-ease),
    visibility var(--snap-duration-slow) var(--snap-ease);
}

.mobile-nav-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-link {
  display: block;
  padding: 10px 12px;
  border-radius: var(--snap-radius-md);
  color: var(--snap-color-slate-700);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.mobile-submenu-btn {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-submenu-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-right: 2px solid var(--snap-color-slate-500);
  border-bottom: 2px solid var(--snap-color-slate-500);
  transform: rotate(45deg);
  transition: transform var(--snap-duration-mid) var(--snap-ease);
  flex-shrink: 0;
}

.mobile-submenu-btn[aria-expanded="true"]::after {
  transform: rotate(-135deg) translateY(-1px);
}

.mobile-menu-link:hover {
  background: var(--snap-color-slate-100);
}

.mobile-submenu {
  margin-top: 6px;
  margin-bottom: 6px;
  border-left: 2px solid var(--snap-color-slate-200);
  margin-left: 10px;
  padding-left: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition:
    max-height var(--snap-duration-slow) var(--snap-ease),
    opacity var(--snap-duration-mid) var(--snap-ease),
    transform var(--snap-duration-mid) var(--snap-ease);
}

.mobile-submenu.open {
  max-height: 280px;
  opacity: 1;
  transform: translateY(0);
}

.mobile-submenu .mobile-menu-link {
  padding: 8px 10px;
  font-size: 13px;
  color: var(--snap-color-slate-600);
}

#promo-banner {
  opacity: 0;
  transform: translateY(-100px);
  transition:
    opacity var(--snap-duration-banner) var(--snap-ease),
    transform var(--snap-duration-banner) var(--snap-ease);
}

#promo-banner.banner-visible {
  opacity: 1;
  transform: translateY(0);
}

#promo-banner.banner-hide {
  opacity: 0;
  transform: translateY(-100px);
}

.hero-rotating-word {
  position: relative;
  display: inline-block;
  width: 11ch;
  min-height: 1.15em;
  margin-inline: auto;
  text-align: center;
  white-space: nowrap;
  will-change: transform, opacity, filter;
}

.hero-rotating-word::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 72%;
  height: 3px;
  border-radius: var(--snap-radius-pill);
  background: currentColor;
  opacity: 0.18;
  transform: translateX(-50%) scaleX(0.55);
  transform-origin: center;
  transition: transform var(--snap-duration-mid) var(--snap-ease);
}

.hero-rotating-word.word-in::after {
  transform: translateX(-50%) scaleX(1);
}

.hero-rotating-word.word-out {
  animation: snap-word-out 220ms cubic-bezier(0.4, 0, 1, 1) both;
}

.hero-rotating-word.word-in {
  animation: snap-word-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes snap-word-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  to {
    opacity: 0;
    transform: translateY(-12px) scale(0.92);
    filter: blur(3px);
  }
}

@keyframes snap-word-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.9);
    filter: blur(5px);
  }

  60% {
    opacity: 1;
    transform: translateY(-2px) scale(1.04);
    filter: blur(0);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.snap-tilt-card {
  position: relative;
}

.snap-tilt-layer {
  transform-style: preserve-3d;
  transition: transform var(--snap-duration-mid) var(--snap-ease);
}

.snap-tilt-caption {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  display: none;
  max-width: min(240px, calc(100% - 16px));
  border-radius: 4px;
  background: var(--snap-color-white);
  color: #2d2d2d;
  font-size: 10px;
  line-height: 1.25;
  padding: 4px 10px;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(var(--tooltip-x, 0px), var(--tooltip-y, 0px), 0)
    rotate(var(--tooltip-rotate, 0deg));
  transition:
    opacity var(--snap-duration-fast) var(--snap-ease),
    transform var(--snap-duration-fast) var(--snap-ease);
}

@media (min-width: 640px) {
  .snap-tilt-caption {
    display: block;
  }
}

.snap-tilt-card:hover .snap-tilt-caption,
.snap-tilt-card.is-hovered .snap-tilt-caption,
.snap-tilt-card:focus-within .snap-tilt-caption {
  opacity: 1;
  transform: translate3d(var(--tooltip-x, 0px), var(--tooltip-y, 0px), 0)
    rotate(var(--tooltip-rotate, 0deg));
}

/* Dark mode tweaks for hero cards */
[data-theme="dark"] .snap-usecases-card-wrapper {
  background-color: #020617;
  border-color: rgba(198, 129, 252, 0.6);
}

[data-theme="dark"] .snap-tilt-caption {
  background: rgba(15, 23, 42, 0.96);
  color: #f9fafb;
}

/* Dark mode tweaks for New Features cards (Beam / ReelIt / Photo Selling) */
[data-theme="dark"] .snap-features-row .bg-white {
  background-color: #020617;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.5);
}

/* Dark mode tweaks for Branding section container */
[data-theme="dark"] .snap-branding-section.bg-white {
  background-color: #020617;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

/* Dark mode tweaks for Creator Pass small cards */
[data-theme="dark"] .snap-creator-card.bg-white\/80 {
  background-color: rgba(15, 23, 42, 0.9);
}

/* Dark mode tweaks for feature explanation cards under Creator Pass */
[data-theme="dark"] .snap-feature-card.bg-white {
  background-color: #020617;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

/* Dark mode hover for feature cards (keep rich dark look) */
[data-theme="dark"] .snap-feature-card:hover {
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.7);
  border-color: rgba(0, 156, 235, 0.85);
  background-color: rgba(15, 23, 42, 0.96);
}

/* Dark mode tweaks for testimonials slider cards */
[data-theme="dark"] .snap-testimonial-card.bg-white {
  background-color: #020617;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

/* Dark mode tweaks for FAQ cards */
[data-theme="dark"] .snap-faq-card.bg-white,
[data-theme="dark"] .snap-faq-details.bg-white {
  background-color: #020617;
  border-color: rgba(148, 163, 184, 0.4);
}

[data-theme="dark"] #snap-faq .text-gray-600 {
  color: rgba(229, 231, 235, 0.85);
}

[data-theme="dark"] #snap-faq details.bg-white {
  background-color: #020617;
  border-color: rgba(148, 163, 184, 0.4);
}

[data-theme="dark"] #snap-faq summary.text-gray-900,
[data-theme="dark"] #snap-faq .text-gray-900 {
  color: #f9fafb;
}

[data-theme="dark"] #snap-faq .text-gray-500 {
  color: rgba(148, 163, 184, 0.9);
}

/* Marquee Frame - FAQ section (match home FAQ dark mode) */
[data-theme="dark"] .marquee-faq-section details.bg-white {
  background-color: #020617;
  border-color: rgba(148, 163, 184, 0.4);
}

[data-theme="dark"] .marquee-faq-section .text-gray-600 {
  color: rgba(229, 231, 235, 0.85);
}

[data-theme="dark"] .marquee-faq-section summary.text-gray-900,
[data-theme="dark"] .marquee-faq-section .text-gray-900 {
  color: #f9fafb;
}

[data-theme="dark"] .marquee-faq-section .text-gray-500 {
  color: rgba(148, 163, 184, 0.9);
}

/* Dark mode tweaks for FAQ tabs */
[data-theme="dark"] #snap-faq .snap-faq-card {
  background-color: transparent;
  color: #e5e7eb;
}

[data-theme="dark"] #snap-faq .snap-faq-card .text-secondary-700,
[data-theme="dark"] #snap-faq .snap-faq-card .text-secondary-500 {
  color: #e5e7eb;
}

[data-theme="dark"] #snap-faq [aria-selected="true"] .snap-faq-card {
  background-color: #020617;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* Dark mode tweaks for bottom hero CTA button */
[data-theme="dark"] .snap-hero-cta {
  background-color: transparent;
  color: #f9fafb;
  border: 1px solid rgba(249, 250, 251, 0.85);
}

[data-theme="dark"] .snap-hero-cta:hover {
  background-color: rgba(15, 23, 42, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* Dark mode tweaks for footer */
[data-theme="dark"] footer.bg-secondary-600 {
  background-color: #02091f;
}

/* Dark mode tweaks for How It Works section */
[data-theme="dark"] #how-it-works .bg-white {
  background-color: #020617;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.5);
}

[data-theme="dark"] #how-it-works .border-gray-100 {
  border-color: rgba(148, 163, 184, 0.4);
}

[data-theme="dark"] #how-it-works .bg-gray-50 {
  background-color: rgba(15, 23, 42, 0.9);
}

/* Dark mode tweaks for AI Face Recognition section */
[data-theme="dark"] .snap-ai-face-section {
  background-color: #020617;
  border-color: rgba(148, 163, 184, 0.4);
}

[data-theme="dark"] .snap-ai-face-section .bg-gray-100 {
  background-color: #1f2937;
}

/* Dark mode tweaks for Snap Stats section */
[data-theme="dark"] #snap-stats .text-secondary-500 {
  color: #e5e7eb;
}

[data-theme="dark"] #snap-stats .text-secondary-500\/80 {
  color: rgba(229, 231, 235, 0.8);
}

[data-theme="dark"] #snap-stats .bg-darkBlue-800\/50 {
  background-color: rgba(15, 23, 42, 0.8);
}

/* Dark mode tweaks for Snap Pricing section */
[data-theme="dark"] #snap-pricing .bg-white {
  background-color: #020617;
  border-color: rgba(148, 163, 184, 0.4);
}

[data-theme="dark"] #snap-pricing .text-gray-600 {
  color: rgba(229, 231, 235, 0.8);
}

[data-theme="dark"] #snap-pricing table {
  color: #e5e7eb;
}

[data-theme="dark"] #snap-pricing th,
[data-theme="dark"] #snap-pricing td {
  border-color: rgba(148, 163, 184, 0.35);
}

[data-theme="dark"] #snap-pricing .rounded-lg.border {
  background-color: #020617;
  border-color: rgba(148, 163, 184, 0.4);
}

[data-theme="dark"] #snap-pricing .text-secondary-500 {
  color: #e5e7eb;
}

/* Highlight "Billed" text inside Best Value (primary) plan card */
[data-theme="dark"] #snap-pricing .bg-primary-500 .text-gray-600 {
  color: #000000 !important;
}

.snap-mascot {
  pointer-events: auto;
  transition:
    top var(--snap-duration-banner) var(--snap-ease),
    transform var(--snap-duration-banner) var(--snap-ease);
  animation: snap-mascot-float 3.2s ease-in-out infinite;
}

.snap-mascot:hover {
  top: -40px;
}

@keyframes snap-mascot-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.snap-catch-callout {
  position: absolute;
  top: -56px;
  left: -112px;
  background: var(--snap-color-white);
  color: #1f2937;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  padding: 8px 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--snap-duration-mid) var(--snap-ease),
    transform var(--snap-duration-mid) var(--snap-ease);
}

.snap-catch-callout::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 14px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--snap-color-white);
}

.snap-catch-callout.is-hidden {
  opacity: 0;
  transform: translateY(-10px);
}

.snap-catch-arrow {
  position: absolute;
  top: -24px;
  left: -54px;
  width: 72px;
  height: 72px;
  color: #94a3b8;
  transform: scaleX(-1);
  opacity: 0.95;
  transition:
    opacity var(--snap-duration-mid) var(--snap-ease),
    transform var(--snap-duration-mid) var(--snap-ease);
}

.snap-catch-callout.is-hidden + .snap-catch-arrow {
  opacity: 0;
  transform: scaleX(-1) translateY(-8px);
}

.snap-mascot-eye {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: #000000;
  overflow: hidden;
}

.snap-mascot-eye-left {
     top: 61px;
    left: 46px;
}

.snap-mascot-eye-right {
  top: 37px;
  right: 34px;
}

.snap-mascot-pupil {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--snap-color-white);
  transform: translate3d(var(--snap-pupil-x, 0px), var(--snap-pupil-y, 0px), 0);
  transition: transform 0.08s linear;
}

/* Dark mode tweaks for mascot eyes and callout */
[data-theme="dark"] .snap-mascot-eye {
  background: var(--snap-color-slate-100);
}

[data-theme="dark"] .snap-catch-callout {
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.6);
}

[data-theme="dark"] .snap-catch-callout::after {
  border-left-color: rgba(15, 23, 42, 0.96);
}
