/* ==========================================================================
   SAUCE ESSENTIALS — theme-fresh.css (brand-accurate)
   Per brand guide: Gotham · cyan #00b7de primary · lime + sunset (red→yellow)
   accents · cream daytime base · deep teal for text & dark sections.
   Loads AFTER styles.css and motion.css.
   ========================================================================== */

/* --------------------------------------------------------------------------
   BASE: typography, body
-------------------------------------------------------------------------- */
body {
  font-family: var(--font-display);
  font-weight: 400; /* Gotham Book */
  font-feature-settings: "ss01" on, "kern" on;
}

h1, h2, h3, .h-display {
  font-family: var(--font-display);
  font-weight: 900; /* Gotham Black */
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--sauce-teal-dark);
}
h1, .h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
h2, .h2 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
h3, .h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.h-display { font-weight: 900; text-transform: uppercase; letter-spacing: -0.025em; }

/* Word-stagger inheritance — keep transform behavior, no italic */
[data-split] {
  font-style: normal !important;
  font-weight: inherit;
}
[data-split] .word-inner { font-style: inherit; }

/* Gradient emphasis spans — replace italic Fraunces with brand sunset gradient */
.text-grad {
  background: linear-gradient(120deg, var(--sauce-cyan) 0%, var(--sauce-cyan-deep) 60%, var(--sauce-teal) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.text-grad-gold {
  background: linear-gradient(120deg, var(--sauce-yellow) 0%, var(--sauce-red) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.text-grad-peach {
  background: linear-gradient(120deg, var(--sauce-red) 0%, var(--sauce-yellow) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.text-grad-lime {
  background: linear-gradient(120deg, var(--sauce-lime-bright) 0%, var(--sauce-lime) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.lead { color: var(--text-soft); font-weight: 400; line-height: 1.55; }

/* --------------------------------------------------------------------------
   EYEBROW — brand-accent pill
-------------------------------------------------------------------------- */
.eyebrow,
.age-gate-eyebrow {
  font-family: var(--font-display);
  font-weight: 700; /* Gotham Bold */
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sauce-cyan-deep) !important;
  border: 1px solid var(--border-pop) !important;
  background: var(--sauce-cyan-soft) !important;
}
.eyebrow::before,
.age-gate-eyebrow .dot {
  background: var(--sauce-cyan) !important;
  box-shadow: 0 0 14px rgba(0,183,222,0.7) !important;
}

/* ==========================================================================
   PAGE TRANSITIONS — fade overlay on internal link clicks
   ========================================================================== */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 99996;
  background: var(--sauce-teal-dark);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s cubic-bezier(.22,1,.36,1), visibility .35s;
}
.page-transition.is-active {
  opacity: 1;
  visibility: visible;
}
.page-transition.is-fading-in {
  /* When entering a new page, fade the overlay back out */
  opacity: 0;
  transition: opacity .55s cubic-bezier(.22,1,.36,1) .05s, visibility .55s;
}
@media (prefers-reduced-motion: reduce) {
  .page-transition { display: none; }
}

/* ==========================================================================
   SECTION PARALLAX — apply translateY based on --py (set by JS)
   ========================================================================== */
[data-section-parallax] > .ambient-bg img,
[data-section-parallax] > .scroll-story-bg,
[data-section-parallax] > .manifesto-bg img {
  transform: translateY(var(--py, 0));
  will-change: transform;
}
.manifesto-bg img {
  transform: translateY(var(--py, 0));
  will-change: transform;
}

/* Tile parallax — community tiles drift on scroll */
[data-tile-parallax] {
  transform: translateY(var(--tpy, 0));
  will-change: transform;
  transition: transform .15s linear;
}

/* ==========================================================================
   IMAGE HOVER POLISH — universal smooth zoom + warmth
   ========================================================================== */
.post-card-media img,
.blog-featured-media img,
.community-v3-tile img,
.community-tile img,
.lineup-card-media img,
.product-card-img__bg,
.territory-card-bg {
  filter: saturate(0.98) contrast(1.02);
  transition: transform 1s cubic-bezier(.22,1,.36,1), filter .55s ease;
}
.post-card:hover .post-card-media img,
.blog-featured-card:hover .blog-featured-media img,
.community-v3-tile:hover img,
.community-tile:hover img,
.lineup-card:hover .lineup-card-media img,
.product-card-img:hover .product-card-img__bg,
.territory-card:hover .territory-card-bg {
  filter: saturate(1.08) contrast(1.04);
}

/* ==========================================================================
   HERO ATMOSPHERIC ACCENTS — subtle smoke-wisp depth behind text (CSS only)
   ========================================================================== */
.hero3::before,
.hero3::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero3::before {
  width: 360px; height: 360px;
  top: 18%; left: 28%;
  background: radial-gradient(circle, rgba(0,183,222,0.30), transparent 70%);
  animation: heroDrift1 18s ease-in-out infinite alternate;
}
.hero3::after {
  width: 320px; height: 320px;
  bottom: 8%; left: 8%;
  background: radial-gradient(circle, rgba(238,225,117,0.30), transparent 70%);
  animation: heroDrift2 22s ease-in-out infinite alternate;
}
@keyframes heroDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.15); }
}
@keyframes heroDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-30px, -40px) scale(1.10); }
}

/* ==========================================================================
   GLOBAL HEADLINE WRAPPING — balance line lengths so headlines don't
   stack each word on its own line. Modern CSS, falls back gracefully.
   ========================================================================== */
h1,
.h-display,
.section-h2,
.hero3-h1,
.post-title,
.blog-hero-title,
.blog-featured-title,
.manifesto-h2,
.verify-cta-h2,
.closing-h2,
.oneshow-h2,
.scroll-story-text h2,
[data-kinetic],
[data-split] {
  text-wrap: balance;          /* Chrome 114+, Safari 17.5+ */
  -webkit-hyphens: manual;
  hyphens: manual;
  overflow-wrap: normal;
  word-break: normal;
}

/* H1s on stub pages (about, blog stub, careers, etc.) — give them sane
   word spacing so they don't break each word onto its own line. */
.stub-page h1 {
  max-width: 18ch;
  margin-inline: auto;
  text-wrap: balance;
}

/* ==========================================================================
   CUSTOM CURSOR — desktop only, magnetic + intent-aware
   ========================================================================== */
.has-sauce-cursor,
.has-sauce-cursor a,
.has-sauce-cursor button,
.has-sauce-cursor .btn,
.has-sauce-cursor .btn-x,
.has-sauce-cursor [role="button"],
.has-sauce-cursor input,
.has-sauce-cursor textarea,
.has-sauce-cursor select { cursor: none; }

/* Cursor uses solid brand color — works on both cream and dark sections.
   No mix-blend-mode (it made the cursor near-invisible on cream backgrounds). */
.sauce-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 100000;
  will-change: transform;
}
.sauce-cursor.is-out { opacity: 0; transition: opacity .25s ease; }
.sauce-cursor-dot {
  position: absolute;
  top: -4px; left: -4px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sauce-teal-dark);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.85), 0 2px 6px rgba(0,0,0,0.18);
  transition: transform .25s var(--ease-bounce), opacity .25s ease, background-color .25s ease;
}
.sauce-cursor-ring {
  position: absolute;
  top: -18px; left: -18px;
  width: 36px; height: 36px;
  border: 1.5px solid var(--sauce-teal-dark);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: width .35s var(--ease), height .35s var(--ease),
              top .35s var(--ease), left .35s var(--ease),
              border-color .25s ease, background-color .25s ease,
              opacity .25s ease;
  will-change: transform;
}
.sauce-cursor-label {
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: white;
  background: var(--sauce-teal-dark);
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .25s ease, transform .25s var(--ease-bounce);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

/* Intent — over a link */
.sauce-cursor.is-link .sauce-cursor-ring {
  width: 50px; height: 50px;
  top: -25px; left: -25px;
  background: rgba(0,183,222,0.18);
  border-color: var(--sauce-cyan);
}
.sauce-cursor.is-link .sauce-cursor-dot {
  transform: scale(0);
}

/* Intent — over a card / product (with optional label) */
.sauce-cursor.is-card .sauce-cursor-ring {
  width: 76px; height: 76px;
  top: -38px; left: -38px;
  background: rgba(0,183,222,0.20);
  border-color: var(--sauce-cyan-deep);
  border-width: 2px;
}
.sauce-cursor.is-card .sauce-cursor-dot {
  transform: scale(1.4);
  background: var(--sauce-cyan-deep);
}
.sauce-cursor.is-card .sauce-cursor-label:not(:empty) {
  opacity: 1;
  transform: scale(1);
}

/* Intent — over editable text */
.sauce-cursor.is-text .sauce-cursor-ring { display: none; }
.sauce-cursor.is-text .sauce-cursor-dot {
  width: 2px; height: 22px;
  border-radius: 0;
  top: -11px; left: -1px;
  background: var(--sauce-teal-dark);
  box-shadow: none;
  animation: cursorBlink 1s steps(2) infinite;
}

/* On dark sections, flip cursor to light — JS toggles is-on-dark class */
.sauce-cursor.is-on-dark .sauce-cursor-dot {
  background: white;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.4);
}
.sauce-cursor.is-on-dark .sauce-cursor-ring {
  border-color: white;
}
@keyframes cursorBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

/* Pressed — squish */
.sauce-cursor.is-down .sauce-cursor-ring { transform: scale(0.7); }

/* Hide on touch / coarse pointer */
@media (hover: none), (pointer: coarse) {
  .sauce-cursor { display: none; }
  .has-sauce-cursor,
  .has-sauce-cursor a,
  .has-sauce-cursor button { cursor: auto; }
}

/* ==========================================================================
   KINETIC TYPOGRAPHY — chars rise + rotate into place
   ========================================================================== */
[data-kinetic] {
  --line-h: 0.92em;
  display: block;
}
/* Word wrapper — keeps all chars of a word together so wrapping happens at
   word boundaries, not character boundaries. Added right padding so italic
   glyph spurs (P, y, f, etc.) don't get clipped at the word's right edge. */
[data-kinetic] .k-word {
  display: inline-block;
  white-space: nowrap;
  vertical-align: baseline;
  padding-right: 0.06em;     /* breathing room for italic P/Y descenders */
}
[data-kinetic] .k-word:last-child { padding-right: 0; }

/* The line-mask wrapper is what enables the "chars rise from below" reveal.
   We use clip-path instead of overflow:hidden so glyphs that extend past the
   line bounding box (italic ascenders/descenders, accents, ligatures) aren't
   shaved off horizontally — they only get masked vertically while the entry
   animation runs, then the mask is removed. */
[data-kinetic] .k-line {
  display: inline-block;
  vertical-align: baseline;
  line-height: var(--line-h);
  padding-top: 0.08em;
  padding-bottom: 0.22em;
  padding-right: 0.04em;
  margin-top: -0.08em;
  margin-bottom: -0.22em;
  /* Vertical-only clip during entry — preserves horizontal glyph extensions */
  clip-path: inset(-2% -10% 0 -10%);
}
[data-kinetic].is-revealed .k-line {
  /* After the entrance plays, drop the mask entirely so nothing can clip
     the floating-motion or hover-ripple animations either. */
  clip-path: none;
}
[data-kinetic] .k-char {
  display: inline-block;
  will-change: transform, opacity;
  transform-origin: 50% 100%;
  transition: transform .35s cubic-bezier(.18, 1.4, .32, 1);
}
/* Kinetic container is the canvas for the shine sweep. */
[data-kinetic] {
  position: relative;
  isolation: isolate;
}
/* Shine sweep — diagonal highlight that travels across the headline once
   the kinetic entry has completed. Uses mix-blend-mode for legibility on
   any background. */
[data-kinetic] .k-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.65) 49%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.65) 51%,
    transparent 60%,
    transparent 100%
  );
  background-size: 250% 100%;
  background-position: -120% 0;
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity .25s ease;
}
[data-kinetic].k-shine-go .k-shine {
  opacity: 1;
  animation: kShineSweep 1.6s cubic-bezier(.4, 0, .2, 1) forwards;
}
@keyframes kShineSweep {
  0%   { background-position: -120% 0; }
  100% { background-position: 220% 0; }
}
/* On dark headlines (white text on dark bg), use lighten blend instead */
.scroll-story [data-kinetic] .k-shine,
.verifier-demo [data-kinetic] .k-shine,
.oneshow [data-kinetic] .k-shine,
.closing [data-kinetic] .k-shine {
  mix-blend-mode: screen;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 42%,
    rgba(132, 232, 224, 0.55) 49%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(238, 225, 117, 0.55) 51%,
    transparent 58%,
    transparent 100%
  );
  background-size: 250% 100%;
}

/* ==========================================================================
   SCROLL STORY — sticky pinned section, stage cross-fades on scroll
   ========================================================================== */
.scroll-story {
  position: relative;
  height: 380vh;
  background: var(--sauce-teal-dark);
  color: white;
}
.scroll-story-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.scroll-story-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.scroll-story-stage {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
  background-size: cover;
  background-position: center;
}
.scroll-story-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 80% at 50% 50%, rgba(6,40,59,0.40) 30%, rgba(6,40,59,0.92) 100%);
}
.scroll-story-stage.is-active { opacity: 1; }

.scroll-story-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 80px) clamp(40px, 6vh, 60px);
}
.scroll-story-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sauce-yellow);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.scroll-story-eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--sauce-yellow);
}
.scroll-story-texts {
  position: relative;
  align-self: stretch;
  width: 100%;
  min-height: clamp(300px, 50vh, 520px);
  /* No ch-based max-width here — it would be calculated in body-font scope
     (~16px) and pinch the giant H2 inside. The H2 has its own max-width
     in its own font scope, which clamps appropriately. */
}
.scroll-story-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .9s cubic-bezier(.4, 0, .2, 1),
    transform 1.05s cubic-bezier(.22, 1, .36, 1),
    filter .9s ease;
  filter: blur(8px);
  pointer-events: none;
}
.scroll-story-text.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  pointer-events: auto;
}
.scroll-story-chapter {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sauce-cyan, #84e8e0);
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(132, 232, 224, 0.32);
  border-radius: 99px;
  align-self: flex-start;
  background: rgba(132, 232, 224, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.scroll-story-text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: white;
  margin: 0;
  /* Cap with both ch (for typographic balance) and a hard rem ceiling so
     the H2 can never overflow the column on wide screens. */
  max-width: min(14ch, 56rem);
  text-wrap: balance;
  padding-right: 0.06em;   /* breathing room for italic glyphs */
}
.scroll-story-text h2 em {
  font-style: italic;
  font-weight: 900;
  color: var(--sauce-yellow);
  display: inline-block;
}
.scroll-story-text p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  text-wrap: balance;
}
.scroll-story-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.scroll-story-labels {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  flex-wrap: wrap;
}
.scroll-story-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color .35s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.scroll-story-label .num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.scroll-story-label.is-active { color: white; }
.scroll-story-label.is-active .num { color: var(--sauce-yellow); }

.scroll-story-progress {
  position: absolute;
  top: clamp(80px, 12vh, 140px);
  bottom: clamp(40px, 6vh, 60px);
  right: clamp(20px, 5vw, 80px);
  width: 1.5px;
  background: rgba(255,255,255,0.10);
  border-radius: 2px;
  z-index: 3;
  overflow: hidden;
}
.scroll-story-progress > .fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--sauce-cyan), var(--sauce-yellow));
  transform-origin: top;
  transform: scaleY(0);
  transition: transform .15s linear;
}

@media (max-width: 880px) {
  .scroll-story { height: 360vh; }
  .scroll-story-pin h2,
  .scroll-story-text h2 { font-size: clamp(2.4rem, 12vw, 4.4rem); }
  .scroll-story-progress { display: none; }
  .scroll-story-labels { gap: 14px; }
  .scroll-story-label { font-size: 11px; }
  .scroll-story-text p { font-size: 15px; }
  .scroll-story-texts { min-height: clamp(240px, 56vh, 460px); }
}

/* (Scroll-hue feature removed — applying `filter` to the body broke
   `position: fixed` for the preloader, age gate, and custom cursor.
   Filters create a containing block, so fixed children get anchored to
   the body rather than the viewport. Reinstate later only by applying
   the filter to specific non-fixed-parent containers.) */

/* ==========================================================================
   HOMEPAGE V3 — Complete editorial rebuild
   ========================================================================== */

/* ---- Shared editorial primitives ------------------------------------------ */
.section-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sauce-cyan-deep);
  margin-bottom: 18px;
}
.section-num::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--sauce-cyan);
}
.section-h2 {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  font-size: clamp(2.4rem, 5.4vw, 4.8rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.035em !important;
  text-transform: uppercase !important;
  color: var(--sauce-teal-dark) !important;
  margin-bottom: 18px;
  max-width: 22ch;
  text-wrap: balance;
}
.section-h2 em {
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--sauce-cyan-deep);
}
/* If kinetic chars inherit a transparent fill from a gradient-clip parent,
   reset to currentColor so they're never invisible */
[data-kinetic] em .k-char,
[data-kinetic] .text-grad .k-char,
[data-kinetic] .text-grad-peach .k-char,
[data-kinetic] .text-grad-gold .k-char {
  color: inherit;
  -webkit-text-fill-color: currentColor;
}
.section-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-mute);
  max-width: 56ch;
  line-height: 1.55;
}

/* Editorial button system (.btn-x) — more refined than old .btn */
.btn-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  position: relative;
  overflow: hidden;
}
.btn-x .btn-x-arrow {
  font-family: var(--font-body);
  font-weight: 400;
  transition: transform .35s var(--ease);
}
.btn-x:hover .btn-x-arrow { transform: translateX(4px); }
.btn-x-lg { padding: 20px 36px; font-size: 15px; }

.btn-x-primary {
  background: var(--sauce-teal-dark);
  color: white;
}
.btn-x-primary:hover {
  background: var(--sauce-cyan-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(6,40,59,0.30);
}
.btn-x-ghost {
  background: transparent;
  color: var(--sauce-teal-dark);
  border-color: var(--sauce-teal-dark);
}
.btn-x-ghost:hover {
  background: var(--sauce-teal-dark);
  color: white;
  transform: translateY(-2px);
}
.btn-x-dark {
  background: var(--sauce-teal-dark);
  color: white;
}
.btn-x-dark:hover {
  background: var(--sauce-cyan);
  color: var(--sauce-teal-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO V3 — Editorial split, massive type, product bleeding off
   ========================================================================== */
.hero3 {
  position: relative;
  min-height: 100vh;
  padding: 110px 0 0;
  overflow: hidden;
  background: var(--bg);
}
.hero3-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero3-halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.hero3-halo.halo-cyan   { width: 540px; height: 540px; top: 10%; left: 35%; background: radial-gradient(circle, rgba(0,183,222,0.30), transparent 70%); animation: heroHalo 22s ease-in-out infinite alternate; }
.hero3-halo.halo-yellow { width: 420px; height: 420px; bottom: 15%; right: -8%; background: radial-gradient(circle, rgba(238,225,117,0.36), transparent 70%); animation: heroHalo 26s -8s ease-in-out infinite alternate; }
.hero3-halo.halo-lime   { width: 360px; height: 360px; top: 60%; left: -8%; background: radial-gradient(circle, rgba(27,167,24,0.22), transparent 70%); animation: heroHalo 24s -12s ease-in-out infinite alternate; }

.hero3-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 280px);
}

/* Meta row */
.hero3-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--surface);
  margin-bottom: 28px;
}
.hero3-meta-tick {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sauce-lime);
  box-shadow: 0 0 12px var(--sauce-lime);
  animation: livePulse 1.6s ease-in-out infinite;
}
.hero3-meta-sep { color: var(--text-faint); margin: 0 4px; }
.hero3-meta-soon { color: var(--sauce-red); font-weight: 700; }

/* Massive headline */
.hero3-h1 {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  /* Cap kept at 7.2rem — fits comfortably with breathing room at the right
     edge for italic glyph spurs at column widths down to ~520px. */
  font-size: clamp(3.2rem, 7.6vw, 7.2rem) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.045em !important;
  text-transform: uppercase !important;
  color: var(--sauce-teal-dark) !important;
  margin: 0 0 28px;
  /* Allow italic glyphs that extend past the parent column to be visible */
  padding-right: 0.04em;
}
/* Italic words use SOLID brand colors instead of background-clip gradients —
   gradient-clip-text doesn't extend to wrapped child spans, so kinetic-type
   chars inside an <em> would render invisible. Solid colors are also bolder
   at this giant scale. */
.hero3-h1 em {
  font-style: italic;
  font-weight: 900;
  color: var(--sauce-cyan-deep);
}
.hero3-h1 .hero3-line {
  display: block;
  /* Keep each line as a single word-wrap unit so "FROM THE" can't break to
     two lines (the design rhythm depends on 4 lines, not 6). */
  white-space: nowrap;
}
.hero3-h1 .hero3-line-2 em {
  color: var(--sauce-red);
}
/* If kinetic-type wrapping is applied, ensure chars carry the parent color */
.hero3-h1 em .k-char { color: inherit; -webkit-text-fill-color: currentColor; }

.hero3-tagline {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 50ch;
  margin: 0 0 36px;
}
.hero3-tagline-strong { color: var(--sauce-teal-dark); font-weight: 700; }

.hero3-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Scroll cue + line styles defined further below at .hero3-scroll (fixed-position version) */

/* Product visual */
.hero3-visual {
  position: relative;
  height: clamp(420px, 62vh, 640px);
}
.hero3-product {
  position: absolute;
  inset: 0;
  width: 130%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 30px 60px rgba(6,40,59,0.30));
  transform: translate(var(--tx, 0), var(--ty, 0));
  transition: transform .8s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.hero3-product-badge {
  position: absolute;
  bottom: 12%;
  left: -8%;
  z-index: 2;
  background: var(--sauce-teal-dark);
  color: white;
  padding: 18px 22px;
  border-radius: var(--r-md);
  box-shadow: 0 20px 50px rgba(6,40,59,0.28);
  min-width: 200px;
  transform: translate(var(--tx, 0), var(--ty, 0));
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.hero3-product-badge .badge-line {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  opacity: 0.65;
}
.hero3-product-badge .badge-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 4px 0;
}
.hero3-product-badge .badge-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  opacity: 0.85;
}

.hero3-chip {
  position: absolute;
  z-index: 3;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 14px 32px rgba(6,40,59,0.14);
  transform: translate(var(--tx, 0), var(--ty, 0));
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.hero3-chip strong {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero3-chip .chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sauce-lime);
  box-shadow: 0 0 10px rgba(27,167,24,0.7);
  animation: livePulse 1.5s ease-in-out infinite;
}
.hero3-chip-1 { top: 12%; right: 35%; animation: chipBob 5s ease-in-out infinite; }
.hero3-chip-2 { top: 45%; right: -2%; animation: chipBob 6s -2s ease-in-out infinite; }

/* Stats strip */
.hero3-stats {
  position: relative;
  z-index: 2;
  margin-top: clamp(36px, 5vw, 68px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.hero3-stat { flex: 1; min-width: 0; }
.hero3-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--sauce-teal-dark);
}
.hero3-stat-lbl {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
}
.hero3-stat-acc { color: var(--sauce-red); font-weight: 600; }
.hero3-stat-sep {
  width: 1px;
  height: 50px;
  background: var(--border);
}

@media (max-width: 880px) {
  .hero3 { padding: 90px 0 0; }
  .hero3-grid { grid-template-columns: 1fr; gap: 24px; min-height: auto; }
  .hero3-visual { height: 80vw; max-height: 500px; }
  .hero3-product { width: 110%; object-position: center; }
  .hero3-product-badge { left: 6%; bottom: -4%; padding: 14px 16px; min-width: 0; }
  .hero3-product-badge .badge-name { font-size: 20px; }
  .hero3-chip { padding: 8px 12px; font-size: 10px; }
  .hero3-chip-1 { top: 6%; right: 4%; }
  .hero3-chip-2 { display: none; }
  .hero3-scroll { display: none; }
  .hero3-stats { flex-wrap: wrap; gap: 16px; padding: 22px 0; }
  .hero3-stat { flex: 1 1 calc(50% - 16px); }
  .hero3-stat-sep { display: none; }
}

/* ==========================================================================
   BRAND MARQUEE (full-width below hero)
   ========================================================================== */
.brand-marquee {
  background: var(--sauce-teal-dark);
  color: white;
  padding: 28px 0;
  overflow: hidden;
}
.brand-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
  width: max-content;
  animation: marqueeMove 36s linear infinite;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 52px);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bm-dot { color: var(--sauce-yellow); font-size: 0.55em; }
.bm-word { color: white; transition: color .3s var(--ease); }
.bm-word:nth-child(8n+1) { color: var(--sauce-cyan); }
.bm-word:nth-child(12n+5) { color: var(--sauce-yellow); }

/* ==========================================================================
   MANIFESTO — Full-bleed typographic poster
   ========================================================================== */
.manifesto {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--sauce-teal-dark);
  color: white;
  overflow: hidden;
}
.manifesto-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.manifesto-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: grayscale(0.3) saturate(1.2);
}
.manifesto-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(6,40,59,0.4) 30%, rgba(6,40,59,0.85) 100%),
    linear-gradient(180deg, rgba(6,40,59,0.6), rgba(6,40,59,0.95));
}
.manifesto-inner { position: relative; z-index: 1; }
.manifesto-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sauce-yellow);
  padding: 8px 16px;
  border: 1px solid rgba(238,225,117,0.4);
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.manifesto-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 32px;
  max-width: 18ch;
  text-wrap: balance;
}
.manifesto-h2 em {
  font-style: italic;
  font-weight: 900;
  color: var(--sauce-yellow);
}
.manifesto-body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 64ch;
  margin-bottom: 56px;
}
.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 36px;
}
@media (max-width: 880px) {
  .manifesto-pillars { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (max-width: 480px) {
  .manifesto-pillars { grid-template-columns: 1fr; }
}
.pillar { color: white; }
.pillar-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sauce-cyan);
  margin-bottom: 12px;
}
.pillar-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.pillar-text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
}

/* ==========================================================================
   VERIFIER DEMO — Interactive scratch card showcase
   Full-bleed dark band with a left-side text column and a right-side
   interactive scratch-off pack. Replaces the static manifesto.
   ========================================================================== */
.verifier-demo {
  position: relative;
  padding: clamp(90px, 11vw, 160px) 0;
  background:
    radial-gradient(120% 70% at 80% -10%, rgba(132, 232, 224, 0.10) 0%, transparent 60%),
    radial-gradient(80% 60% at -10% 100%, rgba(238, 225, 117, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #042532 0%, #06283b 60%, #052436 100%);
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.verifier-demo-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.verifier-demo-glow .vd-glow {
  position: absolute;
  display: block;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
}
.vd-glow-cyan {
  top: -180px; right: -160px;
  background: radial-gradient(closest-side, rgba(132, 232, 224, 0.55), transparent 70%);
}
.vd-glow-yellow {
  bottom: -200px; left: -180px;
  background: radial-gradient(closest-side, rgba(238, 225, 117, 0.40), transparent 70%);
}
.verifier-demo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 980px) {
  .verifier-demo-grid { grid-template-columns: 1fr; gap: clamp(50px, 7vw, 80px); }
}

.verifier-demo-text .section-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sauce-cyan, #84e8e0);
  margin-bottom: 20px;
}
.verifier-demo-text .section-num::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--sauce-cyan, #84e8e0);
}
.verifier-demo-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 26px;
  max-width: 18ch;
  text-wrap: balance;
}
.verifier-demo-h2 em {
  font-style: italic;
  font-weight: 900;
  display: inline-block;
}
.verifier-demo-h2 .text-grad {
  color: var(--sauce-cyan, #84e8e0);
}
.verifier-demo-h2 .text-grad-peach {
  color: var(--sauce-yellow);
}
.verifier-demo-lede {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.80);
  max-width: 50ch;
  margin: 0 0 36px;
  text-wrap: balance;
}
.verifier-demo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 0 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.vd-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 6px;
}
.vd-stat-num span {
  font-size: 0.55em;
  color: var(--sauce-cyan, #84e8e0);
  margin-left: 1px;
  font-weight: 700;
}
.vd-stat-lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 540px) {
  .verifier-demo-stats { grid-template-columns: 1fr; gap: 16px; padding: 20px 0; }
}
.verifier-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ----- The scratch card itself ---------------------------------------- */
.verifier-demo-visual {
  position: relative;
  perspective: 1400px;
}
.scratch-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 5 / 7.5;
  border-radius: 22px;
  background: linear-gradient(155deg, #0a3a52 0%, #052437 65%, #03192a 100%);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 1px 0 rgba(255, 255, 255, 0.10) inset;
  cursor: grab;
  outline: none;
  transform-style: preserve-3d;
  transform: rotateX(var(--scry-x, 4deg)) rotateY(var(--scry-y, -6deg));
  transition: transform .8s cubic-bezier(.22, 1, .36, 1), box-shadow .5s ease;
}
.scratch-card:focus-visible {
  box-shadow:
    0 0 0 3px var(--sauce-yellow),
    0 40px 80px -30px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.scratch-card:hover { transform: rotateX(0deg) rotateY(0deg); }
.scratch-card.is-verified {
  box-shadow:
    0 40px 80px -30px rgba(132, 232, 224, 0.45),
    0 0 0 1px rgba(132, 232, 224, 0.30) inset,
    0 1px 0 rgba(255, 255, 255, 0.10) inset;
}
.scratch-card-pack {
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 30%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.014) 0 2px,
      transparent 2px 6px
    ),
    linear-gradient(180deg, #0d4760 0%, #082f44 70%, #051e2c 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.scratch-card-pack::before {
  /* Subtle holographic shimmer on the pack */
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 200deg at 50% 50%,
    transparent 0deg,
    rgba(132, 232, 224, 0.10) 60deg,
    transparent 120deg,
    rgba(238, 225, 117, 0.07) 220deg,
    transparent 280deg,
    rgba(132, 232, 224, 0.05) 340deg,
    transparent 360deg
  );
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: scratchShimmer 12s linear infinite;
}
@keyframes scratchShimmer {
  to { transform: rotate(360deg); }
}
.scratch-card-pack-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  z-index: 1;
}
.scratch-card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--sauce-yellow);
  color: var(--sauce-teal-dark);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0;
}
.scratch-card-pack-line { flex: 1; }
.scratch-card-pack-mid {
  align-self: center;
  position: relative;
  z-index: 1;
  text-align: center;
}
.scratch-card-pack-strain {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.02em;
  color: white;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}
.scratch-card-pack-batch {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.scratch-card-pack-batch strong {
  color: var(--sauce-cyan, #84e8e0);
  font-weight: 600;
}

/* The reveal panel — what's UNDER the silver. Positioned as the bottom band. */
.scratch-card-reveal {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(132, 232, 224, 0.22);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  min-height: 110px;
  justify-content: center;
}
.scratch-card-reveal-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--sauce-cyan, #84e8e0);
}
.scratch-card-reveal-code {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.8vw, 28px);
  letter-spacing: 0.04em;
  color: white;
}
.scratch-card-reveal-code strong {
  color: var(--sauce-yellow);
  font-weight: 900;
}
.scratch-card-reveal-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

/* The silver coating layer — sits on top of the reveal, gets erased by canvas */
.scratch-card-silver {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  cursor: grab;
  transition: opacity .6s ease;
  background: linear-gradient(135deg, #d8dde5 0%, #aab2bd 50%, #e3e7ec 100%);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow:
    0 6px 18px rgba(0,0,0,0.30),
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 -1px 0 rgba(0,0,0,0.10) inset;
}
.scratch-card-silver.is-scratching { cursor: grabbing; }
.scratch-card-silver-grain {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.10) 0 1px,
      transparent 1px 3px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0.06) 0 1px,
      transparent 1px 4px
    );
  pointer-events: none;
}
.scratch-card-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none; /* parent handles pointer events */
  border-radius: 12px;
}
.scratch-card-silver-arrow,
.scratch-card-silver-label,
.scratch-card-silver-sub {
  position: relative;
  z-index: 1;
  pointer-events: none;
  opacity: var(--hint-opacity, 1);
  transition: opacity .25s ease;
}
.scratch-card-silver-arrow {
  font-size: 18px;
  color: #4a525e;
  animation: scratchHint 1.6s ease-in-out infinite;
}
@keyframes scratchHint {
  0%, 100% { transform: translateY(-2px); opacity: 0.6; }
  50% { transform: translateY(2px); opacity: 1; }
}
.scratch-card-silver-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1f2832;
}
.scratch-card-silver-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a626c;
}

/* The success stamp — fades in once verified */
.scratch-card-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7) rotate(-12deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--sauce-cyan, #84e8e0);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  transition: opacity .5s ease, transform .65s cubic-bezier(.22, 1.5, .36, 1);
  filter: drop-shadow(0 4px 12px rgba(132, 232, 224, 0.35));
}
.scratch-card.is-verified .scratch-card-stamp {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(-6deg);
}
.scratch-card-stamp-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.scratch-card-stamp-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* The verify CTA — appears once the silver has been scratched */
.scratch-card-verify {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translate(-50%, 12px);
  background: var(--sauce-cyan, #84e8e0);
  color: var(--sauce-teal-dark, #06283b);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
  border-radius: 99px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 14px 40px -10px rgba(132, 232, 224, 0.55);
  transition: opacity .5s ease, transform .55s cubic-bezier(.22, 1, .36, 1), background .25s ease;
  z-index: 4;
}
.scratch-card.is-scratched .scratch-card-verify {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.scratch-card.is-verifying .scratch-card-verify {
  background: rgba(132, 232, 224, 0.25);
  color: rgba(255,255,255,0.7);
  pointer-events: none;
}
.scratch-card.is-verifying .scratch-card-verify-label::after {
  content: '...';
  display: inline-block;
  margin-left: 4px;
  animation: dotsBlink 1s linear infinite;
}
@keyframes dotsBlink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.scratch-card.is-verified .scratch-card-verify {
  background: var(--sauce-yellow);
  color: var(--sauce-teal-dark, #06283b);
}
.scratch-card.is-verified .scratch-card-verify-label::after { content: ''; }
.scratch-card-verify-arrow {
  font-size: 14px;
  transition: transform .35s var(--ease, cubic-bezier(.22,1,.36,1));
}
.scratch-card-verify:hover .scratch-card-verify-arrow {
  transform: translateX(4px);
}

.verifier-demo-foot {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 48px;
  padding: 0 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.vd-foot-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sauce-cyan, #84e8e0);
  margin-top: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(132, 232, 224, 0.18);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(132,232,224,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(132,232,224,0.06); }
}

/* ==========================================================================
   LINEUP — Horizontal scroll product cards
   ========================================================================== */
.lineup {
  padding: clamp(80px, 10vw, 140px) 0 64px;
  background: var(--bg);
}
.lineup-head { margin-bottom: 48px; max-width: 720px; }
.lineup-rail {
  position: relative;
  margin-left: max(20px, calc((100vw - 1280px) / 2));
}
.lineup-rail-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 24px 24px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--sauce-cyan) transparent;
}
.lineup-rail-track::-webkit-scrollbar { height: 6px; }
.lineup-rail-track::-webkit-scrollbar-thumb { background: var(--sauce-cyan); border-radius: 3px; }
.lineup-rail-track::-webkit-scrollbar-track { background: transparent; }

.lineup-card {
  flex: 0 0 clamp(300px, 36vw, 480px);
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(6,40,59,0.06);
  transition: all .4s cubic-bezier(.22,1,.36,1);
  display: flex;
  flex-direction: column;
}
.lineup-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(6,40,59,0.18), 0 0 0 1px rgba(0,183,222,0.20);
}
.lineup-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(160deg, var(--sauce-cyan-soft), var(--sauce-yellow-soft));
}
.lineup-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.lineup-card:hover .lineup-card-media img { transform: scale(1.06); }
.lineup-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: white;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: linear-gradient(120deg, var(--sauce-yellow), var(--sauce-red));
  box-shadow: 0 4px 14px rgba(235,33,39,0.40);
}
.lineup-card-meta {
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  flex: 1;
}
.lineup-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--sauce-cyan-deep);
  align-self: start;
  padding-top: 6px;
}
.lineup-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.lineup-card-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--sauce-teal-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.lineup-card-desc {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.55;
  margin-bottom: 16px;
}
.lineup-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  grid-column: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sauce-cyan-deep);
  margin-top: auto;
  transition: gap .3s var(--ease);
}
.lineup-card:hover .lineup-card-cta { gap: 10px; }

.lineup-rail-foot {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px 0 0;
  margin-top: 24px;
}
.lineup-rail-progress { flex: 1; height: 1.5px; background: var(--border); border-radius: 2px; overflow: hidden; }
.lineup-rail-progress .bar { height: 100%; width: 30%; background: var(--sauce-cyan-deep); transition: width .3s var(--ease); }
.lineup-rail-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
}

/* ==========================================================================
   SAUCE ONE BIG REVEAL
   ========================================================================== */
.oneshow {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-2);
  overflow: hidden;
}
.oneshow-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.oneshow-glow { position: absolute; border-radius: 50%; filter: blur(100px); }
.oneshow-glow-1 { width: 520px; height: 520px; top: -10%; right: 0; background: radial-gradient(circle, rgba(0,183,222,0.30), transparent 70%); animation: heroHalo 18s ease-in-out infinite alternate; }
.oneshow-glow-2 { width: 420px; height: 420px; bottom: -20%; left: 10%; background: radial-gradient(circle, rgba(238,225,117,0.30), transparent 70%); animation: heroHalo 22s -8s ease-in-out infinite alternate; }

.oneshow-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.oneshow-h2 { color: var(--sauce-teal-dark) !important; font-size: clamp(3rem, 7vw, 6rem) !important; }
.oneshow-h2 em {
  font-style: italic;
  font-weight: 900;
}
.oneshow-sub { margin-bottom: 36px; }

.oneshow-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.oneshow-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: all .3s var(--ease);
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-mute);
}
.oneshow-feature:hover {
  border-color: var(--sauce-cyan);
  background: var(--sauce-cyan-soft);
  transform: translateY(-2px);
}
.oneshow-feature strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  color: var(--sauce-teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.oneshow-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--sauce-teal-dark);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.oneshow-visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.oneshow-visual img {
  position: relative;
  z-index: 1;
  max-width: 75%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(6,40,59,0.30));
  transform: translate(var(--tx, 0), var(--ty, 0));
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.oneshow-rotate-tag {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  color: var(--sauce-cyan-deep);
  opacity: 0.75;
  animation: rotate360 22s linear infinite;
}
@keyframes rotate360 {
  to { transform: rotate(360deg); }
}

@media (max-width: 880px) {
  .oneshow-grid { grid-template-columns: 1fr; }
  .oneshow-features { grid-template-columns: 1fr; }
  .oneshow-rotate-tag { display: none; }
}

/* ==========================================================================
   TERRITORIES — Editorial state cards rail
   ========================================================================== */
.territories {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
}
.territories-rail {
  margin-top: 48px;
  margin-left: max(20px, calc((100vw - 1280px) / 2));
}
.territories-rail-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 24px 24px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--sauce-cyan) transparent;
}
.territories-rail-track::-webkit-scrollbar { height: 6px; }
.territories-rail-track::-webkit-scrollbar-thumb { background: var(--sauce-cyan); border-radius: 3px; }

.territory-card {
  flex: 0 0 clamp(260px, 24vw, 320px);
  height: clamp(380px, 44vw, 460px);
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  isolation: isolate;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.territory-card:hover { transform: translateY(-8px); }
.territory-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
  z-index: 0;
}
.territory-card:hover .territory-card-bg { transform: scale(1.10); }
.territory-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6,40,59,0.85) 100%);
  z-index: 1;
  transition: background .35s var(--ease);
}
.territory-card:hover .territory-card-overlay {
  background: linear-gradient(180deg, rgba(0,183,222,0.10) 0%, rgba(6,40,59,0.92) 100%);
}
.territory-card-content {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 2;
  color: white;
}
.territory-card-abbr {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, white, var(--sauce-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.territory-card-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.territory-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  opacity: 0.78;
  margin-bottom: 12px;
}
.territory-card-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sauce-cyan);
  border-bottom: 1.5px solid var(--sauce-cyan);
  padding-bottom: 2px;
  display: inline-block;
}
.territory-card-soon .territory-card-content,
.territory-card-soon .territory-card-overlay { z-index: 3; }
.territory-card-soon {
  background: linear-gradient(180deg, var(--sauce-teal-dark), var(--sauce-cyan-deep));
  filter: grayscale(0.2);
}
.territory-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.30);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: white;
}

/* ==========================================================================
   QUOTE WALL — Testimonial masonry
   ========================================================================== */
.quote-wall {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-2);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 880px) { .quote-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .quote-grid { grid-template-columns: 1fr; } }

.quote-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-card:nth-child(4n+1) { transform: translateY(20px); }
.quote-card:nth-child(4n+3) { transform: translateY(-10px); }
.quote-card:hover {
  border-color: var(--sauce-cyan);
  box-shadow: 0 24px 40px rgba(6,40,59,0.10);
  transform: translateY(-12px);
}
.quote-card:nth-child(4n+1):hover { transform: translateY(0); }
.quote-card:nth-child(4n+3):hover { transform: translateY(-22px); }

.quote-stars {
  color: var(--sauce-yellow-warm);
  font-size: 14px;
  letter-spacing: 4px;
  filter: drop-shadow(0 0 4px rgba(255,210,63,0.4));
}
.quote-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--sauce-teal-dark);
  letter-spacing: -0.005em;
  margin: 0;
}
.quote-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.quote-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--sauce-cyan-deep);
}
.quote-loc {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  text-transform: uppercase;
}

/* ==========================================================================
   VERIFY CTA — Full-bleed dramatic
   ========================================================================== */
.verify-cta {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--sauce-teal-dark);
  color: white;
  overflow: hidden;
}
.verify-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 30% 30%, rgba(0,183,222,0.30), transparent 70%),
    radial-gradient(50% 40% at 70% 70%, rgba(238,225,117,0.18), transparent 70%);
  pointer-events: none;
}
.verify-cta-inner { position: relative; z-index: 1; text-align: center; }
.verify-cta-num {
  justify-content: center;
  color: var(--sauce-cyan) !important;
  margin-bottom: 24px;
}
.verify-cta-num::before { background: var(--sauce-cyan); }
.verify-cta-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: white;
  margin: 0 auto 28px;
  max-width: 14ch;
  text-wrap: balance;
}
.verify-cta-h2 em {
  font-style: italic;
  background: linear-gradient(115deg, var(--sauce-cyan), var(--sauce-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.verify-cta-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
  margin: 0 auto 40px;
}
.verify-cta .btn-x-primary {
  background: white;
  color: var(--sauce-teal-dark);
}
.verify-cta .btn-x-primary:hover {
  background: var(--sauce-cyan);
  color: white;
}

/* ==========================================================================
   COMMUNITY V3 — IG-style 6-tile grid
   ========================================================================== */
.community-v3 {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
}
.community-v3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 56px;
}
@media (max-width: 880px) { .community-v3-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .community-v3-grid { grid-template-columns: 1fr; gap: 12px; } }

.community-v3-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: block;
}
.community-v3-tile img,
.community-v3-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.community-v3-tile:hover img,
.community-v3-tile:hover video { transform: scale(1.06); }
.community-v3-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,40,59,0.80) 100%);
  pointer-events: none;
}
.community-v3-tile-video {
  border-color: var(--sauce-red);
  box-shadow: 0 0 0 2px rgba(235,33,39,0.20);
}
.community-v3-handle {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: white;
  letter-spacing: 0.02em;
}
.community-v3-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: white;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--sauce-red);
  box-shadow: 0 4px 12px rgba(235,33,39,0.45);
}
.community-v3-tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: white;
  animation: livePulse 1.4s ease-in-out infinite;
}

/* ==========================================================================
   CLOSING — Newsletter dark card
   ========================================================================== */
.closing {
  padding: clamp(60px, 8vw, 120px) 0;
  background: var(--bg);
}
.closing-card {
  background: linear-gradient(135deg, var(--sauce-teal-dark) 0%, var(--sauce-cyan-deep) 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.closing-card::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(238,225,117,0.30), transparent 70%);
  filter: blur(80px);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}
@media (max-width: 880px) {
  .closing-card { grid-template-columns: 1fr; }
}
.closing-card .section-num { color: var(--sauce-yellow) !important; }
.closing-card .section-num::before { background: var(--sauce-yellow); }
.closing-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 14px;
}
.closing-sub {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 50ch;
}
.closing-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.closing-form input {
  flex: 1;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--r-pill);
  padding: 16px 22px;
  color: white;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: all .25s var(--ease);
  min-width: 0;
}
.closing-form input::placeholder { color: rgba(255,255,255,0.55); }
.closing-form input:focus {
  border-color: var(--sauce-yellow);
  background: rgba(255,255,255,0.20);
}
.closing-form .btn-x {
  background: var(--sauce-yellow);
  color: var(--sauce-teal-dark);
  flex-shrink: 0;
}
.closing-form .btn-x:hover {
  background: white;
}

/* ==========================================================================
   BLOG — Index, Post hero, Article body, Related posts
   ========================================================================== */

/* Add an article-width container variant */
.container-md {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

/* ---- Blog index hero -------------------------------------------------- */
.blog-hero {
  padding: clamp(110px, 14vw, 160px) 0 clamp(40px, 6vw, 64px);
}
.blog-hero-title {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.035em !important;
  text-transform: uppercase !important;
  color: var(--sauce-teal-dark) !important;
  margin: 18px 0 22px;
  max-width: 22ch;
  text-wrap: balance;
  padding-right: 0.06em;
}
.blog-hero-title em {
  font-style: italic;
  font-weight: 900;
}
.blog-hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-mute);
  line-height: 1.55;
  max-width: 60ch;
}

/* ---- Featured post card ----------------------------------------------- */
.blog-featured { padding-bottom: clamp(60px, 8vw, 100px); }
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  text-decoration: none;
  color: var(--sauce-teal-dark);
  box-shadow: 0 12px 40px rgba(6,40,59,0.06);
}
.blog-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(6,40,59,0.14), 0 0 0 1px rgba(0,183,222,0.20);
}
@media (max-width: 880px) {
  .blog-featured-card { grid-template-columns: 1fr; gap: 0; }
}
.blog-featured-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--bg-2);
}
.blog-featured-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.blog-featured-card:hover .blog-featured-media img { transform: scale(1.05); }
.blog-featured-pill {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: white;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: linear-gradient(120deg, var(--sauce-cyan), var(--sauce-cyan-deep));
  box-shadow: 0 6px 16px rgba(0,183,222,0.40);
}
.blog-featured-meta {
  padding: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 880px) {
  .blog-featured-meta { padding: 32px; }
}
.blog-featured-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--sauce-teal-dark);
  margin: 16px 0 14px;
}
.blog-featured-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mute);
  margin-bottom: 22px;
}
.blog-featured-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sauce-cyan-deep);
  border-bottom: 1.5px solid var(--sauce-cyan);
  padding-bottom: 3px;
  width: fit-content;
  transition: gap .3s var(--ease);
}
.blog-featured-card:hover .blog-featured-cta { color: var(--sauce-teal-dark); }

/* ---- Blog grid -------------------------------------------------------- */
.blog-grid-section { padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px); }
.blog-grid-head { margin-bottom: 48px; }
.blog-grid-h2 { font-size: clamp(2rem, 4vw, 3.2rem) !important; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}

/* ---- Card (used by both blog grid + post-related) ---------------------- */
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--sauce-teal-dark);
  transition: all .35s cubic-bezier(.22,1,.36,1);
}
.post-card:hover {
  transform: translateY(-6px);
  border-color: var(--sauce-cyan);
  box-shadow: 0 24px 50px rgba(6,40,59,0.10), 0 0 0 1px rgba(0,183,222,0.20);
}
.post-card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-2);
}
.post-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.post-card:hover .post-card-media img { transform: scale(1.06); }
.post-card-meta,
.blog-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 22px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.blog-card-meta { padding: 0; }
.post-card-cat,
.blog-card-cat { color: var(--sauce-cyan-deep); font-weight: 600; }
.post-card-sep { color: var(--text-faint); }
.post-card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--sauce-teal-dark);
  padding: 14px 22px 10px;
  margin: 0;
}
.post-card-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-mute);
  padding: 0 22px 20px;
  margin: 0;
  flex: 1;
}
.post-card-cta {
  display: block;
  padding: 0 22px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sauce-cyan-deep);
  margin-top: auto;
}

/* ---- Single post hero ------------------------------------------------- */
.post-hero {
  padding: clamp(110px, 14vw, 160px) 0 clamp(32px, 5vw, 56px);
}
.post-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--sauce-cyan-deep);
  font-weight: 600;
  transition: gap .3s var(--ease);
}
.post-back:hover { gap: 10px; color: var(--sauce-teal-dark); }
.post-meta-sep { color: var(--text-faint); }
.post-category { color: var(--sauce-cyan-deep); font-weight: 600; }

.post-title {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  font-size: clamp(2.2rem, 4.8vw, 4rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.025em !important;
  text-transform: uppercase !important;
  color: var(--sauce-teal-dark) !important;
  margin: 0 0 22px;
  max-width: 24ch;
  text-wrap: balance;
}
.post-subtitle {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 60ch;
  margin: 0 0 32px;
}
.post-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
}
.post-author-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sauce-cyan), var(--sauce-cyan-deep));
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
}
.post-author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sauce-teal-dark);
}

.post-hero-image {
  margin-top: clamp(36px, 5vw, 56px);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 30px 80px rgba(6,40,59,0.14);
}
.post-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Article body ----------------------------------------------------- */
.post-body {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
}
.post-body .container-md {
  font-family: var(--font-body);
}
.post-lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--sauce-teal-dark);
  letter-spacing: -0.005em;
  margin: 0 0 32px;
  max-width: 64ch;
}
.post-body h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--sauce-teal-dark);
  margin: 56px 0 18px;
}
.post-body h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--sauce-teal-dark);
  margin: 36px 0 14px;
}
.post-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--sauce-ink);
  margin: 0 0 22px;
  max-width: 64ch;
}
.post-body p strong { color: var(--sauce-teal-dark); }
.post-body ul,
.post-body ol {
  margin: 0 0 28px;
  padding-left: 22px;
  max-width: 64ch;
}
.post-body li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--sauce-ink);
  margin: 0 0 10px;
}
.post-body li strong { color: var(--sauce-teal-dark); }
.post-body a:not(.post-back):not(.post-card-cta) {
  color: var(--sauce-cyan-deep);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color .25s ease;
}
.post-body a:not(.post-back):not(.post-card-cta):hover {
  color: var(--sauce-teal-dark);
}
.post-body code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  font-weight: 500;
  background: var(--surface-tint-blue);
  color: var(--sauce-cyan-deep);
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* Article callout (warn / action) */
.post-callout {
  margin: 32px 0;
  padding: 22px 26px;
  border-radius: var(--r-md);
  font-size: 15px;
  line-height: 1.65;
  border-left: 4px solid var(--sauce-cyan);
  background: var(--sauce-cyan-soft);
  color: var(--sauce-teal-dark);
}
.post-callout strong { color: var(--sauce-teal-dark); }
.post-callout-warn {
  border-left-color: var(--sauce-red);
  background: rgba(235,33,39,0.06);
}
.post-callout-action {
  border-left-color: var(--sauce-yellow);
  background: linear-gradient(135deg, rgba(238,225,117,0.18), rgba(255,210,63,0.10));
}

/* End-of-article author block */
.post-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px 0 0;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.post-author-card-mark {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sauce-cyan), var(--sauce-cyan-deep));
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}
.post-author-card-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sauce-teal-dark);
}
.post-author-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--text-mute);
  margin-top: 4px;
}

/* ---- Related posts strip --------------------------------------------- */
.post-related {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.post-related-head { margin-bottom: 40px; }
.post-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 2vw, 28px);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-hero {
  padding: clamp(110px, 14vw, 160px) 0 clamp(40px, 5vw, 64px);
}
.about-hero-title {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.035em !important;
  text-transform: uppercase !important;
  color: var(--sauce-teal-dark) !important;
  margin: 18px 0 22px;
  max-width: 18ch;
  text-wrap: balance;
}
.about-hero-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 64ch;
}

.about-story {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--sauce-teal-dark);
  color: white;
  overflow: hidden;
}
.about-story-bg { position: absolute; inset: 0; z-index: 0; }
.about-story-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.20;
  filter: saturate(1.2);
}
.about-story-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(6,40,59,0.55) 30%, rgba(6,40,59,0.92) 100%);
}
.about-story-inner { position: relative; z-index: 1; }
.about-story-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sauce-yellow);
  padding: 8px 16px;
  border: 1px solid rgba(238,225,117,0.4);
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.about-story-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 32px;
  text-wrap: balance;
}
.about-story-h2 em {
  font-style: italic;
  color: var(--sauce-yellow);
}
.about-story p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 64ch;
  margin-bottom: 20px;
}

.about-values { padding: clamp(80px, 10vw, 120px) 0; background: var(--bg); }
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 880px) { .about-values-grid { grid-template-columns: 1fr; } }
.about-value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  transition: all .35s var(--ease);
}
.about-value-card:hover {
  border-color: var(--sauce-cyan);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(6,40,59,0.10);
}
.about-value-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--sauce-cyan-deep);
  margin-bottom: 14px;
}
.about-value-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--sauce-teal-dark);
  margin-bottom: 12px;
}
.about-value-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mute);
}

.about-numbers { padding: clamp(80px, 10vw, 120px) 0; background: var(--bg-2); }
.about-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
@media (max-width: 880px) {
  .about-numbers-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.about-number-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  background: linear-gradient(120deg, var(--sauce-teal-dark), var(--sauce-cyan-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-number-big span {
  font-size: 0.5em;
  background: linear-gradient(120deg, var(--sauce-yellow), var(--sauce-red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-number-label {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--text-mute);
  line-height: 1.3;
}

.about-roadmap { padding: clamp(80px, 10vw, 120px) 0; background: var(--bg); }
.about-roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 40px;
}
@media (max-width: 880px) { .about-roadmap-grid { grid-template-columns: 1fr; } }
.about-roadmap-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 32px;
}
.about-roadmap-soon {
  background: linear-gradient(160deg, rgba(238,225,117,0.10), rgba(255,210,63,0.04));
  border-color: rgba(238,225,117,0.35);
}
.about-roadmap-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sauce-cyan-deep);
  margin-bottom: 18px;
}
.about-roadmap-soon .about-roadmap-label { color: var(--sauce-yellow-warm); }
.about-roadmap-col ul { list-style: none; padding: 0; margin: 0; }
.about-roadmap-col li {
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.about-roadmap-col li:last-child { border-bottom: 0; }
.about-roadmap-col li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: var(--sauce-teal-dark);
  text-decoration: none;
  transition: color .25s ease;
}
.about-roadmap-col li a:hover { color: var(--sauce-cyan-deep); }
.about-roadmap-col li a span {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}

.about-team { padding: clamp(60px, 8vw, 100px) 0; background: var(--bg); }
.about-team-card {
  background: linear-gradient(135deg, var(--sauce-teal-dark) 0%, var(--sauce-cyan-deep) 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.about-team-card::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(238,225,117,0.30), transparent 70%);
  filter: blur(80px);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

/* ==========================================================================
   WHOLESALE PAGE
   ========================================================================== */
.ws-hero { padding: clamp(110px, 14vw, 160px) 0 clamp(40px, 5vw, 64px); }
.ws-hero-title {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  font-size: clamp(3rem, 7vw, 6rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.045em !important;
  text-transform: uppercase !important;
  color: var(--sauce-teal-dark) !important;
  margin: 18px 0 22px;
  text-wrap: balance;
}
.ws-hero-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 64ch;
}
.ws-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 36px);
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
@media (max-width: 720px) { .ws-hero-stats { grid-template-columns: 1fr 1fr; } }
.ws-stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--sauce-teal-dark), var(--sauce-cyan-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ws-stat .num span {
  font-size: 0.5em;
  background: linear-gradient(120deg, var(--sauce-yellow), var(--sauce-red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ws-stat .lbl {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
}

.ws-why { padding: clamp(80px, 10vw, 120px) 0; background: var(--bg-2); }
.ws-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 980px) { .ws-why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .ws-why-grid { grid-template-columns: 1fr; } }
.ws-why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: all .35s var(--ease);
}
.ws-why-card:hover {
  transform: translateY(-4px);
  border-color: var(--sauce-cyan);
  box-shadow: 0 16px 36px rgba(6,40,59,0.08);
}
.ws-why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sauce-cyan-soft), var(--sauce-yellow-soft));
  color: var(--sauce-teal-dark);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.ws-why-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--sauce-teal-dark);
  margin-bottom: 10px;
}
.ws-why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mute);
}

.ws-process { padding: clamp(80px, 10vw, 120px) 0; background: var(--bg); }
.ws-process-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  counter-reset: ws;
}
.ws-process-list li {
  counter-increment: ws;
  position: relative;
  padding: 22px 24px 22px 80px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-mute);
}
.ws-process-list li::before {
  content: counter(ws, decimal-leading-zero);
  position: absolute;
  left: 0; top: 22px;
  width: 60px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--sauce-cyan-deep);
}
.ws-process-list li strong {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--sauce-teal-dark);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 6px;
}

.ws-form-section { padding: clamp(80px, 10vw, 120px) 0; background: var(--bg-2); }
.ws-form {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ws-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) { .ws-form-grid { grid-template-columns: 1fr; } }
.ws-form label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sauce-teal-dark);
}
.ws-form label span { color: var(--sauce-red); margin-left: 2px; }
.ws-form input,
.ws-form select,
.ws-form textarea {
  background: var(--surface) !important;
  border: 1.5px solid var(--border-hi) !important;
  color: var(--sauce-teal-dark) !important;
  border-radius: var(--r-md);
  padding: 13px 16px;
  font: inherit;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  width: 100%;
  margin-top: 8px;
  outline: none;
  transition: all .25s var(--ease);
}
.ws-form input:focus,
.ws-form select:focus,
.ws-form textarea:focus {
  border-color: var(--sauce-cyan) !important;
  box-shadow: 0 0 0 4px var(--sauce-cyan-soft) !important;
}
.ws-form button[type="submit"] { align-self: flex-start; margin-top: 10px; }
.ws-form-fineprint {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.55;
  margin-top: 4px;
}
.ws-form-error {
  background: rgba(235,33,39,0.08);
  border: 1px solid rgba(235,33,39,0.4);
  color: var(--sauce-red);
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
}
.ws-form-success {
  background: var(--surface);
  border: 1px solid var(--sauce-cyan);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 64px);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,183,222,0.12);
}
.ws-form-success-check {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sauce-cyan), var(--sauce-cyan-deep));
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 0 60px rgba(0,183,222,0.4);
}
.ws-form-success h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: var(--sauce-teal-dark);
  margin-bottom: 10px;
}
.ws-form-success p {
  color: var(--text-mute);
  margin: 0 auto 24px;
  max-width: 50ch;
  line-height: 1.6;
}

/* ==========================================================================
   PRESS PAGE
   ========================================================================== */
.press-hero { padding: clamp(110px, 14vw, 160px) 0 clamp(40px, 5vw, 64px); }
.press-hero-title {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  font-size: clamp(3rem, 6.5vw, 5.6rem) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.035em !important;
  text-transform: uppercase !important;
  color: var(--sauce-teal-dark) !important;
  margin: 18px 0 22px;
  text-wrap: balance;
}
.press-hero-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 64ch;
}
.press-hero-lede a { color: var(--sauce-cyan-deep); font-weight: 500; }

.press-facts { padding: clamp(60px, 8vw, 100px) 0; background: var(--bg); }
.press-facts-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
@media (max-width: 720px) { .press-facts-list { grid-template-columns: 1fr; } }
.press-facts-list > div { display: grid; grid-template-columns: 200px 1fr; gap: 16px; align-items: baseline; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.press-facts-list dt {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sauce-cyan-deep);
}
.press-facts-list dd {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--sauce-teal-dark);
  margin: 0;
}

.press-assets { padding: clamp(60px, 8vw, 100px) 0; background: var(--bg-2); }
.press-assets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 980px) { .press-assets-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .press-assets-grid { grid-template-columns: 1fr; } }
.press-asset {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .3s var(--ease);
}
.press-asset:hover {
  border-color: var(--sauce-cyan);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(6,40,59,0.08);
}
.press-asset-frame {
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--surface);
}
.press-asset-frame img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}
.press-asset-frame-photo {
  padding: 0;
  background: var(--bg-2);
}
.press-asset-frame-photo img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.press-asset-logo-dark .press-asset-frame { background: var(--sauce-teal-dark); }
.press-asset-meta { padding: 18px 22px; border-top: 1px solid var(--border); }
.press-asset-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sauce-teal-dark);
}
.press-asset-spec {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--text-mute);
  margin-top: 4px;
}

.press-coverage { padding: clamp(60px, 8vw, 100px) 0; background: var(--bg); }
.press-coverage-list { margin-top: 40px; border-top: 1px solid var(--border); }
.press-coverage-item {
  display: grid;
  grid-template-columns: 180px 1fr 140px;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
@media (max-width: 720px) { .press-coverage-item { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; } }
.press-coverage-outlet {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sauce-cyan-deep);
}
.press-coverage-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  color: var(--sauce-teal-dark);
  letter-spacing: -0.005em;
}
.press-coverage-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--text-mute);
  text-transform: uppercase;
  text-align: right;
}
@media (max-width: 720px) { .press-coverage-date { text-align: left; } }
.press-coverage-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.6;
}
.press-coverage-note a { color: var(--sauce-cyan-deep); font-weight: 500; }

/* --------------------------------------------------------------------------
   STUB PAGE — generic "coming soon" hero used by lightweight stub files
-------------------------------------------------------------------------- */
.stub-page {
  position: relative;
  min-height: calc(100vh - 80px - 280px);
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
}
.stub-page h1 {
  font-size: clamp(2.6rem, 6vw, 5rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.025em !important;
  line-height: 0.98 !important;
  color: var(--sauce-teal-dark) !important;
}
.stub-page .lead {
  margin: 0 auto;
  max-width: 56ch;
}

/* --------------------------------------------------------------------------
   NAV SUBMENU — dropdown for Products + Brand sections
-------------------------------------------------------------------------- */
.nav-has-sub { position: relative; }
.nav-has-sub > .nav-link::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: 2px;
  opacity: 0.5;
  transition: transform .25s var(--ease);
}
.nav-has-sub:hover > .nav-link::after { transform: rotate(180deg); }
.nav-sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: rgba(255, 252, 246, 0.96);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 24px 50px rgba(6,40,59,0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .25s var(--ease);
}
.nav-has-sub:hover .nav-sub,
.nav-has-sub:focus-within .nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 4px);
}
.nav-sub li { margin: 0; }
.nav-sub a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  color: var(--text-soft) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all .2s var(--ease);
}
.nav-sub a:hover {
  background: var(--sauce-cyan-soft);
  color: var(--sauce-cyan-deep) !important;
}
.nav-sub-tag {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: white;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  background: linear-gradient(120deg, var(--sauce-yellow), var(--sauce-red));
  box-shadow: 0 2px 8px rgba(235,33,39,0.30);
}

@media (max-width: 960px) {
  .nav-sub { display: none; }  /* mobile menu shows the parent links only */
}

/* Add a final newsletter column */
.footer-newsletter-col { min-width: 0; }

/* --------------------------------------------------------------------------
   NAV — cream glass with black logo
-------------------------------------------------------------------------- */
.nav { background: rgba(250, 246, 232, 0); }
.nav.scrolled {
  background: rgba(255, 252, 242, 0.88) !important;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav-link {
  color: var(--text-soft) !important;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-link:hover, .nav-link.active { color: var(--sauce-cyan-deep) !important; }
.nav-link::after,
.nav-link.active::after,
.nav-link:hover::after {
  background: var(--sauce-cyan) !important;
  box-shadow: 0 0 10px var(--sauce-cyan);
}
.nav-cta {
  background: var(--sauce-cyan) !important;
  color: white !important;
  border: 0 !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 20px rgba(0,183,222,0.32);
  transition: all .3s var(--ease);
}
.nav-cta:hover {
  background: var(--sauce-teal) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(6,84,110,0.4);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after { background: var(--sauce-teal-dark) !important; }
.nav-logo-mark { display: none !important; }

/* Nav logo: use the BLACK swoosh (when nav bg is cream/transparent at top OR cream-glass when scrolled) */
.nav-logo .sauce-logo.brand-white img { content: url('../img/brand/sauce-swoosh-black.png'); }

/* --------------------------------------------------------------------------
   BUTTONS — cyan primary, lime secondary, sunset gold
-------------------------------------------------------------------------- */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-primary {
  background: var(--sauce-cyan) !important;
  color: white !important;
  border: 0 !important;
  box-shadow: 0 8px 24px rgba(0,183,222,0.32);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--sauce-teal) 0%, var(--sauce-cyan-deep) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(6,84,110,0.4);
}
.btn-ghost {
  background: rgba(6,40,59,0.04) !important;
  color: var(--text) !important;
  border: 1.5px solid var(--border-hi) !important;
}
.btn-ghost:hover {
  background: var(--sauce-cyan-soft) !important;
  border-color: var(--sauce-cyan) !important;
  color: var(--sauce-cyan-deep) !important;
}
.btn-gold {
  background: linear-gradient(120deg, var(--sauce-yellow), var(--sauce-red)) !important;
  color: white !important;
  border: 0 !important;
  box-shadow: 0 8px 24px rgba(235,33,39,0.32);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(235,33,39,0.45);
}

/* --------------------------------------------------------------------------
   HERO V2 — Editorial collage, parallax, brand marquee
-------------------------------------------------------------------------- */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 0;
  overflow: hidden;
  background: var(--bg);
}
.hero-v2-halos { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-v2-halos .halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.halo-cyan   { width: 520px; height: 520px; top:  3%; left: -8%; background: radial-gradient(circle, rgba(0,183,222,0.50), transparent 70%); animation: heroHalo 18s ease-in-out infinite alternate; }
.halo-yellow { width: 420px; height: 420px; top: 28%; right: -8%; background: radial-gradient(circle, rgba(238,225,117,0.45), transparent 70%); animation: heroHalo 22s -5s ease-in-out infinite alternate; }
.halo-lime   { width: 360px; height: 360px; bottom: 8%; left: 30%; background: radial-gradient(circle, rgba(27,167,24,0.32), transparent 70%); animation: heroHalo 20s -10s ease-in-out infinite alternate; }
.halo-red    { width: 320px; height: 320px; top: 50%; right: 22%; background: radial-gradient(circle, rgba(235,33,39,0.28), transparent 70%); animation: heroHalo 24s -15s ease-in-out infinite alternate; }
@keyframes heroHalo {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(50px, -30px) scale(1.18); }
}

/* Faint S-monogram watermark behind everything */
.hero-v2-bg-mark {
  position: absolute;
  width: min(110vw, 1300px);
  height: auto;
  top: 48%; left: 52%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.045;
  pointer-events: none;
  user-select: none;
}

.hero-v2-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  min-height: 70vh;
}

.hero-v2-headline {
  font-size: clamp(3.2rem, 8.5vw, 7.5rem) !important;
  font-weight: 900 !important;
  line-height: 0.92 !important;
  letter-spacing: -0.04em !important;
  text-transform: uppercase !important;
  color: var(--sauce-teal-dark) !important;
  margin: 22px 0 26px;
}
.hero-v2-tagline {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 50ch;
  line-height: 1.55;
}
.hero-v2-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Product collage — three product cards stacked at angles */
.hero-v2-collage {
  position: relative;
  height: clamp(440px, 64vh, 640px);
  perspective: 1400px;
  transform-style: preserve-3d;
}
.collage-card {
  position: absolute;
  width: 70%;
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sauce-teal-dark);
  box-shadow: 0 30px 80px rgba(6,40,59,0.20), 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 0.6s cubic-bezier(.22,1,.36,1), box-shadow 0.4s var(--ease);
  cursor: pointer;
  display: block;
  transform: rotate(var(--rot, 0deg)) translate(var(--tx, 0), var(--ty, 0));
}
.collage-card:hover {
  z-index: 10 !important;
  box-shadow: 0 50px 120px rgba(6,40,59,0.30), 0 0 0 1px rgba(0,183,222,0.30), 0 0 80px rgba(0,183,222,0.20);
}
.collage-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collage-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.95);
  color: var(--sauce-teal-dark);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.collage-card-tag-new {
  background: linear-gradient(120deg, var(--sauce-yellow), var(--sauce-red));
  color: white;
  box-shadow: 0 6px 16px rgba(235,33,39,0.40);
}
.collage-card-3 { top:  0%; right:  0%; z-index: 3; }
.collage-card-2 { top: 28%; left:   2%; z-index: 2; }
.collage-card-1 { bottom: 0%; right:  6%; z-index: 1; }

/* Floating brand chips overlapping the collage */
.hero-v2-chip {
  position: absolute;
  z-index: 4;
  background: white;
  border: 1px solid var(--border-hi);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(6,40,59,0.18);
  font-family: var(--font-body);
}
.hero-v2-chip strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--sauce-teal-dark);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}
.hero-v2-chip .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sauce-lime);
  box-shadow: 0 0 12px rgba(27,167,24,0.7);
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-v2-chip-1 { top: 16%; left: -4%; animation: chipBob 5s ease-in-out infinite; }
.hero-v2-chip-2 { bottom: 16%; right: -2%; animation: chipBob 6s -2s ease-in-out infinite; }
@keyframes chipBob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* Stats strip */
.hero-v2-stats {
  position: relative;
  z-index: 2;
  margin-top: clamp(48px, 7vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  padding: 32px 0 28px;
  border-top: 1px solid var(--border);
}
.hero-v2-stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--sauce-teal-dark) 0%, var(--sauce-cyan-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.hero-v2-stat .lbl {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
}

/* Hero V3 scroll cue (matches markup class .hero3-scroll).
   Fixed to viewport bottom so it's always visible during the hero, then
   fades out once you scroll past it (handled in motion.js). */
.hero3-scroll {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  text-decoration: none;
  z-index: 30;
  pointer-events: none;
  opacity: 0;
  animation: scrollCueFade 1.2s cubic-bezier(.22,1,.36,1) 1.6s forwards;
  transition: opacity .35s ease;
}
@keyframes scrollCueFade { to { opacity: 1; pointer-events: auto; } }
.hero3-scroll.is-hidden { opacity: 0 !important; pointer-events: none; }
.hero3-scroll-line {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--sauce-cyan));
  position: relative;
  overflow: hidden;
}
.hero3-scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, var(--sauce-teal-dark));
  animation: cueDrop 2s cubic-bezier(.22,1,.36,1) infinite;
}
@media (max-width: 880px) { .hero3-scroll { display: none; } }

/* Old hero-v2 scroll cue (legacy) */
.hero-v2-scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  pointer-events: none;
  opacity: 0;
  animation: cueFade 1.2s cubic-bezier(.22,1,.36,1) 1.4s forwards;
}
@keyframes cueFade { to { opacity: 1; } }
.hero-v2-scroll-cue .line {
  width: 1px; height: 30px;
  background: linear-gradient(180deg, transparent, var(--sauce-cyan));
  position: relative; overflow: hidden;
}
.hero-v2-scroll-cue .line::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, white);
  animation: cueDrop 2s cubic-bezier(.22,1,.36,1) infinite;
}
@keyframes cueDrop {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* Brand marquee strip below hero */
.hero-marquee {
  background: var(--sauce-teal-dark);
  color: white;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.hero-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  animation: marqueeMove 32s linear infinite;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 52px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero-marquee-track .dot {
  color: var(--sauce-cyan);
  font-size: 0.6em;
  font-weight: 400;
}
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 880px) {
  .hero-v2 { min-height: auto; padding: 100px 0 0; }
  .hero-v2-grid { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero-v2-collage { height: 88vw; max-height: 540px; }
  .hero-v2-stats { grid-template-columns: 1fr 1fr; gap: 18px; padding: 24px 0; }
  .hero-v2-stat { text-align: left; }
  .hero-v2-bg-mark { opacity: 0.025; }
  .hero-v2-scroll-cue { display: none; }
  .hero-v2-chip { padding: 8px 12px; font-size: 11px; }
  .hero-marquee { padding: 16px 0; }
}
@media (max-width: 480px) {
  .collage-card { width: 78%; }
  .hero-v2-stats { grid-template-columns: 1fr; }
}

/* Disable old hero CSS that we replaced */
.hero-v2 .hero-bg,
.hero-v2 .hero-grid,
.hero-v2 .hero-orb { display: none; }

/* --------------------------------------------------------------------------
   HERO (legacy — kept for /verify.php and 404 which still use plain .hero)
-------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg { background: transparent; }
.hero-grid {
  background-image:
    linear-gradient(rgba(6,40,59,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,40,59,0.04) 1px, transparent 1px) !important;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 100%);
}
.hero-orb-1 {
  background: radial-gradient(circle, rgba(0,183,222,0.55), transparent 65%) !important;
  width: 540px !important; height: 540px !important;
  filter: blur(90px) !important;
}
.hero-orb-2 {
  background: radial-gradient(circle, rgba(238,225,117,0.55), transparent 65%) !important;
  width: 520px !important; height: 520px !important;
  filter: blur(90px) !important;
}
.hero::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(27,167,24,0.32), transparent 65%);
  filter: blur(70px);
  bottom: -40px; left: 18%;
  z-index: 0;
  pointer-events: none;
  animation: orbDrift 20s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(235,33,39,0.30), transparent 65%);
  filter: blur(70px);
  top: 30%; right: 10%;
  z-index: 0;
  pointer-events: none;
  animation: orbDrift 26s ease-in-out infinite alternate-reverse;
}
@keyframes orbDrift {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(80px, -40px) scale(1.1); }
}

/* Big S monogram lurking behind hero — black (since we're on cream now) */
.hero-monogram-bg {
  filter: invert(1) brightness(0); /* PNG was white — invert to black on cream */
  opacity: 0.04;
}

.hero-eyebrow { color: var(--sauce-cyan-deep) !important; }
.hero-lead { color: var(--text-soft); max-width: 56ch; }

.hero-photo {
  border-radius: var(--r-xl);
  box-shadow:
    0 30px 60px rgba(6,40,59,0.18),
    0 0 0 1px rgba(0,183,222,0.10),
    0 12px 60px rgba(0,183,222,0.18) !important;
  position: relative;
}
.hero-photo::after {
  background:
    linear-gradient(160deg, transparent 30%, rgba(6,40,59,0.30) 90%),
    radial-gradient(circle at 80% 0%, rgba(0,183,222,0.25), transparent 50%) !important;
}
.hero-photo-frame { border: 1px solid rgba(255,255,255,0.6) !important; }

.hero-floating-badge {
  background: white !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  box-shadow: 0 12px 30px rgba(6,40,59,0.10), 0 0 0 1px rgba(255,255,255,0.4);
}
.hero-floating-badge .dot {
  background: var(--sauce-lime) !important;
  box-shadow: 0 0 14px rgba(27,167,24,0.6) !important;
}
.hero-floating-badge > div > div:first-child { color: var(--sauce-teal-dark); font-weight: 700; }
.hero-floating-badge > div > div:last-child { color: var(--text-mute) !important; font-weight: 400; }

.hero-stat .num {
  background: linear-gradient(120deg, var(--sauce-teal-dark) 0%, var(--sauce-cyan-deep) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 900;
}
.hero-stat .label {
  color: var(--text-mute) !important;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   TICKER — cyan strip
-------------------------------------------------------------------------- */
.ticker {
  background: var(--sauce-teal-dark) !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  color: white !important;
}
.ticker-item {
  color: white !important;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ticker-item .star { color: var(--sauce-yellow) !important; }
.ticker-item.soon { color: var(--sauce-yellow) !important; }
.ticker-item .ticker-soon {
  color: var(--sauce-teal-dark) !important;
  border-color: var(--sauce-yellow) !important;
  background: var(--sauce-yellow) !important;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   PRODUCT CARDS — white surface, cyan hover lift
-------------------------------------------------------------------------- */
.product-card {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 6px 20px rgba(6,40,59,0.06) !important;
  transition: all .35s var(--ease) !important;
  position: relative;
  overflow: hidden;
  backdrop-filter: none;
}
.product-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 50%), rgba(0,183,222,0.18), transparent 50%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.product-card:hover::after { opacity: 1; }
.product-card:hover {
  border-color: var(--sauce-cyan) !important;
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(6,40,59,0.12), 0 0 60px rgba(0,183,222,0.20) !important;
}
.product-img-photo { background: linear-gradient(160deg, rgba(0,183,222,0.16), rgba(238,225,117,0.16)) !important; }
.product-card:nth-child(2) .product-img-photo { background: linear-gradient(160deg, rgba(27,167,24,0.16), rgba(238,225,117,0.16)) !important; }
.product-card:nth-child(3) .product-img-photo { background: linear-gradient(160deg, rgba(235,33,39,0.14), rgba(238,225,117,0.16)) !important; }
.product-card:nth-child(4) .product-img-photo { background: linear-gradient(160deg, rgba(238,225,117,0.20), rgba(0,183,222,0.16)) !important; }
.product-tag {
  background: var(--sauce-cyan) !important;
  color: white !important;
  border: 0 !important;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.product-name {
  color: var(--sauce-teal-dark) !important;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.product-desc { color: var(--text-mute) !important; }
.product-link {
  color: var(--sauce-cyan-deep) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}
.product-link:hover { color: var(--sauce-red) !important; }

/* --------------------------------------------------------------------------
   GENERIC CARDS
-------------------------------------------------------------------------- */
.card,
.card-feature {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 6px 20px rgba(6,40,59,0.06) !important;
  color: var(--text);
  backdrop-filter: none;
}
.card-feature .icon {
  background: linear-gradient(135deg, var(--sauce-cyan-soft), var(--sauce-yellow-soft)) !important;
  border: 1px solid var(--border) !important;
  color: var(--sauce-cyan-deep) !important;
}
.card-feature h3 {
  color: var(--sauce-teal-dark) !important;
  font-weight: 900;
  text-transform: uppercase;
}
.card-feature p { color: var(--text-mute) !important; }

.section-divider .num {
  color: var(--sauce-cyan-deep) !important;
  font-weight: 700;
  font-family: var(--font-mono);
}
.section-divider::after { background: linear-gradient(90deg, var(--border-hi), transparent) !important; }
.section-head p { color: var(--text-mute); }
.section-head h2 { margin-top: 8px; }
.section-head { margin-bottom: 56px; }

/* --------------------------------------------------------------------------
   STATES — cards with cyan hover
-------------------------------------------------------------------------- */
.state-card {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 6px 20px rgba(6,40,59,0.06) !important;
  transition: all .35s var(--ease-bounce) !important;
  color: var(--text);
  backdrop-filter: none;
}
.state-card:hover {
  background: var(--sauce-cyan) !important;
  border-color: transparent !important;
  color: white !important;
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 24px 50px rgba(0,183,222,0.45) !important;
}
.state-card:hover .abbr,
.state-card:hover .name { color: white !important; -webkit-text-fill-color: white !important; }
.state-card:hover div { color: rgba(255,255,255,0.85) !important; }
.state-card .abbr {
  background: linear-gradient(120deg, var(--sauce-cyan), var(--sauce-teal)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-family: var(--font-display);
  font-weight: 900;
}
.state-card .name {
  color: var(--sauce-teal-dark) !important;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}
.state-card .pulse { background: var(--sauce-yellow) !important; box-shadow: 0 0 12px var(--sauce-yellow) !important; }
.state-card.coming {
  background: linear-gradient(160deg, rgba(238,225,117,0.20), rgba(235,33,39,0.06)) !important;
  border-color: rgba(238,225,117,0.55) !important;
}
.state-card.coming::after {
  background: var(--sauce-yellow) !important;
  border-color: var(--sauce-red) !important;
  color: var(--sauce-teal-dark) !important;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   PROMO
-------------------------------------------------------------------------- */
.promo-card {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 6px 20px rgba(6,40,59,0.06) !important;
  backdrop-filter: none;
}
.promo-card:hover {
  border-color: var(--accent, var(--sauce-cyan)) !important;
  transform: translateY(-4px);
}
.promo-card .state-name { color: var(--sauce-teal-dark) !important; font-weight: 700; }
.promo-card .promo-title { color: var(--sauce-teal-dark) !important; }
.promo-card .promo-meta { color: var(--text-mute) !important; }
.promo-feature {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(238,225,117,0.30), transparent 60%),
    linear-gradient(160deg, var(--surface), var(--surface-2)) !important;
  border: 1px solid var(--border-hi) !important;
}
.promo-feature .badge {
  background: linear-gradient(135deg, var(--sauce-yellow), var(--sauce-red)) !important;
  border-color: transparent !important;
  color: white !important;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   VERIFY — light card surfaces
-------------------------------------------------------------------------- */
.verify-card,
.verify-success-card {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(0,183,222,0.16), transparent 60%),
    var(--surface) !important;
  border: 1px solid var(--border-hi) !important;
  color: var(--text);
  backdrop-filter: none;
}
.verify-success-card { border-color: var(--sauce-cyan) !important; }
.verify-step .num {
  background: var(--sauce-cyan) !important;
  color: white !important;
  font-family: var(--font-display);
  font-weight: 900;
  box-shadow: 0 0 20px rgba(0,183,222,0.4);
}
.verify-step .label { color: var(--sauce-teal-dark) !important; font-weight: 700; }
.verify-step .desc { color: var(--text-mute) !important; }

.serial-input {
  background: var(--surface) !important;
  color: var(--text) !important;
  border: 1px solid var(--border-hi) !important;
}
.serial-input:focus {
  border-color: var(--sauce-cyan) !important;
  background: var(--surface-tint-blue) !important;
  box-shadow: 0 0 0 4px var(--sauce-cyan-soft) !important;
}
.serial-input::placeholder { color: var(--text-faint) !important; }

.verify-check {
  background: linear-gradient(135deg, var(--sauce-cyan), var(--sauce-lime)) !important;
  box-shadow: 0 0 80px rgba(0,183,222,0.6), 0 8px 24px rgba(27,167,24,0.4) !important;
}
.serial-pill {
  background: var(--sauce-cyan-soft) !important;
  border-color: var(--border-pop) !important;
  color: var(--sauce-cyan-deep) !important;
}
.verify-email-form input {
  background: var(--surface) !important;
  color: var(--text) !important;
  border: 1px solid var(--border-hi) !important;
}
.countdown-ring::before { background: var(--bg) !important; }
.countdown-ring .num { color: var(--sauce-cyan-deep) !important; font-weight: 900; }

/* Verify atmosphere video — fade against light bg */
body[data-page="verify"] .verify-atmosphere video { opacity: 0.20 !important; }
body[data-page="verify"] .verify-atmosphere-tint {
  background:
    radial-gradient(900px 700px at 50% 30%, rgba(250,246,232,0.4) 0%, rgba(250,246,232,0.85) 80%),
    linear-gradient(180deg, rgba(250,246,232,0.4) 0%, rgba(250,246,232,0.95) 100%) !important;
}

/* Serial input immersive */
.serial-input-immersive {
  background: var(--surface) !important;
  border: 1.5px solid var(--border-hi);
}
.serial-input-immersive:focus-within {
  border-color: var(--sauce-cyan);
  background: var(--sauce-cyan-soft) !important;
  box-shadow: 0 0 0 4px var(--sauce-cyan-soft), 0 0 60px rgba(0,183,222,0.20);
}
.serial-input-prefix { color: var(--sauce-cyan-deep); }
.serial-input-prefix::after { background: var(--border-hi); }
.serial-input-immersive .serial-input { color: var(--sauce-teal-dark) !important; }
.serial-input-immersive .serial-input::placeholder { color: var(--text-faint) !important; }
.serial-input-cursor { background: var(--sauce-cyan); }

/* --------------------------------------------------------------------------
   FOOTER — dark teal section for contrast
-------------------------------------------------------------------------- */
.footer {
  background: var(--sauce-teal-dark) !important;
  border-top: 0 !important;
  color: rgba(255,255,255,0.78);
  backdrop-filter: none;
}
.footer .nav-logo .sauce-logo.brand-white img { content: url('../img/brand/sauce-swoosh-white.png'); }
.footer-brand p { color: rgba(255,255,255,0.6); }
.footer-col h4 {
  color: white;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col a { color: rgba(255,255,255,0.78); font-weight: 400; }
.footer-col a:hover { color: var(--sauce-cyan); }
.footer-socials a {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.16) !important;
  color: rgba(255,255,255,0.78) !important;
}
.footer-socials a:hover {
  background: var(--sauce-cyan) !important;
  border-color: var(--sauce-cyan) !important;
  color: white !important;
}
.footer-newsletter {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.16) !important;
}
.footer-newsletter input { color: white !important; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.45) !important; }
.footer-newsletter button {
  background: var(--sauce-cyan) !important;
}
.footer-bottom {
  color: rgba(255,255,255,0.55);
  border-top-color: rgba(255,255,255,0.10);
  font-family: var(--font-mono);
  font-size: 11px;
}
.footer-bottom .legal a { color: rgba(255,255,255,0.55); }
.footer-bottom .legal a:hover { color: var(--sauce-cyan); }

/* --------------------------------------------------------------------------
   AGE GATE — cream panel + dark visual side
-------------------------------------------------------------------------- */
.age-gate { background: var(--bg) !important; }
.age-gate-bg {
  background:
    radial-gradient(900px 600px at 0% 0%, rgba(0,183,222,0.30), transparent 60%),
    radial-gradient(1000px 700px at 100% 100%, rgba(238,225,117,0.30), transparent 60%) !important;
}
.age-gate-bg::before {
  background: radial-gradient(circle, rgba(27,167,24,0.40), transparent 65%) !important;
}
.age-gate-bg::after {
  background: radial-gradient(circle, rgba(235,33,39,0.32), transparent 65%) !important;
}
.age-gate-brand .sauce-logo.brand-white img { content: url('../img/brand/sauce-swoosh-black.png'); }
.age-gate-title { color: var(--sauce-teal-dark) !important; }
.age-gate-lede { color: var(--text-soft) !important; }
.age-gate-foot, .age-gate-fineprint { color: var(--text-mute) !important; }
.age-gate-field input {
  background: var(--surface) !important;
  color: var(--text) !important;
  border-color: var(--border-hi) !important;
}
.age-gate-field input:focus {
  border-color: var(--sauce-cyan) !important;
  background: var(--sauce-cyan-soft) !important;
  box-shadow: 0 0 0 4px var(--sauce-cyan-soft) !important;
}
.age-gate-field .lbl { color: var(--text-mute) !important; }
.age-gate-skip { color: var(--text-mute) !important; }
.age-gate-skip:hover { color: var(--sauce-cyan-deep) !important; }
.age-gate-thanks-mark {
  background: linear-gradient(135deg, var(--sauce-yellow), var(--sauce-red)) !important;
  border-color: transparent !important;
  color: white !important;
  box-shadow: 0 0 60px rgba(235,33,39,0.4) !important;
}

/* --------------------------------------------------------------------------
   NEWSLETTER — cyan bg
-------------------------------------------------------------------------- */
.newsletter {
  background: linear-gradient(135deg, var(--sauce-cyan), var(--sauce-teal)) !important;
  border: 0 !important;
  color: white !important;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(238,225,117,0.45), transparent 70%);
  filter: blur(60px);
  bottom: -100px; right: -100px;
}
.newsletter h3 { color: white !important; }
.newsletter p { color: rgba(255,255,255,0.88) !important; }
.newsletter-form input {
  background: rgba(255,255,255,0.18) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  color: white !important;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.7) !important; }
.newsletter-form .btn-primary {
  background: white !important;
  color: var(--sauce-cyan-deep) !important;
  border-color: white !important;
}
.newsletter-form .btn-primary::before { display: none !important; }
.newsletter-form .btn-primary:hover { background: var(--sauce-yellow) !important; color: var(--sauce-teal-dark) !important; }

/* --------------------------------------------------------------------------
   AMBIENT BG
-------------------------------------------------------------------------- */
.ambient-bg img { opacity: 0.20 !important; filter: saturate(1.15) !important; }
.ambient-bg::after {
  background: linear-gradient(180deg, rgba(250,246,232,0.65), rgba(250,246,232,0.95)) !important;
}

/* Verify CTA section — cyan-coded */
.section .card-feature[data-reveal="scale"] {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(0,183,222,0.18), transparent 60%),
    linear-gradient(160deg, var(--surface), var(--surface-2)) !important;
  border-color: var(--border-hi) !important;
}

/* --------------------------------------------------------------------------
   SCROLL CUE
-------------------------------------------------------------------------- */
.hero-scroll-cue { color: var(--text-mute) !important; }
.hero-scroll-cue .line { background: linear-gradient(180deg, transparent, var(--sauce-cyan)) !important; }
.hero-scroll-cue .line::after { background: linear-gradient(180deg, transparent, var(--sauce-teal-dark)) !important; }

/* --------------------------------------------------------------------------
   SAUCE LOGO — brand image wrapper
-------------------------------------------------------------------------- */
.sauce-logo {
  display: inline-block;
  width: 150px;
  vertical-align: middle;
  line-height: 0;
}
.sauce-logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   TOAST
-------------------------------------------------------------------------- */
.toast {
  background: var(--surface) !important;
  border: 1px solid var(--border-hi) !important;
  color: var(--text) !important;
  box-shadow: 0 12px 30px rgba(6,40,59,0.16), 0 0 60px rgba(0,183,222,0.16) !important;
  backdrop-filter: none;
}
.toast.success { border-color: var(--sauce-cyan) !important; background: var(--sauce-cyan-soft) !important; }

/* --------------------------------------------------------------------------
   FAQ
-------------------------------------------------------------------------- */
.faq-item {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
}
.faq-item[open] {
  background: var(--surface-2) !important;
  border-color: var(--border-pop) !important;
}
.faq-item summary {
  color: var(--sauce-teal-dark) !important;
  font-weight: 700;
}
.faq-item summary:hover { background: var(--sauce-cyan-soft) !important; }
.faq-icon {
  background: var(--surface-2) !important;
  border-color: var(--border-hi) !important;
  color: var(--text-soft) !important;
}
.faq-item[open] .faq-icon {
  background: var(--sauce-cyan) !important;
  color: white !important;
}
.faq-body { color: var(--text-soft) !important; }
.faq-body strong { color: var(--sauce-teal-dark) !important; font-weight: 700; }

/* --------------------------------------------------------------------------
   CONTACT FORM
-------------------------------------------------------------------------- */
.admin-form label { color: var(--text-mute); font-size: 13px; font-weight: 700; }
.admin-form input,
.admin-form textarea,
.admin-form select {
  background: var(--surface) !important;
  border: 1px solid var(--border-hi) !important;
  color: var(--text) !important;
  border-radius: var(--r-md);
  padding: 14px 16px;
  font: inherit;
  width: 100%;
  margin-top: 6px;
  transition: all .25s var(--ease);
}
.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  outline: none;
  border-color: var(--sauce-cyan) !important;
  background: var(--sauce-cyan-soft) !important;
  box-shadow: 0 0 0 4px var(--sauce-cyan-soft) !important;
}

/* Promo + verify hero */
.promo-hero,
.verify-hero { background: transparent; }

/* --------------------------------------------------------------------------
   404
-------------------------------------------------------------------------- */
.hero[style*="min-height:90vh"] > .container > div:first-child {
  background: linear-gradient(120deg, var(--sauce-cyan) 0%, var(--sauce-yellow) 50%, var(--sauce-red) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* ==========================================================================
   PRODUCT CARDS — 5 lines, 3+2 IMAGE layout (real product photography)
   ========================================================================== */
.products-grid-32 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.products-grid-32__bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, calc((100% - 24px - 24px) / 3)));
  gap: 24px;
  justify-content: center;
}
@media (max-width: 880px) {
  .products-grid-32 { grid-template-columns: 1fr; }
  .products-grid-32__bottom { grid-template-columns: 1fr; }
}

.product-card-img {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--sauce-teal-dark);
  box-shadow: 0 12px 40px rgba(6,40,59,0.10);
  transition: all .35s var(--ease) !important;
  transform: perspective(1000px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg));
  will-change: transform;
}
.product-card-img:hover {
  transform: perspective(1000px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)) translateY(-8px);
  box-shadow: 0 30px 60px rgba(6,40,59,0.18), 0 0 0 1px rgba(0,183,222,0.25), 0 0 80px rgba(0,183,222,0.20);
}
.product-card-img__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.product-card-img:hover .product-card-img__bg {
  transform: scale(1.06);
}
.product-card-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6,40,59,0.85) 100%);
  transition: background .35s var(--ease);
}
.product-card-img:hover .product-card-img__overlay {
  background:
    linear-gradient(180deg, rgba(0,183,222,0.06) 0%, rgba(6,40,59,0.92) 100%);
}
.product-card-img__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(20px, 3vw, 32px);
  z-index: 2;
  color: white;
}
.product-card-img__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 6px;
}
.product-card-img__desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  max-width: 36ch;
}
.product-card-img__tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: white;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.20);
}
.product-card-img__badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sauce-teal-dark);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: linear-gradient(120deg, var(--sauce-yellow), var(--sauce-red));
  box-shadow: 0 4px 14px rgba(235,33,39,0.40);
}
.product-card-img__arrow {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-8px);
  transition: all .35s var(--ease);
}
/* If a badge is present, push the arrow down so they don't collide */
.product-card-img:has(.product-card-img__badge) .product-card-img__arrow {
  top: 64px;
}
.product-card-img:hover .product-card-img__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   SAUCE ONE — split feature section
   ========================================================================== */
.sauce-one-section {
  background:
    radial-gradient(900px 500px at 80% 40%, rgba(0,183,222,0.10), transparent 60%),
    linear-gradient(180deg, transparent, rgba(255,255,255,0.5), transparent);
}
.sauce-one {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) {
  .sauce-one { grid-template-columns: 1fr; gap: 40px; }
}
.sauce-one__visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--sauce-teal-dark);
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  box-shadow: 0 30px 80px rgba(6,40,59,0.20);
}
.sauce-one__halo {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,183,222,0.45), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(238,225,117,0.30), transparent 60%);
  filter: blur(40px);
  animation: sauceOneHalo 12s ease-in-out infinite alternate;
}
@keyframes sauceOneHalo {
  from { transform: rotate(0deg) scale(1); }
  to   { transform: rotate(20deg) scale(1.1); }
}
.sauce-one__img {
  position: relative;
  z-index: 1;
  max-width: 70%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45));
  animation: sauceOneFloat 6s ease-in-out infinite;
}
@keyframes sauceOneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.sauce-one__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .sauce-one__features { grid-template-columns: 1fr; }
}
.sauce-one__feature {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all .25s var(--ease);
}
.sauce-one__feature:hover {
  border-color: var(--sauce-cyan);
  background: var(--sauce-cyan-soft);
  transform: translateY(-2px);
}
.sauce-one__feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sauce-cyan), var(--sauce-cyan-deep));
  color: white;
  display: grid; place-items: center;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(0,183,222,0.35);
}
.sauce-one__feature-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--sauce-teal-dark);
  margin-bottom: 4px;
}
.sauce-one__feature-desc {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.5;
}

/* ==========================================================================
   TESTIMONIALS — Real customer marquee
   ========================================================================== */
.testimonials { padding-bottom: 120px; }
.testimonials__track-wrapper {
  overflow: hidden;
  margin: 48px -24px 0;
  padding: 16px 24px;
  position: relative;
}
.testimonials__track-wrapper::before,
.testimonials__track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.testimonials__track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.testimonials__track-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}
.testimonials__track {
  display: flex;
  gap: 20px;
  animation: testimonialScroll 60s linear infinite;
  width: max-content;
}
.testimonials__track:hover { animation-play-state: paused; }
@keyframes testimonialScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 320px;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(6,40,59,0.06);
  transition: all .3s var(--ease);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--sauce-cyan);
  box-shadow: 0 16px 40px rgba(6,40,59,0.10), 0 0 60px rgba(0,183,222,0.16);
}
.testimonial-card__stars {
  color: var(--sauce-yellow-warm);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 6px rgba(255,210,63,0.4));
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--sauce-teal-dark);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.testimonial-card__author {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--sauce-cyan-deep);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   STATE CARD — Canada / international variant
   ========================================================================== */
.state-card.coming.intl {
  background:
    linear-gradient(160deg, rgba(0,183,222,0.18), rgba(238,225,117,0.10)) !important;
  border-color: rgba(0,183,222,0.40) !important;
}
.state-card.coming.intl .abbr {
  font-size: 38px;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}
.state-card.coming.intl::after {
  content: 'Intl · 2026';
  background: var(--sauce-cyan) !important;
  color: white !important;
  border-color: transparent !important;
}

/* ==========================================================================
   COMMUNITY SECTION
   ========================================================================== */
.community {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}
.community-marquee {
  display: flex;
  gap: 20px;
  animation: communityScroll 50s linear infinite;
  width: max-content;
}
.community-marquee.reverse { animation-direction: reverse; animation-duration: 60s; }
@keyframes communityScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.community-tile {
  flex: 0 0 auto;
  width: clamp(220px, 22vw, 320px);
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(6,40,59,0.12);
}
.community-tile img,
.community-tile video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.community-tile:hover img { transform: scale(1.06); }
.community-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,40,59,0.65) 100%);
}
.community-tile-video {
  border-color: var(--sauce-cyan);
  box-shadow: 0 16px 40px rgba(6,40,59,0.18), 0 0 0 1px rgba(0,183,222,0.3), 0 0 60px rgba(0,183,222,0.20);
}
.community-tile .meta {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
}
.community-tile .meta .ig {
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 5px;
  background: linear-gradient(120deg, var(--sauce-cyan), var(--sauce-lime));
}
.community-row { position: relative; margin-bottom: 16px; }
.community-row::before,
.community-row::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.community-row::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.community-row::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}
.community-row:hover .community-marquee { animation-play-state: paused; }

.community-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: white;
  padding: 4px 8px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--sauce-cyan), var(--sauce-cyan-deep));
  box-shadow: 0 4px 14px rgba(0,183,222,0.45);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.community-tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: white;
  animation: livePulse 1.4s ease-in-out infinite;
}

/* Live verifications ticker on homepage */
.live-verifications {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-pill);
  padding: 10px 18px 10px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-soft);
  width: fit-content;
  margin: 0 auto 32px;
  box-shadow: 0 6px 20px rgba(6,40,59,0.06);
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sauce-lime);
  box-shadow: 0 0 12px var(--sauce-lime);
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.live-verifications .roller {
  display: inline-block;
  vertical-align: middle;
  height: 16px;
  overflow: hidden;
}
.live-verifications .roller-track {
  display: flex;
  flex-direction: column;
  animation: rollerScroll 12s steps(8) infinite;
}
.live-verifications .roller-track span {
  height: 16px;
  line-height: 16px;
  white-space: nowrap;
  color: var(--sauce-teal-dark);
  font-weight: 700;
}
@keyframes rollerScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-128px); }
}

/* ==========================================================================
   STORES — IMMERSIVE MAP TREATMENT (cyan-coded overlays)
   ========================================================================== */
.stores-hero { padding-top: 100px; padding-bottom: 40px; }

.map-stat-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: 0 12px 30px rgba(6,40,59,0.12);
}
.map-stat-row {
  display: flex;
  align-items: center;
  gap: 22px;
}
.map-stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  background: linear-gradient(120deg, var(--sauce-teal-dark), var(--sauce-cyan-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.map-stat .lbl {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  margin-top: 2px;
}
.map-stat.soon .num {
  background: linear-gradient(120deg, var(--sauce-yellow), var(--sauce-red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.map-stat.soon .lbl { color: var(--sauce-red); }

.map-legend {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  pointer-events: none;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-soft);
}
.map-legend-item .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid white;
}
.map-legend-item .dot-store { background: var(--sauce-cyan); }
.map-legend-item .dot-you {
  background: var(--sauce-lime);
  box-shadow: 0 0 8px var(--sauce-lime);
}

@media (max-width: 760px) {
  .map-stat-overlay { left: 12px; top: 12px; padding: 10px 14px; }
  .map-stat .num { font-size: 22px; }
  .map-stat-row { gap: 16px; }
  .map-legend { display: none; }
}

/* Google Maps info window — cyan brand styling */
.gm-style-iw-c {
  background: var(--surface) !important;
  border: 1px solid var(--border-hi) !important;
  border-radius: 14px !important;
  box-shadow: 0 30px 60px rgba(6,40,59,0.25) !important;
  padding: 0 !important;
  max-width: 320px !important;
}
.gm-style-iw-d { overflow: hidden !important; max-height: none !important; }
.gm-style-iw-tc::after { background: var(--surface) !important; }

.sauce-iw {
  font-family: var(--font-display);
  color: var(--text);
  padding: 14px 16px 16px;
  min-width: 240px;
}
.sauce-iw .iw-state-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: white;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.sauce-iw .iw-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.2;
  color: var(--sauce-teal-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.sauce-iw .iw-addr {
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.5;
  margin-bottom: 10px;
}
.sauce-iw .iw-delivery {
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sauce-lime);
  margin-bottom: 8px;
}
.sauce-iw .iw-distance {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--sauce-cyan-deep);
  margin-bottom: 12px;
}
.sauce-iw .iw-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 700;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.sauce-iw .iw-link {
  color: var(--sauce-cyan-deep) !important;
  text-decoration: none;
  transition: color .2s ease;
}
.sauce-iw .iw-link:hover { color: var(--sauce-red) !important; }
.sauce-iw .iw-directions { margin-left: auto; }

/* Store list */
.store-item {
  cursor: pointer;
  transition: all .25s var(--ease);
  border-left: 2px solid transparent;
}
.store-item:hover {
  background: var(--sauce-cyan-soft);
  border-left-color: var(--sauce-cyan);
}
.store-item.active {
  background: rgba(0,183,222,0.10);
  border-left-color: var(--sauce-cyan-deep);
}
.store-item .name {
  color: var(--sauce-teal-dark);
  font-weight: 700;
  font-family: var(--font-display);
}
.store-item .dist {
  background: var(--sauce-cyan);
  color: white;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: white;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
}

.locator-panel { background: var(--surface) !important; backdrop-filter: none; }
.locator-search { border-color: var(--border-hi) !important; background: var(--surface) !important; }
.locator-search input { color: var(--text) !important; }
.locator-search input::placeholder { color: var(--text-faint) !important; }
.locator-btn {
  background: var(--surface) !important;
  border: 1px solid var(--border-hi) !important;
  color: var(--text-soft) !important;
  font-weight: 700 !important;
  transition: all .25s var(--ease);
}
.locator-btn:hover {
  background: var(--sauce-cyan-soft) !important;
  border-color: var(--sauce-cyan) !important;
  color: var(--sauce-cyan-deep) !important;
}
.locator-chip {
  background: var(--surface) !important;
  border: 1px solid var(--border-hi) !important;
  color: var(--text-soft) !important;
  font-weight: 700 !important;
  transition: all .25s var(--ease);
}
.locator-chip:hover {
  background: var(--sauce-cyan-soft) !important;
  border-color: var(--sauce-cyan) !important;
  color: var(--sauce-cyan-deep) !important;
}
.locator-chip.active {
  background: var(--sauce-cyan) !important;
  border-color: transparent !important;
  color: white !important;
  box-shadow: 0 4px 14px rgba(0,183,222,0.40);
}
.locator-count { color: var(--text-mute); font-weight: 700; }

/* ==========================================================================
   VERIFY PAGE — atmosphere visual
   ========================================================================== */
.verify-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.verify-atmosphere video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.20;
  filter: saturate(1.1);
}
.verify-atmosphere-tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 700px at 50% 30%, rgba(250,246,232,0.55) 0%, rgba(250,246,232,0.92) 80%),
    linear-gradient(180deg, rgba(250,246,232,0.4) 0%, rgba(250,246,232,0.95) 100%);
}
body[data-page="verify"] {
  background-image: none;
}
.verify-hero-immersive {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}

/* Burst canvas */
.verify-burst-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  border-radius: var(--r-xl);
}
.verify-card { position: relative; }

/* ==========================================================================
   LIVE TICKER on verify page
   ========================================================================== */
.live-ticker {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 50;
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-md);
  padding: 12px 14px;
  box-shadow: 0 18px 40px rgba(6,40,59,0.12);
  opacity: 0;
  transform: translateY(20px);
  animation: tickerEntry 0.8s cubic-bezier(.22,1,.36,1) 1.2s forwards;
}
@keyframes tickerEntry { to { opacity: 1; transform: translateY(0); } }
@media (max-width: 880px) { .live-ticker { display: none; } }

.live-ticker-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.live-ticker-head .live-dot { width: 6px; height: 6px; }
.live-ticker-body { position: relative; min-height: 56px; }
.live-entry {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.live-entry.entering { opacity: 0; transform: translateY(8px); animation: liveIn .45s cubic-bezier(.22,1,.36,1) forwards; }
.live-entry.leaving { opacity: 1; transform: translateY(0); animation: liveOut .45s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes liveIn { to { opacity: 1; transform: translateY(0); } }
@keyframes liveOut { to { opacity: 0; transform: translateY(-8px); } }
.live-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sauce-cyan), var(--sauce-lime));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.live-meta { font-size: 12px; line-height: 1.35; min-width: 0; flex: 1; }
.live-user {
  color: var(--sauce-teal-dark);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.live-verified-tag {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sauce-lime);
  padding: 2px 6px;
  border-radius: var(--r-pill);
  background: var(--sauce-lime-soft);
  border: 1px solid rgba(27,167,24,0.30);
  flex-shrink: 0;
}
.live-loc {
  color: var(--text-mute);
  font-family: var(--font-mono);
  font-size: 10px;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-serial { color: var(--sauce-cyan-deep); font-weight: 700; }

/* ==========================================================================
   REPORT COUNTERFEIT — Typeform-style step flow
   ========================================================================== */

.typeform-section {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: 100px clamp(20px, 5vw, 80px) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Split layout — form on left, reassurance aside on right */
.typeform-section.typeform-split {
  justify-content: flex-start;
  padding: 100px clamp(20px, 5vw, 80px) 100px;
}
.typeform-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.typeform-form-col { min-width: 0; padding-top: 20px; }
.typeform-aside {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Hide aside on mobile/tablet — keep clean form-only experience */
@media (max-width: 980px) {
  .typeform-grid { grid-template-columns: 1fr; }
  .typeform-aside { display: none; }
  .typeform-section.typeform-split { padding-bottom: 60px; }
}

/* Aside — big stat */
.typeform-aside-stat {
  background: linear-gradient(135deg, var(--sauce-teal-dark) 0%, var(--sauce-cyan-deep) 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.typeform-aside-stat::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,210,63,0.30), transparent 70%);
  filter: blur(60px);
  bottom: -100px; right: -80px;
  pointer-events: none;
}
.typeform-aside-stat .num {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  background: linear-gradient(120deg, white, var(--sauce-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.typeform-aside-stat .lbl {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: white;
  margin-top: 14px;
}
.typeform-aside-stat .src {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
}

/* Aside — photo */
.typeform-aside-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 16/11;
  box-shadow: 0 10px 30px rgba(6,40,59,0.10);
}
.typeform-aside-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.typeform-aside-photo-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(180deg, transparent, rgba(6,40,59,0.85));
}

/* Aside — info cards */
.typeform-aside-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all .25s var(--ease);
}
.typeform-aside-card:hover {
  border-color: var(--sauce-cyan);
  box-shadow: 0 12px 28px rgba(6,40,59,0.08);
}
.typeform-aside-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sauce-cyan-soft), var(--sauce-yellow-soft));
  color: var(--sauce-teal-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.typeform-aside-card-reward .typeform-aside-card-icon {
  background: linear-gradient(135deg, var(--sauce-yellow), var(--sauce-red));
  color: white;
}
.typeform-aside-card-emergency {
  background: rgba(235,33,39,0.04);
  border-color: rgba(235,33,39,0.25);
}
.typeform-aside-card-emergency .typeform-aside-card-icon {
  background: rgba(235,33,39,0.10);
  color: var(--sauce-red);
}
.typeform-aside-card-emergency:hover {
  border-color: var(--sauce-red);
}
.typeform-aside-card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sauce-teal-dark);
  margin-bottom: 4px;
}
.typeform-aside-card-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mute);
}
.typeform-aside-card-text a {
  color: var(--sauce-cyan-deep);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Top progress bar */
.typeform-progress {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  height: 3px;
  background: rgba(6,40,59,0.06);
  z-index: 30;
}
.typeform-progress__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--sauce-cyan), var(--sauce-lime), var(--sauce-yellow), var(--sauce-red));
  background-size: 300% 100%;
  transition: width 0.5s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 0 12px rgba(0,183,222,0.45);
  animation: tfProgressShine 4s linear infinite;
}
@keyframes tfProgressShine {
  from { background-position: 0 0; }
  to { background-position: 300% 0; }
}

/* Top error banner */
.typeform-error {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(235,33,39,0.08);
  border: 1px solid rgba(235,33,39,0.4);
  color: var(--sauce-red);
  padding: 12px 18px;
  border-radius: var(--r-md);
  font-size: 13px;
  margin: 0 auto 28px;
  font-weight: 700;
  max-width: 720px;
  width: 100%;
}

/* Form wrapper */
.typeform {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  min-height: 460px;
}

/* ==== STEP CONTAINER ==== */
.typeform-step {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}
.typeform-step.is-active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: tfStepIn 0.55s cubic-bezier(.22,1,.36,1);
}
.typeform-step.is-leaving-up    { animation: tfStepOutUp   0.5s cubic-bezier(.22,1,.36,1) both; pointer-events: none; }
.typeform-step.is-leaving-down  { animation: tfStepOutDown 0.5s cubic-bezier(.22,1,.36,1) both; pointer-events: none; }
.typeform-step.is-entering-up   { animation: tfStepInUp    0.55s cubic-bezier(.22,1,.36,1) both; }
.typeform-step.is-entering-down { animation: tfStepInDown  0.55s cubic-bezier(.22,1,.36,1) both; }

@keyframes tfStepIn      { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tfStepInUp    { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tfStepInDown  { from { opacity: 0; transform: translateY(-40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tfStepOutUp   { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-40px); } }
@keyframes tfStepOutDown { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(40px); } }

/* Step counter "01 / 07" */
.typeform-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--sauce-cyan-deep);
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.typeform-num::before {
  content: '';
  width: 10px;
  height: 1.5px;
  background: var(--sauce-cyan);
  margin-right: 12px;
  align-self: center;
}
.typeform-of { color: var(--text-mute); font-weight: 400; }

/* The big question */
.typeform-q {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  font-size: clamp(28px, 4.6vw, 52px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.025em;
  color: var(--sauce-teal-dark) !important;
  text-transform: none !important;
  margin-bottom: 14px;
  max-width: 18ch;
}
.typeform-q span[aria-hidden] { font-style: normal; }

/* Helper text */
.typeform-hint {
  font-size: 16px;
  color: var(--text-mute);
  line-height: 1.55;
  max-width: 56ch;
  margin-bottom: 32px;
}
.typeform-hint a { color: var(--sauce-cyan-deep); text-decoration: underline; text-underline-offset: 3px; }

/* Inputs */
.typeform-input {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 2px solid var(--border-hi) !important;
  border-radius: 0 !important;
  padding: 16px 4px !important;
  font: inherit;
  font-size: 22px !important;
  font-weight: 500;
  color: var(--sauce-teal-dark) !important;
  width: 100%;
  outline: none !important;
  transition: border-color .3s var(--ease);
  font-family: var(--font-display) !important;
}
.typeform-input::placeholder { color: var(--text-faint) !important; }
.typeform-input:focus {
  border-bottom-color: var(--sauce-cyan) !important;
  background: transparent !important;
  box-shadow: none !important;
}
.typeform-input--big {
  font-size: clamp(20px, 3vw, 28px) !important;
  padding: 18px 4px !important;
}
.typeform-input--error {
  border-bottom-color: var(--sauce-red) !important;
  animation: tfShake 0.45s ease;
}
@keyframes tfShake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}

.typeform-textarea {
  resize: none;
  font-family: var(--font-body) !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
  border: 1.5px solid var(--border-hi) !important;
  border-radius: var(--r-md) !important;
  padding: 14px 16px !important;
  font-weight: 400 !important;
}
.typeform-textarea:focus {
  border-color: var(--sauce-cyan) !important;
  background: var(--sauce-cyan-soft) !important;
}

.typeform-input-prefix {
  display: flex;
  align-items: stretch;
  border-bottom: 2px solid var(--border-hi);
  padding-bottom: 0;
  margin-bottom: 8px;
  transition: border-color .3s var(--ease);
}
.typeform-input-prefix:focus-within { border-bottom-color: var(--sauce-cyan); }
.typeform-input-prefix .prefix {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--sauce-cyan-deep);
  padding: 16px 0 16px 4px;
  letter-spacing: 0.04em;
  user-select: none;
  display: flex;
  align-items: center;
}
.typeform-input-prefix .typeform-input { border-bottom: 0 !important; padding-left: 6px !important; }

/* Chips for state pick */
.typeform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.typeform-chips--error { animation: tfShake 0.45s ease; }
.typeform-chip {
  cursor: pointer;
  position: relative;
}
.typeform-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.typeform-chip span {
  display: block;
  padding: 12px 22px;
  background: var(--surface);
  border: 1.5px solid var(--border-hi);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all .25s var(--ease);
}
.typeform-chip:hover span {
  border-color: var(--sauce-cyan);
  color: var(--sauce-cyan-deep);
  background: var(--sauce-cyan-soft);
  transform: translateY(-1px);
}
.typeform-chip input:checked + span {
  background: var(--sauce-cyan);
  border-color: var(--sauce-cyan);
  color: white;
  box-shadow: 0 6px 20px rgba(0,183,222,0.40);
}

/* Consent checkbox — big, clickable */
.typeform-consent {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1.5px solid var(--border-hi);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all .25s var(--ease);
  margin-bottom: 24px;
  max-width: 640px;
}
.typeform-consent:hover {
  border-color: var(--sauce-cyan);
  background: var(--sauce-cyan-soft);
}
.typeform-consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.typeform-consent-box {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid var(--border-hi);
  display: grid;
  place-items: center;
  margin-top: 2px;
  transition: all .25s var(--ease);
  background: var(--surface);
}
.typeform-consent-check {
  font-size: 14px;
  font-weight: 900;
  color: white;
  line-height: 1;
  opacity: 0;
  transform: scale(0.4);
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
}
.typeform-consent input:checked ~ .typeform-consent-box {
  background: var(--sauce-cyan);
  border-color: var(--sauce-cyan);
}
.typeform-consent input:checked ~ .typeform-consent-box .typeform-consent-check {
  opacity: 1;
  transform: scale(1);
}
.typeform-consent-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  font-weight: 400;
}
.typeform-consent--error {
  animation: tfShake 0.45s ease;
  border-color: var(--sauce-red) !important;
}

/* Buttons */
.typeform-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.typeform-next, .typeform-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--sauce-cyan);
  color: white;
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,183,222,0.32);
  transition: all .3s var(--ease);
}
.typeform-next:hover, .typeform-submit:hover {
  background: var(--sauce-teal);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(6,84,110,0.4);
}
.typeform-back {
  background: transparent;
  border: 0;
  color: var(--text-mute);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color .25s var(--ease);
  padding: 8px 12px;
}
.typeform-back:hover { color: var(--sauce-teal-dark); }
.typeform-skip {
  background: transparent;
  border: 1.5px solid var(--border-hi);
  color: var(--text-soft);
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all .25s var(--ease);
}
.typeform-skip:hover {
  border-color: var(--text-mute);
  color: var(--sauce-teal-dark);
}

/* Keyboard hint inside the next button */
kbd {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255,255,255,0.20);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 2px;
}

.typeform-fineprint {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.6;
  max-width: 56ch;
}
.typeform-fineprint a { color: var(--sauce-cyan-deep); text-decoration: underline; }

/* Floating reward chip at the bottom of the form */
.typeform-foot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20;
  pointer-events: none;
}
.typeform-reward {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(120deg, var(--sauce-yellow), var(--sauce-red));
  color: var(--sauce-teal-dark);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px rgba(235,33,39,0.32);
  pointer-events: auto;
}
.typeform-reward svg { color: var(--sauce-teal-dark); }
@media (max-width: 720px) {
  .typeform-foot { display: none; }
}

/* ==========================================================================
   REPORT SUCCESS
   ========================================================================== */
.report-success {
  min-height: calc(100vh - 80px);
  padding: 100px 24px 80px;
  display: grid;
  place-items: center;
  position: relative;
}
.report-success-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(6,40,59,0.10);
}
.report-success-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 30%, rgba(0,183,222,0.30), transparent 70%);
  border-radius: inherit;
  z-index: 0;
  opacity: 0.6;
  animation: tfSuccessGlow 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes tfSuccessGlow {
  0%, 100% { transform: translateX(-30%); }
  50%      { transform: translateX(30%); }
}
.report-success-card > * { position: relative; z-index: 1; }

.report-success-check {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sauce-cyan), var(--sauce-lime));
  color: white;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  box-shadow: 0 0 80px rgba(0,183,222,0.5), 0 8px 24px rgba(27,167,24,0.4);
  animation: tfSuccessPop 0.9s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes tfSuccessPop {
  0%   { transform: scale(.4); opacity: 0; }
  60%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

.report-success-burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.report-success-burst span {
  position: absolute;
  top: 50%; left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: tfBurst 1.2s cubic-bezier(.22,1,.36,1) both;
}
.report-success-burst span:nth-child(1) { background: var(--sauce-cyan);   --bx:  150px; --by: -120px; }
.report-success-burst span:nth-child(2) { background: var(--sauce-lime);   --bx: -150px; --by:  -90px; }
.report-success-burst span:nth-child(3) { background: var(--sauce-yellow); --bx:  100px; --by:  130px; }
.report-success-burst span:nth-child(4) { background: var(--sauce-red);    --bx: -100px; --by:  120px; }
.report-success-burst span:nth-child(5) { background: var(--sauce-cyan);   --bx:    0px; --by: -160px; }
@keyframes tfBurst {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--bx)), calc(-50% + var(--by))) scale(1.5); opacity: 0; }
}

/* ==========================================================================
   CLICK RIPPLE
   ========================================================================== */
.ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 65%);
  transform: scale(0);
  animation: ripple .65s cubic-bezier(.22,1,.36,1) forwards;
  z-index: 2;
  mix-blend-mode: screen;
}
@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

/* ==========================================================================
   3D TILT cards
   ========================================================================== */
.product-card,
.state-card,
.promo-card,
.card-feature {
  transform: perspective(1000px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg));
  transition: transform .6s cubic-bezier(.22,1,.36,1), border-color .35s var(--ease), box-shadow .35s var(--ease) !important;
  will-change: transform;
}

/* ==========================================================================
   CURSOR SMOKE TRAIL — cyan + lime pops
   ========================================================================== */
.cursor-puff {
  position: fixed;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,183,222,0.55), transparent 60%);
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: multiply;
  filter: blur(6px);
  will-change: transform, opacity;
}
@media (hover: none), (pointer: coarse) { .cursor-puff { display: none; } }

/* ==========================================================================
   HERO MONOGRAM background
   ========================================================================== */
.hero-monogram-bg {
  position: absolute;
  width: min(120vw, 1100px);
  height: auto;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
}

/* ==========================================================================
   FOOTER NEWSLETTER + SOCIALS (extra polish carry-over)
   ========================================================================== */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid;
  display: grid;
  place-items: center;
  transition: all .3s var(--ease);
}
.footer-socials a:hover { transform: translateY(-2px); }
.footer-newsletter {
  display: flex;
  align-items: center;
  border-radius: var(--r-pill);
  padding: 4px 4px 4px 16px;
  transition: border-color .3s var(--ease);
}
.footer-newsletter input {
  flex: 1;
  background: none;
  border: 0;
  outline: none;
  font-size: 14px;
  padding: 8px 0;
  min-width: 0;
}
.footer-newsletter button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 0;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.footer-newsletter button:hover { transform: translateX(2px); }

/* Body bg lock for verify (atmosphere video carries) */
body[data-page="verify"] { background-image: none; }

/* Squiggle (carry-over) */
.squiggle {
  position: relative;
  display: inline-block;
}
.squiggle::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -10px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 12' preserveAspectRatio='none'%3E%3Cpath d='M0,8 Q12.5,0 25,6 T50,6 T75,6 T100,6' fill='none' stroke='%2300b7de' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
