/* ==========================================================================
   Bizstartz — Light Editorial Minimalism (Redesign v2)
   Buildless: loads AFTER the Tailwind CDN runtime, so these rules win the
   cascade. The page markup is saturated with dark utilities (bg-black,
   text-white, text-gray-*, arbitrary bg-[#0f0f0f] etc.) — we flip them all to a
   warm light editorial system here, then re-assert white only on solid buttons.
   ========================================================================== */

:root {
  /* Canvas + surfaces (dark) */
  --bg: #08090c;
  --surface: #131519;
  --surface-2: #1a1d22;

  /* Lines */
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.20);

  /* Ink */
  --ink: #ededee;
  --muted: #a3a4a9;
  --faint: #6e6f75;
  --button: #ffffff;

  /* Accent (cyan-blue) + translucent semantic tints for dark */
  --accent-bg: rgba(124, 195, 245, 0.14);
  --accent-fg: #8cc7f6;
  --green-bg: rgba(80, 200, 140, 0.14);
  --green-fg: #66d39a;
  --red-bg: rgba(230, 110, 110, 0.14);
  --red-fg: #ec8d8d;
  --yellow-bg: rgba(225, 180, 80, 0.14);
  --yellow-fg: #e6c069;

  /* Radii — crisp */
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 14px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Poppins", system-ui, -apple-system, sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;
  --font-mono: "Poppins", ui-monospace, "SF Mono", monospace;
}

/* ---------- Base ---------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg) !important;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Dark gradient mesh — layered radial glows + a base vertical gradient for
   depth. Fixed + pointer-events-none so it never repaints on scroll. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(60vw 50vw at 82% -6%, rgba(36, 122, 184, 0.22), transparent 60%),
    radial-gradient(50vw 45vw at 4% 10%, rgba(96, 92, 220, 0.14), transparent 58%),
    radial-gradient(55vw 50vw at 50% 108%, rgba(36, 122, 184, 0.16), transparent 60%),
    linear-gradient(180deg, #0a0c10 0%, #08090c 55%, #07080b 100%);
}

/* Faint grain so the gradient never looks flat/banded. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--accent-bg); color: var(--accent-fg); }

/* ---------- Typography ---------------------------------------------------- */
.font-geist { font-family: var(--font-body); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-weight: 500;
}

h1 { letter-spacing: -0.03em; }

p { line-height: 1.6; }

/* Gradient-text spans in the markup → flat accent ink (no gradients). */
.bg-custom-text-gradient,
.text-transparent.bg-clip-text {
  background: none !important;
  -webkit-text-fill-color: var(--accent-fg) !important;
  color: var(--accent-fg) !important;
}

/* ---------- Global color flips (dark utilities → light) ------------------- */
.bg-black { background-color: transparent !important; }

[class*="bg-[#0f0f0f]"],
[class*="bg-[#0b0c0e]"],
[class*="bg-[#111]"],
[class*="bg-[#0a0a0a]"] {
  background-color: var(--surface) !important;
}

/* Decorative dark blur orbs + dark hero texture → gone */
[class*="bg-[#0780BC99]"] { display: none !important; }
[class*="bg-[url('images/Boxess.svg')]"] { background-image: none !important; }

/* Text colors */
.text-white { color: var(--ink) !important; }
.text-gray-200, .text-gray-300, .text-gray-400, .text-white\/80 { color: var(--muted) !important; }
.text-gray-500, .text-gray-600 { color: var(--faint) !important; }
.text-blue-400, .text-blue-600 { color: var(--accent-fg) !important; }

/* Borders */
.border-white, .border-white\/10, .border-white\/20,
.border-gray-600, .border-gray-700, .border-gray-800,
.border-cyan-800, .border-cyan-800\/30,
[class*="border-[#1F3659]"], [class*="border-[#45BFFC]"],
[class*="border-[#262626]"], [class*="border-[#C9C9C9]"],
.border-yellow-100\/10 {
  border-color: var(--line) !important;
}

/* ---------- Eyebrow / tag (pastel pill) ----------------------------------- */
.eyebrow, .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  background: var(--accent-bg);
  color: var(--accent-fg);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
}
.eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  background: var(--accent-fg);
}

/* Eyebrow variant that leads with a logo instead of the dot */
.eyebrow--logo { padding-left: 0.55rem; }
.eyebrow--logo::before { display: none; }
.eyebrow--logo img { height: 14px; width: auto; }

/* ---------- Buttons -------------------------------------------------------
   Primary CTA in markup uses .bg-custom-button or bg-[#008BD0]. Make them the
   solid ink button. (Pricing "Pro" CARD also uses bg-[#008BD0] but is excluded
   via :not(border-blue-500) below.) Re-assert white text AFTER the global
   .text-white→ink flip.                                                       */
.bg-custom-button,
[class*="bg-[#008BD0]"]:not([class*="border-blue-500"]) {
  background: var(--button) !important;
  background-image: none !important;
  border-radius: var(--r-sm) !important;
  box-shadow: none !important;
  transition: background-color 0.2s var(--ease), transform 0.1s var(--ease);
}
.bg-custom-button, .bg-custom-button *,
[class*="bg-[#008BD0]"]:not([class*="border-blue-500"]),
[class*="bg-[#008BD0]"]:not([class*="border-blue-500"]) * {
  color: #111111 !important;
}
.bg-custom-button:hover,
[class*="bg-[#008BD0]"]:not([class*="border-blue-500"]):hover {
  background: #e6e6e6 !important;
  transform: none !important;
}
.bg-custom-button:active { transform: scale(0.98) !important; }

/* Ghost / outline buttons (the "border border-white" links) */
a.border.border-white {
  border-radius: var(--r-sm) !important;
  border-color: var(--line-strong) !important;
  color: var(--ink) !important;
  background: transparent !important;
}
a.border.border-white:hover {
  background: var(--surface-2) !important;
  color: var(--ink) !important;
}

/* ---------- Inputs -------------------------------------------------------- */
input, textarea {
  background: var(--surface) !important;
  color: var(--ink) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-sm) !important;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
input::placeholder, textarea::placeholder { color: var(--faint) !important; }
input:focus, textarea:focus {
  border-color: var(--accent-fg) !important;
  box-shadow: 0 0 0 3px var(--accent-bg) !important;
  outline: none;
}
label { color: var(--ink) !important; }

/* ---------- Multi-step lead wizard ---------------------------------------- */
.wiz-step { display: none; }
.wiz-step.is-active { display: block; animation: wizFade 0.4s var(--ease); }
@keyframes wizFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.wiz-q { color: var(--ink); font-weight: 600; font-size: 0.98rem; margin-bottom: 0.75rem; }
.wiz-help { color: var(--faint); font-size: 0.78rem; margin-top: 0.45rem; }
.wiz-error { color: var(--red-fg); font-size: 0.8rem; margin-top: 0.5rem; }

.wiz-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03) !important;
  color: var(--ink) !important;
  border: 1px solid var(--line) !important;
}
.wiz-input:focus {
  outline: none;
  border-color: var(--accent-fg) !important;
  box-shadow: 0 0 0 3px var(--accent-bg) !important;
}
.wiz-input::placeholder { color: var(--faint); }
select.wiz-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23a3a4a9' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2.2rem;
}
/* Native dropdown list renders on a light popup — force dark, legible options */
.wiz-input option { color: #1f2328; background: #ffffff; }
.wiz-input option[value=""] { color: #6c7782; }

.wiz-opt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.92rem;
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease);
}
.wiz-opt:hover { border-color: var(--line-strong); }
.wiz-opt input { accent-color: var(--accent-fg); width: 16px; height: 16px; }
.wiz-opt:has(input:checked) { border-color: var(--accent-fg); background: var(--accent-bg); }
.wiz-field.has-error .wiz-input { border-color: var(--red-fg) !important; }

.wiz-btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 0.75rem 1.1rem;
  border-radius: 8px;
  background: transparent;
  transition: background-color 0.2s var(--ease);
}
.wiz-btn-ghost:hover { background: rgba(255, 255, 255, 0.05); }

@media (prefers-reduced-motion: reduce) {
  .wiz-step.is-active { animation: none; }
}

/* ---------- Cards (flat, hairline) ---------------------------------------- */
.glass-card {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-lg) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.feature-card {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r) !important;
  box-shadow: none !important;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.feature-card::after { display: none !important; }
.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  background: var(--surface) !important;
}
.feature-card--lead {
  background: var(--accent-bg) !important;
  border-color: rgba(31, 108, 159, 0.25) !important;
}
.feat-icon {
  background: var(--surface-2) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-sm) !important;
}
.feature-card--lead .feat-icon { background: rgba(255, 255, 255, 0.06) !important; }
.feat-icon img { filter: none; }

/* ---------- Inner content panels (e.g. convert block inner) --------------- */
.glass-card > div { background: var(--surface) !important; }

/* ---------- Logo chips / grid --------------------------------------------- */
.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r) !important;
  padding: 1.25rem 1rem;
  min-height: 92px;
  box-shadow: none !important;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.logo-chip img {
  max-height: 30px;
  max-width: 72%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.2s var(--ease), opacity 0.2s var(--ease);
}
.logo-chip:hover { border-color: var(--line-strong) !important; }
.logo-chip:hover img { filter: none; opacity: 1; }

/* ---------- Testimonial + company cards (flat) ---------------------------- */
.testimonial-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r) !important;
  padding: 22px 24px;
  box-shadow: none;
}
.testimonial-card:hover { border-color: var(--line-strong); }
.company-logo-card {
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}
.company-logo-card img { filter: grayscale(1); opacity: 0.7; }

/* Slow marquees kept but quieted; edges masked. */
@keyframes company-scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes company-scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.company-left { animation: company-scroll-left 40s linear infinite; }
.company-right { animation: company-scroll-right 40s linear infinite; }
.testimonial-left { animation: scroll-left 50s linear infinite; }
.testimonial-right { animation: scroll-right 50s linear infinite; }
.company-left:hover, .company-right:hover,
.testimonial-left:hover, .testimonial-right:hover { animation-play-state: paused; }

/* ---------- Pricing "Pro" highlighted card -------------------------------- */
[class*="border-blue-500"] {
  background: var(--accent-bg) !important;
  border: 1px solid var(--accent-fg) !important;
  border-radius: var(--r-lg) !important;
  color: var(--ink) !important;
}
[class*="border-blue-500"] * { color: var(--ink) !important; }
[class*="border-blue-500"] .bg-white { background: #ffffff !important; }
[class*="border-blue-500"] .bg-white,
[class*="border-blue-500"] .bg-white * { color: #111111 !important; }

/* ---------- Tables (flat editorial) --------------------------------------- */
table { border-color: var(--line) !important; }
thead, th { color: var(--ink) !important; }
td { color: var(--ink) !important; }
tr, td, th { border-color: var(--line) !important; }

/* Comparison: highlight the Bizstartz column in pale blue */
.compare-table th:nth-child(2),
.compare-table td:nth-child(2) {
  background: var(--accent-bg) !important;
  color: var(--accent-fg) !important;
  font-weight: 600;
  box-shadow: inset 1px 0 0 rgba(31, 108, 159, 0.25), inset -1px 0 0 rgba(31, 108, 159, 0.25);
}
.compare-table th:nth-child(2) {
  border-top-left-radius: var(--r);
  border-top-right-radius: var(--r);
  box-shadow: inset 1px 0 0 rgba(31, 108, 159, 0.3), inset -1px 0 0 rgba(31, 108, 159, 0.3), inset 0 1px 0 rgba(31, 108, 159, 0.3);
}
.compare-table tr:last-child td:nth-child(2) {
  border-bottom-left-radius: var(--r);
  border-bottom-right-radius: var(--r);
}

/* ---------- Money-back callout (flat pale panel) -------------------------- */
.bg-custom-gradient {
  background: var(--accent-bg) !important;
  background-image: none !important;
}
[class*="rounded-[80px]"] { border-radius: var(--r-lg) !important; }

/* ---------- Minimal header ------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: saturate(1.3) blur(10px);
  border-bottom: 1px solid var(--line);
}

/* Header offer ribbon */
.offer-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.46rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  background: var(--accent-bg);
  color: var(--accent-fg);
  border: 1px solid rgba(140, 199, 246, 0.35);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.offer-ribbon svg { width: 14px; height: 14px; }
.offer-ribbon:hover {
  background: rgba(140, 199, 246, 0.2);
  border-color: rgba(140, 199, 246, 0.55);
}

/* ---------- Footer -------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

/* ---------- Utilities ----------------------------------------------------- */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.hairline-frame {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}
.avatar-ring {
  border: 2px solid var(--bg);
  background: var(--surface);
}

/* ==========================================================================
   QUIET MOTION (paired with js/animations.js IntersectionObserver)
   Progressive enhancement: visible by default; JS adds .reveal-init to hide,
   then .is-visible to play. With JS off / reduced-motion, content shows.
   ========================================================================== */
/* Whole-block "glass" reveal — element starts invisible + frosted (blurred)
   and resolves into focus as one piece. */
.reveal-init {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(12px);
  will-change: opacity, transform, filter;
}
.reveal-init.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease),
    filter 0.85s var(--ease);
}

/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .company-left, .company-right, .testimonial-left, .testimonial-right { animation: none !important; }
  .reveal-init, .reveal-init.is-visible { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ==========================================================================
   VISUAL APPEAL UPGRADE (v3) — appended so it wins the cascade.
   Adds: (1) a slowly-drifting animated ambient background (aurora + floating
   brand-colored orbs + a subtly panning grid), and (2) richer content polish
   — living gradient headlines, glowing gradient CTAs with a shine sweep, card
   glow-on-hover, an animated pricing highlight, and a breathing offer ribbon.
   All motion is transform/opacity/filter based (GPU-friendly) and fully
   disabled under prefers-reduced-motion at the very bottom of this file.
   ========================================================================== */

/* ---------- 1. Animated ambient background -------------------------------- */
/* Push the static mesh + grain further back so the animated layer sits above
   them but still behind all page content. */
body::before { z-index: -4 !important; }
body::after  { z-index: -2 !important; }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
  contain: strict;
}

/* Slow rotating aurora sweep — a wide conic wash of brand hues, heavily
   blurred so only soft color movement reads. */
.site-bg__aurora {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150vmax;
  height: 150vmax;
  margin: -75vmax 0 0 -75vmax;
  border-radius: 45%;
  opacity: 0.5;
  filter: blur(70px);
  background:
    conic-gradient(from 0deg,
      rgba(41, 169, 225, 0.16),
      rgba(96, 92, 220, 0.10),
      rgba(41, 169, 225, 0.04),
      rgba(120, 200, 245, 0.14),
      rgba(41, 169, 225, 0.16));
  animation: bgAuroraSpin 60s linear infinite;
  will-change: transform;
}

/* Floating blurred orbs that drift and pulse independently. */
.site-bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}
.site-bg__blob--1 {
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  top: -8%; right: -6%;
  background: radial-gradient(circle at 30% 30%, rgba(41, 169, 225, 0.55), transparent 68%);
  animation: bgFloatA 26s ease-in-out infinite;
}
.site-bg__blob--2 {
  width: 40vw; height: 40vw; max-width: 540px; max-height: 540px;
  bottom: -12%; left: -8%;
  background: radial-gradient(circle at 40% 40%, rgba(96, 92, 220, 0.45), transparent 68%);
  animation: bgFloatB 34s ease-in-out infinite;
}
.site-bg__blob--3 {
  width: 34vw; height: 34vw; max-width: 460px; max-height: 460px;
  top: 42%; left: 46%;
  background: radial-gradient(circle at 50% 50%, rgba(120, 200, 245, 0.30), transparent 70%);
  animation: bgFloatC 30s ease-in-out infinite;
}

/* Faint grid that pans forever — adds a subtle sense of depth/movement. */
.site-bg__grid {
  position: absolute;
  inset: -2px;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 78%);
  animation: bgGridPan 22s linear infinite;
}

@keyframes bgAuroraSpin {
  to { transform: rotate(360deg); }
}
@keyframes bgFloatA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-4vw, 5vh, 0) scale(1.12); }
}
@keyframes bgFloatB {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(5vw, -4vh, 0) scale(1.15); }
}
@keyframes bgFloatC {
  0%, 100% { transform: translate3d(-50%, -50%, 0) scale(1); opacity: 0.30; }
  50%      { transform: translate3d(-42%, -58%, 0) scale(1.18); opacity: 0.5; }
}
@keyframes bgGridPan {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 64px 64px, 64px 64px; }
}

/* ---------- 2. Living gradient headlines ---------------------------------- */
/* Re-enable the brand gradient on the "highlight" spans (previously flattened)
   and let it slowly shimmer across. */
.bg-custom-text-gradient,
.text-transparent.bg-clip-text {
  background: linear-gradient(100deg, #45BFFC 0%, #7cc3f5 40%, #D8E066 75%, #45BFFC 100%) !important;
  background-size: 220% auto !important;
  -webkit-background-clip: text !important;
          background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: textShimmer 7s linear infinite;
}
@keyframes textShimmer {
  to { background-position: 220% center; }
}

/* ---------- 3. Glowing gradient CTAs with a shine sweep ------------------- */
.bg-custom-button,
[class*="bg-[#008BD0]"]:not([class*="border-blue-500"]) {
  position: relative;
  overflow: hidden;
  background: linear-gradient(134deg, #38bdf8 -25%, #0EA5E9 45%, #0369A1 130%) !important;
  background-size: 180% 180% !important;
  box-shadow: 0 10px 26px -10px rgba(14, 165, 233, 0.55), 0 1px 0 rgba(255, 255, 255, 0.12) inset !important;
  transition: box-shadow 0.25s var(--ease), transform 0.15s var(--ease), background-position 0.5s var(--ease) !important;
}
.bg-custom-button, .bg-custom-button *,
[class*="bg-[#008BD0]"]:not([class*="border-blue-500"]),
[class*="bg-[#008BD0]"]:not([class*="border-blue-500"]) * {
  color: #ffffff !important;
}
/* Shine that sweeps across on hover */
.bg-custom-button::before,
[class*="bg-[#008BD0]"]:not([class*="border-blue-500"])::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s var(--ease);
  pointer-events: none;
}
.bg-custom-button:hover,
[class*="bg-[#008BD0]"]:not([class*="border-blue-500"]):hover {
  background-position: 100% 100% !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 34px -10px rgba(14, 165, 233, 0.7), 0 1px 0 rgba(255, 255, 255, 0.2) inset !important;
}
.bg-custom-button:hover::before,
[class*="bg-[#008BD0]"]:not([class*="border-blue-500"]):hover::before {
  left: 130%;
}
.bg-custom-button:active,
[class*="bg-[#008BD0]"]:not([class*="border-blue-500"]):active {
  transform: translateY(0) scale(0.98) !important;
}

/* Ghost / outline buttons — add a soft accent glow on hover */
a.border.border-white:hover,
a[href="#book"].border:hover {
  border-color: var(--accent-fg) !important;
  box-shadow: 0 0 0 3px var(--accent-bg) !important;
}

/* ---------- 4. Cards: glow + lift on hover -------------------------------- */
.feature-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(140, 199, 246, 0.4) !important;
  box-shadow: 0 18px 40px -20px rgba(41, 169, 225, 0.45), 0 0 0 1px rgba(140, 199, 246, 0.14) !important;
}
.glass-card {
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.glass-card:hover {
  border-color: rgba(140, 199, 246, 0.28) !important;
  box-shadow: 0 20px 50px -28px rgba(41, 169, 225, 0.4) !important;
}
.testimonial-card {
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(140, 199, 246, 0.3) !important;
  box-shadow: 0 16px 36px -22px rgba(41, 169, 225, 0.5);
}
.logo-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px -16px rgba(0, 0, 0, 0.5);
}

/* ---------- 5. Animated highlight on the Pricing "Pro" card --------------- */
[class*="border-blue-500"] {
  position: relative;
  box-shadow: 0 0 44px -18px rgba(41, 169, 225, 0.55) !important;
  animation: proGlow 4.5s ease-in-out infinite;
}
@keyframes proGlow {
  0%, 100% { box-shadow: 0 0 40px -20px rgba(41, 169, 225, 0.45); }
  50%      { box-shadow: 0 0 60px -14px rgba(41, 169, 225, 0.7); }
}

/* ---------- 6. Breathing offer ribbon + eyebrow sheen -------------------- */
.offer-ribbon {
  animation: ribbonPulse 3.2s ease-in-out infinite;
}
@keyframes ribbonPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(140, 199, 246, 0); }
  50%      { box-shadow: 0 0 0 5px rgba(140, 199, 246, 0.12); }
}
.offer-ribbon svg { animation: ribbonStar 3.2s ease-in-out infinite; }
@keyframes ribbonStar {
  0%, 100% { transform: rotate(0) scale(1); }
  50%      { transform: rotate(18deg) scale(1.15); }
}

/* Avatar rings get a subtle accent edge */
.avatar-ring { box-shadow: 0 0 0 1px rgba(140, 199, 246, 0.25); }

/* ---------- 8. Hero: benefit checks + floating trust cards --------------- */
.hero-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  background: var(--green-bg);
  color: var(--green-fg);
  box-shadow: 0 0 0 1px rgba(102, 211, 154, 0.28);
}
.hero-check svg { width: 12px; height: 12px; }

/* Slowly floating hero cards (paused for reduced-motion below) */
.hero-float { animation: heroFloat 6s ease-in-out infinite; }
.hero-float--delay { animation-delay: -3s; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float { animation: none !important; }
}

/* ---------- 9. "Steps" vertical timeline -------------------------------- */
.timeline { position: relative; }

/* The connecting spine + a glow that flows down it forever. */
.tl-line {
  position: absolute;
  left: 26px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(140, 199, 246, 0.55) 6%,
    rgba(140, 199, 246, 0.55) 94%,
    transparent 100%);
  overflow: hidden;
}
.tl-line::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  height: 22%;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, #bfe0fb, rgba(41, 169, 225, 0.2), transparent);
  animation: tlFlow 3.6s linear infinite;
}
@keyframes tlFlow {
  0%   { top: -24%; }
  100% { top: 104%; }
}

.tl-item {
  position: relative;
  padding-left: 68px;
  padding-bottom: 26px;
}
.tl-item:last-child { padding-bottom: 0; }

/* Numbered node sitting on the spine, with a soft pulsing halo. */
.tl-node {
  position: absolute;
  left: 26px;
  top: 4px;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(140deg, #38bdf8, #0369A1);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px rgba(140, 199, 246, 0.3),
    0 8px 22px -8px rgba(41, 169, 225, 0.7);
  z-index: 1;
}
.tl-node::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  border: 1px solid rgba(140, 199, 246, 0.5);
  animation: tlPulse 2.6s ease-out infinite;
}
@keyframes tlPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { opacity: 0; }
}

/* Card */
.tl-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.5rem;
  text-align: left;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.tl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(140, 199, 246, 0.4);
  box-shadow: 0 20px 44px -24px rgba(41, 169, 225, 0.55);
}
.tl-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.tl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 9px;
  color: var(--accent-fg);
  background: var(--accent-bg);
  border: 1px solid rgba(140, 199, 246, 0.22);
}
.tl-icon svg { width: 18px; height: 18px; }
.tl-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-fg);
}
.tl-title {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.tl-desc { font-size: 0.9rem; line-height: 1.6; color: var(--muted); margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .tl-line::after, .tl-node::before { animation: none !important; }
  .tl-line::after { display: none; }
}

/* ---------- 10. "Wyoming vs Delaware" versus cards ---------------------- */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 820px) {
  .vs-grid { grid-template-columns: 1fr auto 1fr; gap: 0; }
}

.vs-card {
  position: relative;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.6rem 1.9rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.vs-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.7);
}
.vs-card--featured {
  border-color: rgba(140, 199, 246, 0.45);
  background:
    linear-gradient(180deg, rgba(41, 169, 225, 0.08), rgba(41, 169, 225, 0) 55%),
    var(--surface);
  box-shadow: 0 0 46px -20px rgba(41, 169, 225, 0.55);
  animation: vsGlow 4.5s ease-in-out infinite;
}
@keyframes vsGlow {
  0%, 100% { box-shadow: 0 0 40px -22px rgba(41, 169, 225, 0.45); }
  50%      { box-shadow: 0 0 62px -16px rgba(41, 169, 225, 0.7); }
}
.vs-card--featured:hover { transform: translateY(-6px); }

.vs-ribbon {
  position: absolute;
  top: -0.75rem;
  left: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #04121b;
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  box-shadow: 0 6px 18px -8px rgba(56, 189, 248, 0.8);
}

.vs-top { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.1rem; }
.vs-mono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 13px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.vs-mono--wy { background: linear-gradient(140deg, #38bdf8, #0369A1); box-shadow: 0 10px 24px -12px rgba(56, 189, 248, 0.8); }
.vs-mono--de { background: linear-gradient(140deg, #64748b, #334155); box-shadow: 0 10px 24px -12px rgba(51, 65, 85, 0.9); }
.vs-name { font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1.1; }
.vs-tag { font-size: 0.78rem; color: var(--muted); }

.vs-stats { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.vs-chip {
  font-size: 0.76rem;
  color: var(--muted);
  padding: 0.34rem 0.7rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}
.vs-chip strong { color: var(--ink); font-weight: 700; }
.vs-card--featured .vs-chip { background: var(--accent-bg); border-color: rgba(140, 199, 246, 0.25); }
.vs-card--featured .vs-chip strong { color: var(--accent-fg); }

.vs-list { display: flex; flex-direction: column; gap: 0.7rem; }
.vs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}
.vs-check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  border-radius: 9999px;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--accent-fg);
  background: var(--accent-bg);
}
.vs-list--alt .vs-check { color: #cbd5e1; background: rgba(148, 163, 184, 0.16); }

/* Center VS medallion */
.vs-mid { display: flex; align-items: center; justify-content: center; padding: 0.4rem 0.9rem; }
.vs-orb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 6px var(--bg), 0 10px 30px -12px rgba(0, 0, 0, 0.8);
  position: relative;
}
.vs-orb::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 9999px;
  border: 1px solid rgba(140, 199, 246, 0.4);
  animation: tlPulse 2.8s ease-out infinite;
}

/* Verdict callout */
.vs-verdict {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-align: left;
  margin-top: 1.75rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(140, 199, 246, 0.22);
  background: var(--accent-bg);
}
.vs-verdict svg { width: 22px; height: 22px; flex: 0 0 auto; margin-top: 2px; color: var(--accent-fg); }
.vs-verdict p { font-size: 0.92rem; line-height: 1.6; color: var(--ink); margin: 0; }
.vs-verdict strong { color: var(--accent-fg); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .vs-card--featured, .vs-orb::before { animation: none !important; }
}

/* ---------- 11. Footer upgrade ------------------------------------------ */
/* Pre-footer CTA band */
.footer-cta {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(40rem 20rem at 15% 0%, rgba(41, 169, 225, 0.16), transparent 60%),
    radial-gradient(36rem 18rem at 90% 120%, rgba(96, 92, 220, 0.14), transparent 60%),
    var(--surface);
}
.footer-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}
@media (min-width: 768px) {
  .footer-cta__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-cta__title {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .footer-cta__title { font-size: 2.1rem; } }
.footer-cta__sub { font-size: 0.95rem; color: var(--muted); max-width: 34rem; }
.footer-cta__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; flex: 0 0 auto; }

/* Trustpilot mini badge */
.footer-trust { display: flex; align-items: center; gap: 0.5rem; }
.footer-trust__stars { display: inline-flex; gap: 1px; }
.footer-trust__stars svg { width: 15px; height: 15px; }

/* Footer links — animated underline sweep on hover */
.footer-link {
  position: relative;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--accent-fg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.footer-link:hover { color: var(--ink); }
.footer-link:hover::after { transform: scaleX(1); }

/* Guarantee list */
.footer-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--muted);
}
.footer-guarantee strong { color: var(--ink); font-weight: 600; }
.footer-guarantee__ic {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: var(--green-fg);
  background: var(--green-bg);
  border: 1px solid rgba(102, 211, 154, 0.22);
}
.footer-guarantee__ic svg { width: 16px; height: 16px; }

/* Partner logos strip */
.footer-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding-top: 0.5rem;
  padding-bottom: 2.75rem;
  text-align: center;
}
.footer-partners__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.footer-partners__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem 2.5rem;
}
.footer-partners__logos img {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.7);
  opacity: 0.55;
  transition: filter 0.25s var(--ease), opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-partners__logos img:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: translateY(-2px);
}

/* Back-to-top */
.footer-totop {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}
.footer-totop svg { width: 14px; height: 14px; transition: transform 0.2s var(--ease); }
.footer-totop:hover { color: var(--accent-fg); }
.footer-totop:hover svg { transform: translateY(-3px); }

/* ---------- 12. 10% OFF promo pop-up ------------------------------------ */
.promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(4, 6, 10, 0.72);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.promo-overlay[hidden] { display: none; }
.promo-overlay.is-open { opacity: 1; }

.promo-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  text-align: center;
  padding: 2.5rem 1.75rem 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(140, 199, 246, 0.28);
  background:
    radial-gradient(28rem 14rem at 50% -10%, rgba(41, 169, 225, 0.22), transparent 60%),
    linear-gradient(180deg, #14171d, #0d0f13);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.85), 0 0 60px -22px rgba(41, 169, 225, 0.5);
  transform: translateY(16px) scale(0.96);
  transition: transform 0.4s var(--ease);
  overflow: hidden;
}
.promo-overlay.is-open .promo-card { transform: translateY(0) scale(1); }

.promo-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.promo-close svg { width: 16px; height: 16px; }
.promo-close:hover { color: var(--ink); background: rgba(255, 255, 255, 0.1); }

.promo-gift {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  border-radius: 16px;
  color: var(--accent-fg);
  background: var(--accent-bg);
  border: 1px solid rgba(140, 199, 246, 0.3);
  animation: promoGiftBob 2.8s ease-in-out infinite;
}
.promo-gift svg { width: 30px; height: 30px; }
@keyframes promoGiftBob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-5px) rotate(3deg); }
}

.promo-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-fg);
  margin-bottom: 0.6rem;
}
.promo-headline {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.promo-percent {
  background: linear-gradient(100deg, #45BFFC, #7cc3f5, #D8E066);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.promo-sub { font-size: 0.9rem; line-height: 1.55; color: var(--muted); margin: 0 auto 1.1rem; max-width: 20rem; }
.promo-sub strong { color: var(--ink); font-weight: 600; }

.promo-price {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.15rem;
}
.promo-price__old {
  font-size: 1.05rem;
  color: var(--faint);
  text-decoration: line-through;
}
.promo-price__new {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
}
.promo-price__save {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green-fg);
  background: var(--green-bg);
  border: 1px solid rgba(102, 211, 154, 0.25);
  padding: 0.22rem 0.55rem;
  border-radius: 9999px;
}

.promo-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  margin-bottom: 0.9rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px dashed var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.promo-code:hover { border-color: var(--accent-fg); background: rgba(255, 255, 255, 0.05); }
.promo-code__label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); }
.promo-code__value { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.18em; color: var(--ink); }
.promo-code__copy { margin-left: auto; font-size: 0.72rem; font-weight: 600; color: var(--accent-fg); }
.promo-code.is-copied { border-color: var(--green-fg); }
.promo-code.is-copied .promo-code__copy { color: var(--green-fg); }

.promo-cta {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: linear-gradient(134deg, #38bdf8 -25%, #0EA5E9 45%, #0369A1 130%);
  box-shadow: 0 12px 28px -10px rgba(14, 165, 233, 0.65);
  transition: transform 0.15s var(--ease), box-shadow 0.25s var(--ease);
}
.promo-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(14, 165, 233, 0.8); }

.promo-dismiss {
  display: block;
  width: 100%;
  margin-top: 0.7rem;
  padding: 0.35rem;
  font-size: 0.78rem;
  color: var(--faint);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
.promo-dismiss:hover { color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  .promo-overlay, .promo-card { transition: none; }
  .promo-gift { animation: none; }
}

/* ---------- 13. Floating "island" header -------------------------------- */
[x-cloak] { display: none !important; }

.site-header {
  position: sticky;
  top: 12px;
  z-index: 60;
  width: min(72rem, calc(100% - 24px));
  margin: 12px auto 0;
  /* neutralize the old full-width bar styles */
  background: none !important;
  border: 0 !important;
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
}

.site-header__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 62px;
  padding: 0 0.6rem 0 1.1rem;
  border-radius: 16px;
  background: rgba(16, 19, 25, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px -16px rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
          backdrop-filter: saturate(1.4) blur(14px);
  transition: height 0.3s var(--ease), background-color 0.3s var(--ease),
    border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled .site-header__bar {
  height: 54px;
  background: rgba(11, 13, 17, 0.9);
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.85);
}

/* Brand */
.site-header__brand { display: flex; align-items: center; gap: 0.6rem; flex: 0 0 auto; }
.site-header__brand img { height: 26px; width: auto; }
.site-header__brand span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

/* Center nav pill */
.site-header__nav {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 0.2rem;
  padding: 0.28rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}
@media (min-width: 900px) { .site-header__nav { display: flex; } }
.nav-link {
  padding: 0.42rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav-link:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }

/* Actions */
.site-header__actions { display: flex; align-items: center; gap: 0.5rem; flex: 0 0 auto; }
.nav-cta {
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  white-space: nowrap;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-cta:hover { background: var(--surface-2); border-color: var(--accent-fg); }
@media (max-width: 899px) { .nav-cta { display: none; } }
@media (max-width: 480px) { .site-header__actions .offer-ribbon { display: none; } }

/* Hamburger */
.nav-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: background-color 0.2s var(--ease);
}
.nav-burger:hover { background: rgba(255, 255, 255, 0.07); }
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .nav-burger { display: none; } }

/* Mobile dropdown */
.site-header__mobile {
  margin-top: 8px;
  padding: 0.55rem;
  border-radius: 16px;
  background: rgba(11, 13, 17, 0.95);
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px -18px rgba(0, 0, 0, 0.82);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
.mobile-link {
  display: block;
  padding: 0.72rem 0.9rem;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.mobile-link:hover { color: var(--ink); background: rgba(255, 255, 255, 0.05); }
.mobile-link--cta {
  margin-top: 0.25rem;
  text-align: center;
  font-weight: 600;
  color: var(--ink);
  background: var(--accent-bg);
  border: 1px solid rgba(140, 199, 246, 0.28);
}
.mobile-link--cta:hover { background: rgba(140, 199, 246, 0.2); color: var(--ink); }

/* ---------- 14. Trust / stats bar --------------------------------------- */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 0.5rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; padding: 0.2rem 1.1rem; flex: 1 1 auto; min-width: 120px; }
.stat__num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}
.stat__unit { font-size: 0.8rem; font-weight: 600; color: var(--accent-fg); }
.stat__label { font-size: 0.76rem; color: var(--muted); }
.stat-div { width: 1px; height: 34px; background: var(--line); flex: 0 0 auto; }
@media (max-width: 640px) { .stat-div { display: none; } .stat { min-width: 45%; } }

/* ---------- 15. Countdown timers ---------------------------------------- */
/* In-page offer section */
.offer-countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--red-bg);
  border: 1px solid rgba(230, 110, 110, 0.25);
}
.offer-countdown svg { width: 15px; height: 15px; color: var(--red-fg); }
.offer-countdown__clock {
  font-family: var(--font-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: var(--red-fg);
}

/* Inside the promo popup */
.promo-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.promo-timer svg { width: 15px; height: 15px; color: var(--red-fg); }
.promo-timer__clock {
  font-family: var(--font-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  color: var(--red-fg);
}

/* ---------- 16. Social-proof toast -------------------------------------- */
.sp-toast {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: min(320px, calc(100vw - 36px));
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: rgba(16, 19, 25, 0.94);
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.sp-toast[hidden] { display: none; }
.sp-toast.is-visible { opacity: 1; transform: translateY(0) scale(1); }

.sp-toast__avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, #38bdf8, #0369A1);
}
.sp-toast__body { flex: 1 1 auto; min-width: 0; }
.sp-toast__text { font-size: 0.82rem; line-height: 1.35; color: var(--ink); }
.sp-toast__text strong { font-weight: 600; }
.sp-toast__meta { display: flex; align-items: center; gap: 0.35rem; font-size: 0.68rem; color: var(--faint); margin-top: 0.15rem; }
.sp-toast__dot { width: 6px; height: 6px; border-radius: 9999px; background: var(--green-fg); box-shadow: 0 0 0 3px var(--green-bg); }
.sp-toast__close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  color: var(--faint);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.sp-toast__close svg { width: 14px; height: 14px; }
.sp-toast__close:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }

@media (prefers-reduced-motion: reduce) {
  .sp-toast { transition: none; }
}

/* ---------- 7. Reduced-motion: kill all of the above --------------------- */
@media (prefers-reduced-motion: reduce) {
  .site-bg__aurora, .site-bg__blob, .site-bg__grid,
  .bg-custom-text-gradient, .text-transparent.bg-clip-text,
  [class*="border-blue-500"], .offer-ribbon, .offer-ribbon svg {
    animation: none !important;
  }
  .bg-custom-text-gradient, .text-transparent.bg-clip-text {
    background-position: 0 center !important;
  }
}
