/* ============================================================
   UpgradeAirKit.com — Landing page styles (page-specific only)
   Relies on css/design-system.css for tokens, buttons, cards, etc.
   ============================================================ */

/* Guard: decorative 200%-wide cloud/breeze bands must never cause horizontal page scroll */
html, body { overflow-x: clip; max-width: 100%; }
.hero, .hero-clouds, .hero-breeze { overflow: hidden; }



/* Header nav + hamburger are owned solely by css/nav.css (loaded last). */

/* ============================================================
   SHARED RHYTHM TOKENS (homepage body) — 8px scale
   ============================================================ */
:root {
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --shadow-soft:
    0 1px 2px rgba(12,42,77,.04),
    0 6px 16px rgba(12,42,77,.07),
    0 18px 40px rgba(12,42,77,.08);
  --shadow-soft-hover:
    0 2px 4px rgba(12,42,77,.05),
    0 10px 24px rgba(12,42,77,.10),
    0 28px 60px rgba(12,42,77,.13);
  --hair: 1px solid var(--line);
}

/* Refined section header used across the body */
.sec-head { max-width: 64ch; margin-inline: auto; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head--left { margin-inline: 0; text-align: left; }
.sec-head .eyebrow { display: inline-block; margin-bottom: .8rem; }
.sec-head h2 { letter-spacing: -.02em; }
.sec-head p { margin-top: .9rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 82% -12%, rgba(47,168,79,.14), transparent 58%),
    radial-gradient(1000px 540px at 6% -6%, rgba(12,42,77,.05), transparent 60%),
    radial-gradient(900px 700px at 50% 120%, rgba(47,168,79,.06), transparent 62%),
    linear-gradient(180deg, #FBFEFC 0%, var(--mist) 60%, var(--mist-2) 100%);
}
/* hairline that grounds the hero into the navy band below */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(12,42,77,.10) 30%, rgba(12,42,77,.10) 70%, transparent);
}
.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.08fr;
  gap: clamp(28px, 5vw, 64px); align-items: start;
  padding-block: clamp(40px, 5vw, 72px);
}

/* ---- Distant clouds drifting behind the hero ---- */
.hero-clouds {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.hero-clouds .cloud-band {
  position: absolute; left: 0; top: 0;
  width: 200%; height: 60%;
  display: flex; align-items: flex-start;
  will-change: transform;
}
.hero-clouds .cloud-band--a { top: 2%;  animation: drift-clouds 95s linear infinite; opacity: .85; }
.hero-clouds .cloud-band--b { top: 22%; animation: drift-clouds 150s linear infinite; opacity: .55; }
.hero-clouds .cloud {
  display: inline-block; flex: 0 0 auto;
  background: radial-gradient(ellipse at 50% 55%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.7) 40%, rgba(255,255,255,0) 72%);
  filter: blur(6px);
}
.hero-clouds .c1 { width: 560px; height: 180px; margin-left:  6vw; margin-top:  0px; }
.hero-clouds .c2 { width: 460px; height: 150px; margin-left: 10vw; margin-top: 36px; }
.hero-clouds .c3 { width: 640px; height: 210px; margin-left:  7vw; margin-top:  8px; }
.hero-clouds .c4 { width: 420px; height: 140px; margin-left:  9vw; margin-top: 48px; }
.hero-clouds .c5 { width: 500px; height: 160px; margin-left:  4vw; margin-top: 18px; }
.hero-clouds .c6 { width: 600px; height: 190px; margin-left: 12vw; margin-top:  0px; }
.hero-clouds .c7 { width: 440px; height: 145px; margin-left:  8vw; margin-top: 28px; }
@keyframes drift-clouds {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Fresh-air breeze: animated wave layer behind hero content ---- */
.hero-breeze {
  position: absolute; left: 0; right: 0; top: 42%; bottom: 0;
  z-index: 1;
  pointer-events: none; overflow: hidden;
  opacity: .34;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%),
              linear-gradient(180deg, #000 0%, transparent 92%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%),
              linear-gradient(180deg, #000 0%, transparent 92%);
  -webkit-mask-composite: source-in; mask-composite: intersect;
}
.hero-breeze .breeze-band {
  position: absolute; left: 0; top: 0;
  width: 200%; height: 100%;
  display: flex; align-items: stretch;
  will-change: transform;
}
.hero-breeze .breeze-band--a { animation: drift-breeze 28s linear infinite; }
.hero-breeze .breeze-band svg {
  flex: 0 0 50%; width: 50%; height: 100%; display: block;
}
.hero-breeze .breeze-band svg path { vector-effect: non-scaling-stroke; }
@keyframes drift-breeze {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-clouds .cloud-band,
  .hero-breeze .breeze-band { animation: none; }
}
.hero-copy { max-width: 38rem; }
.hero h1 {
  margin-bottom: .5em;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08; letter-spacing: -.02em;
  text-wrap: balance;
}
.hero h1 .text-green {
  display: block; margin-top: .12em;
  color: var(--green-dark);
}
.hero .lede {
  margin: 0 0 2rem; max-width: 52ch;
  font-size: clamp(1.04rem, 1.3vw, 1.18rem); line-height: 1.62; color: var(--ink-soft);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.1rem; align-items: center; }
/* fine-print reassurance line */
.hero-copy .muted { color: var(--ink-soft); }

.hero-lockups {
  display: flex; align-items: center; gap: clamp(20px, 3.4vw, 40px); flex-wrap: wrap;
  margin-top: clamp(1.8rem, 3.5vw, 2.6rem);
  padding-top: clamp(1.6rem, 3vw, 2.2rem);
  border-top: var(--hair);
}

/* MEET Lulu script lockup */
.meet-lockup { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.meet-lockup .meet-label {
  font-family: var(--font-display); font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; font-size: .7rem; color: var(--ink-soft);
}
.meet-lockup .meet-name { font-family: var(--font-script); font-weight: 700; color: var(--rose); font-size: clamp(2.8rem, 5vw, 3.4rem); line-height: .82; }
.meet-lockup .meet-name .heart { font-size: 1.3rem; }
.meet-lockup .meet-sub {
  width: 100%; font-family: var(--font-display); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; font-size: .68rem; color: var(--ink-soft); margin-top: 0;
}

/* Circular OWN YOUR AIR badge */
/* Brand seal — circular stamp with curved text + breeze glyph */
.air-badge {
  flex: 0 0 auto; position: relative; width: 112px; height: 112px; border-radius: 50%;
  background: radial-gradient(circle at 50% 36%, #fff 0%, #F4FAF6 76%, #E7F2EA 100%);
  box-shadow:
    0 10px 26px rgba(33,138,62,.18),
    inset 0 0 0 1.5px var(--green),
    inset 0 0 0 7px #fff,
    inset 0 0 0 8px rgba(33,138,62,.22);
  display: grid; place-items: center;
  transition: transform .45s cubic-bezier(.2,.9,.3,1.1);
}
.air-badge:hover { transform: rotate(5deg) scale(1.05); }
.air-badge__ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.air-badge__txt {
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  letter-spacing: .12em; fill: var(--navy); text-anchor: middle;
}
.air-badge__glyph { width: 38px; height: 38px; color: var(--green); }

/* Hero image + floating bubble */
.hero-figure { position: relative; width: 100%; max-width: 560px; margin-inline: auto; justify-self: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.hero-figure::before { /* soft atmospheric halo behind Lulu */
  content: ""; position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%);
  width: 86%; height: 86%; border-radius: 50%; z-index: 0;
  background: radial-gradient(closest-side, rgba(47,168,79,.16), transparent 72%);
  filter: blur(14px); pointer-events: none;
}
.hero-figure picture { position: relative; z-index: 1; display: block; }
.hero-figure img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 30px 40px rgba(12,42,77,.26)) drop-shadow(0 6px 14px rgba(47,168,79,.16));
  animation: floaty 7s ease-in-out infinite;
}
.hero-figure .hero-video {
  position: relative; z-index: 1; display: block;
  width: 100%; height: auto; border-radius: 24px;
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 28px 56px rgba(12,42,77,.30), 0 8px 18px rgba(47,168,79,.18);
  animation: floaty 8s ease-in-out infinite;
}
/* safety: any content image with intrinsic-size attrs keeps its aspect ratio */
.hero-figure img, .compare-card img, .spotlight-figure img { height: auto !important; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.bubble-haiku {
  position: relative; align-self: center; max-width: 380px; z-index: 2; text-align: center;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 18px;
  padding: .95em 1.3em; box-shadow: 0 14px 30px rgba(12,42,77,.14);
}
.bubble-haiku .hi { font-family: var(--font-script); font-weight: 700; color: var(--rose); font-size: 1.65rem; line-height: 1; }
.bubble-haiku .haiku { font-family: var(--font-script); font-size: 1.28rem; color: var(--ink); line-height: 1.28; margin-top: .3em; white-space: pre-line; }
.bubble-haiku::after {
  content:""; position:absolute; left: 50%; top: -14px; transform: translateX(-50%); width:0; height:0;
  border: 14px solid transparent; border-bottom-color: var(--paper); border-top: 0;
}

/* ============================================================
   NAVY pillars band
   ============================================================ */
.pillars { padding-block: clamp(38px, 4.5vw, 60px); }
.pillars .feature { gap: 1em; align-items: flex-start; }
.pillars .feature .ico {
  flex: 0 0 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(160deg, rgba(107,224,140,.18), rgba(255,255,255,.05));
  border: 1px solid rgba(107,224,140,.28); color: #6BE08C;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.pillars .feature:hover .ico { transform: translateY(-2px); border-color: rgba(107,224,140,.55); box-shadow: 0 8px 20px rgba(47,168,79,.22); }
.pillars .feature h4 { font-size: 1.02rem; letter-spacing: -.01em; }
.pillars .feature p { color: #AEC2DA; line-height: 1.5; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
  border-bottom: var(--hair);
  padding-block: clamp(18px, 2.6vw, 26px);
}
.trust-badges {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: .7rem clamp(1rem, 3vw, 2.2rem);
}
.trust-badge {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-display); font-weight: 700; font-size: .86rem;
  color: var(--navy); white-space: nowrap;
}
.trust-badge::before {
  content: ""; flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat,
    var(--grad-green);
  box-shadow: 0 2px 6px rgba(47,168,79,.35);
}
/* subtle dividers between badges on wide screens */
.trust-badge + .trust-badge { position: relative; }
@media (min-width: 760px) {
  .trust-badge + .trust-badge::after {
    content: ""; position: absolute; left: calc(-1 * clamp(1rem,3vw,2.2rem) / 2 - .5px);
    top: 50%; transform: translateY(-50%); width: 1px; height: 16px; background: var(--line);
  }
}

/* ============================================================
   PERFECT FOR
   ============================================================ */
.perfect-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.perfect-head .eyebrow { color: var(--green-dark); }
.perfect-head::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.perfect-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(12px, 1.6vw, 18px); }
.perfect-tile {
  display: flex; flex-direction: column; align-items: center; gap: .85rem; text-align: center;
  padding: 1.6rem 1rem; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
  transition: transform .25s cubic-bezier(.2,.9,.3,1.1), box-shadow .3s ease, border-color .25s ease;
}
.perfect-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft-hover); border-color: #CBD9E9; }
.perfect-tile:focus-visible { outline: 3px solid rgba(47,168,79,.4); outline-offset: 3px; }
.perfect-tile .ico {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: var(--grad-air); color: var(--green-dark); border: 1px solid var(--line);
  transition: transform .25s ease, color .2s ease, border-color .2s ease;
}
.perfect-tile:hover .ico { transform: scale(1.06); border-color: var(--green); }
.perfect-tile span {
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .04em; color: var(--navy);
}

/* ============================================================
   PROBLEM -> SOLUTION
   ============================================================ */
.compare {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(47,168,79,.08), transparent 60%),
    linear-gradient(180deg, var(--mist) 0%, #fff 100%);
}
.compare-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px, 3vw, 32px); align-items: center; }
.compare-card { position: relative; background: transparent; border: 0; box-shadow: none; padding-top: 18px; }
.compare-card img {
  width: 100%; height: auto; display: block;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(12,42,77,.28)) drop-shadow(0 6px 12px rgba(47,168,79,.16));
  transition: transform .8s ease, filter .8s ease;
  transform: scale(1.02);
}
.compare.reveal-active .compare-card img { transform: scale(1); }
.compare-card .tag {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%); z-index: 2;
  font-family: var(--font-display); font-weight: 800; font-size: .72rem; letter-spacing: .06em;
  text-transform: uppercase; padding: .55em 1.1em; border-radius: var(--radius-pill); color: #fff;
  box-shadow: 0 8px 18px rgba(12,42,77,.18);
  white-space: nowrap;
}
.compare-card.is-problem .tag { background: var(--rose); }
.compare-card.is-solution .tag { background: var(--grad-green); }
.compare-card.is-problem img {
  filter: drop-shadow(0 22px 32px rgba(12,42,77,.28)) grayscale(.18) saturate(.85);
}
.compare.reveal-active .compare-card.is-solution img {
  filter: drop-shadow(0 22px 32px rgba(12,42,77,.28)) drop-shadow(0 6px 14px rgba(47,168,79,.22)) saturate(1.08);
}
.compare-arrow {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-green); color: #fff; box-shadow: var(--glow-green); flex: 0 0 auto;
}
.compare-arrow svg { width: 30px; height: 30px; }

/* ============================================================
   PRODUCT SPOTLIGHT — MAX XTR
   ============================================================ */
.spotlight .container {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 4vw, 48px); align-items: center;
}
.spotlight-card {
  background: var(--grad-navy); color: #EAF1FB; border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 52px); position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.06);
}
.spotlight-card::before { /* hairline top sheen */
  content:""; position:absolute; left:0; right:0; top:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
}
.spotlight-card::after {
  content:""; position:absolute; inset:auto -20% -50% 50%; height: 90%;
  background: radial-gradient(closest-side, rgba(47,168,79,.3), transparent 70%); filter: blur(24px);
}
.spotlight-card > * { position: relative; z-index: 1; }
.spotlight-card .eyebrow { display: inline-block; margin-bottom: .5rem; }
.spotlight-card h2 { color: #fff; position: relative; letter-spacing: -.01em; }
.spotlight-card h2 b { color: #6BE08C; }
.spotlight-card .xtr { color: var(--rose-soft); font-style: italic; }
.spec-list { list-style: none; margin: 1.4rem 0 1.8rem; padding: 0; position: relative; }
.spec-list li { display: flex; align-items: center; gap: .7rem; padding: .5rem 0; color: #CFE0F2; font-weight: 500; }
.spec-list li svg { flex: 0 0 22px; color: #6BE08C; }
.spotlight-figure img {
  width: 100%; height: auto; display: block; background: transparent;
  filter: drop-shadow(0 28px 40px rgba(12,42,77,.32)) drop-shadow(0 8px 18px rgba(47,168,79,.22));
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background:
    radial-gradient(800px 360px at 50% 0%, rgba(47,168,79,.06), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}
.how-head { text-align: center; margin-bottom: clamp(2.4rem, 4vw, 3.2rem); }
.how-head .eyebrow { display: inline-block; margin-bottom: .7rem; }
.how-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: clamp(8px, 1.5vw, 18px); align-items: stretch; }
.how-step {
  text-align: center; padding: 2rem 1.4rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .25s cubic-bezier(.2,.9,.3,1.1), box-shadow .3s ease, border-color .25s ease;
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft-hover); border-color: #CBD9E9; }
.how-step .step-ico {
  width: 72px; height: 72px; margin: 0 auto 1.1rem; border-radius: 20px; display: grid; place-items: center;
  background: var(--grad-air); border: 1px solid var(--line); color: var(--green-dark);
  box-shadow: inset 0 1px 0 #fff, var(--shadow-sm);
  transition: transform .25s ease;
}
.how-step:hover .step-ico { transform: scale(1.05); }
.how-step .num { display: inline-block; font-family: var(--font-display); font-weight: 900; color: var(--green); font-size: .76rem; letter-spacing: .12em; }
.how-step h3 { margin: .3rem 0 .5rem; }
.how-step .muted { line-height: 1.55; max-width: 28ch; margin-inline: auto; }
.how-arrow { display: grid; place-items: center; color: var(--green); }
.how-arrow svg { width: 34px; height: 34px; }
.designed-by { text-align: center; margin-top: 2rem; font-family: var(--font-display); }
.designed-by small { display: block; letter-spacing: .14em; text-transform: uppercase; font-size: .7rem; color: var(--ink-soft); font-weight: 700; }
.designed-by .zen { font-weight: 900; font-size: 1.3rem; color: var(--navy); letter-spacing: .04em; }
.designed-by .zen span { display:block; font-size: .68rem; letter-spacing: .2em; color: var(--ink-soft); }

/* ============================================================
   AUDIENCE CARDS
   ============================================================ */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 28px); }
.aud-card { overflow: hidden; padding: 0; box-shadow: var(--shadow-soft); }
.aud-card:hover { box-shadow: var(--shadow-soft-hover); }
.aud-card .aud-top {
  height: 156px; display: grid; place-items: center; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(47,168,79,.10), transparent 62%),
    var(--grad-air);
  border-bottom: 1px solid var(--line); color: var(--green-dark);
}
.aud-card .aud-top svg { width: 60px; height: 60px; transition: transform .35s cubic-bezier(.2,.9,.3,1.1); }
.aud-card:hover .aud-top svg { transform: translateY(-3px) scale(1.05); }
.aud-card .aud-body { padding: 1.6rem 1.6rem 1.8rem; }
.aud-card h3 { margin-bottom: .5rem; letter-spacing: -.01em; }
.aud-card p { color: var(--ink-soft); margin: 0 0 1.3rem; line-height: 1.55; }

/* ============================================================
   LULU SAYS accent
   ============================================================ */
.lulu-says {
  background:
    radial-gradient(700px 360px at 22% 50%, rgba(200,36,43,.05), transparent 62%),
    var(--grad-air);
}
.lulu-says .container { display: flex; align-items: center; gap: clamp(24px, 5vw, 56px); justify-content: center; }
.lulu-says .lulu-pose {
  width: clamp(170px, 24vw, 260px); aspect-ratio: 1;
  object-fit: contain; object-position: center bottom;
  background: transparent; border: 0; box-shadow: none;
  filter: drop-shadow(0 22px 28px rgba(12,42,77,.25)) drop-shadow(0 4px 10px rgba(200,36,43,.18));
}
.lulu-says .lulu-quote { max-width: 420px; font-size: 1.75rem; line-height: 1.3; }
.lulu-says .lulu-quote .says-label { display:block; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; color: var(--green-dark); margin-bottom: .3rem; }

/* ============================================================
   SIZED-RIGHT GUARANTEE CARD
   ============================================================ */
.guarantee-card {
  position: relative; overflow: hidden;
  max-width: 880px; margin-inline: auto; text-align: center;
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.6rem, 5vw, 4rem);
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  background:
    radial-gradient(120% 130% at 50% -10%, rgba(47,168,79,.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, #FBFEFC 100%);
  box-shadow: var(--shadow-soft);
}
.guarantee-card::before { /* badge-style green seal ribbon at top */
  content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 88px; height: 4px; border-radius: 0 0 6px 6px;
  background: var(--grad-green); box-shadow: var(--glow-green);
}
.guarantee-card .eyebrow { display: inline-block; margin: .2rem 0 .7rem; color: var(--green-dark); }
.guarantee-card h2 { letter-spacing: -.02em; margin-bottom: 1rem; }
.guarantee-card p {
  max-width: 60ch; margin: 0 auto 1.8rem; color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.12rem); line-height: 1.65;
}

/* ============================================================
   QUIZ / LEAD-MAGNET CTA STRIP
   ============================================================ */
.quiz-strip {
  position: relative; overflow: hidden; color: #fff;
  background: var(--grad-green);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.quiz-strip::before { /* subtle air-current texture */
  content:""; position:absolute; inset:0; opacity:.5;
  background:
    radial-gradient(closest-side at 12% 30%, rgba(255,255,255,.16), transparent 70%),
    radial-gradient(closest-side at 88% 80%, rgba(255,255,255,.12), transparent 70%);
}
.quiz-strip::after {
  content:""; position:absolute; inset: -40% 55% auto auto; width: 60%; height: 200%;
  background: radial-gradient(closest-side, rgba(255,255,255,.20), transparent 70%); filter: blur(12px);
}
.quiz-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 1.8rem; flex-wrap: wrap; position: relative; z-index: 1; }
.quiz-strip__eyebrow {
  display: inline-block; margin-bottom: .6rem; color: #fff;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28);
  padding: .35em .85em; border-radius: 999px; letter-spacing: .12em;
}
.quiz-strip h2 { color: #fff; margin: 0; letter-spacing: -.01em; }
.quiz-strip p { margin: .4rem 0 0; color: rgba(255,255,255,.94); max-width: 52ch; }
.quiz-strip .btn--navy { box-shadow: 0 12px 30px rgba(8,28,54,.42), inset 0 1px 0 rgba(255,255,255,.12); }

/* ============================================================
   COMPARE CAPTION
   ============================================================ */
.compare-caption { text-align: center; margin-top: 1.6rem; font-size: .95rem; }

/* ============================================================
   SLOGAN BAND + FOOTER polish (base styles in design-system.css)
   ============================================================ */
.slogan-band {
  background: linear-gradient(180deg, var(--mist-2) 0%, var(--mist) 100%);
}
.slogan-band .container { gap: clamp(14px, 3vw, 48px); }
.slogan-band b { letter-spacing: .01em; }

.site-footer { position: relative; }
.site-footer::before { /* hairline accent at top of footer */
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(47,168,79,.55), transparent);
}
/* Footer is owned solely by css/nav.css (the .site-footer__* system). */

/* ============================================================
   GLOBAL A11Y — focus-visible for homepage-body links/buttons
   ============================================================ */
main a:focus-visible,
.btn:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(47,168,79,.5); outline-offset: 3px; border-radius: 4px;
}
.ba__range:focus-visible ~ .ba__divider .ba__grip { box-shadow: 0 8px 22px rgba(12,42,77,.28), inset 0 0 0 3px var(--green); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero-figure { order: -1; max-width: 460px; margin-inline: auto; }
  .spotlight .container { grid-template-columns: 1fr; }
  .spotlight-figure { order: -1; max-width: 460px; margin-inline: auto; }
  .how-steps { grid-template-columns: 1fr; }
  .how-arrow { transform: rotate(90deg); padding: .4rem 0; }
  .audience-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 880px) {
  .perfect-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-arrow { transform: rotate(90deg); margin-inline: auto; }
  .lulu-says .container { flex-direction: column; text-align: center; }
  .lulu-says .lulu-quote::after { left: 50%; transform: translateX(-50%); }
  .bubble-haiku { max-width: 340px; }
  .quiz-strip .container { flex-direction: column; text-align: center; align-items: center; }
}
@media (max-width: 480px) {
  .perfect-grid { grid-template-columns: 1fr 1fr; }
  .meet-lockup .meet-name { font-size: 2.6rem; }
  .hero h1 { font-size: clamp(2rem, 8.4vw, 2.5rem); }
  .hero .lede { font-size: 1.02rem; }
  .quiz-strip .btn { width: 100%; }
}
@media (max-width: 380px) {
  .perfect-grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .perfect-tile { flex-direction: row; justify-content: flex-start; text-align: left; padding: 1rem 1.1rem; }
  .hero h1 { font-size: 1.92rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-figure img, .hero-figure .hero-video { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   BEFORE / AFTER SLIDER (.ba) — drag, touch, keyboard + button
   Replaces the old side-by-side compare-grid on the homepage.
   ============================================================ */
.ba { max-width: 720px; margin: 0 auto; }
.ba__stage {
  position: relative; width: 100%; aspect-ratio: 1402 / 1122;
  border-radius: var(--radius-lg, 20px); overflow: hidden;
  background: linear-gradient(180deg, #FCFEFD 0%, var(--mist) 100%);
  padding: 0; cursor: ew-resize;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 -18px 40px rgba(12,42,77,.05) inset,
    0 26px 60px rgba(12,42,77,.16),
    0 0 0 1px var(--line);
  touch-action: pan-y; user-select: none;
}
.ba__stage picture { position: absolute; inset: 0; display: block; }
.ba__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; display: block; pointer-events: none;
  -webkit-user-drag: none; user-select: none;
}
/* the "before" (smoggy) layer sits on top, clipped to the left of the handle */
.ba__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba.ba--anim .ba__before { transition: clip-path .8s cubic-bezier(.45,0,.2,1); }
.ba.ba--anim .ba__divider { transition: left .8s cubic-bezier(.45,0,.2,1); }

/* corner labels — refined glass pills with a leading dot */
.ba__tag {
  position: absolute; top: 14px; z-index: 3; pointer-events: none;
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-display); font-weight: 800; font-size: .72rem;
  letter-spacing: .03em; color: #fff; padding: .46em .9em; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(12,42,77,.28), inset 0 1px 0 rgba(255,255,255,.25);
  white-space: nowrap; transition: opacity .3s ease;
}
.ba__tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.85); }
.ba__tag--before { left: 14px; background: linear-gradient(135deg, var(--rose-soft, #E04A50), var(--rose, #C8242B)); }
.ba__tag--after  { right: 14px; background: var(--grad-green, linear-gradient(135deg,#36BE5B,#218A3E)); }

/* divider line + grip handle */
.ba__divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 2px; margin-left: -1px; z-index: 4; pointer-events: none;
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 0 1px rgba(12,42,77,.10), 0 0 22px rgba(8,28,54,.30);
}
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #fff, #F4FAF6);
  color: var(--green-dark, #218A3E);
  display: grid; place-items: center;
  box-shadow:
    0 8px 22px rgba(12,42,77,.28),
    0 2px 6px rgba(12,42,77,.18),
    inset 0 0 0 2px var(--green, #2FA84F);
  transition: transform .22s cubic-bezier(.2,.9,.3,1.2), box-shadow .25s ease;
}
.ba__grip svg { width: 22px; height: 22px; }
.ba:hover .ba__grip, .ba__range:focus-visible ~ .ba__divider .ba__grip { transform: translate(-50%,-50%) scale(1.08); }

/* the real control — transparent range over the whole stage (mouse+touch+keyboard) */
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; z-index: 5;
  opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; background: transparent;
}
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 56px; height: 100%; cursor: ew-resize; }
.ba__range::-moz-range-thumb { width: 56px; height: 100%; border: 0; background: transparent; cursor: ew-resize; }
.ba__range:focus-visible { outline: none; }
.ba__range:focus-visible ~ .ba__divider { box-shadow: 0 0 0 2px var(--green), 0 0 18px rgba(0,0,0,.25); }

/* reveal button (great on mobile / no-drag) */
.ba__toggle {
  display: inline-flex; align-items: center; gap: .5em; margin: 1.1rem auto 0;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  color: #fff; background: var(--grad-green, linear-gradient(135deg,#36BE5B,#218A3E));
  border: 0; border-radius: 999px; padding: .7em 1.5em; cursor: pointer;
  box-shadow: 0 10px 24px rgba(33,138,62,.30); transition: transform .25s ease, box-shadow .25s ease;
}
.ba { display: flex; flex-direction: column; align-items: center; }
.ba__toggle:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(33,138,62,.40); }
.ba__toggle:active { transform: translateY(0); }

@media (max-width: 560px) {
  .ba__tag { font-size: .62rem; top: 9px; padding: .38em .7em; }
  .ba__tag--before { left: 9px; } .ba__tag--after { right: 9px; }
  .ba__grip { width: 42px; height: 42px; }
}
@media (prefers-reduced-motion: reduce) { .ba.ba--anim .ba__before, .ba.ba--anim .ba__divider { transition: none; } }
