/* ═══════════════════════════════════════════
   TALENTSHEETS — DESIGN SYSTEM
   Google-Style Color Palette
   ═══════════════════════════════════════════ */

:root {
  /* ── Main Colours ───────────────────────── */
  --color-blue: #5a84f0;

  /* ── Secondary Colours ──────────────────── */
  --color-green: #34A853;
  --color-red: #EA4335;
  --color-yellow: #FBBC04;

  /* ── Neutrals ───────────────────────────── */
  --color-white: #FFFFFF;
  --color-off-white: #F8F9FA;
  --color-light-gray: #E8EAED;
  --color-mid-gray: #9AA0A6;
  --color-text: #202124;
  --color-text-secondary: #5F6368;

  /* Aliases — kept for readability in dark-bg contexts */
  --color-dark: var(--color-text);
  --color-dark-gray: var(--color-text-secondary);

  /* ── Shadows ────────────────────────────── */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

  /* ── Typography ─────────────────────────── */
  --font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-3xl: 2rem;
  --font-size-5xl: 3.25rem;

  /* ── Spacing ────────────────────────────── */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 3.25rem;
  --space-4xl: 4.75rem;

  /* ── Border Radius ──────────────────────── */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* ── Translucent Whites (dark-bg overlays) ─ */
  --white-03: rgba(255, 255, 255, 0.03);
  --white-04: rgba(255, 255, 255, 0.04);
  --white-05: rgba(255, 255, 255, 0.05);
  --white-06: rgba(255, 255, 255, 0.06);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-18: rgba(255, 255, 255, 0.18);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-25: rgba(255, 255, 255, 0.25);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-45: rgba(255, 255, 255, 0.45);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-55: rgba(255, 255, 255, 0.55);
  --white-65: rgba(255, 255, 255, 0.65);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-75: rgba(255, 255, 255, 0.75);
  --white-82: rgba(255, 255, 255, 0.82);
  --white-85: rgba(255, 255, 255, 0.85);

  /* ── Brand Alpha Tints ──────────────────── */
  --blue-alpha-10: rgba(90, 132, 240, 0.10);
  --blue-alpha-18: rgba(90, 132, 240, 0.18);

  /* ── Easing ─────────────────────────────── */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Transitions ────────────────────────── */
  --transition-fast: 140ms var(--ease-in-out);
  --transition-base: 240ms var(--ease-in-out);
  --transition-slow: 380ms var(--ease-out);
  --transition-spring: 480ms var(--ease-spring);

  /* ── Layout ─────────────────────────────── */
  --container-max: 1200px;
  --nav-height: 72px;
}


/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  zoom: 0.9;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Dark base so the footer + pricing share a seamless background regardless of orb position */
.pricing,
.footer {
  --section-dark-bg: #050910;
}

body:has(.pricing) {
  background: #050910;
}

.site-bg {
  background: var(--color-off-white);
}

/* Continuous light background on <main> prevents the dark body from
   peeking through sub-pixel gaps between sections (caused by zoom: 0.75). */
main {
  background: var(--color-off-white);
}

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

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

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

main>section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

/* Opt out the sticky scroll section — content-visibility: auto interferes with
   sticky positioning across a tall scroll container and causes cards/title to
   disappear mid-scroll as the browser skips rendering off-origin content. */
.combo-deck-section {
  content-visibility: visible;
  contain-intrinsic-size: none;
}


/* ═══════════════════════════════════════════
   GLOBAL FLOATERS BACKDROP
   ═══════════════════════════════════════════ */

.site-floaters {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.45;
}

.site-floaters canvas {
  width: 100vw;
  height: 100vh;
  display: block;
  will-change: transform;
}


/* ═══════════════════════════════════════════
   SKIP LINK (accessibility)
   ═══════════════════════════════════════════ */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 10001;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: 600;
  font-size: var(--font-size-sm);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
}


/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-spring), box-shadow var(--transition-slow);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.btn:active {
  transform: scale(0.96) translateY(1px) !important;
  transition-duration: 80ms !important;
}

.btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.btn--primary:hover {
  background: color-mix(in srgb, var(--color-blue) 82%, black);
  border-color: color-mix(in srgb, var(--color-blue) 82%, black);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(90, 132, 240, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.btn--outline:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

.btn--outline-light {
  background: var(--white-10);
  color: var(--color-white);
  border-color: var(--white-30);
}

.btn--outline-light:hover {
  background: var(--white-20);
  border-color: var(--white-50);
  transform: translateY(-3px);
}

.btn--ghost {
  background: transparent;
  color: var(--white-85);
  border-color: transparent;
}

.btn--ghost:hover {
  color: var(--color-white);
  background: var(--white-10);
}

.btn--large {
  padding: 0.875rem 2rem;
  font-size: var(--font-size-base);
}

.btn--block {
  display: flex;
  justify-content: center;
  width: 100%;
}


/* ═══════════════════════════════════════════
   SECTION HEADER (reusable)
   ═══════════════════════════════════════════ */

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header__title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
}


/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: var(--space-md);
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: calc(100% - var(--space-3xl));
  max-width: var(--container-max);
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(15, 18, 30, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--white-18);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition-base), background var(--transition-base),
    transform 320ms var(--ease-in-out), opacity 320ms var(--ease-in-out);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.navbar--hidden {
  transform: translateX(-50%) translateY(calc(-100% - var(--space-md) - 16px));
  opacity: 0;
  pointer-events: none;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-lg);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: var(--font-size-xl);
  color: var(--color-white);
  z-index: 10;
}

.navbar__logo-img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.navbar__logo-text {
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.navbar__links a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--white-75);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

.navbar__links a:hover {
  color: var(--color-white);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__links a.active {
  color: var(--color-white);
}

.navbar__links a.active::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Navbar Sign Up button: scale-zoom on hover instead of float */
.navbar__actions .btn--primary {
  transition: background var(--transition-base), border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar__actions .btn--primary:hover {
  background: #26bf88;
  border-color: #26bf88;
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(38, 191, 136, 0.5);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
  background: #050910;
  isolation: isolate;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  /* Blobs saturate the left half, fade cleanly to reveal the photo on the right */
  -webkit-mask-image: linear-gradient(to right, black 0%, black 35%, transparent 62%);
  mask-image: linear-gradient(to right, black 0%, black 35%, transparent 62%);
}

/* Inner wrapper that spins anticlockwise — mask above stays fixed */
.hero__blobs {
  position: absolute;
  inset: 0;
  transform-origin: 28% 55%;
  animation: blobs-spin 56s linear infinite;
  will-change: transform;
}

@keyframes blobs-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

/* ── Individual animated blobs — fixed colors, arranged in a circle ── */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform, opacity;
  contain: layout style;
}

/* Shared pulse: bright for ~2s, dims for 6s, then the next blob takes over.
   8s total cycle, staggered 2s per blob: orange(0) → blue(-2) → green(-4) → yellow(-6) */
@keyframes blob-pulse {
  0% {
    opacity: 0.95;
  }

  18% {
    opacity: 0.90;
  }

  /* hold bright */
  32% {
    opacity: 0.08;
  }

  /* fast fade out */
  68% {
    opacity: 0.06;
  }

  /* stay dim */
  82% {
    opacity: 0.08;
  }

  /* begin rise */
  100% {
    opacity: 0.95;
  }

  /* back to bright */
}

/* Yellow — far top-left */
.hero__blob--yellow {
  width: 90vw;
  height: 90vw;
  top: -40%;
  left: -30%;
  background-color: #FFE600;
  animation: blob-y 12s -1.2s ease-in-out infinite,
    blob-pulse 18s -6s ease-in-out infinite;
}

/* Green — far bottom-left */
.hero__blob--green {
  width: 90vw;
  height: 90vw;
  bottom: -40%;
  left: -30%;
  background-color: #26BF88;
  animation: blob-g 14s -3s ease-in-out infinite,
    blob-pulse 18s -4s ease-in-out infinite;
}

/* Blue — top-right of cluster */
.hero__blob--blue {
  width: 85vw;
  height: 85vw;
  top: -20%;
  left: 15%;
  background-color: #5884F0;
  animation: blob-b 10s -0.5s ease-in-out infinite,
    blob-pulse 18s -2s ease-in-out infinite;
}

/* Orange — bottom-right of cluster, first in spotlight */
.hero__blob--orange {
  width: 85vw;
  height: 85vw;
  bottom: -20%;
  left: 15%;
  background-color: #FFA412;
  animation: blob-o 13s -2s ease-in-out infinite,
    blob-pulse 18s 0s ease-in-out infinite;
}

/* Large travel paths — each blob sweeps through the spotlight area and exits */
@keyframes blob-y {
  0% {
    transform: translate(0%, 0%) scale(1.00);
  }

  25% {
    transform: translate(32%, 28%) scale(1.10);
  }

  50% {
    transform: translate(40%, 8%) scale(0.94);
  }

  75% {
    transform: translate(18%, -10%) scale(1.06);
  }

  100% {
    transform: translate(0%, 0%) scale(1.00);
  }
}

@keyframes blob-g {
  0% {
    transform: translate(0%, 0%) scale(1.00);
  }

  25% {
    transform: translate(28%, -30%) scale(1.11);
  }

  50% {
    transform: translate(42%, -14%) scale(0.92);
  }

  75% {
    transform: translate(20%, 10%) scale(1.07);
  }

  100% {
    transform: translate(0%, 0%) scale(1.00);
  }
}

@keyframes blob-b {
  0% {
    transform: translate(0%, 0%) scale(1.00);
  }

  25% {
    transform: translate(-22%, 20%) scale(1.08);
  }

  50% {
    transform: translate(-30%, 5%) scale(0.94);
  }

  75% {
    transform: translate(-10%, -18%) scale(1.06);
  }

  100% {
    transform: translate(0%, 0%) scale(1.00);
  }
}

@keyframes blob-o {
  0% {
    transform: translate(0%, 0%) scale(1.00);
  }

  25% {
    transform: translate(-26%, -24%) scale(1.09);
  }

  50% {
    transform: translate(-38%, -8%) scale(0.93);
  }

  75% {
    transform: translate(-16%, 16%) scale(1.05);
  }

  100% {
    transform: translate(0%, 0%) scale(1.00);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;             /* full viewport — image spans the whole hero */
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1);
  will-change: transform;
  animation: hero-ken-burns 60s ease-in-out infinite alternate;
}

@keyframes hero-ken-burns {
  from {
    transform: scale(1) translate(0, 0);
  }

  to {
    transform: scale(1.04) translate(-0.5%, -0.25%);
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero__content {
  max-width: 720px;
  color: var(--color-white);
  text-align: left;
  animation: hero-enter 0.9s var(--ease-out) 0.1s both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.hero__title {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-2xl);
  color: var(--color-white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.45), 0 1px 6px rgba(0, 0, 0, 0.3);
  transition: text-shadow 0.35s ease;
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* ── Hero CTA button glows — matches pricing card effect ── */
.hero .btn--primary {
  position: relative;
  overflow: visible;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.hero .btn--primary:hover {
  background: #26bf88;
  border-color: #26bf88;
  box-shadow: 0 8px 32px rgba(38, 191, 136, 0.65), 0 0 64px rgba(38, 191, 136, 0.25);
  transform: scale(1.07) translateY(-3px);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.7);
}

/* Title glows bright white when hovering the primary button */
.hero__content:has(.btn--primary:hover) .hero__title {
  text-shadow:
    0 0 24px rgba(255, 255, 255, 1),
    0 0 60px rgba(255, 255, 255, 0.75),
    0 0 120px rgba(255, 255, 255, 0.4),
    0 2px 24px rgba(0, 0, 0, 0.2);
  transition: text-shadow 0.35s ease;
}

.hero .btn--outline-light {
  color: var(--color-white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 0.3s ease, color 0.3s ease;
}

.hero .btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25), 0 0 64px rgba(255, 255, 255, 0.15);
  text-shadow: 0 0 18px rgba(255, 255, 255, 1), 0 0 36px rgba(255, 255, 255, 0.6);
  transform: scale(1.07) translateY(-3px);
}

@media (max-width: 768px) {
  .hero__inner {
    align-items: center;
    text-align: center;
  }

  .hero__content {
    text-align: center;
  }

  .hero__ctas {
    justify-content: center;
  }
}

/* Hero Mockup */
.hero__mockup {
  position: relative;
  width: 100%;
  max-width: 500px;
  will-change: transform;
  transition: transform var(--transition-slow);
  transform-style: preserve-3d;
}

.hero__mockup-browser {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero__mockup-dots {
  display: flex;
  gap: 6px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--white-05);
}

.hero__mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero__mockup-dots span:nth-child(1) {
  background: var(--color-red);
}

.hero__mockup-dots span:nth-child(2) {
  background: var(--color-yellow);
}

.hero__mockup-dots span:nth-child(3) {
  background: var(--color-green);
}

/* ── Toolbar ──────────────────────────── */
.hero__mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--white-05);
}

.hero__mockup-toolbar-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--white-45);
  cursor: default;
  transition: background var(--transition-fast);
}

.hero__mockup-toolbar-btn:hover {
  background: var(--white-06);
}

.hero__mockup-toolbar-sep {
  width: 1px;
  height: 18px;
  background: var(--white-08);
  margin: 0 4px;
}

.hero__mockup-fx {
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 8px;
  padding: 4px 10px;
  background: var(--white-03);
  border: 1px solid var(--white-06);
  border-radius: 4px;
  gap: 8px;
}

.hero__mockup-fx-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--white-30);
  font-style: italic;
}

.hero__mockup-fx-value {
  font-size: 11px;
  font-family: 'Courier New', monospace;
  color: rgba(90, 132, 240, 0.7);
}

/* ── Spreadsheet Grid ─────────────────── */
.hero__mockup-sheet {
  flex: 1;
  overflow: hidden;
}

.hero__mockup-header-row,
.hero__mockup-data-row {
  display: grid;
  grid-template-columns: 32px 1.3fr 0.9fr 0.8fr 0.7fr 0.85fr;
}

.hero__mockup-row-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--white-20);
  background: rgba(255, 255, 255, 0.015);
  border-right: 1px solid var(--white-04);
  padding: 6px 0;
}

.hero__mockup-col-head {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--white-25);
  background: rgba(255, 255, 255, 0.015);
  padding: 6px 0;
  border-right: 1px solid var(--white-04);
}

.hero__mockup-col-head:last-child {
  border-right: none;
}

.hero__mockup-cell {
  padding: 8px 10px;
  font-size: 11px;
  color: var(--white-55);
  border-right: 1px solid var(--white-04);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__mockup-cell:last-child {
  border-right: none;
}

.hero__mockup-data-row--header .hero__mockup-cell {
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white-40);
  background: rgba(255, 255, 255, 0.02);
}

.hero__mockup-data-row--selected {
  background: var(--blue-alpha-10);
  border-left: 2px solid var(--color-blue);
}

.hero__mockup-data-row--selected .hero__mockup-row-num {
  color: var(--color-blue);
  font-weight: 700;
}

.hero__mockup-cell--name {
  color: rgba(90, 132, 240, 0.9);
  font-weight: 500;
}

/* Pill badges */
.hero__mockup-pill {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
}

.hero__mockup-pill--pink {
  background: rgba(148, 103, 243, 0.18); /* friendly lavender */
  color: rgba(120, 76, 220, 0.9);
}

.hero__mockup-pill--red {
  background: rgba(52, 168, 83, 0.18); /* friendly green */
  color: rgba(30, 130, 60, 0.9);
}

.hero__mockup-pill--yellow {
  background: rgba(255, 213, 0, 0.15);
  color: rgba(210, 175, 0, 0.9);
}

/* ── Sheet Tabs ───────────────────────── */
.hero__mockup-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.015);
}

.hero__mockup-tab {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 500;
  color: var(--white-30);
  cursor: default;
}

.hero__mockup-tab--active {
  color: var(--white-75);
  background: var(--white-04);
  border-bottom: 2px solid var(--color-blue);
  font-weight: 600;
}

/* Floating Badges */
.hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-dark);
  animation: float 6s ease-in-out infinite, badge-glow 6s ease-in-out infinite;
}

.hero__badge--ext {
  top: 6%;
  right: -16px;
  animation-delay: 0s;
}

.hero__badge--sheets {
  bottom: 20%;
  left: -80px;
  animation-delay: 3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(-0.3deg);
  }

  33% {
    transform: translateY(-8px) rotate(0.3deg);
  }

  66% {
    transform: translateY(-13px) rotate(-0.2deg);
  }
}

@keyframes badge-glow {

  0%,
  100% {
    box-shadow: var(--shadow-lg);
  }

  50% {
    box-shadow: var(--shadow-xl), 0 0 22px var(--blue-alpha-18);
  }
}

.hero__wave {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: auto;
}


/* ═══════════════════════════════════════════
   WELCOME SECTION
   ═══════════════════════════════════════════ */


.welcome {
  padding: 2rem 0 0;
  text-align: center;
  background: var(--color-off-white);
}

.welcome__intro {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--space-sm) 0 var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.welcome__title {
  font-size: clamp(2.35rem, 3vw, 3rem);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  white-space: nowrap;
}

.welcome__type {
  display: inline-block;
  position: relative;
  color: var(--color-blue);
  padding-right: 0;
  margin-right: -0.06em;
  white-space: nowrap;
  /* clip-path clips visually without affecting the baseline (unlike overflow:hidden) */
  clip-path: inset(0 0 0 0);
  vertical-align: baseline;
  line-height: inherit;
  /* Smooth the width reflow (surrounding text glides) and colour cross-fade */
  transition: width 0.13s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.38s ease;
}

.welcome__type::after {
  display: none;
}

.welcome__subtitle {
  font-size: clamp(1.125rem, 1.35vw, 1.4rem);
  color: var(--color-text-secondary);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: center;
  display: block;
}

.welcome__mockup-wrap {
  margin-top: var(--space-xl);
  padding-bottom: 7rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.welcome__mockup-wrap .hero__mockup {
  width: 100%;
  max-width: 820px;
  position: relative;
}

.welcome__mockup-wrap .hero__mockup-browser {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.14), 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid var(--color-light-gray);
}

/* ── Light-theme overrides (grouped by value) ── */

.welcome__mockup-wrap .hero__mockup-dots,
.welcome__mockup-wrap .hero__mockup-toolbar {
  border-bottom-color: var(--color-light-gray);
}

.welcome__mockup-wrap .hero__mockup-toolbar,
.welcome__mockup-wrap .hero__mockup-row-num,
.welcome__mockup-wrap .hero__mockup-col-head,
.welcome__mockup-wrap .hero__mockup-data-row--header .hero__mockup-cell,
.welcome__mockup-wrap .hero__mockup-tabs {
  background: var(--color-off-white);
}

.welcome__mockup-wrap .hero__mockup-toolbar-btn,
.welcome__mockup-wrap .hero__mockup-col-head,
.welcome__mockup-wrap .hero__mockup-data-row--header .hero__mockup-cell {
  color: var(--color-dark-gray);
}

.welcome__mockup-wrap .hero__mockup-toolbar-sep,
.welcome__mockup-wrap .hero__mockup-row-num,
.welcome__mockup-wrap .hero__mockup-col-head,
.welcome__mockup-wrap .hero__mockup-cell {
  border-right-color: var(--color-light-gray);
}

.welcome__mockup-wrap .hero__mockup-col-head {
  font-weight: 700;
}

.welcome__mockup-wrap .hero__mockup-toolbar-sep {
  background: var(--color-light-gray);
}

.welcome__mockup-wrap .hero__mockup-fx {
  background: #fff;
  border-color: var(--color-light-gray);
}

.welcome__mockup-wrap .hero__mockup-fx-label,
.welcome__mockup-wrap .hero__mockup-row-num,
.welcome__mockup-wrap .hero__mockup-tab {
  color: var(--color-mid-gray);
}

.welcome__mockup-wrap .hero__mockup-cell {
  color: var(--color-text);
}

.welcome__mockup-wrap .hero__mockup-data-row--selected {
  background: rgba(90, 132, 240, 0.06);
}

/* Platform-based row banding */
.welcome__mockup-wrap .hero__mockup-data-row--instagram {
  background: rgba(148, 103, 243, 0.08); /* friendly soft lavender */
}

.welcome__mockup-wrap .hero__mockup-data-row--youtube {
  background: rgba(52, 168, 83, 0.09); /* friendly green */
}

.welcome__mockup-wrap .hero__mockup-data-row--tiktok {
  background: rgba(255, 213, 0, 0.09);
}

.welcome__mockup-wrap .hero__mockup-pill--yellow {
  background: rgba(255, 213, 0, 0.15);
  color: rgba(210, 175, 0, 0.9);
}

.welcome__mockup-wrap .hero__mockup-tab--active {
  color: var(--color-text);
  background: white;
}

.welcome__mockup-wrap .hero__badge {
  background: white;
  color: var(--color-text);
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-md);
}



/* ═══════════════════════════════════════════
   SHARED CARD PATTERN
   Common base for bento-card & testimonial-card
   ═══════════════════════════════════════════ */

.bento-card,
.testimonial-card {
  --_card-accent: var(--color-blue);
  --_card-shadow: rgba(0, 0, 0, 0.11);
  position: relative;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: transform var(--transition-slow), border-color var(--transition-slow);
  height: 100%;
  will-change: transform;
  isolation: isolate;
  transform-style: preserve-3d;
}

/* Shadow layer — composited, opacity-only transition */
.bento-card::after,
.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: -1;
}

.bento-card:hover,
.testimonial-card:hover,
.testimonial-card:focus-within {
  border-color: var(--_card-accent);
}

.bento-card:hover::after,
.testimonial-card:hover::after,
.testimonial-card:focus-within::after {
  opacity: 1;
}

.bento-card {
  --_card-accent: var(--bento-accent, #5a84f0);
  --_card-shadow: var(--bento-shadow, rgba(90, 132, 240, 0.24));
  --bento-accent: #5a84f0;
  --bento-shadow: rgba(90, 132, 240, 0.24);
  background: var(--color-white);
  backface-visibility: hidden;
}

/* Bento shadow uses accent colour */
.bento-card::after {
  box-shadow: 0 36px 90px var(--bento-shadow), 0 14px 36px rgba(0, 0, 0, 0.10);
}

/* Cursor-glow layer — tracks mouse position via --mx / --my */
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 320px at var(--mx, 50%) var(--my, 50%),
      var(--white-18) 0%,
      transparent 70%);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
  z-index: 0;
}

.bento-card>* {
  position: relative;
  z-index: 1;
}

.bento-card:hover {
  transform: translateY(-10px);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card--orange {
  --bento-accent: #ffa412;
  --bento-shadow: rgba(255, 164, 18, 0.32);
}

.bento-card--yellow {
  --bento-accent: #ffe600;
  --bento-shadow: rgba(255, 230, 0, 0.28);
}

.bento-card--blue {
  --bento-accent: #5a84f0;
  --bento-shadow: rgba(90, 132, 240, 0.32);
}

.bento-card--green {
  --bento-accent: #26bf88;
  --bento-shadow: rgba(38, 191, 136, 0.32);
}

.bento-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--bento-accent) 14%, white);
  color: var(--bento-accent);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition-slow), color var(--transition-slow),
    transform var(--transition-spring);
  will-change: transform;
}

.bento-card:hover .bento-card__icon {
  background: color-mix(in srgb, var(--bento-accent) 85%, white);
  color: white;
  transform: translateY(-3px) scale(1.1);
}

.bento-card__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}

.bento-card__text {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ── Image card variant ── */
.bento-card--image {
  padding: 0;
  overflow: hidden;
  border: none;
}

.bento-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  pointer-events: none;
  user-select: none;
}


/* ═══════════════════════════════════════════
   COMBO CARD DECK — Scroll-driven V→H transition
   ═══════════════════════════════════════════ */

.combo-deck-section {
  background: transparent;
  /* bg panels (position:fixed, z-index:0) show through below the gradient */
  padding-top: var(--space-4xl);
  overflow-x: clip;
  /* prevent off-screen H-stage cards from peeking */
  position: relative;
  z-index: 1;
  /* creates stacking context above the fixed bg panels (z-index:0) */
}

.combo-deck-wave {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.combo-deck-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Single tall scroll container — 10 × 100vh */
.combo-deck-scroll {
  position: relative;
  height: calc(14 * 100vh);
}

/* Sticky viewport — one frame for both stages */
.combo-deck-sticky {
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  background: transparent;
  /* bg panels are fixed-position behind it */
  overflow-x: clip;
  /* clips H-stage cards off-screen right without breaking sticky */
  overflow-y: visible;
  /* lets V-stack cards emerge from below without being cut */
  display: flex;
  flex-direction: column;
  contain: layout style;
  isolation: isolate;
  /* top + height are interpolated per-frame by JS — no transition needed here */
}

/* ── In split mode: only toggle non-geometry properties — top/height stay at CSS defaults so the
   sticky frame never shifts and the centred text never jumps vertically ── */
.combo-deck-sticky.is-h-split {
  /* Remove layout containment so position:fixed children use the true viewport as their CB */
  contain: style;
  /* overflow:clip clips fixed children to the element's paint boundary — override to visible */
  overflow: visible;
  /* isolation:isolate can interfere with fixed z-index stacking in split mode */
  isolation: auto;
}

/* Right-side image rendered here so it fills the full 100vh.
   top: calc(-1 * var(--nav-height)) escapes upward to the true viewport top.
   --t-bg-image is set on this element by JS when a platform panel is active. */
.combo-deck-sticky.is-h-split::after {
  content: '';
  position: absolute;
  right: 0;
  top: calc(-1 * var(--nav-height));
  width: 50%;
  height: 100vh;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

/* Make stages fill the whole sticky frame (behind the header) in split mode
   so combo-stage--h inset:0 reaches the very top of the viewport */
/* NOTE: removed — hcard-deck-stage is position:fixed so it doesn't need this,
   and setting position:absolute inset:0 here causes the T-stage text to jump
   vertically because its centering origin expands to include the header area. */

/* ── Scroll-driven background panels — fixed full-viewport ── */
.combo-deck-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  /* above static section backgrounds */
  pointer-events: none;
  opacity: 0;
  /* hidden until JS adds .is-visible when first card pins */
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.combo-deck-bg.is-visible {
  opacity: 1;
}

.combo-deck-bg__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center center;
}

.combo-deck-bg__panel.is-active {
  opacity: 1;
}

/* Top-down dark gradient — visible during V-deck, fades out at text/H-deck transition */
.combo-deck-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.38) 40%, transparent 70%);
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Show gradient when a V-deck panel is active */
.combo-deck-bg.is-visible:has(.combo-deck-bg__panel--0.is-active)::after,
.combo-deck-bg.is-visible:has(.combo-deck-bg__panel--1.is-active)::after,
.combo-deck-bg.is-visible:has(.combo-deck-bg__panel--2.is-active)::after,
.combo-deck-bg.is-visible:has(.combo-deck-bg__panel--3.is-active)::after,
.combo-deck-bg.is-visible:has(.combo-deck-bg__panel--v4.is-active)::after,
.combo-deck-bg.is-visible:has(.combo-deck-bg__panel--v5.is-active)::after,
.combo-deck-bg.is-visible:has(.combo-deck-bg__panel--v6.is-active)::after {
  opacity: 1;
}

/* All other sections sit above the fixed bg (z-index 0) */
.hero,
.welcome,
.testimonials,
.pricing,
.footer {
  position: relative;
  z-index: 1;
}

/* ── Placeholder gradients — swap for real influencer images via background-image ── */
/* Step 1 — Install and connect */
.combo-deck-bg__panel--0 {
  background-image: url('../assets/images/v1 (1).webp');
}

/* Step 2 — Browse and capture creators */
.combo-deck-bg__panel--1 {
  background-image: url('../assets/images/v2.webp');
}

/* Step 3 — Build your live roster */
.combo-deck-bg__panel--2 {
  background-image: url('../assets/images/v3.webp');
}

/* Step 4 — Launch outreach */
.combo-deck-bg__panel--3 {
  background-image: url('../assets/images/v4.webp');
}

/* Off-white — "Your roster is ready" text-transition breather */
.combo-deck-bg__panel--text {
  background-image: linear-gradient(155deg, #f5f5f3 0%, #ffffff 50%, #f5f5f3 100%);
}

/* H-deck panels — match site background */
.combo-deck-bg__panel--7 {
  background-color: #F8F9FA;
}

/* Step 5 — Generate contracts (V-deck) */
.combo-deck-bg__panel--v4 {
  background-image: url('../assets/images/v5.webp');
}

/* Step 6 — Track shipping (V-deck) */
.combo-deck-bg__panel--v5 {
  background-image: url('../assets/images/v6.webp');
}

/* Step 7 — Performance & ROI (V-deck) */
.combo-deck-bg__panel--v6 {
  background-image: url('../assets/images/v7.webp');
}

/* Ensure header and stages sit above the bg layer */
.combo-deck-header,
.combo-deck-stages {
  position: relative;
  z-index: 1;
}

/* ── Pinned section heading ── */
.combo-deck-header {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: clamp(3rem, 7vh, 5rem) var(--space-xl) clamp(0.5rem, 1.5vh, 1.2rem);
  text-align: center;
  z-index: 2;
  will-change: transform;
}

.combo-deck-header__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  max-width: min(1100px, 96vw);
  margin: 0;
  line-height: 1.3;
}

/* Card stages fill the remaining height below the header */
.combo-deck-stages {
  flex: 1 1 auto;
  position: relative;
  overflow: visible;
}

/* Each stage fills the sticky frame; JS translates them horizontally */
.combo-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  will-change: transform;
  backface-visibility: hidden;
}

/* In split mode the H-stage hosts a full-height panel — collapse gap/centering */
.combo-stage--h.is-split {
  gap: 0;
  justify-content: flex-start;
  /* anchor to top so negative margin-top pulls image to viewport top */
  align-items: center;
}

/* Stage A starts centred (translateX = 0); Stage T and B start off-screen right */
.combo-stage--t,
.combo-stage--h {
  transform: translateX(110vw);
  /* initial off-screen position; JS overrides each frame */
}

/* ── Text-reveal stage ── */
.combo-text-block {
  max-width: min(920px, 92vw);
  text-align: center;
  padding: var(--space-xl);
  /* JS drives transform + font-size each rAF frame — no CSS transitions here */
  will-change: transform;
}

.combo-text-headline {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  display: block;
  margin: 0 0 1.5rem;
}

/* Word/sentence tokens — JS drives opacity & translateY */
[data-text-word] {
  display: inline-block;
  opacity: 0;
  transform: translateY(32px);
  will-change: opacity, transform;
}

/* Roster word — JS swaps text + colour as H-cards advance */
[data-roster-word] {
  display: inline-block;
  transition: color 0.32s ease, opacity 0.18s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-roster-word].is-exiting {
  opacity: 0;
  transform: translateY(-10px);
}

/* ── Split layout: card deck width only — all text motion is JS-driven per frame ── */
/* Formula: containerHalfWidth − VW×0.25  aligns card right/text left with navbar edges.
   • VW ≤ 1252 px  →  50vw − 52px   (grows with viewport)
   • VW > 1252 px  →  1200px − 50vw (container capped, shrinks symmetrically) */
.combo-stage--t.is-split .combo-text-block {
  max-width: min(calc(50vw - 52px), calc(1200px - 50vw));
}

/*
  The right-side split image is now rendered via .combo-deck-sticky.is-h-split::after
  (below) so it fills the full 100vh. Keep the custom-property passthrough here so
  other code that reads .is-split class still works correctly.
*/
.combo-stage--t.is-split {
  /* background intentionally removed — image is on the sticky ::after pseudo-element */
  transition: none;
}

/* ── Multi-panel text block — one panel visible at a time, synced to H-deck card ── */
.combo-text-panels {
  display: grid;
  align-items: center;
  justify-items: center;
}

.combo-text-panels>.combo-text-panel {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.combo-text-panel {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.26s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  pointer-events: none;
}

.combo-text-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.combo-text-panel.is-exiting {
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 0.18s ease, transform 0.20s ease;
}

/* Color overrides for H-panel counter widgets */
.counter-widget--orange {
  --cw-color-blue: #ffa412;
}

.counter-widget--green {
  --cw-color-blue: #26bf88;
}

/* Platform brand colors */
.counter-widget--instagram {
  --cw-color-blue: #e1306c;
}

/* Instagram brand gradient on the large word */
.counter-widget--instagram .counter-widget__number {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 22%, #dc2743 44%, #cc2366 72%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-widget--tiktok {
  --cw-color-blue: #69c9d0;
}

/* TikTok brand gradient on the large word */
.counter-widget--tiktok .counter-widget__number {
  background: linear-gradient(45deg, #69C9D0 0%, #010101 50%, #EE1D52 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-widget--youtube {
  --cw-color-blue: #ff0000;
}

/* YouTube brand gradient on the large word */
.counter-widget--youtube .counter-widget__number {
  background: linear-gradient(45deg, #FF0000 0%, #CC0000 50%, #FF0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-widget--youtube-shorts {
  --cw-color-blue: #ff0033;
}

/* YouTube Shorts brand gradient on the large word */
.counter-widget--youtube-shorts .counter-widget__number {
  background: linear-gradient(45deg, #FF0033 0%, #FF4500 50%, #FF0033 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Platform name labels are longer — scale down the number slightly */
.counter-widget--instagram .counter-widget__number,
.counter-widget--tiktok .counter-widget__number,
.counter-widget--youtube .counter-widget__number,
.counter-widget--youtube-shorts .counter-widget__number {
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
}

/* ── Platform panel: badge + headline + bullets ── */
.platform-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}

.platform-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38em 0.9em 0.38em 0.7em;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  opacity: 0.82;
}

.platform-panel__badge--instagram {
  color: #e1306c;
  background: color-mix(in srgb, #e1306c 8%, transparent);
}

.platform-panel__badge--tiktok {
  color: #010101;
  background: color-mix(in srgb, #69c9d0 12%, transparent);
  border-color: #69c9d0;
}

.platform-panel__badge--youtube {
  color: #cc0000;
  background: color-mix(in srgb, #ff0000 8%, transparent);
}

.platform-panel__badge--youtube-shorts {
  color: #ff0033;
  background: color-mix(in srgb, #ff0033 8%, transparent);
}

.platform-panel .counter-widget {
  align-items: flex-start;
  text-align: left;
  gap: 0.45rem;
}

.platform-panel .counter-widget__label {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 500;
  color: #6b7280;
}

.platform-panel__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.platform-panel__features li {
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  font-weight: 500;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.platform-panel__features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: currentColor;
  opacity: 0.55;
}

/* Platform feature bullet colors — scoped via :has() on parent */
.platform-panel:has(.counter-widget--instagram) .platform-panel__features li { color: #be185d; }
.platform-panel:has(.counter-widget--tiktok) .platform-panel__features li    { color: #0e7490; }
.platform-panel:has(.counter-widget--youtube) .platform-panel__features li   { color: #b91c1c; }
.platform-panel:has(.counter-widget--youtube-shorts) .platform-panel__features li { color: #c2410c; }

.combo-stage--h.is-split .hcard-deck-stage {
  /* Fixed to viewport in split mode — escapes sticky container height entirely.
     Pins right half (50%→100%), full viewport height (0→100vh). */
  position: absolute;
  right: 0;
  top: calc(-1 * var(--nav-height));
  width: 50%;
  height: 100vh;
  left: auto;
  margin: 0;
  perspective: none;
  overflow: hidden;
  z-index: 2;
  /* Solid base so nothing bleeds through during crossfade */
  background: transparent;
}

/* Split mode: full-bleed stage — cards stack and crossfade */
.combo-stage--h.is-split [data-hdeck-card] {
  border-radius: 0 !important;
  border: none;
  box-shadow: none;
  transform: none !important;
  transform-style: flat;
  /* Fade animation — CSS owns opacity, JS only flips .hdeck-active */
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.combo-stage--h.is-split [data-hdeck-card].hdeck-active {
  opacity: 1;
}

/* Laptop PNG: contain so the full device is always visible */
.combo-stage--h.is-split .bento-card__img {
  border-radius: 0 !important;
  object-fit: contain;
  padding: clamp(24px, 4vh, 52px) clamp(20px, 3vw, 48px);
  filter: drop-shadow(0 18px 48px rgba(80, 100, 180, 0.18));
}

/* Remove pseudo-element glow layers */
.combo-stage--h.is-split [data-hdeck-card]::before,
.combo-stage--h.is-split [data-hdeck-card]::after {
  display: none;
}

/* Hide scroll hint in split mode */
.combo-stage--h.is-split~.hcard-deck-hint,
.combo-stage--h.is-split .hcard-deck-hint {
  display: none;
}

/* H-deck — 3:4 portrait, sized to fit comfortably inside the sticky viewport */
.hcard-deck-stage {
  position: relative;
  height: clamp(960px, 186vh, 1680px);
  width: calc(clamp(960px, 186vh, 1680px) * 3 / 4);
  perspective: 1200px;
  perspective-origin: 50% 50%;
}

/* Cards absolutely stacked inside either stage */
[data-deck-card],
[data-hdeck-card] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: border-color var(--transition-slow);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  cursor: default;
}

/* Suppress CSS hover lift — JS owns transform */
[data-combo-deck] .bento-card:hover {
  transform: none;
}

/* V-deck bento-cards: tighter padding so content fills without excess whitespace */
.combo-stage--v [data-deck-card].bento-card {
  padding: var(--space-lg);
  gap: var(--space-sm);
}

/* Proximity glow driven by JS CSS variables — specificity beats base .bento-card pseudo rules */
[data-combo-deck] [data-deck-card]::before,
[data-combo-deck] [data-hdeck-card]::before {
  transition: none;
  opacity: var(--glow-strength, 0);
}

[data-combo-deck] [data-deck-card]::after,
[data-combo-deck] [data-hdeck-card]::after {
  transition: none;
  opacity: calc(var(--glow-strength, 0) * 1.4);
}

/* Active (front) card border */
[data-deck-card].deck-active {
  border-color: var(--bento-accent);
}

[data-hdeck-card].hdeck-active {
  border-color: var(--bento-accent);
}

/* Scroll hints */
.card-deck-hint,
.hcard-deck-hint {
  font-size: var(--font-size-xs);
  color: var(--color-mid-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  transition: opacity 0.5s ease;
  user-select: none;
  pointer-events: none;
}

.card-deck-hint.is-hidden,
.hcard-deck-hint.is-hidden {
  opacity: 0;
}


/* ═══════════════════════════════════════════
   STEP TIMELINE — Scroll-driven steps 1–7
   ═══════════════════════════════════════════ */

.timeline-deck {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(1100px, 96vw);
  gap: clamp(1.8rem, 4vh, 3.2rem);
  pointer-events: none;
}

/* ── Content panels: stacked, one visible at a time ── */
.timeline-panels {
  position: relative;
  width: 100%;
  height: clamp(180px, 32vh, 280px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  will-change: opacity, transform;
}

.timeline-panel.deck-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.timeline-panel__label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.9;
}

.timeline-panel__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--step-accent, #555);
  display: grid;
  place-items: center;
  border: 2px solid #ffffff;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    0 0 32px color-mix(in srgb, var(--step-accent, #fff) 28%, transparent);
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.5s ease;
}

.timeline-panel.deck-active .timeline-panel__icon {
  transform: scale(1.1);
  box-shadow:
    0 8px 36px rgba(0, 0, 0, 0.25),
    0 0 64px color-mix(in srgb, var(--step-accent, #fff) 48%, transparent);
}

.timeline-panel__title {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
  max-width: 960px;
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

/* ── Timeline track ── */
.timeline-track {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  transform: translateY(-50%);
  overflow: hidden;
  pointer-events: none;
}

.timeline-line__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffa412 0%, #5a84f0 50%, #26bf88 100%);
  border-radius: 2px;
  will-change: width;
}

.timeline-dots {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 1;
}

.timeline-dot-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  position: relative;
  pointer-events: none;
}

.timeline-dot__node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-sizing: border-box;
  transition:
    width 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.36s ease,
    border-color 0.36s ease,
    box-shadow 0.42s ease;
  will-change: width, height, box-shadow;
}

.timeline-dot-group.is-done .timeline-dot__node {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.7);
}

.timeline-dot-group.is-active .timeline-dot__node {
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.18),
    0 0 30px rgba(255, 255, 255, 0.48);
}

.timeline-dot__num {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
  transition: color 0.36s ease;
  user-select: none;
}

.timeline-dot-group.is-active .timeline-dot__num,
.timeline-dot-group.is-done .timeline-dot__num {
  color: rgba(255, 255, 255, 0.72);
}

/* ── Mobile: show scrollable row instead ── */
@media (max-width: 767px) {
  .timeline-panels {
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .timeline-panel {
    position: relative;
    inset: auto;
    flex: 0 0 260px;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    scroll-snap-align: center;
  }

  .timeline-panel__title {
    white-space: normal;
    font-size: clamp(1rem, 4.5vw, 1.25rem);
  }

  .timeline-track {
    display: none;
  }
}

/* ── Mobile: disable deck, show stacked list ─ */
@media (max-width: 767px) {
  .combo-deck-scroll {
    height: auto;
  }

  .combo-deck-sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
    display: block;
  }

  .combo-deck-header {
    padding: var(--space-xl) var(--space-md) var(--space-md);
  }

  .combo-deck-stages {
    position: static;
    overflow: visible;
  }

  .combo-stage--t {
    transform: none !important;
  }

  .combo-text-headline {
    font-size: 1.8rem;
  }

  [data-text-word] {
    opacity: 1 !important;
    transform: none !important;
  }

  .combo-stage {
    position: relative;
    inset: auto;
    transform: none !important;
    padding: var(--space-xl) var(--space-md);
    gap: var(--space-lg);
  }

  .hcard-deck-stage {
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  [data-deck-card],
  [data-hdeck-card] {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    transform: none !important;
  }

  .card-deck-hint,
  .hcard-deck-hint {
    display: none;
  }
}


/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */

.testimonials {
  padding: var(--nav-height) 0 4.5rem;
  background: var(--color-off-white);
  overflow: visible;
}

/* Align content edges with the navbar pill — same width formula & no extra padding */
.testimonials .container {
  width: calc(100% - var(--space-3xl));
  max-width: var(--container-max);
  padding: 0;
}

.testimonials .section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2xl);
  margin-bottom: 5rem;
}

/* ── Rotating heading ── */
.rh-heading {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  white-space: nowrap;
  width: auto;
  gap: 0;
  cursor: default;
  user-select: none;
}

.rh-verb {
  flex: 0 0 auto;
  text-align: left;
}

.rh-by {
  flex: 0 0 auto;
  padding: 0 0.28em;
  color: var(--color-blue);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 800;
  display: inline-block;
}

.rh-by--pulse {
  animation: rh-by-pulse 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes rh-by-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.3;
  }

  60% {
    transform: scale(1.18);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.rh-noun {
  flex: 0 0 auto;
  text-align: left;
}

.rh-word {
  display: block;
  animation: rh-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: opacity, transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.rh-word.is-exiting {
  animation: rh-out 0.65s cubic-bezier(0.4, 0, 0.6, 1) both;
}

/* Noun slides the opposite vertical direction */
.rh-noun.rh-word {
  animation: rh-in-rev 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.rh-noun.rh-word.is-exiting {
  animation: rh-out-rev 0.65s cubic-bezier(0.4, 0, 0.6, 1) both;
}

@keyframes rh-in {
  from {
    opacity: 0;
    transform: translateZ(0) translateY(0.3em);
  }

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

@keyframes rh-out {
  from {
    opacity: 1;
    transform: translateZ(0) translateY(0);
  }

  to {
    opacity: 0;
    transform: translateZ(0) translateY(-0.3em);
  }
}

@keyframes rh-in-rev {
  from {
    opacity: 0;
    transform: translateZ(0) translateY(-0.3em);
  }

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

@keyframes rh-out-rev {
  from {
    opacity: 1;
    transform: translateZ(0) translateY(0);
  }

  to {
    opacity: 0;
    transform: translateZ(0) translateY(0.3em);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rh-word {
    animation: none;
  }
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  align-items: stretch;
  /* Let spread-animated cards visually overflow column boundaries */
  overflow: visible;
}

/* Wrapper injected by JS to carry the spread translateX independently
   from the card's own hover / tilt transform. */
.testimonial-spread-item {
  display: contents;
  /* behaves as if not there for grid layout */
}

/* Once JS has inserted the wrapper, switch it to a real box so the
   translateX actually moves something visible. JS adds the wrapper,
   but we need it to be a block that passes full height to the card. */
.testimonials__grid>.testimonial-spread-item {
  display: flex;
  flex-direction: column;
  will-change: transform;
  position: relative;
  /* needed for z-index to take effect */
  z-index: 2;
  /* always above emojis (z-index 1) so emojis burst from behind */
}

/* Elevate the hovered card above its siblings */
.testimonials__grid>.testimonial-spread-item.emoji-active-wrapper {
  z-index: 200;
}

/* Card fills the full height of the spread wrapper */
.testimonial-spread-item>.testimonial-card {
  flex: 1;
}

.testimonial-card {
  --_card-accent: var(--testimonial-accent, rgba(90, 132, 240, 0.25));
  --_card-shadow: var(--testimonial-shadow, rgba(0, 0, 0, 0.11));
  --testimonial-accent: rgba(90, 132, 240, 0.25);
  --testimonial-shadow: rgba(0, 0, 0, 0.11);
  --glow-color: #5a84f0;
  background: linear-gradient(135deg, #f8f9fb 0%, white 100%);
  padding: var(--space-2xl);
  transition: transform var(--transition-slow), border-color var(--transition-slow),
    box-shadow 0.35s ease, background 0.35s ease;
}

/* Per-card glow accent colours — assigned via JS (initEmojiSplash) */

/* Active glow state — added via JS on hover */

.testimonial-card.emoji-active {
  border-color: var(--glow-color);
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--glow-color) 6%, #f8f9fb) 0%,
      color-mix(in srgb, var(--glow-color) 3%, white) 100%);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--glow-color) 40%, transparent),
    0 0 24px 4px color-mix(in srgb, var(--glow-color) 30%, transparent),
    0 0 60px 12px color-mix(in srgb, var(--glow-color) 18%, transparent),
    0 20px 50px color-mix(in srgb, var(--glow-color) 22%, transparent);
  animation: card-glow-pulse 1s ease-in-out infinite alternate;
}

@keyframes card-glow-pulse {
  from {
    box-shadow:
      0 0 0 1px color-mix(in srgb, var(--glow-color) 40%, transparent),
      0 0 24px 4px color-mix(in srgb, var(--glow-color) 30%, transparent),
      0 0 60px 12px color-mix(in srgb, var(--glow-color) 18%, transparent),
      0 20px 50px color-mix(in srgb, var(--glow-color) 22%, transparent);
  }

  to {
    box-shadow:
      0 0 0 1px color-mix(in srgb, var(--glow-color) 60%, transparent),
      0 0 36px 8px color-mix(in srgb, var(--glow-color) 45%, transparent),
      0 0 90px 20px color-mix(in srgb, var(--glow-color) 28%, transparent),
      0 28px 60px color-mix(in srgb, var(--glow-color) 30%, transparent);
  }
}

/* Testimonial shadow uses its own accent */
.testimonial-card::after {
  box-shadow: 0 20px 50px var(--testimonial-shadow);
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-8px);
}

.testimonial-card__quote {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-dark);
  margin: 0;
  flex: 1 1 auto;
}

.testimonial-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--font-size-sm);
  color: var(--color-mid-gray);
  margin: 0;
  margin-top: auto;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-light-gray);
}

.testimonial-card__meta-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--color-dark);
  font-size: var(--font-size-base);
}

.testimonial-card__role {
  font-size: var(--font-size-xs);
  color: var(--color-mid-gray);
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════
   PRICING — WOW FACTOR
   Dark aurora background with 4-colour orbs
   ═══════════════════════════════════════════ */

.pricing {
  padding: calc(var(--space-4xl) + 160px) 0 640px;
  position: relative;
  overflow: visible;
  isolation: isolate;
  z-index: 3;
  background: #050910;
}

#pricing-anchor {
  scroll-margin-top: calc(var(--nav-height) - 2rem);
}

/* ── Animated orb canvas ────────────────── */

.pricing__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

/* Dark vignette so the card centre stays legible */
.pricing__canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, transparent 0%, rgba(5, 9, 16, 0.38) 100%);
}

.pricing__orb {
  position: absolute;
  border-radius: 50%;
  /* Lighter blur so motion is clearly visible */
  filter: blur(90px);
  will-change: transform, translate, opacity, filter;
  /* Screen blending makes the 4 colours mix like projected light */
  mix-blend-mode: screen;
}

.pricing__orb--blue {
  width: 1400px;
  height: 1400px;
  background: radial-gradient(circle, rgba(90, 132, 240, 1) 0%, rgba(90, 132, 240, 0.70) 40%, transparent 80%);
  top: -580px;
  left: -480px;
  animation:
    pricing-drift-1 14s ease-in-out infinite,
    pricing-pulse-1 7s ease-in-out infinite;
}

.pricing__orb--green {
  width: 1300px;
  height: 1300px;
  background: radial-gradient(circle, rgba(255, 230, 0, 1) 0%, rgba(255, 230, 0, 0.72) 40%, transparent 80%);
  bottom: -520px;
  right: -460px;
  animation:
    pricing-drift-2 17s ease-in-out infinite,
    pricing-pulse-2 9s ease-in-out infinite;
}

.pricing__orb--yellow {
  width: 1100px;
  height: 1100px;
  background: radial-gradient(circle, rgba(38, 191, 136, 1) 0%, rgba(38, 191, 136, 0.68) 40%, transparent 80%);
  top: -180px;
  right: -400px;
  animation:
    pricing-drift-3 12s ease-in-out infinite,
    pricing-pulse-3 6s ease-in-out infinite;
}

.pricing__orb--orange {
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(255, 161, 11, 1) 0%, rgba(255, 161, 11, 0.70) 40%, transparent 80%);
  bottom: -300px;
  left: -380px;
  animation:
    pricing-drift-4 16s ease-in-out infinite,
    pricing-pulse-4 11s ease-in-out infinite;
}

/* ── Travel paths — each orb traces a unique Lissajous-like loop ── */
@keyframes pricing-drift-1 {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  25% {
    transform: translate(140px, 80px) scale(1.12);
  }

  50% {
    transform: translate(80px, 180px) scale(0.92);
  }

  75% {
    transform: translate(-60px, 110px) scale(1.06);
  }

  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

@keyframes pricing-drift-2 {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  30% {
    transform: translate(-120px, -100px) scale(1.14);
  }

  55% {
    transform: translate(-60px, 60px) scale(0.9);
  }

  80% {
    transform: translate(90px, -50px) scale(1.08);
  }

  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

@keyframes pricing-drift-3 {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  20% {
    transform: translate(-130px, 90px) scale(1.1);
  }

  50% {
    transform: translate(-50px, 160px) scale(0.94);
  }

  75% {
    transform: translate(70px, 70px) scale(1.07);
  }

  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

@keyframes pricing-drift-4 {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  35% {
    transform: translate(110px, -90px) scale(1.13);
  }

  60% {
    transform: translate(-70px, -120px) scale(0.91);
  }

  85% {
    transform: translate(-100px, 50px) scale(1.09);
  }

  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

/* ── Opacity pulsing — each orb breathes at its own rhythm ── */
@keyframes pricing-pulse-1 {

  0%,
  100% {
    opacity: 0.85;
  }

  50% {
    opacity: 1;
  }
}

@keyframes pricing-pulse-2 {

  0%,
  100% {
    opacity: 0.75;
  }

  50% {
    opacity: 0.98;
  }
}

@keyframes pricing-pulse-3 {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.95;
  }
}

@keyframes pricing-pulse-4 {

  0%,
  100% {
    opacity: 0.8;
  }

  50% {
    opacity: 1;
  }
}

/* ── Wave cutouts ───────────────────────── */

.pricing__wave {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}

.pricing__wave--top {
  top: -1px;
}

.pricing__wave--bottom {
  bottom: -1px;
}

.pricing__wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Container above canvas ─────────────── */

.pricing .container {
  position: relative;
  z-index: 1;
}

/* ── Section header on dark bg ──────────── */

.pricing .section-header {
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.pricing .section-header__title {
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  font-size: clamp(1.5rem, 3.8vw, 4.5rem);
  white-space: nowrap;
  line-height: 1.1;
  text-align: center;
  transition: text-shadow 0.6s ease;
}

/* ── Pricing layout ─────────────────────── */

.pricing__single {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 480px;
}

.pricing__cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: var(--space-lg);
  max-width: 960px;
  margin: 0 auto;
}

.pricing__cards .pricing-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.pricing__cards .pricing-card__features {
  flex: 1;
}

.pricing-card--centered {
  width: 100%;
}

/* Annual plan badge */
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #26bf88 0%, #5a84f0 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(38, 191, 136, 0.5);
}

/* Plan label (Monthly / Annual) */
.pricing-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: var(--space-xs, 6px);
}

/* Annual card — green-tinted border + ambient glow */
.pricing-card--annual {
  border-color: rgba(38, 191, 136, 0.45);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 var(--white-10),
    0 0 0 1px rgba(38, 191, 136, 0.2),
    0 0 40px 8px rgba(38, 191, 136, 0.12),
    0 0 80px 20px rgba(38, 191, 136, 0.07);
}

/* ── Card — glassmorphism on dark bg ────── */

.pricing-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 var(--white-10),
    /* white ambient — fades out as green comes in */
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 40px 6px rgba(255, 255, 255, 0.12),
    0 0 80px 20px rgba(255, 255, 255, 0.07),
    /* green glow layers — zero opacity at rest so layer counts match .btn-hovered */
    0 0 8px rgba(38, 191, 136, 0),
    0 0 20px rgba(38, 191, 136, 0),
    0 0 45px rgba(38, 191, 136, 0),
    0 0 90px rgba(38, 191, 136, 0),
    0 0 160px rgba(38, 191, 136, 0),
    0 0 260px rgba(38, 191, 136, 0);
  will-change: transform;
  /* transform is owned by CSS — no JS writes to this element's style so
     box-shadow and transform transitions run uninterrupted on the compositor.
     ease-out is used here (the "after-change" value on unhover) for a smooth scale-back. */
  transition: box-shadow 0.8s ease, border-color 0.8s ease, transform 0.5s ease-out;
}

/* Shared text-shadow transition for pricing glow effect —
   base shadow is transparent so browsers can interpolate cleanly
   in BOTH directions (hover-in and hover-out) */
.pricing-card__currency,
.pricing-card__amount,
.pricing-card__period,
.pricing-card__trial,
.pricing-card__label,
.pricing-card__features li,
.pricing-card__trust {
  transition: text-shadow 0.75s ease;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0), 0 0 55px rgba(255, 255, 255, 0);
}

.pricing-card__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.pricing-card__currency {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
}

.pricing-card__amount {
  font-size: clamp(4rem, 11vw, 8rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

/* Both cards share the same amount size — remove any override */

.pricing-card__period {
  font-size: var(--font-size-base);
  color: var(--white-50);
  font-weight: 500;
}

.pricing-card__trial {
  font-size: var(--font-size-sm);
  color: var(--white-50);
  margin-top: var(--space-sm);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--white-82);
}

.pricing-card__features svg {
  flex-shrink: 0;
  color: #ffffff;
}

.pricing-card__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  font-size: var(--font-size-sm);
  color: var(--white-45);
  text-align: center;
}

.pricing-card__trust svg {
  flex-shrink: 0;
  color: #ffffff;
}

/* Enhanced button glow on the dark pricing bg */
.pricing .btn--primary {
  overflow: visible;
  position: relative;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.5s ease, transform 0.5s ease-out;
}

/* Button turns green, scales up on hover — spring easing only on hover-in via animation */
.pricing .btn--primary:hover {
  background: #26bf88;
  border-color: #26bf88;
  box-shadow: 0 8px 32px rgba(38, 191, 136, 0.6), 0 0 64px rgba(38, 191, 136, 0.2);
  transform: scale(1.07) translateY(-3px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Pulse ring DOM element — opacity driven by JS lerp ── */
.pricing-ring {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid transparent;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
  animation: pricing-btn-ring 1.5s ease-out infinite;
  z-index: 2;
}

@keyframes pricing-btn-ring {
  0% {
    transform: scale(1);
    border-color: rgba(38, 191, 136, 1);
  }

  55% {
    transform: scale(1.35);
    border-color: rgba(160, 255, 210, 0.5);
  }

  100% {
    transform: scale(1.65);
    border-color: rgba(255, 255, 255, 0);
  }
}

/* ── Button sparkle canvas ── */
.pricing-btn-sparkle-canvas {
  position: absolute;
  top: -24px;
  left: -24px;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  will-change: opacity;
}

/* ── Inner card spotlight — driven by JS class only ── */
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 85% 55% at 50% 102%, rgba(38, 191, 136, 0.28) 0%, rgba(38, 191, 136, 0.07) 45%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  z-index: -1;
}

.pricing-card.btn-hovered::before {
  opacity: 1;
}

/* ── Sparkle canvas — bleeds outside card, pointer-events none ── */
.pricing-sparkle-canvas {
  position: absolute;
  top: -64px;
  left: -64px;
  pointer-events: none;
  z-index: 3;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.7s ease;
  /* clip-path constrains sparkles to card boundary without overflow:hidden
     (which would cut the ring pulse animation) */
  clip-path: inset(64px round var(--radius-xl));
}

/* ── Border sparkle canvas — always-on glitter around card stroke ── */
/* top/left are -BORDER_PAD so canvas (0,0) is BORDER_PAD px outside the card's
   padding edge; JS sets canvas.width/height and matching CSS width/height each
   time the card is measured so the canvas footprint is always exact. */
.pricing-border-sparkle-canvas {
  position: absolute;
  top: -32px;
  left: -32px;
  pointer-events: none;
  z-index: 4;
  opacity: 1;
  /* width/height are driven by JS — do NOT set them here */
}

/* ── Text glow — fires only on button hover ─────────────────── */
.pricing-card.btn-hovered .pricing-card__amount {
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.6), 0 0 55px rgba(255, 255, 255, 0.25);
}

.pricing-card.btn-hovered .pricing-card__currency {
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.5), 0 0 36px rgba(255, 255, 255, 0.22);
}

.pricing-card.btn-hovered .pricing-card__period,
.pricing-card.btn-hovered .pricing-card__trial {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.pricing-card.btn-hovered .pricing-card__features li {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.pricing-card.btn-hovered .pricing-card__trust {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.pricing-card.btn-hovered .pricing-card__label {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.45);
}

/* Add base transition + transparent shadow to section title so unhover fades smoothly */
.pricing .section-header__title {
  transition: text-shadow 0.75s ease;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0),
    0 0 42px rgba(255, 255, 255, 0),
    0 2px 20px rgba(0, 0, 0, 0);
}

.pricing .section-header__title.btn-hovered-title {
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.55),
    0 0 42px rgba(255, 255, 255, 0.28),
    0 2px 20px rgba(0, 0, 0, 0.4);
}

.pricing-card.btn-hovered {
  transform: scale(1.045);
  /* Scale + glow on button hover — pure CSS, no JS writes to this element */
  /* Layer order mirrors the base .pricing-card exactly (12 layers) */
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 var(--white-10),
    /* white ambient fades out as green comes in */
    0 0 0 1px rgba(255, 255, 255, 0),
    0 0 40px 6px rgba(255, 255, 255, 0),
    0 0 80px 20px rgba(255, 255, 255, 0),
    /* tight rim — vivid green edge */
    0 0 8px rgba(38, 191, 136, 0.95),
    0 0 20px rgba(38, 191, 136, 0.80),
    0 0 45px rgba(38, 191, 136, 0.60),
    /* mid haze */
    0 0 90px rgba(38, 191, 136, 0.38),
    0 0 160px rgba(38, 191, 136, 0.20),
    /* wide ambient bloom */
    0 0 260px rgba(38, 191, 136, 0.10);
  border-color: rgba(38, 191, 136, 0.75);
  /* Spring easing on hover-in; base .pricing-card rule uses ease-out for hover-out */
  transition: box-shadow 0.8s ease, border-color 0.8s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Annual card — amplified glow on btn-hover */
.pricing-card--annual.btn-hovered {
  transform: scale(1.055);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.60),
    0 8px 30px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 var(--white-10),
    0 0 0 1px rgba(255, 255, 255, 0),
    0 0 40px 6px rgba(255, 255, 255, 0),
    0 0 80px 20px rgba(255, 255, 255, 0),
    /* tight rim — extra vivid */
    0 0 10px rgba(38, 191, 136, 1.0),
    0 0 28px rgba(38, 191, 136, 0.95),
    0 0 60px rgba(38, 191, 136, 0.80),
    /* mid haze — wider */
    0 0 120px rgba(38, 191, 136, 0.55),
    0 0 220px rgba(38, 191, 136, 0.30),
    /* wide ambient bloom — stronger */
    0 0 360px rgba(38, 191, 136, 0.18);
  border-color: rgba(38, 191, 136, 1.0);
  transition: box-shadow 0.8s ease, border-color 0.8s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */

.page-content {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
  min-height: 80vh;
}

.about {
  padding: var(--space-4xl) 0;
  background: var(--color-off-white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-3xl);
}

.about__content {
  width: 100%;
}

.about__inner .section-header {
  text-align: left;
  max-width: none;
  margin-bottom: var(--space-lg);
}

.about__slide-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
}

.about__body {
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.about__body+.about__body {
  margin-top: var(--space-lg);
}

.about__quote {
  color: var(--color-dark);
  font-weight: 600;
}

/* ── About: kinetic stats column ── */
.about__stats-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  width: 100%;
}

.about__stat {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(22px);
}

.about__stat.is-counted {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out),
    box-shadow 0.25s ease;
  animation: about-stat-float 4.5s ease-in-out infinite;
}

.about__stat.is-counted:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  animation-play-state: paused;
}

/* Stagger float phase so cards don't all move in sync */
.about__stats-grid .about__stat:nth-child(1).is-counted {
  animation-delay: 0s;
}

.about__stats-grid .about__stat:nth-child(2).is-counted {
  animation-delay: -1.1s;
}

.about__stats-grid .about__stat:nth-child(3).is-counted {
  animation-delay: -2.3s;
}

.about__stats-grid .about__stat:nth-child(4).is-counted {
  animation-delay: -0.6s;
}

@keyframes about-stat-float {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
  }

  50% {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
}

.about__stat-value {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.about__stat-prefix,
.about__stat-number {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--color-blue);
}

.about__stat-extra {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: var(--color-blue);
  opacity: 0.7;
}

.about__stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  font-weight: 500;
}


/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */

.faq {
  padding: var(--space-4xl) 0;
  background: var(--color-off-white);
}

.faq__list {
  max-width: 100%;
  margin: 0 auto;
  column-count: 2;
  column-gap: var(--space-xl);
}

.faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: var(--space-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq__item:hover {
  border-color: rgba(90, 132, 240, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq__item[open] {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 1px var(--color-blue);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--font-size-base);
  color: var(--color-dark);
  list-style: none;
  user-select: none;
  transition: color var(--transition-fast), background var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.faq__question:hover {
  background: rgba(90, 132, 240, 0.03);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  display: none;
  content: '';
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform var(--transition-base), color var(--transition-base);
  color: var(--color-mid-gray);
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
  color: var(--color-blue);
}

.faq__answer {
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq__answer p {
  font-size: var(--font-size-sm);
  line-height: 1.8;
  color: var(--color-text-secondary);
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  position: relative;
  z-index: 4;
  /* Pulled up deep into the orb-lit zone of .pricing for a seamless blend */
  margin-top: -640px;
  padding-top: 380px;
  /* Wide transparent lead-in so the orb glow fills it before darkening */
  background: linear-gradient(to bottom,
      rgba(5, 9, 16, 0) 0%,
      rgba(5, 9, 16, 0) 20%,
      rgba(5, 9, 16, 0.35) 50%,
      rgba(5, 9, 16, 0.75) 70%,
      #050910 88%);
  color: var(--white-70);
}

/* Footer on standalone pages (no .pricing section above it) — off-white light theme */
body:not(:has(.pricing)) .footer {
  margin-top: 0;
  padding-top: var(--space-4xl);
  background: var(--color-off-white);
  color: var(--color-text);
  border-top: 1px solid var(--color-light-gray);
}

body:not(:has(.pricing)) .footer__inner {
  border-bottom-color: var(--color-light-gray);
}

body:not(:has(.pricing)) .footer__brand-name {
  color: var(--color-dark);
}

body:not(:has(.pricing)) .footer__col h4 {
  color: var(--color-mid-gray);
}

body:not(:has(.pricing)) .footer__col a {
  color: var(--color-text-secondary);
}

body:not(:has(.pricing)) .footer__col a:hover {
  color: var(--color-dark);
}

body:not(:has(.pricing)) .footer__bottom {
  color: var(--color-mid-gray);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--white-08);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.footer__brand-name {
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--color-white);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.footer__col h4 {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-40);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.footer__col a {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--white-65);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer__col a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.footer__bottom {
  padding: var(--space-lg) 0;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.35);
}


/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.testimonial-card[data-animate].is-visible:hover,
.testimonial-card[data-animate].is-visible:focus-within {
  transform: translateY(-8px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .about__stat {
    opacity: 1;
    transform: none;
  }

  .about__stat.is-counted {
    animation: none;
  }

  .hero__content {
    animation: none;
  }

  .hero__bg-img {
    animation: none;
    transform: scale(1);
  }

  .hero__badge {
    will-change: auto;
  }

  .pricing__orb {
    animation: none !important;
    filter: blur(90px);
  }

  .hero__blobs {
    animation: none !important;
  }

  .hero__blob {
    animation: none !important;
    opacity: 0.3;
  }

  .site-floaters {
    display: none !important;
  }

  .combo-deck-bg {
    display: none !important;
  }

  .btn:hover {
    transform: none !important;
  }

  .testimonial-card:hover {
    transform: none !important;
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024)
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-3xl: 1.75rem;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__inner .section-header {
    text-align: center;
  }

  .about__stats-grid {
    max-width: 440px;
    margin: 0 auto;
  }

  .faq__list {
    column-count: 1;
  }

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


/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768)
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2rem;
    --font-size-3xl: 1.5rem;
    --space-4xl: 3.5rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .welcome__title {
    white-space: normal;
  }

  /* Nav mobile */
  .navbar__links,
  .navbar__actions {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 5;
    padding-top: calc(var(--nav-height) + var(--space-xl));
    align-items: center;
    gap: var(--space-xl);
  }

  .navbar__links.active a {
    color: var(--white-85);
    font-size: var(--font-size-lg);
  }

  .navbar__links.active a:hover,
  .navbar__links.active a.active {
    color: var(--color-white);
  }

  .navbar__links.active~.navbar__actions {
    display: flex;
    position: fixed;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    gap: var(--space-md);
  }

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    padding-bottom: 80px;
  }

  .hero__badge--ext,
  .hero__badge--sheets {
    display: none;
  }

  /* Pricing mobile */
  .pricing__single {
    max-width: 100%;
  }

  .pricing__cards {
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
  }

  .pricing__cards .pricing-card {
    width: 100%;
    max-width: 460px;
  }

  /* FAQ mobile */
  .faq__question {
    font-size: var(--font-size-sm);
    padding: var(--space-md) var(--space-lg);
  }

  .faq__answer {
    padding: 0 var(--space-lg) var(--space-md);
  }

  /* Footer mobile */
  .footer__links {
    grid-template-columns: 1fr 1fr;
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — LARGE DESKTOP / 1440p (≥1440px)
   ═══════════════════════════════════════════ */

@media (min-width: 1440px) {
  html {
    zoom: 0.82;
  }

  :root {
    --container-max: 1320px;
    --font-size-5xl: 3.5rem;
    --font-size-3xl: 2.15rem;
    --space-4xl: 5.5rem;
  }

  .hero__content {
    max-width: 820px;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .welcome__intro {
    max-width: 880px;
  }

  .welcome__mockup-wrap .hero__mockup {
    max-width: 920px;
  }

  .section-header__title {
    font-size: 4.25rem;
  }

  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing__single {
    max-width: 520px;
  }

  .pricing__cards {
    max-width: 1020px;
    gap: var(--space-xl);
  }

  .combo-deck-header__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — WIDESCREEN / FHD+ (≥1920px)
   ═══════════════════════════════════════════ */

@media (min-width: 1920px) {
  html {
    zoom: 0.88;
  }

  :root {
    --container-max: 1440px;
    --font-size-5xl: 3.75rem;
    --font-size-3xl: 2.35rem;
    --font-size-xl: 1.35rem;
    --font-size-lg: 1.2rem;
    --space-4xl: 6rem;
  }

  .hero__content {
    max-width: 880px;
  }

  .hero__title {
    font-size: 3.75rem;
  }

  .welcome__intro {
    max-width: 940px;
  }

  .welcome__title {
    font-size: clamp(2.5rem, 3.2vw, 3.25rem);
  }

  .welcome__mockup-wrap .hero__mockup {
    max-width: 1000px;
  }

  .section-header__title {
    font-size: 4.5rem;
  }

  .pricing__single {
    max-width: 540px;
  }

  .pricing__cards {
    max-width: 1080px;
  }

  .pricing-card {
    padding: var(--space-2xl) var(--space-3xl);
  }

  .combo-deck-header__title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
  }

  .footer__inner {
    gap: var(--space-4xl);
  }

  .bento-card {
    padding: var(--space-2xl);
  }

  .bento-card__icon {
    width: 52px;
    height: 52px;
  }

  .testimonial-card {
    padding: var(--space-2xl) var(--space-3xl);
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — 2K / QHD (≥2560px)
   ═══════════════════════════════════════════ */

@media (min-width: 2560px) {
  html {
    zoom: 1;
  }

  :root {
    --container-max: 1600px;
    --font-size-5xl: 4rem;
    --font-size-3xl: 2.5rem;
    --font-size-xl: 1.45rem;
    --font-size-lg: 1.25rem;
    --font-size-base: 1.1rem;
    --font-size-sm: 0.95rem;
    --space-4xl: 7rem;
    --space-3xl: 4rem;
    --space-2xl: 3.5rem;
    --nav-height: 80px;
    --radius-xl: 28px;
  }

  .navbar {
    width: calc(100% - var(--space-4xl));
  }

  .navbar__logo-img {
    width: 42px;
    height: 42px;
  }

  .navbar__links {
    gap: var(--space-3xl);
  }

  .hero__content {
    max-width: 960px;
  }

  .hero__title {
    font-size: 4rem;
    margin-bottom: var(--space-3xl);
  }

  .hero .btn--large {
    padding: 1rem 2.5rem;
    font-size: var(--font-size-lg);
  }

  .welcome__intro {
    max-width: 1000px;
  }

  .welcome__title {
    font-size: clamp(2.6rem, 3.4vw, 3.5rem);
  }

  .welcome__subtitle {
    font-size: clamp(1.2rem, 1.5vw, 1.55rem);
    max-width: 800px;
  }

  .welcome__mockup-wrap .hero__mockup {
    max-width: 1100px;
  }

  .section-header__title {
    font-size: 5rem;
  }

  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }

  .testimonial-card {
    padding: var(--space-3xl);
  }

  .testimonial-card__quote {
    font-size: var(--font-size-lg);
    line-height: 1.8;
  }

  .pricing__single {
    max-width: 560px;
  }

  .pricing__cards {
    max-width: 1120px;
  }

  .pricing-card {
    padding: var(--space-3xl);
  }

  .pricing-card__amount {
    font-size: clamp(6rem, 14vw, 10rem);
  }

  .combo-deck-header__title {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    max-width: min(1300px, 96vw);
  }

  .combo-text-headline {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  }

  .bento-card {
    padding: var(--space-3xl);
  }

  .bento-card__icon {
    width: 56px;
    height: 56px;
  }

  .bento-card__title {
    font-size: var(--font-size-3xl);
  }

  .about__stats-grid {
    gap: var(--space-xl);
  }

  .about__stat {
    padding: var(--space-2xl) var(--space-xl);
  }

  .faq__list {
    column-gap: var(--space-2xl);
  }

  .footer__logo {
    width: 48px;
    height: 48px;
  }

  .footer__inner {
    gap: var(--space-4xl);
  }

  .auth-modal__card {
    max-width: 460px;
    padding: 2.5rem;
  }
}


/* ═══════════════════════════════════════════
   AUTH MODAL OVERLAY
   ═══════════════════════════════════════════ */

/* ── Overlay container ── */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.auth-modal[aria-hidden="false"] {
  display: flex;
}

/* ── Backdrop blur ── */
.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

/* ── Glassmorphism card ── */
.auth-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  background: rgba(15, 18, 30, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--white-18);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

/* ── Close button ── */
.auth-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.auth-modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

/* ── Background orbs (decorative) ── */
.auth-modal__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.auth-modal__orb--blue {
  width: 280px;
  height: 280px;
  background: var(--color-blue);
  top: -80px;
  right: -80px;
  opacity: 0.2;
}

.auth-modal__orb--green {
  width: 200px;
  height: 200px;
  background: #26bf88;
  bottom: -60px;
  left: -60px;
  opacity: 0.15;
}

/* ── Logo ── */
.auth-modal__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.auth-modal__logo img {
  width: 34px;
  height: 34px;
}

.auth-modal__logo span {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-white);
}

/* ── Panel transitions ── */
.auth-modal__panel {
  animation: authFadeIn 0.3s var(--ease-out) forwards;
}

.auth-modal__panel[hidden] {
  display: none;
}

@keyframes authFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

/* ── Titles ── */
.auth-modal__title {
  text-align: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.15rem;
}

.auth-modal__subtitle {
  text-align: center;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-lg);
}

/* ── Form ── */
.auth-modal__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.auth-modal__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.auth-modal__field label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.auth-modal__field input {
  width: 100%;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  outline: none;
  transition: all var(--transition-fast);
}

.auth-modal__field input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.auth-modal__field input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(90, 132, 240, 0.18);
  background: rgba(255, 255, 255, 0.22);
}

/* ── Options row ── */
.auth-modal__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -0.25rem;
}

.auth-modal__remember {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.auth-modal__remember input {
  accent-color: var(--color-blue);
  width: 15px;
  height: 15px;
}

.auth-modal__forgot {
  font-size: var(--font-size-sm);
  color: var(--color-white);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.auth-modal__forgot:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Submit button ── */
.auth-modal__submit {
  width: 100%;
  padding: 0.65rem;
  margin-top: var(--space-xs);
  background: var(--color-blue);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.auth-modal__submit:hover {
  background: #26bf88;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(38, 191, 136, 0.5);
}

/* ── Divider ── */
.auth-modal__divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-sm) 0;
}

.auth-modal__divider::before,
.auth-modal__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.auth-modal__divider span {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Google OAuth button ── */
.auth-modal__google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.auth-modal__google:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ── Switch link ── */
.auth-modal__switch {
  text-align: center;
  margin-top: var(--space-md);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.45);
}

.auth-modal__switch a {
  color: var(--color-white);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.auth-modal__switch a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Body lock when modal is open ── */
body.auth-modal-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════════
   SCROLL-END BLACK GRADIENT PULSE
   ═══════════════════════════════════════════ */

#scroll-end-pulse {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(ellipse at 50% 110%, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

#scroll-end-pulse.pulse-active {
  animation: scrollEndPulse 1.8s ease-in-out 1 forwards;
}

@keyframes scrollEndPulse {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  30% {
    opacity: 1;
    transform: scale(1.04);
  }

  65% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .auth-modal__card {
    max-width: calc(100% - 2rem);
    padding: 1.5rem 1.25rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════
   Counter Widget
   ═══════════════════════════════════════════ */

.counter-widget {
  --cw-color-blue: #5a84f0;
  --cw-color-green: #26bf88;
  --cw-color-text-secondary: #5F6368;
  --cw-space-sm: 0.5rem;
  --cw-space-xl: 2rem;

  margin-top: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--cw-space-sm);
  font-weight: 800;
  color: var(--cw-color-blue);
  font-family: inherit;
  text-align: center;
}

.counter-widget__row {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.counter-widget__number {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2em;
  line-height: 1;
  transition: color 320ms ease;
}

.counter-widget__label {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--cw-color-text-secondary);
  text-align: center;
  font-weight: 600;
}

.counter-widget__plus {
  font-size: clamp(4.5rem, 6vw, 6rem);
  font-weight: 800;
  color: var(--cw-color-blue);
  opacity: 0;
  transform: translateY(0) scale(0.4);
  display: inline-block;
  transition: opacity 220ms ease,
    transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1),
    color 320ms ease;
  margin-left: -0.14em;
}

.counter-widget__plus.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.counter-widget--celebrate .counter-widget__row {
  animation: cw-pop 620ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.counter-widget--celebrate .counter-widget__label {
  animation: cw-fade 620ms ease;
}

@keyframes cw-pop {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.08);
  }

  65% {
    transform: scale(0.985);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes cw-fade {
  0% {
    opacity: 0.75;
    transform: translateY(2px);
  }

  40% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ═══════════════════════════════════════════
   GLOBAL FOCUS-VISIBLE INDICATORS
   ═══════════════════════════════════════════ */

:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Remove default outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* High-contrast focus for dark sections */
.pricing :focus-visible,
.footer :focus-visible,
.hero :focus-visible,
.navbar :focus-visible {
  outline-color: var(--color-white);
}


/* ═══════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(5, 9, 16, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--white-10);
  padding: var(--space-lg) var(--space-xl);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 280px;
  font-size: var(--font-size-sm);
  color: var(--white-75);
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--color-blue);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════
   ERROR PAGE (404)
   ═══════════════════════════════════════════ */

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
}

.error-page__inner {
  max-width: 520px;
}

.error-page__code {
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-blue);
  margin-bottom: var(--space-md);
}

.error-page__title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.error-page__body {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.error-page__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════
   LEGAL PAGES (Privacy, Terms)
   ═══════════════════════════════════════════ */

.legal-page {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
}

.legal-page__inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page__updated {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
}

.legal-page__body h2 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-page__body h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-page__body p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.legal-page__body ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-page__body ul li {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xs);
}

.legal-page__body a {
  color: var(--color-blue);
  text-decoration: underline;
}


/* ═══════════════════════════════════════════
   AUTH FORM — Inline Error Styles
   ═══════════════════════════════════════════ */

.auth-modal__input--error {
  border-color: var(--color-red) !important;
  box-shadow: 0 0 0 2px rgba(234, 67, 53, 0.2);
}

.auth-modal__error {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-red);
  margin-top: 4px;
}


/* ═══════════════════════════════════════════
   404 / 500 — Helpful Navigation Links
   ═══════════════════════════════════════════ */

.error-page__nav {
  margin-top: var(--space-2xl);
  text-align: center;
}

.error-page__nav-title {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.error-page__nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-xl);
  list-style: none;
  padding: 0;
}

.error-page__nav-links a {
  color: var(--color-blue);
  font-weight: 500;
  font-size: var(--font-size-sm);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition-fast);
}

.error-page__nav-links a:hover {
  text-decoration-color: var(--color-blue);
}