/* ============================================================
   VESSL · SUMMER SHRED — campaign landing page
   Brand palette + fonts matched to vessl-site. Premium pass.
   ============================================================ */

:root {
  /* Brand palette (from vessl_brief.txt) */
  --ink:        #1a1d1d;   /* Charcoal Black (slight teal tint) */
  --ink-deep:   #141717;
  --ocean:      #2c393a;   /* Deep Ocean Grey (bars, surfaces) */
  --ocean-2:    #243031;
  --mist:       #e8eae8;   /* Off-White Mist */
  --mist-dim:   #a9b2b1;
  --teal:       #4ca5a5;   /* Core Teal */
  --teal-line:  #5cbcbb;
  --aqua:       #98dad8;   /* Pale Aqua (accent words) */
  --white:      #ffffff;

  --teal-bg: linear-gradient(155deg, #7cc8c5 0%, #5fb6b3 52%, #46a3a3 100%);

  --display: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body:    "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Easing (emil-design-eng: strong custom curves) */
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);

  /* Depth tokens (tinted, never pure black) */
  --shadow-soft: 0 26px 60px -28px rgba(8, 18, 18, 0.85);
  --shadow-teal: 0 34px 70px -30px rgba(76, 165, 165, 0.5);
  --glow-aqua:   0 0 34px rgba(152, 218, 216, 0.28);

  --container: 1240px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(5rem, 9.5vw, 9rem);

  /* Background image sources (in public/assets/images/summer-shred/) */
  --img-hero:    url("/assets/images/summer-shred/three-young-people-running-together-in-a-race-on-a-2026-01-11-08-48-39-utc.jpg");
  --img-mindset: url("/assets/images/summer-shred/close-up-of-runners-on-the-beach-next-to-the-shore-2026-01-11-08-50-18-utc.jpg");
}

/* ----------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--mist);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--teal); color: var(--ink); }

:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 300;
  background: var(--aqua); color: var(--ink);
  padding: .6rem 1rem; border-radius: 8px; font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ----------------------------------------------------------- Global FX layers */
/* Film grain — fixed, pointer-events none, very subtle (high-end-visual-design) */
.fx-grain {
  position: fixed; inset: 0; z-index: 400; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll progress (CSS scroll-driven; degrades to invisible where unsupported) */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 250;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--teal), var(--aqua));
}
@supports (animation-timeline: scroll()) {
  .scroll-progress { animation: progress linear both; animation-timeline: scroll(root); }
}
@keyframes progress { to { transform: scaleX(1); } }

/* ----------------------------------------------------------- Helpers */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--body); font-weight: 700;
  font-size: clamp(.72rem, 1.6vw, .85rem);
  letter-spacing: .26em; text-transform: uppercase; color: var(--teal);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--teal); display: inline-block; }
.eyebrow.on-teal { color: var(--ink); }
.eyebrow.on-teal::before { background: var(--ink); }

.h-display {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  line-height: .9; letter-spacing: -0.025em; color: var(--white);
}
.h-section {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.3rem, 6.4vw, 4.6rem); line-height: .95; letter-spacing: -0.02em;
  color: var(--white);
}
.h-section .aqua { color: var(--aqua); text-shadow: 0 0 32px rgba(152, 218, 216, 0.22); }
.h-section .teal { color: var(--teal); }
.h-section .ink  { color: var(--ink); }
.on-teal .h-section { color: var(--ink); }
.on-teal .h-section .white { color: var(--white); }

.lede { font-size: clamp(1.08rem, 2.4vw, 1.35rem); color: var(--mist-dim); max-width: 56ch; }
.on-teal .lede { color: rgba(26, 29, 29, .78); }

.hl { background: var(--aqua); color: var(--ink); padding: .04em .35em; font-weight: 700;
  box-decoration-break: clone; -webkit-box-decoration-break: clone; }

/* ----------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--teal); --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .75rem;
  font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(.95rem, 1.8vw, 1.08rem);
  padding: 1.05rem 1.7rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: none; border-radius: 12px; cursor: pointer;
  box-shadow: 0 16px 38px -16px rgba(76,165,165,.75), inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .22s var(--ease), background-color .25s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-3px); background: var(--teal-line);
  box-shadow: 0 22px 50px -14px rgba(76,165,165,.9), inset 0 1px 0 rgba(255,255,255,.3); }
.btn:active { transform: translateY(-1px) scale(.985); }
.btn .arr {
  display: inline-grid; place-items: center; width: 1.85em; height: 1.85em;
  border-radius: 50%; background: rgba(20,23,23,.18); font-size: .82em; line-height: 1;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.btn:hover .arr { transform: translate(3px, -1px); }

.btn-dark { --btn-bg: var(--ink); --btn-fg: var(--white);
  box-shadow: 0 18px 44px -18px rgba(0,0,0,.85), inset 0 1px 0 rgba(255,255,255,.08); }
.btn-dark:hover { background: #0f1111; box-shadow: 0 24px 54px -16px rgba(0,0,0,.95), 0 0 28px rgba(76,165,165,.25); }
.btn-dark .arr { background: rgba(255,255,255,.16); }

/* ----------------------------------------------------------- Nav (floating glass pill) */
.nav {
  position: fixed; z-index: 200;
  top: clamp(.7rem, 1.6vw, 1.15rem);
  left: 50%; transform: translateX(-50%);
  width: min(1240px, calc(100% - clamp(1.2rem, 4vw, 2.4rem)));
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .55rem .7rem .55rem 1.15rem;
  border-radius: 18px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  transition: background-color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
/* Glass only appears once scrolled — keeps the hero photo (and faces) clear at the top */
.nav.scrolled {
  background: rgba(18, 20, 20, 0.8);
  backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-color: rgba(152, 218, 216, 0.14);
  box-shadow: 0 20px 60px -26px rgba(0,0,0,.95);
}
/* Legibility for the white logo floating over the photo before scroll */
.nav .logo-img { filter: drop-shadow(0 2px 10px rgba(0,0,0,.55)); }
.nav.scrolled .logo-img { filter: none; }
.brand { display: inline-flex; align-items: center; }
.nav .btn { padding: .68rem 1.15rem; font-size: .9rem;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset; }
.nav-price { color: var(--aqua); font-weight: 800; font-family: var(--display); }

/* Logo image (square source w/ transparent padding — crop to lockup, ~2:1) */
.logo-img { display: block; object-fit: cover; object-position: center; }
.nav .logo-img    { width: 96px;  height: 46px; }
.footer .logo-img { width: 100px; height: 48px; }
.offer .logo-img  { width: clamp(168px, 40vw, 200px); height: 98px; margin-inline: auto; }

/* ----------------------------------------------------------- Sections */
.section { padding-block: var(--section-y); position: relative; }
.section.ink, .section.ocean { background: var(--ink); }
.section.teal { background: var(--teal-bg); color: var(--ink); }
.section > .container { position: relative; z-index: 1; }

/* Ambient teal glow in dark sections (subtle depth, not neon) */
.section.ocean::before, .results::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: min(760px, 70vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(76,165,165,.13), transparent 64%);
  filter: blur(30px);
}
.section.ocean::before { top: -14%; right: -8%; }
.results::before { bottom: -16%; left: -10%; }

/* Full-bleed image backdrop with scrim */
.backdrop { position: absolute; inset: 0; overflow: hidden; z-index: 0; background: var(--ink-deep); }
.backdrop::before { content: ""; position: absolute; inset: 0;
  background-image: var(--shot); background-size: cover; background-position: center; }
.backdrop .scrim { position: absolute; inset: 0; }

/* ----------------------------------------------------------- HERO */
.hero {
  min-height: 100svh; display: flex; align-items: flex-end;
  padding: 7rem var(--gutter) clamp(2.6rem, 5vw, 4rem);
  position: relative; overflow: hidden; background: var(--ink-deep);
}
.hero .backdrop::before {
  --shot: var(--img-hero); background-position: 72% 24%;
  animation: kenburns 26s var(--ease) forwards;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero .scrim {
  background:
    linear-gradient(180deg, rgba(20,23,23,.28) 0%, rgba(20,23,23,.04) 26%, rgba(20,23,23,.5) 68%, rgba(26,29,29,.97) 100%),
    linear-gradient(78deg, rgba(20,23,23,.9) 0%, rgba(20,23,23,.4) 44%, rgba(20,23,23,0) 72%);
}
.hero > .container { position: relative; z-index: 1; }
.hero-inner { max-width: 780px; }
.hero h1 { font-size: clamp(3rem, 9.5vw, 6.6rem); margin: .85rem 0 0; }
.hero h1 .now { color: var(--aqua); display: block; text-shadow: 0 0 38px rgba(152, 218, 216, 0.3); }
.hero-sub {
  font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .01em;
  font-size: clamp(1.02rem, 2.4vw, 1.4rem); color: var(--white); margin-top: 1.2rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.hero-sub .accent { color: var(--aqua); }
.hero-cta { display: flex; flex-wrap: wrap; align-items: stretch; gap: 1rem 1.1rem; margin-top: 1.7rem; }
.price-chip {
  display: inline-flex; flex-direction: column; justify-content: center; align-items: flex-start;
  background: rgba(44,57,58,.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(152,218,216,.3); border-radius: 12px; padding: .35rem 1.2rem; line-height: 1.05;
}
.price-chip .only { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mist-dim); }
.price-chip .amt { font-family: var(--display); font-weight: 900; font-size: clamp(1.7rem, 4vw, 2.3rem); color: var(--white); }
.hero-micro { margin-top: 1rem; font-size: .92rem; color: var(--mist-dim); letter-spacing: .02em; }

/* ----------------------------------------------------------- SPLIT (holiday / benefits / who) */
.split { position: relative; overflow: hidden; }
.split-grid { display: grid; gap: clamp(2rem, 5vw, 4.5rem); grid-template-columns: 1fr; align-items: stretch; }
.split-head { align-self: center; }
.split-head .eyebrow { margin-bottom: 1.4rem; }
.split-head .h-section { margin-bottom: .4rem; }

/* Skewed accent bars (signature) */
.bars { display: grid; gap: clamp(.85rem, 1.7vw, 1.05rem); margin-top: 2rem; }
.bar {
  position: relative; transform: skewX(-11deg);
  background: linear-gradient(180deg, rgba(44,57,58,.95), rgba(36,48,49,.95));
  border: 1.5px solid rgba(152,218,216,.32); border-radius: 6px;
  padding: 1.05rem 1.6rem 1.05rem 1.7rem;
  box-shadow: 0 14px 30px -22px rgba(0,0,0,.9);
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.bar::before { content: ""; position: absolute; left: -1.5px; top: -1.5px; bottom: -1.5px;
  width: 7px; background: var(--teal); border-radius: 6px 0 0 6px; box-shadow: 0 0 16px rgba(76,165,165,.7); }
.bar > .bar-in {
  transform: skewX(11deg); display: flex; align-items: center; gap: .9rem;
  font-family: var(--display); font-weight: 700; font-size: clamp(1rem, 2.2vw, 1.2rem); color: var(--white);
}
.bar:hover { border-color: var(--aqua); transform: skewX(-11deg) translateX(7px);
  box-shadow: 0 16px 36px -18px rgba(76,165,165,.55); }
.bar .ico { font-size: 1.25em; line-height: 1; flex: none; }
.bar .tick { color: var(--aqua); font-weight: 900; flex: none; font-size: 1.1em; }

/* Photo frame — double-bezel, tinted glow, slow zoom (fills column height in splits) */
.shot {
  position: relative; overflow: hidden; border-radius: 22px;
  padding: 7px; background: linear-gradient(150deg, rgba(92,188,187,.35), rgba(44,57,58,.6));
  border: 1px solid rgba(152,218,216,.16); box-shadow: var(--shadow-teal);
}
.shot::after {
  content: ""; position: absolute; inset: 7px; border-radius: 15px; pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18); z-index: 2;
}
.shot img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px;
  transition: transform 1.4s var(--ease); display: block; }
.shot:hover img { transform: scale(1.05); }
.split .shot { height: 100%; min-height: 460px; }

.shot.is-missing { display: grid; place-items: center; border-style: dashed; }
.shot.is-missing img { display: none; }
.shot.is-missing::after {
  content: "PHOTO\A " attr(data-label); white-space: pre; text-align: center; inset: 0;
  display: grid; place-items: center; box-shadow: none;
  font-family: var(--body); font-weight: 600; font-size: .9rem; color: var(--aqua); opacity: .8;
}

/* Holiday-specific copy */
.desire .copy-stack { margin-top: 1.8rem; display: grid; gap: 1.25rem; max-width: 50ch; }
.desire .copy-stack p { font-size: clamp(1.08rem, 2.4vw, 1.4rem); color: var(--mist); }
.desire .copy-stack .soft { color: var(--mist-dim); font-size: clamp(1rem, 2.1vw, 1.2rem); }

/* ----------------------------------------------------------- INCLUDED (teal checklist) */
.included .container { text-align: center; }
.included .h-section { margin-bottom: 2.4rem; }
.checklist { display: grid; gap: 1.15rem; max-width: 680px; margin-inline: auto; text-align: left; }
.check {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .004em;
  font-size: clamp(.98rem, 2.1vw, 1.32rem); color: var(--ink);
}
.check .mark {
  flex: none; width: 1.85em; height: 1.85em; border-radius: 50%;
  background: var(--ink); color: var(--aqua); display: grid; place-items: center;
  font-size: .8em; font-weight: 900;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.5);
}
.included .value-note { margin-top: 2.4rem; font-family: var(--body); font-weight: 600;
  color: rgba(26,29,29,.7); font-size: 1.02rem; }
.included .cta-row { margin-top: 2rem; }

/* ----------------------------------------------------------- RESULTS gallery */
.results .h-section { margin-bottom: .5rem; }
.results .lede { margin-bottom: 2.4rem; }
.results-grid { display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); grid-template-columns: repeat(3, 1fr); }
.results-grid .shot { aspect-ratio: 4 / 5; }
.results .note { margin-top: 1.6rem; font-size: .95rem; color: var(--mist-dim); }

/* ----------------------------------------------------------- MINDSET */
.mindset { position: relative; overflow: hidden; background: var(--ink); }
.mindset .backdrop::before { --shot: var(--img-mindset); background-position: center 22%; }
.mindset .scrim { background: linear-gradient(180deg, rgba(26,29,29,.2) 0%, rgba(26,29,29,.5) 40%, rgba(26,29,29,.97) 76%); }
.mindset .container { padding-top: clamp(18rem, 40vw, 30rem); }
.deny-list { display: grid; gap: .35rem; margin-bottom: 1.6rem; }
.deny {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 4rem); line-height: 1.02; letter-spacing: -.02em;
  display: flex; align-items: center; gap: .7rem; color: var(--white);
}
.deny .x  { color: var(--mist-dim); font-weight: 700; }
.deny.yes { color: var(--aqua); text-shadow: 0 0 34px rgba(152,218,216,.28); }
.mindset .lede { margin-top: .4rem; }

/* ----------------------------------------------------------- OFFER */
.offer { position: relative; overflow: hidden; }
.offer .container { text-align: center; }
.offer .brand-mark { display: flex; justify-content: center; margin-bottom: 1.6rem; }
.offer h2 {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.6rem, 8vw, 5.4rem); line-height: .95; letter-spacing: -.02em; color: var(--white);
}
.offer h2 .price { color: var(--ink); }
.pills { display: grid; gap: .9rem; max-width: 560px; margin: 2.2rem auto 0; }
.pill {
  border: 1.5px solid rgba(26,29,29,.4); border-radius: 999px; padding: .95rem 1.5rem;
  font-family: var(--display); font-weight: 700; font-size: clamp(.98rem, 2.2vw, 1.12rem);
  color: var(--ink); background: rgba(255,255,255,.14);
  transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.pill:hover { background: rgba(255,255,255,.26); border-color: var(--ink); transform: translateY(-2px); }
.pill strong { color: var(--white); }
.value-anchor { margin: 2.2rem auto 0; max-width: 48ch; font-family: var(--body); font-weight: 600;
  font-size: clamp(1.02rem, 2.3vw, 1.2rem); color: rgba(26,29,29,.82); }
.value-anchor b { color: var(--white); }
.offer .cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.2rem; }
.offer .url { margin-top: 2rem; display: inline-block; font-family: var(--display); font-weight: 800;
  letter-spacing: .04em; font-size: clamp(1rem, 2.4vw, 1.3rem); color: var(--ink);
  border-bottom: 3px solid rgba(26,29,29,.4); padding-bottom: .15rem; transition: border-color .25s var(--ease); }
.offer .url:hover { border-bottom-color: var(--ink); }
.offer .microtrust { margin-top: 1.4rem; font-size: .9rem; color: rgba(26,29,29,.66); letter-spacing: .04em; }
.offer .offer-photo { margin-top: clamp(2.6rem, 6vw, 4.5rem); }
.offer .offer-photo .shot { aspect-ratio: 16 / 7; }
.offer .offer-photo .shot.is-missing::after { color: var(--ink); }

/* ----------------------------------------------------------- Footer */
.footer { background: var(--ink); padding-block: clamp(3rem, 6vw, 5rem) 2rem; position: relative; }
.footer .top { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: center; }
.footer .f-links { display: flex; flex-wrap: wrap; gap: 1.4rem; font-weight: 600; color: var(--mist-dim); }
.footer .f-links a { transition: color .2s var(--ease); }
.footer .f-links a:hover { color: var(--aqua); }
.footer .marquee { margin-top: clamp(2rem, 5vw, 3.5rem); overflow: hidden;
  border-top: 1px solid rgba(232,234,232,.1); padding-top: clamp(1.5rem, 4vw, 3rem); }
.footer .marquee .track { display: inline-flex; gap: 1.5rem; white-space: nowrap;
  animation: marquee 30s linear infinite; will-change: transform; }
.footer .marquee .wm { font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(3rem, 11vw, 8rem); line-height: 1; letter-spacing: .05em;
  color: transparent; -webkit-text-stroke: 1.4px rgba(152,218,216,.22); }
@keyframes marquee { to { transform: translateX(-50%); } }
.footer .legal { margin-top: 2rem; color: var(--mist-dim); font-size: .82rem; display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; }

/* ----------------------------------------------------------- Mobile sticky CTA */
.sticky-cta {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .8rem var(--gutter);
  background: rgba(18,20,20,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(152,218,216,.22);
  transform: translateY(120%); transition: transform .4s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .label { font-family: var(--display); font-weight: 800; text-transform: uppercase; color: var(--white); font-size: .95rem; }
.sticky-cta .label b { color: var(--aqua); }
.sticky-cta .btn { padding: .78rem 1.2rem; font-size: .9rem; box-shadow: none; }

/* ----------------------------------------------------------- Reveal motion (blur-in) */
.js .reveal {
  opacity: 0; transform: translateY(28px); filter: blur(7px);
  transition: opacity .85s var(--ease-expo), transform .85s var(--ease-expo), filter .85s var(--ease-expo);
}
.js .reveal.in { opacity: 1; transform: none; filter: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
.js .reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none; }
  .btn, .bar, .pill, .shot img { transition: none; }
  .footer .marquee .track { animation: none; }
  .hero .backdrop::before { animation: none; }
}

/* ----------------------------------------------------------- Responsive */
@media (min-width: 760px) {
  .split-grid { grid-template-columns: 1.02fr .98fr; }
  .split.reverse .split-grid { grid-template-columns: .98fr 1.02fr; }
  .split.reverse .split-head { order: 2; }
}

@media (max-width: 759px) {
  .desire .split .shot, .split .shot { min-height: 340px; }
  .mindset .container { padding-top: clamp(13rem, 65vw, 20rem); }
  .results-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .sticky-cta { display: flex; }
  .nav .btn { display: none; }
  .hero .eyebrow { display: none; }   /* eyebrow gets lost on mobile — hide it */
  .hero { padding-bottom: 5rem; }
}
