/* =========================================================
   STEADFAST PET NUTRITION — Design System
   Palette pulled from brand references:
   royal blue, deep navy, lime green, cream paper, pastels
   ========================================================= */

:root {
  /* Brand core */
  --blue:        #0f62e6;
  --blue-dark:   #0a49b0;
  --blue-bright: #1f7bff;
  --navy:        #0b2545;
  --navy-2:      #123a6b;
  --green:       #7cbf3f;
  --green-dark:  #5fa22b;
  --cream:       #f7f0df;
  --cream-2:     #efe6cf;
  --paper:       #fbf6ea;

  --ink:         #10233f;
  --ink-soft:    #4a5b73;
  --line:        #e5e9f0;
  --white:       #ffffff;
  --bg:          #ffffff;
  --bg-soft:     #f5f8ff;

  /* Category pastels (Shop by Goal) */
  --c-gut:    #fbe0e0;
  --c-joint:  #d8ecfb;
  --c-skin:   #dcf3e6;
  --c-immune: #fbf0d2;
  --c-calm:   #e7e2f7;
  --c-perf:   #fde3d3;
  --c-puppy:  #e0f0f7;
  --c-senior: #f3e6da;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(11,37,69,.06);
  --shadow:    0 12px 34px rgba(11,37,69,.10);
  --shadow-lg: 0 26px 60px rgba(11,37,69,.16);

  --maxw: 1560px;
  --font:  'Fredoka', system-ui, -apple-system, sans-serif;
  --head:  'Grandstander', 'Fredoka', system-ui, sans-serif;
  --script:'Caveat', cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--head); line-height: 1.08; color: var(--ink); font-weight: 800; letter-spacing: -.5px; }
.eyebrow {
  font-family: var(--head);
  font-weight: 700; font-size: .8rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue);
}
.script { font-family: var(--script); color: var(--blue); font-weight: 700; }
.text-green { color: var(--green-dark); }
.text-blue { color: var(--blue); }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.lead { color: var(--ink-soft); font-size: 1.08rem; }
.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto 46px; text-align: center; }
.section-head .script { font-size: 2rem; display: inline-block; }

/* Underline scribble used across brand */
.scribble { position: relative; display: inline-block; }
.scribble::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: -6px; height: 10px;
  background: var(--green);
  border-radius: 40%;
  opacity: .85;
  transform: rotate(-1deg);
  z-index: -1;
}
.scribble.blue::after { background: var(--blue-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--head); font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(15,98,230,.35); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(124,191,63,.35); }
.btn-green:hover { background: var(--green-dark); }
.btn-ghost { background: #fff; color: var(--blue); border: 2px solid #e6ecf7; box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--blue); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); }
.btn-sm { padding: 10px 18px; font-size: .86rem; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  display: grid; place-items: center; color: #fff; flex: none;
  box-shadow: 0 6px 16px rgba(15,98,230,.35);
}
.brand-name { font-family: var(--head); font-weight: 800; font-size: 1.25rem; line-height: 1; color: var(--navy); }
.brand-name span { display: block; font-size: .58rem; letter-spacing: 3px; color: var(--green-dark); font-weight: 700; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--head); font-weight: 600; font-size: .95rem; color: var(--ink);
  padding: 9px 14px; border-radius: 10px; transition: background .15s, color .15s;
}
.nav-links a:hover, .nav-links a.active { background: var(--bg-soft); color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  color: var(--navy); position: relative; transition: background .15s;
}
.icon-btn:hover { background: var(--bg-soft); }
.cart-count {
  position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--green); color: #fff; border-radius: 999px; font-size: .68rem; font-weight: 800;
  display: grid; place-items: center; font-family: var(--head);
}
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 10%, #e8f1ff 0%, transparent 45%),
    linear-gradient(180deg, #eef5ff 0%, #ffffff 90%);
  overflow: hidden;
  padding: 70px 0 90px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: .98; }
.hero h1 .script { font-size: clamp(3rem, 7vw, 5rem); display: inline-block; transform: rotate(-3deg); }
.hero p.lead { margin: 22px 0 30px; max-width: 440px; font-size: 1.18rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-badge {
  position: absolute; background: #fff; border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow); font-weight: 800; font-family: var(--head); font-size: .9rem;
  display: flex; align-items: center; gap: 10px;
}
.hero-badge small { display: block; font-weight: 600; color: var(--ink-soft); font-size: .72rem; }
.hero-badge.b1 { top: 8%; left: -4%; }
.hero-badge.b2 { bottom: 12%; right: -2%; }
.paw-float { position: absolute; color: var(--blue-bright); opacity: .5; animation: bob 4s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-12px); } }

/* Mascot illustration frame */
.mascot-card {
  background: radial-gradient(circle at 50% 30%, #fff 0%, #eaf2ff 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* ---------- Chips row ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.chip { display: flex; align-items: center; gap: 10px; font-family: var(--head); font-weight: 700; font-size: .82rem; }
.chip .ci {
  width: 40px; height: 40px; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm);
  display: grid; place-items: center; color: var(--blue);
}
.chip small { display: block; font-weight: 600; color: var(--ink-soft); font-size: .72rem; }

/* ---------- Shop by Goal ---------- */
.goals-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 30px; gap: 20px; flex-wrap: wrap; }
.goals-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px;
}
.goal-card {
  border-radius: var(--radius); padding: 18px 12px 20px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease; min-height: 150px; justify-content: flex-start;
}
.goal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.goal-ico { width: 44px; height: 44px; display: grid; place-items: center; color: var(--navy); }
.goal-card b { font-family: var(--head); font-size: .82rem; line-height: 1.15; color: var(--navy); }
.goal-card .goal-dog { font-size: 2.2rem; line-height: 1; }

/* ---------- Meet Steady band ---------- */
.steady-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; border-radius: 0; position: relative; overflow: hidden;
}
.steady-band .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.steady-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.steady-band .eyebrow { color: #7fb2ff; }
.steady-band p { color: #cfe0ff; margin: 16px 0 26px; font-size: 1.1rem; }
.inspector-report {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 22px; backdrop-filter: blur(6px);
}
.report-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,.18); font-family: var(--head); font-weight: 600; }
.report-row:last-child { border: none; }
.report-pass { color: #9be36a; font-weight: 800; display: flex; align-items: center; gap: 6px; }

/* ---------- Products ---------- */
.products-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 34px; gap: 20px; flex-wrap: wrap; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-media {
  height: 210px; display: grid; place-items: center; position: relative;
}
.product-jar {
  width: 120px; height: 150px; border-radius: 16px 16px 22px 22px; position: relative;
  box-shadow: 0 14px 24px rgba(11,37,69,.22); display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center; padding: 10px;
}
.product-jar::before {
  content: ""; position: absolute; top: -12px; width: 74px; height: 16px; border-radius: 8px 8px 4px 4px; background: rgba(255,255,255,.85);
}
.product-jar b { font-family: var(--head); font-size: .8rem; line-height: 1.05; text-transform: uppercase; letter-spacing: .5px; }
.product-jar small { font-size: .62rem; opacity: .9; margin-top: 3px; }
.product-tag { position: absolute; top: 12px; left: 12px; background: #fff; color: var(--blue); font-family: var(--head); font-weight: 800; font-size: .68rem; padding: 5px 10px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-body h3 { font-size: 1.12rem; }
.product-body .p-sub { color: var(--ink-soft); font-size: .88rem; }
.stars { color: #f4b740; font-size: .85rem; letter-spacing: 1px; }
.stars span { color: var(--ink-soft); margin-left: 4px; }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 8px; }
.price { font-family: var(--head); font-weight: 800; font-size: 1.2rem; color: var(--navy); }
.price s { color: var(--ink-soft); font-weight: 600; font-size: .9rem; margin-left: 6px; }

/* ---------- Trust stats band ---------- */
.trust-band { background: linear-gradient(120deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; border-radius: var(--radius-lg); padding: 44px; }
.trust-grid { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 24px; align-items: center; }
.stat b { font-family: var(--head); font-size: 2.2rem; display: block; }
.stat small { color: #cfe0ff; font-size: .82rem; }
.trust-band h3 { color: #fff; font-size: 1.7rem; }

/* ---------- Why / features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature .fi { width: 54px; height: 54px; border-radius: 14px; background: var(--bg-soft); display: grid; place-items: center; color: var(--blue); margin-bottom: 16px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 6px; }
.feature p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Journey (About) ---------- */
.journey { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: stretch; }
.journey-step {
  background: var(--paper); border-radius: var(--radius); padding: 22px 16px; text-align: center; position: relative;
}
.journey-step:last-child { background: #e9f3d9; }
.journey-step .js-ico { width: 48px; height: 48px; margin: 0 auto 10px; display: grid; place-items: center; color: var(--blue); }
.journey-step b { font-family: var(--head); display: block; margin-bottom: 6px; color: var(--navy); }
.journey-step p { font-size: .82rem; color: var(--ink-soft); }

/* ---------- Note / paper cards ---------- */
.note {
  background: var(--paper); border-radius: 6px; padding: 26px 28px; position: relative;
  box-shadow: var(--shadow-sm); border: 1px solid var(--cream-2);
  transform: rotate(-1deg);
}
.note::before {
  content: ""; position: absolute; top: -10px; left: 30px; width: 70px; height: 22px;
  background: rgba(124,191,63,.35); border-radius: 3px; transform: rotate(-4deg);
}
.note .script { font-size: 1.7rem; }

/* ---------- Ask Steady ---------- */
.ask {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius-lg); padding: 44px; color: #fff; position: relative; overflow: hidden;
}
.ask h2 { color: #fff; }
.ask p { color: #cfe0ff; }
.ask-box { display: flex; gap: 10px; margin-top: 22px; max-width: 560px; flex-wrap: wrap; }
.ask-box input {
  flex: 1; min-width: 220px; border: none; border-radius: 999px; padding: 14px 20px; font-family: var(--font); font-size: .95rem;
}
.ask-result { margin-top: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 20px; display: none; }
.ask-result.show { display: block; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.testi .stars { margin-bottom: 12px; }
.testi p { font-style: italic; color: var(--ink); margin-bottom: 16px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--green)); display: grid; place-items: center; color: #fff; font-family: var(--head); font-weight: 800; }
.testi .who b { font-family: var(--head); }
.testi .who small { color: var(--ink-soft); }

/* ---------- Trust badges strip ---------- */
.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.badge-pill {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 12px 22px; box-shadow: var(--shadow-sm); font-family: var(--head); font-weight: 700; font-size: .9rem;
}
.badge-pill .bi { color: var(--blue); display: grid; place-items: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #cfe0ff; padding: 64px 0 26px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr) 1.3fr; gap: 34px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer a { color: #a9c2e8; font-size: .92rem; display: block; padding: 5px 0; transition: color .15s; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: .92rem; max-width: 240px; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.socials a:hover { background: var(--blue); }
.news-form { display: flex; gap: 8px; margin-top: 12px; }
.news-form input { flex: 1; border: none; border-radius: 10px; padding: 12px 14px; font-family: var(--font); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; text-align: center; font-size: .85rem; color: #8fa9cf; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(180deg, #eef5ff, #fff); padding: 60px 0; text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { max-width: 560px; margin: 14px auto 0; color: var(--ink-soft); font-size: 1.1rem; }
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 10px; }
.breadcrumb a:hover { color: var(--blue); }

/* ---------- Shop page ---------- */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.filters { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: sticky; top: 90px; }
.filters h4 { font-size: 1rem; margin-bottom: 14px; }
.filter-group { margin-bottom: 22px; }
.filter-btn {
  display: block; width: 100%; text-align: left; padding: 9px 12px; border-radius: 10px;
  font-family: var(--head); font-weight: 600; font-size: .9rem; color: var(--ink); transition: background .15s, color .15s;
}
.filter-btn:hover { background: var(--bg-soft); }
.filter-btn.active { background: var(--blue); color: #fff; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; gap: 14px; flex-wrap: wrap; }
.shop-toolbar select { padding: 10px 14px; border-radius: 10px; border: 1px solid var(--line); font-family: var(--font); }
#shopGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ---------- Product detail ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.pdp-media { border-radius: var(--radius-lg); padding: 40px; display: grid; place-items: center; min-height: 420px; }
.pdp-media .product-jar { width: 190px; height: 240px; }
.pdp h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.pdp .price { font-size: 2rem; margin: 14px 0; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { width: 42px; height: 46px; font-size: 1.2rem; color: var(--navy); }
.qty span { width: 44px; text-align: center; font-family: var(--head); font-weight: 800; }
.pdp-benefits { display: grid; gap: 10px; margin: 22px 0; }
.pdp-benefits li { display: flex; gap: 10px; align-items: center; color: var(--ink-soft); }
.pdp-benefits li .tick { color: var(--green-dark); flex: none; }
.tabs { display: flex; gap: 8px; margin: 40px 0 20px; border-bottom: 1px solid var(--line); }
.tab { padding: 12px 18px; font-family: var(--head); font-weight: 700; color: var(--ink-soft); border-bottom: 3px solid transparent; }
.tab.active { color: var(--blue); border-color: var(--blue); }
.tab-panel { display: none; } .tab-panel.active { display: block; }

/* ---------- Cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 18px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-thumb { width: 80px; height: 90px; border-radius: 12px; display: grid; place-items: center; color: #fff; font-family: var(--head); font-weight: 800; font-size: .7rem; text-align: center; padding: 6px; }
.cart-summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: sticky; top: 90px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--ink-soft); }
.summary-row.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 16px; font-family: var(--head); font-weight: 800; font-size: 1.3rem; color: var(--navy); }
.empty-cart { text-align: center; padding: 80px 20px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 18px; max-width: 620px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-family: var(--head); font-weight: 700; font-size: .88rem; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 13px 16px; font-family: var(--font); font-size: .95rem; background: #fff;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(15,98,230,.12); }
.form-note { padding: 14px 18px; border-radius: 12px; background: #e9f3d9; color: var(--green-dark); font-weight: 700; display: none; }
.form-note.show { display: block; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(140%);
  background: var(--navy); color: #fff; padding: 14px 22px; border-radius: 14px; box-shadow: var(--shadow-lg);
  font-family: var(--head); font-weight: 700; z-index: 200; transition: transform .3s ease; display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mascot SVG sizing ---------- */
.mascot-svg { width: 100%; height: auto; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .goals-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid > .trust-intro { grid-column: 1 / -1; }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #shopGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-actions .desktop-only { display: none; }
  .nav-toggle { display: grid; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 74px; left: 0; right: 0; background: #fff; padding: 16px 24px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .steady-band .container, .ask, .pdp, .cart-layout, .shop-layout { grid-template-columns: 1fr; }
  .feature-grid, .testi-grid { grid-template-columns: 1fr; }
  .trust-band { padding: 30px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .filters { position: static; }
}
@media (max-width: 560px) {
  .goals-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, #shopGrid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   HOMEPAGE v2 — matches new brand reference
   ========================================================= */

/* Paw cursor */
html, body { cursor: url('../assets/paw-cursor.png') 6 3, auto; }
a, button, .btn, .goal-card, .product-card, .concern-card, .prod-pouch,
select, input, textarea, .filter-btn, .tab, .faq-q, [onclick], .nav-shop, label {
  cursor: url('../assets/paw-cursor-green.png') 6 3, pointer;
}
input[type="text"], input[type="email"], textarea {
  cursor: url('../assets/paw-cursor-green.png') 6 3, text;
}

/* Logo + pill nav */
.brand-logo { height: 38px; width: auto; }
.nav-pill {
  display: flex; align-items: center; gap: 4px;
  background: #eaf3ff; border-radius: 999px; padding: 6px 6px 6px 14px;
}
.nav-pill a {
  font-family: var(--head); font-weight: 600; font-size: .92rem; color: var(--navy);
  padding: 9px 16px; border-radius: 999px; transition: background .15s, color .15s;
}
.nav-pill a:hover { color: var(--blue); }
.nav-pill a.active { background: #fff; color: var(--blue); box-shadow: var(--shadow-sm); }
.nav-shop { background: var(--blue) !important; color: #fff !important; box-shadow: 0 6px 14px rgba(15,98,230,.35); }
.nav-shop:hover { background: var(--blue-dark) !important; }
.footer-logo { height: 56px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.2)); }

/* Footer connect + marquee + address bar */
.footer-connect .socials a { background: rgba(255,255,255,.12); }
.footer-marquee { background: var(--blue); color: #fff; overflow: hidden; padding: 12px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 18px; align-items: center; animation: marquee 30s linear infinite; font-family: var(--head); font-weight: 700; font-size: .9rem; }
.marquee-track .dot { opacity: .6; }
@keyframes marquee { to { transform: translateX(-50%); } }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }

/* ---------- Hero v2 ---------- */
.hero2 {
  background: linear-gradient(180deg, #dfeeff 0%, #eaf4ff 100%);
  border-radius: 0 0 40px 40px; overflow: hidden; position: relative;
}
.hero2-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 20px; align-items: center; min-height: 460px; }
.hero2 h1 { font-size: clamp(2.6rem, 6vw, 5rem); color: var(--blue); line-height: 1.02; letter-spacing: -1px; }
.hero2 h1 .navy { color: var(--navy); }
.hero2-pill {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 26px;
  background: #fff; border: 2px solid #cfe0f7; border-radius: 999px; padding: 14px 26px;
  font-family: var(--head); font-weight: 800; font-size: 1.2rem; color: var(--navy); box-shadow: var(--shadow-sm);
}
.hero2-photo { position: relative; height: 100%; min-height: 460px; }
.hero2-photo img { position: absolute; bottom: 0; right: 0; width: 100%; height: 100%; object-fit: contain; object-position: bottom right; }

/* ---------- Section script heading ---------- */
.script-head { text-align: center; font-family: var(--head); font-weight: 800; letter-spacing: 3px;
  color: var(--blue); text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 40px; }

/* ---------- Shop by Concerns ---------- */
.concerns-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.concern-card {
  border-radius: 22px; padding: 22px 16px 18px; text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 10px; transition: transform .2s ease, box-shadow .2s ease; min-height: 240px;
}
.concern-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.concern-card h3 { font-size: 1rem; color: var(--navy); line-height: 1.15; min-height: 2.3em; }
.concern-card img { width: 100%; max-width: 120px; height: 120px; object-fit: contain; }
.concern-shop {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px; background: #fff; color: var(--navy);
  font-family: var(--head); font-weight: 700; font-size: .8rem; padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.concern-shop:hover { color: var(--blue); }

/* ---------- Exclusive marquee ---------- */
.excl-marquee { background: #dcecff; color: var(--blue); overflow: hidden; padding: 12px 0; white-space: nowrap; }
.excl-marquee .marquee-track { animation-duration: 22s; }
.excl-marquee span { letter-spacing: 2px; }

/* ---------- Shop by Products (pouches) ---------- */
.pouch-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.prod-pouch {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px; transition: transform .2s, box-shadow .2s;
}
.prod-pouch:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pouch {
  width: 100%; aspect-ratio: 3/3.6; border-radius: 16px 16px 18px 18px; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  color: #fff; padding: 14px; box-shadow: inset 0 -20px 30px rgba(0,0,0,.12);
}
.pouch::before { content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 12px; background: rgba(255,255,255,.7); border-radius: 4px 4px 0 0; }
.pouch .pouch-logo { font-family: var(--head); font-weight: 800; font-size: .55rem; letter-spacing: 1px; opacity: .9; }
.pouch b { font-family: var(--head); font-size: .95rem; text-transform: uppercase; line-height: 1; }
.pouch small { font-size: .58rem; opacity: .9; }
.pouch .pouch-dog { width: 54px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); opacity: .92; }
.prod-pouch .concern-shop { border: 1px solid var(--line); }

/* ---------- Inspector band v2 ---------- */
.inspector2 {
  background: linear-gradient(120deg, #0b3a8f 0%, #1257c9 60%, #2f7de0 100%);
  border-radius: 30px; color: #fff; overflow: hidden; position: relative;
}
.inspector2 .container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.inspector2 h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.inspector2 p { color: #d6e6ff; margin: 14px 0 22px; font-size: 1.05rem; }
.inspector2 .steady-img { filter: drop-shadow(0 20px 40px rgba(0,0,0,.4)); }

/* ---------- Steady Approves ---------- */
.approves { display: grid; grid-template-columns: .8fr 1.4fr; gap: 30px; align-items: center; }
.approves-left { text-align: center; }
.approves-left img { width: 78%; max-width: 260px; }
.approves-left .cap { font-family: var(--head); font-weight: 700; color: var(--navy); margin-top: 10px; }
.approve-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.approve {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; box-shadow: var(--shadow-sm);
}
.approve .ai { color: var(--blue); margin-bottom: 8px; }
.approve b { font-family: var(--head); font-size: .98rem; display: block; color: var(--navy); }
.approve small { color: var(--ink-soft); font-size: .82rem; }

/* ---------- Steady Knows ---------- */
.knows {
  background: radial-gradient(circle at 30% 40%, #eaf4ff, #f4f9ff);
  border-radius: 30px; position: relative; overflow: hidden;
}
.knows .container { display: grid; grid-template-columns: 1.3fr .7fr; gap: 20px; align-items: center; }
.knows h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); }
.knows p { color: var(--ink-soft); margin: 12px 0 22px; font-size: 1.05rem; }
.knows-box { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.knows-box input { border: 2px solid #cfe0f7; border-radius: 999px; padding: 14px 22px; font-family: var(--font); min-width: 260px; background: #fff; }
.knows img { width: 100%; max-width: 300px; margin-left: auto; }
.knows-result { margin-top: 18px; background: #fff; border-radius: 16px; padding: 18px; box-shadow: var(--shadow-sm); display: none; max-width: 560px; }
.knows-result.show { display: block; }

/* ---------- Nutrition Trust band v2 ---------- */
.trust2 { background: linear-gradient(120deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; }
.trust2 .container { display: grid; grid-template-columns: .8fr 1fr 1.3fr; gap: 26px; align-items: center; }
.trust2 h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.trust2 p { color: #cfe0ff; margin: 10px 0 16px; }
.trust2-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trust2-stat { background: #fff; border-radius: 16px; padding: 22px 14px; text-align: center; color: var(--navy); }
.trust2-stat b { font-family: var(--head); font-size: 1.9rem; display: block; color: var(--blue); }
.trust2-stat small { color: var(--ink-soft); font-size: .78rem; }
.trust2-dog { width: 100%; max-width: 240px; }

/* ---------- Discount cloud ---------- */
.discount {
  background: #f4f9ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cg fill='%23dceaff'%3E%3Cellipse cx='14' cy='20' rx='6' ry='4'/%3E%3Cellipse cx='26' cy='20' rx='6' ry='4'/%3E%3C/g%3E%3C/svg%3E");
  text-align: center; position: relative;
}
.cloud {
  display: inline-block; background: #fff; border: 3px solid var(--blue); border-radius: 40px; padding: 24px 44px;
  position: relative; box-shadow: var(--shadow);
}
.cloud .flat { background: var(--blue); color: #fff; font-family: var(--head); font-weight: 800; padding: 2px 12px; border-radius: 999px; font-size: .8rem; vertical-align: middle; }
.cloud .big { font-family: var(--head); font-weight: 900; color: var(--blue); font-size: 2.6rem; }
.cloud .txt { font-family: var(--head); font-weight: 800; color: var(--navy); font-size: 1.4rem; }
.cloud::after, .cloud::before { content: ""; position: absolute; background: #fff; border: 3px solid var(--blue); border-radius: 50%; }
.cloud::after { width: 26px; height: 26px; bottom: -32px; left: 34%; }
.cloud::before { width: 16px; height: 16px; bottom: -52px; left: 30%; }
.discount .walk { width: 180px; margin: 30px auto 0; }

/* ---------- Testimonials carousel ---------- */
.tcarousel { display: flex; align-items: center; gap: 16px; justify-content: center; }
.tcarousel .arrow-btn { width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--blue); flex: none; font-size: 1.2rem; }
.tcards { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 18px; align-items: center; flex: 1; max-width: 980px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 22px; box-shadow: var(--shadow-sm); opacity: .55; transform: scale(.94); transition: .3s; }
.tcard.mid { opacity: 1; transform: scale(1); box-shadow: var(--shadow); }
.tcard .thead { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.tcard .tphoto { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg,var(--blue),var(--green)); display: grid; place-items: center; color: #fff; font-family: var(--head); font-weight: 800; overflow: hidden; }
.tcard .stars { color: #f4b740; }
.tcard p { color: var(--ink-soft); font-size: .9rem; }

/* ---------- Note from Steady ---------- */
.note-steady { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.note-steady .paper { background: var(--paper); border-radius: 6px; padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--cream-2); position: relative; }
.note-steady .paper::before { content: "📎"; position: absolute; top: -14px; left: 20px; font-size: 1.6rem; transform: rotate(-20deg); }
.note-steady .paper .script { font-size: 1.6rem; }
.note-steady .paper input { border: 1px solid var(--cream-2); border-radius: 8px; padding: 10px 12px; width: 100%; margin-top: 10px; }
.note-steady .center-dog { width: 220px; }
.note-steady blockquote { font-family: var(--head); font-weight: 700; color: var(--navy); font-size: 1.15rem; line-height: 1.5; }
.note-steady blockquote .sig { color: var(--blue); display: block; margin-top: 8px; }

@media (max-width: 1080px) {
  .concerns-grid, .pouch-grid { grid-template-columns: repeat(3, 1fr); }
  .approve-grid { grid-template-columns: 1fr 1fr; }
  .trust2 .container { grid-template-columns: 1fr; text-align: center; }
  .trust2-dog { margin: 0 auto; }
}
@media (max-width: 860px) {
  .nav-pill { display: none; }
  .nav-pill.open { display: flex; flex-direction: column; align-items: stretch; position: absolute; top: 74px; left: 16px; right: 16px; border-radius: 20px; padding: 14px; box-shadow: var(--shadow); }
  .hero2-grid, .inspector2 .container, .approves, .knows .container, .note-steady { grid-template-columns: 1fr; }
  .hero2-photo { min-height: 300px; order: -1; }
  .tcards { grid-template-columns: 1fr; } .tcard:not(.mid) { display: none; }
  .knows img, .note-steady .center-dog { margin: 0 auto; }
}
@media (max-width: 560px) {
  .concerns-grid, .pouch-grid { grid-template-columns: 1fr 1fr; }
  .approve-grid, .trust2-stats { grid-template-columns: 1fr; }
}

/* Real hero photo + real pouch packs (from reference) */
.hero2-photo img { object-fit: cover; object-position: center; border-radius: 0 0 40px 0; }
.prod-pouch .pouch-img { display: block; width: 100%; }
.prod-pouch .pouch-img img { height: 210px; width: auto; margin: 0 auto; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(11,37,69,.18)); transition: transform .2s ease; }
.prod-pouch:hover .pouch-img img { transform: translateY(-4px) scale(1.03); }

/* =========================================================
   PRELOADER — Steady running
   ========================================================= */
.preloader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: linear-gradient(180deg,#eaf4ff,#ffffff);
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.pl-inner { text-align: center; width: min(340px, 80vw); }
.pl-run { position: relative; height: 120px; }
.pl-run img { position: absolute; bottom: 16px; left: 50%; width: 130px; transform: translateX(-50%);
  animation: plbob .5s ease-in-out infinite; }
@keyframes plbob { 50% { transform: translateX(-50%) translateY(-10px) rotate(-2deg); } }
.pl-ground { position: absolute; bottom: 12px; left: 0; right: 0; height: 3px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 18px, transparent 18px 40px);
  border-radius: 3px; opacity: .5; animation: plground .5s linear infinite; }
@keyframes plground { to { background-position: -40px 0; } }
.pl-paws { position: absolute; bottom: 0; left: 0; right: 0; height: 14px; overflow: hidden; }
.pl-bar { height: 6px; width: 100%; background: #d9e7fb; border-radius: 999px; overflow: hidden; margin-top: 18px; }
.pl-bar i { display: block; height: 100%; width: 40%; background: linear-gradient(90deg,var(--blue),var(--green));
  border-radius: 999px; animation: plbar 1.1s ease-in-out infinite; }
@keyframes plbar { 0% { margin-left: -40%; } 100% { margin-left: 100%; } }
.pl-text { font-family: var(--head); font-weight: 800; color: var(--navy); margin-top: 14px; letter-spacing: 1px; }
.pl-text span { color: var(--blue); }

/* =========================================================
   DYNAMIC HERO
   ========================================================= */
.hero2-photo img { animation: kenburns 14s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero2 { position: relative; }
.hero-paws { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.hero-paws .p { position: absolute; color: var(--blue-bright); opacity: 0; animation: pawtrail 4s linear infinite; }
@keyframes pawtrail { 0% { opacity: 0; transform: translateY(10px) scale(.6); } 20% { opacity: .5; } 80% { opacity: .5; } 100% { opacity: 0; transform: translateY(-14px) scale(1); } }
.hero-run {
  position: absolute; bottom: 8px; left: -160px; width: 120px; z-index: 2;
  animation: heroRun 9s linear infinite;
}
@keyframes heroRun {
  0% { left: -160px; transform: translateY(0) scaleX(1); }
  49% { transform: translateY(-6px) scaleX(1); }
  50% { left: 100%; transform: translateY(0) scaleX(1); }
  100% { left: 100%; }
}
.hero-taglines { height: 1.6em; overflow: hidden; margin-top: 8px; }
.hero-taglines span { display: block; font-family: var(--head); font-weight: 700; color: var(--navy);
  font-size: 1.05rem; animation: tagRoll 9s ease-in-out infinite; }
@keyframes tagRoll {
  0%,28% { transform: translateY(0); } 33%,61% { transform: translateY(-1.6em); }
  66%,94% { transform: translateY(-3.2em); } 100% { transform: translateY(-4.8em); }
}

/* =========================================================
   QUIZ (Steady Knows — Kerastase-style diagnostic)
   ========================================================= */
.quiz-hero { background: linear-gradient(180deg,#eaf4ff,#fff); padding: 40px 0 10px; text-align: center; }
.quiz-wrap { max-width: 760px; margin: 0 auto; padding: 30px 24px 90px; }
.quiz-progress { height: 8px; background: #e3edfb; border-radius: 999px; overflow: hidden; margin-bottom: 8px; }
.quiz-progress i { display: block; height: 100%; background: linear-gradient(90deg,var(--blue),var(--green)); width: 0; transition: width .4s ease; border-radius: 999px; }
.quiz-step-count { font-family: var(--head); font-weight: 700; color: var(--ink-soft); font-size: .85rem; text-align: right; margin-bottom: 26px; }
.quiz-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px; position: relative; }
.quiz-q { text-align: center; margin-bottom: 28px; }
.quiz-q .qk { display: inline-flex; width: 64px; height: 64px; border-radius: 50%; background: var(--bg-soft); align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 14px; }
.quiz-q h2 { font-size: clamp(1.4rem,3vw,2rem); }
.quiz-q p { color: var(--ink-soft); margin-top: 6px; }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.opt-grid.cols-1 { grid-template-columns: 1fr; }
.opt {
  display: flex; align-items: center; gap: 14px; text-align: left; padding: 18px 20px; border: 2px solid var(--line);
  border-radius: 16px; background: #fff; transition: border-color .15s, background .15s, transform .15s; font-family: var(--head); font-weight: 700; color: var(--navy);
}
.opt:hover { border-color: var(--blue); transform: translateY(-2px); }
.opt.sel { border-color: var(--blue); background: #eef5ff; }
.opt .oe { font-size: 1.6rem; flex: none; }
.opt small { display: block; font-family: var(--font); font-weight: 600; color: var(--ink-soft); font-size: .82rem; }
.opt .chk { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line); flex: none; display: grid; place-items: center; color: #fff; }
.opt.sel .chk { background: var(--blue); border-color: var(--blue); }
.quiz-input { width: 100%; border: 2px solid var(--line); border-radius: 14px; padding: 16px 20px; font-family: var(--font); font-size: 1.05rem; text-align: center; }
.quiz-input:focus { outline: none; border-color: var(--blue); }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; }
.quiz-nav .spacer { flex: 1; }
.quiz-hint { text-align: center; color: var(--ink-soft); font-size: .85rem; margin-top: 14px; }
.quiz-analyzing { text-align: center; padding: 40px 0; }
.quiz-analyzing img { width: 150px; margin: 0 auto 16px; animation: plbob .5s ease-in-out infinite; }
/* Result */
.quiz-result { text-align: center; }
.quiz-result .rtag { display: inline-block; background: #e9f3d9; color: var(--green-dark); font-family: var(--head); font-weight: 800; padding: 6px 16px; border-radius: 999px; margin-bottom: 14px; }
.result-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 26px; text-align: left; }
.reason { background: var(--bg-soft); border-radius: 12px; padding: 12px 14px; font-size: .85rem; color: var(--ink-soft); margin: 10px 0; }
@media (max-width:700px){ .opt-grid { grid-template-columns: 1fr; } .result-products { grid-template-columns: 1fr; } .quiz-card { padding: 26px; } }

/* =========================================================
   OVERRIDES v4 — hero slider, seamless marquee, preloader
   ========================================================= */

/* ---- Preloader: Steady runs ALONG the progress bar ---- */
.preloader .pl-inner { width: min(420px, 84vw); }
.pl-run, .pl-ground, .pl-paws { display: none; }        /* retire old layout */
.pl-logo { width: 190px; margin: 0 auto 26px; }
.pl-track { position: relative; height: 74px; }
.pl-runner { position: absolute; bottom: 12px; left: 0; width: 76px; transform: translateX(-50%);
  transition: left .18s linear; animation: plbob .45s ease-in-out infinite; }
.pl-runner img { width: 100%; }
.pl-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 8px; margin: 0;
  background: #d9e7fb; border-radius: 999px; overflow: hidden; }
.pl-bar i { display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green)); transition: width .18s linear; animation: none; }
.pl-pct { font-family: var(--head); font-weight: 800; color: var(--blue); margin-top: 16px; font-size: 1.1rem; }
.pl-text { margin-top: 4px; }

/* ---- Seamless infinite strips (no gaps) ---- */
.excl-marquee, .footer-marquee { padding: 13px 0; }
.excl-marquee .marquee-track, .footer-marquee .marquee-track { gap: 0; animation: marquee 28s linear infinite; will-change: transform; }
.excl-marquee .marquee-track { animation-duration: 34s; }
.marquee-track span { padding: 0 26px; }
.marquee-track .dot { padding: 0; }
.marquee-track:hover { animation-play-state: paused; }

/* ---- HERO SLIDER (full-bleed, working & sliding) ---- */
.hero-slider { position: relative; overflow: hidden; border-radius: 0 0 40px 40px;
  background: #dfeeff; }
.hs-viewport { overflow: hidden; }
.hs-track { display: flex; transition: transform .7s cubic-bezier(.6,.05,.2,1); }
.hs-slide { min-width: 100%; position: relative; height: clamp(420px, 52vw, 560px);
  display: flex; align-items: center; }
.hs-slide .hs-bg { position: absolute; inset: 0; background-size: cover; background-position: center right; }
.hs-slide.photo .hs-bg::after { content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(223,238,255,.96) 0%, rgba(223,238,255,.75) 34%, rgba(223,238,255,0) 62%); }
.hs-slide.grad-blue { background: linear-gradient(120deg, var(--blue) 0%, #0a3a9e 100%); }
.hs-slide.grad-green { background: linear-gradient(120deg, #eaf7dc 0%, #d6efc0 100%); }
.hs-content { position: relative; z-index: 2; max-width: 620px; }
.hs-content h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); line-height: 1.02; color: var(--blue); letter-spacing: -1px; }
.hs-content h1 .navy { color: var(--navy); }
.hs-slide.grad-blue .hs-content h1, .hs-slide.grad-blue .hs-content p { color: #fff; }
.hs-content p { font-family: var(--head); font-weight: 700; color: var(--navy); font-size: 1.15rem; margin: 14px 0 22px; }
.hs-slide .hs-steady { position: absolute; right: 4%; bottom: 0; width: 300px; z-index: 2; }
.hs-slide.grad-blue .hs-steady { filter: invert(1); }
.hs-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.hs-dots button { width: 10px; height: 10px; border-radius: 999px; background: rgba(11,37,69,.25); transition: .2s; }
.hs-dots button.on { width: 26px; background: var(--blue); }
.hs-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 46px; height: 46px;
  border-radius: 50%; background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); display: grid; place-items: center;
  color: var(--navy); font-size: 1.4rem; }
.hs-arrow.prev { left: 16px; } .hs-arrow.next { right: 16px; }
@media (max-width: 760px){
  .hs-slide .hs-steady { width: 180px; opacity: .5; }
  .hs-slide.photo .hs-bg::after { background: linear-gradient(180deg, rgba(223,238,255,.7), rgba(223,238,255,.95)); }
  .hs-content { text-align: center; margin: 0 auto; }
}

/* =========================================================
   OVERRIDES v5 — skate preloader, dark-band dog contrast, quiz tick
   ========================================================= */

/* Skateboard glide (replaces the running bob) */
.pl-runner { animation: plglide 2.2s ease-in-out infinite; }
@keyframes plglide { 0%,100% { transform: translateX(-50%) translateY(0) rotate(-2deg); }
  50% { transform: translateX(-50%) translateY(-3px) rotate(1deg); } }

/* Steady on dark bands — white spotlight instead of harsh invert */
.dog-spot { display: inline-block; padding: 26px 30px; border-radius: 50%;
  background: radial-gradient(circle at 50% 46%, #ffffff 0%, #ffffff 40%, rgba(255,255,255,.75) 58%, rgba(255,255,255,0) 72%); }
.dog-spot img { filter: none !important; }

/* Quiz result badge — no name, bigger tick */
.quiz-result .rtag { display: inline-flex; align-items: center; gap: 10px; font-size: 1.05rem; padding: 10px 22px; }
.quiz-result .rtag .rtick { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--green-dark); color: #fff; font-size: 1.1rem; font-weight: 900; }

/* =========================================================
   OVERRIDES v6 — pouch alignment + bigger discount dog
   ========================================================= */
.pouch-grid { align-items: stretch; }
.prod-pouch { justify-content: space-between; padding: 20px 16px 18px; }
.prod-pouch .pouch-img { display: flex; align-items: flex-end; justify-content: center; height: 230px; width: 100%; }
.prod-pouch .pouch-img img { height: 100%; width: auto; margin: 0;
  filter: drop-shadow(0 12px 16px rgba(11,37,69,.16)); }
.prod-pouch .concern-shop { margin-top: 18px; }

/* Discount banner — bigger walking Steady */
.discount .walk { width: clamp(260px, 26vw, 360px); margin-top: 22px; }
.discount .cloud { margin-bottom: 6px; }

/* =========================================================
   OVERRIDES v7 — colored Steady renders (match reference)
   ========================================================= */
.dog-spot { background: none !important; padding: 0 !important; }   /* retire spotlight */

/* Concern cards as reference images */
.concern-img { display: block; border-radius: 20px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.concern-img img { width: 100%; display: block; }
.concern-img:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* Inspector full band */
.inspector-band-img { display: block; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); transition: transform .2s ease; }
.inspector-band-img img { width: 100%; display: block; }
.inspector-band-img:hover { transform: translateY(-4px); }

/* Approves colored dog */
.approves-left img { width: 100%; max-width: 280px; }

/* Nutrition trust colored dog (cutout on blue band) */
.trust2-dog { width: 100%; max-width: 260px; filter: none !important; }

/* Steady Knows colored dog (rect blends on light band) */
.knows img { max-width: 320px; mix-blend-mode: multiply; }

/* Discount full banner */
.discount-img { width: 100%; display: block; }

/* Note colored dog (rect blends on white) */
.note-steady .center-dog { width: 260px; }

/* =========================================================
   OVERRIDES v8 — Steady Knows cutout alignment
   ========================================================= */
.knows .container { align-items: center; }
.knows-dog {
  max-width: 300px; max-height: 360px; width: auto; height: auto;
  margin: 0 auto; display: block; mix-blend-mode: normal !important;
  filter: drop-shadow(0 14px 22px rgba(11,37,69,.14));
}

/* =========================================================
   OVERRIDES v9 — Steady Knows framed portrait (clean)
   ========================================================= */
.knows .container { align-items: center; }
.knows-frame {
  max-width: 320px; margin: 0 auto; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow); background: linear-gradient(180deg,#eaf3ff,#dbe9fb);
  border: 4px solid #fff;
}
.knows-dog { width: 100%; height: auto; display: block; mix-blend-mode: normal !important; filter: none !important; }

/* =========================================================
   OVERRIDES v10 — full-width layout (expand from narrow center)
   ========================================================= */
.container { max-width: var(--maxw); padding: 0 48px; }
@media (max-width: 700px){ .container { padding: 0 20px; } }

/* =========================================================
   OVERRIDES v11 — delight & motion (parent-friendly)
   ========================================================= */

/* Gentle idle float for section mascots */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.approves-left img, .center-dog { animation: floaty 5s ease-in-out infinite; }
.trust2-dog { animation: floaty 6.5s ease-in-out infinite; }
.knows-frame { animation: floaty 7s ease-in-out infinite; }

/* Playful hover on cards */
@keyframes wiggle { 0%,100% { transform: rotate(0); } 30% { transform: rotate(-2.5deg); } 70% { transform: rotate(2.5deg); } }
.concern-img:hover img { animation: wiggle .55s ease-in-out; }
.prod-pouch { transition: transform .2s ease, box-shadow .2s ease; }
.prod-pouch:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.prod-pouch:hover .pouch-img img { transform: translateY(-4px) scale(1.05) rotate(-1.5deg); }
.approve:hover, .feature:hover, .testi:hover, .trust2-stat:hover { transform: translateY(-5px); }
.trust2-stat { transition: transform .2s ease; }

/* Count-up stat pop */
.trust2-stat b { display: inline-block; }
.trust2-stat.pop b { animation: statpop .5s ease; }
@keyframes statpop { 0% { transform: scale(.7); } 60% { transform: scale(1.12); } 100% { transform: scale(1); } }

/* Floating "Ask Steady" paw button */
.fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: #fff;
  padding: 12px 20px 12px 12px; border-radius: 999px;
  box-shadow: 0 14px 30px rgba(15,98,230,.42); font-family: var(--head); font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 38px rgba(15,98,230,.5); }
.fab .fab-paw { width: 36px; height: 36px; border-radius: 50%; background: #fff; display: grid; place-items: center; flex: none; }
.fab .fab-paw svg { animation: pawwag 2.4s ease-in-out infinite; }
@keyframes pawwag { 0%,100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }
.fab::before { content: ""; position: absolute; inset: -5px; border-radius: 999px; border: 2px solid var(--blue-bright); opacity: .5; animation: fabpulse 2.2s ease-out infinite; }
@keyframes fabpulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.3); opacity: 0; } }
@media (max-width: 600px) { .fab span.fab-label { display: none; } .fab { padding: 12px; } }

/* Paw burst on add-to-cart */
.paw-pop { position: fixed; z-index: 300; pointer-events: none; color: var(--blue); animation: pawpop 1s ease-out forwards; }
@keyframes pawpop { 0% { transform: translateY(0) scale(.4) rotate(0); opacity: 0; } 20% { opacity: 1; } 100% { transform: translateY(-90px) scale(1.15) rotate(25deg); opacity: 0; } }

/* Warm trust strip */
.trust-strip { background: linear-gradient(90deg,#eef6ff,#f4faee); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px; padding-top: 20px; padding-bottom: 20px; }
.trust-strip .ts { display: flex; align-items: center; gap: 10px; font-family: var(--head); font-weight: 700; color: var(--navy); font-size: .95rem; }
.trust-strip .ts .tsi { width: 34px; height: 34px; border-radius: 10px; background: #fff; box-shadow: var(--shadow-sm); display: grid; place-items: center; }

/* =========================================================
   OVERRIDES v12 — polished hero slider
   ========================================================= */
.hero-slider { border-radius: 0 0 40px 40px; }
.hs-slide { min-width: 100%; height: clamp(460px, 46vw, 580px); display: flex; align-items: center; position: relative; overflow: hidden; }
.hs-slide .hs-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; }

/* content: left-aligned to the site gutter, vertically centered */
.hs-content { max-width: 560px; text-align: left; position: relative; z-index: 4; }
.hs-content h1 { font-size: clamp(2.4rem, 4.6vw, 4.2rem); line-height: 1.02; letter-spacing: -1px; margin-top: 14px; }
.hs-content p { font-family: var(--head); font-weight: 700; font-size: 1.15rem; margin: 16px 0 26px; max-width: 460px; }
.hs-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* badge pill */
.hs-badge { display: inline-block; font-family: var(--head); font-weight: 800; font-size: .8rem; letter-spacing: .5px;
  padding: 8px 16px; border-radius: 999px; background: #fff; color: var(--blue); box-shadow: var(--shadow-sm); }
.hs-badge.glass { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(6px); box-shadow: none; }

/* PHOTO slide — dark left scrim, white text */
.hs-slide.photo .hs-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,26,54,.82) 0%, rgba(8,26,54,.55) 38%, rgba(8,26,54,.05) 66%, transparent 100%); }
.hs-content.light h1, .hs-content.light p { color: #fff; }
.hs-content.light .accent { color: #7fb2ff; }
.btn-glass { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn-glass:hover { background: rgba(255,255,255,.28); }

/* GRADIENT slides */
.hs-slide.grad-blue { background: linear-gradient(120deg, #0b3ea8 0%, #1666e0 55%, #2f84f0 100%); }
.hs-slide.grad-green { background: linear-gradient(120deg, #eefadf 0%, #d8efbe 100%); }
.hs-slide.grad-blue .accent-green { color: #b9e77f; }
.hs-content h1 { color: var(--navy); }
.hs-slide.grad-green .accent, .hs-slide.grad-green .hs-content h1 { color: var(--blue); }
.hs-slide.grad-green .hs-content p { color: var(--navy); }

/* Steady on gradient slides — big, right, bottom-aligned */
.hs-steady { position: absolute; right: 5%; bottom: 0; height: 96%; width: auto; z-index: 3;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.28)); }
.hs-slide.grad-green .hs-steady { height: 78%; right: 7%; }

/* decorative blobs / paw depth */
.hs-deco { position: absolute; border-radius: 50%; z-index: 1; opacity: .5;
  background: radial-gradient(circle, rgba(255,255,255,.5), rgba(255,255,255,0) 70%); pointer-events: none; }
.hs-deco.d1 { width: 420px; height: 420px; top: -120px; right: 8%; }
.hs-deco.d2 { width: 260px; height: 260px; bottom: -90px; left: 30%; opacity: .35; }
.hs-deco.green { background: radial-gradient(circle, rgba(124,191,63,.35), rgba(124,191,63,0) 70%); }

/* arrows + dots polish */
.hs-arrow { top: 50%; width: 48px; height: 48px; background: rgba(255,255,255,.92); color: var(--navy); box-shadow: var(--shadow); border: none; }
.hs-arrow:hover { background: #fff; }
.hs-dots { bottom: 22px; }
.hs-dots button { background: rgba(255,255,255,.6); }
.hs-dots button.on { background: #fff; width: 28px; }
.hs-slide.grad-green ~ .hs-dots button { }

@media (max-width: 760px) {
  .hs-slide { height: 480px; text-align: center; }
  .hs-content { max-width: 100%; text-align: center; margin: 0 auto; }
  .hs-cta { justify-content: center; }
  .hs-steady { opacity: .35; right: -6%; }
  .hs-slide.photo .hs-bg::after { background: linear-gradient(180deg, rgba(8,26,54,.5), rgba(8,26,54,.8)); }
}

/* =========================================================
   OVERRIDES v13 — full-page paw burst + fuller Steady Knows
   ========================================================= */
.paw-pop { position: fixed; z-index: 400; pointer-events: none; will-change: transform, opacity; opacity: 0; }
.paw-pop { animation-name: pawpop; animation-timing-function: cubic-bezier(.2,.7,.3,1); animation-fill-mode: forwards; }
@keyframes pawpop {
  0%   { transform: translate(0,0) scale(.3) rotate(0); opacity: 0; }
  12%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: translate(var(--dx,0), var(--rise,-260px)) scale(1.25) rotate(var(--rot,30deg)); opacity: 0; }
}

/* Steady Knows — fill the empty space */
.knows {
  background:
    radial-gradient(circle at 28% 42%, #eaf4ff, #f4f9ff),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cg fill='%23d7e6fa' opacity='0.6'%3E%3Cellipse cx='20' cy='30' rx='3.4' ry='4.4'/%3E%3Cellipse cx='34' cy='30' rx='3.4' ry='4.4'/%3E%3Cellipse cx='24' cy='22' rx='3.4' ry='4.4'/%3E%3Cellipse cx='30' cy='22' rx='3.4' ry='4.4'/%3E%3Cpath d='M27 33c-5 0-8 3-8 6.5S22 45 27 45s8-2 8-5.5S32 33 27 33z'/%3E%3C/g%3E%3C/svg%3E");
}
.knows-perks { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.knows-perks .kp {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border-radius: 999px; padding: 9px 16px;
  font-family: var(--head); font-weight: 700; font-size: .84rem; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.knows-rating { margin-top: 18px; display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: .9rem; }
.knows-rating .stars { color: #f4b740; font-size: 1rem; letter-spacing: 1px; }
.knows-rating b { font-family: var(--head); color: var(--navy); }

/* =========================================================
   OVERRIDES v14 — paw & bone shower falls top → bottom
   ========================================================= */
.paw-pop { top: -10vh; will-change: transform, opacity; }
.paw-pop.bone { line-height: 1; filter: drop-shadow(0 4px 6px rgba(11,37,69,.18)); }
@keyframes pawpop {
  0%   { transform: translate(0, 0) rotate(0); opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translate(var(--dx, 0), var(--fall, 110vh)) rotate(var(--rot, 200deg)); opacity: .15; }
}

/* =========================================================
   OVERRIDES v15 — split hero (both subjects) + dog sizing
   ========================================================= */
/* Slide 1: text left, full photo right (human + dog both visible) */
.hs-slide.split { background: linear-gradient(135deg, #e8f2ff 0%, #f4f9ff 55%, #eef7e4 100%); }
.hs-split-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; align-items: center; width: 100%; }
.hs-slide.split .hs-content { max-width: 560px; }
.hs-slide.split .hs-content h1 { color: var(--blue); }
.hs-slide.split .hs-content .accent { color: var(--navy); }
.hs-slide.split .hs-content p { color: var(--ink-soft); }
.hs-photo img { width: 100%; height: auto; border-radius: 26px; box-shadow: var(--shadow-lg); display: block; }

/* Gradient-slide mascots: preserve aspect, sit neatly (no distortion / no over-crop) */
.hs-steady { height: auto; max-height: 82%; width: auto; max-width: 40%; object-fit: contain; right: 6%; bottom: 0; }
.hs-slide.grad-green .hs-steady { max-height: 76%; }

@media (max-width: 860px) {
  .hs-split-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .hs-slide.split .hs-content { margin: 0 auto; }
  .hs-photo { max-width: 460px; margin: 0 auto; }
  .hs-slide.split { height: auto; padding: 30px 0; }
}

/* =========================================================
   OVERRIDES v16 — slides 2/3 dogs in split grid + soft glow
   ========================================================= */
.hs-slide.grad-blue .hs-split-grid, .hs-slide.grad-green .hs-split-grid { position: relative; z-index: 4; }
.hs-photo.glow { position: relative; display: flex; align-items: flex-end; justify-content: center; }
.hs-photo.glow::before {
  content: ""; position: absolute; inset: -6% -4% -8% -4%;
  background: radial-gradient(circle at 50% 52%, rgba(255,255,255,.92) 0%, rgba(255,255,255,.55) 42%, rgba(255,255,255,0) 66%);
  z-index: 0;
}
.hs-photo.glow img {
  position: relative; z-index: 1; width: auto; height: auto;
  max-height: 440px; max-width: 100%; border-radius: 0;
  filter: drop-shadow(0 16px 26px rgba(11,37,69,.28));
}
/* keep the absolute mascot rule from overriding the new in-grid dogs */
.hs-slide.grad-blue .hs-steady, .hs-slide.grad-green .hs-steady { display: none; }

/* =========================================================
   ABOUT — Journey flow + Steady's Evidence Room
   ========================================================= */
/* Connected journey */
.journey-flow { display: flex; align-items: stretch; justify-content: center; gap: 6px; flex-wrap: wrap; }
.jf-step { flex: 1 1 165px; max-width: 210px; background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 24px 16px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.jf-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.jf-step.last { background: linear-gradient(180deg,#eef8dd,#e4f2cf); border-color: #cfe6a8; }
.jf-ico { width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 14px; background: var(--bg-soft);
  display: grid; place-items: center; color: var(--blue); font-family: var(--head); font-weight: 900; font-size: 1.1rem; }
.jf-step b { font-family: var(--head); color: var(--navy); display: block; margin-bottom: 6px; font-size: 1rem; }
.jf-step p { font-size: .82rem; color: var(--ink-soft); line-height: 1.4; }
.jf-arrow { align-self: center; color: var(--blue); font-size: 1.5rem; flex: 0 0 auto; }
@media (max-width: 780px){ .jf-arrow { transform: rotate(90deg); } .jf-step { max-width: 100%; flex-basis: 100%; } }

/* trust badges band under journey */
.journey-trust { display: flex; justify-content: center; gap: 46px; flex-wrap: wrap; margin-top: 30px;
  background: linear-gradient(90deg,#e9f2ff,#f2f8ff); border-radius: 18px; padding: 20px 26px; }
.journey-trust .jt { display: flex; align-items: center; gap: 12px; font-family: var(--head); font-weight: 800; color: var(--navy); }
.journey-trust .jt .jti { color: var(--blue); }
.journey-trust .jt small { display: block; font-weight: 600; color: var(--ink-soft); font-size: .8rem; }

/* ---- Evidence Room / Investigation Board ---- */
.evidence { position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.25), transparent 40%),
    #d7c39a;
  background-blend-mode: overlay; }
.evidence::before { content: ""; position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background-image: radial-gradient(rgba(120,92,45,.35) 1px, transparent 1.4px); background-size: 12px 12px; }
.evidence .container { position: relative; z-index: 1; }
.evidence .section-head .script { color: #3a2c12; }
.evidence-intro { text-align: center; max-width: 620px; margin: 0 auto 40px; color: #4a3a1c; font-weight: 600; }

.evi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.polaroid { background: #fff; padding: 10px 10px 14px; border-radius: 3px; position: relative;
  box-shadow: 0 12px 26px rgba(60,40,10,.32); }
.polaroid:nth-child(4n+1){ transform: rotate(-2.5deg); } .polaroid:nth-child(4n+2){ transform: rotate(1.8deg); }
.polaroid:nth-child(4n+3){ transform: rotate(-1.4deg); } .polaroid:nth-child(4n){ transform: rotate(2.2deg); }
.polaroid:hover { transform: rotate(0) translateY(-4px); transition: transform .2s ease; z-index: 3; }
.polaroid img { width: 100%; height: 175px; object-fit: cover; border-radius: 2px; background: #eef4fb; }
.polaroid figcaption { text-align: center; margin-top: 10px; font-family: var(--head); font-weight: 800; color: var(--navy); font-size: .92rem; }
.polaroid figcaption small { display: block; font-family: var(--font); font-weight: 600; color: var(--ink-soft); font-size: .72rem; margin-top: 4px; line-height: 1.3; }
.pin { width: 16px; height: 16px; border-radius: 50%; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle at 35% 30%, #ff7a7a, #c62f2f); box-shadow: 0 3px 5px rgba(0,0,0,.35); z-index: 2; }
.pin.blue { background: radial-gradient(circle at 35% 30%, #7fb2ff, #1f5fd0); }
.pin.green { background: radial-gradient(circle at 35% 30%, #b6e77f, #5fa22b); }
.pin.gold { background: radial-gradient(circle at 35% 30%, #ffd76a, #e0a300); }

.evi-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.evi-note { background: #fffdf1; border: 1px solid #e6dcbb; border-radius: 4px; padding: 26px 28px; position: relative;
  box-shadow: 0 10px 22px rgba(60,40,10,.22); }
.evi-note.find { background: #eef9dd; border-color: #d3e6ac; }
.evi-note:nth-child(1){ transform: rotate(-1deg);} .evi-note:nth-child(2){ transform: rotate(1deg);}
.evi-note h4 { font-family: var(--script); font-size: 1.7rem; color: var(--blue); margin-bottom: 12px; }
.evi-note.find h4 { color: var(--green-dark); }
.evi-note ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); margin-bottom: 9px; font-weight: 600; }
.evi-note ul li .q { color: var(--blue); flex: none; }
.evi-note.find ul li .q { color: var(--green-dark); }
.evi-suspect { margin-top: 14px; font-family: var(--head); font-weight: 800; color: var(--navy); }
.evi-suspect .hl { background: #ffe89a; padding: 1px 6px; border-radius: 4px; }
@media (max-width: 900px){ .evi-grid { grid-template-columns: 1fr 1fr; } .evi-notes { grid-template-columns: 1fr; } }
@media (max-width: 520px){ .evi-grid { grid-template-columns: 1fr; } }

/* polaroid framing — show the faces */
.polaroid img { object-position: center 15%; }

/* =========================================================
   CONCERN BOXES v2 — fresh gradient cards + cut-out dogs
   ========================================================= */
.concern-box {
  position: relative; display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(165deg, var(--c1), var(--c2));
  border: 1px solid rgba(255,255,255,.6); border-radius: 26px; padding: 24px 14px 22px;
  min-height: 320px; overflow: hidden; box-shadow: 0 10px 26px rgba(11,37,69,.08);
  transition: transform .22s ease, box-shadow .22s ease;
}
.concern-box::after { content: ""; position: absolute; top: -40%; left: -20%; width: 140%; height: 70%;
  background: radial-gradient(circle, rgba(255,255,255,.55), transparent 60%); pointer-events: none; }
.concern-box:hover { transform: translateY(-8px); box-shadow: 0 22px 44px rgba(11,37,69,.16); }
.concern-box h3 {
  font-family: var(--head); font-weight: 800; color: var(--ct); text-align: center;
  font-size: 1.15rem; line-height: 1.08; min-height: 2.3em; position: relative; z-index: 2; letter-spacing: -.3px;
}
.cb-dog { flex: 1; display: flex; align-items: flex-end; justify-content: center; width: 100%; margin: 4px 0 12px; position: relative; z-index: 2; }
.cb-dog img { max-height: 205px; max-width: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 12px 14px rgba(11,37,69,.20)); transition: transform .3s ease; }
.concern-box:hover .cb-dog img { transform: scale(1.07) rotate(-1.5deg); }
.cb-shop {
  position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue); font-family: var(--head); font-weight: 700; font-size: .9rem;
  padding: 11px 22px; border-radius: 999px; box-shadow: var(--shadow-sm); transition: background .2s, color .2s;
}
.concern-box:hover .cb-shop { background: var(--blue); color: #fff; }

/* =========================================================
   ABOUT hero — filled mascot card (Steady + case note)
   ========================================================= */
.steady-intro { display: flex; align-items: center; gap: 22px; padding: 28px; }
.si-dog { width: 46%; max-width: 230px; flex: none; }
.si-note {
  flex: 1; background: #fffdf1; border: 1px solid #ece2c2; border-radius: 12px;
  padding: 20px 22px; box-shadow: 0 8px 18px rgba(60,40,10,.14); transform: rotate(1.4deg); position: relative;
}
.si-note::before { content: "📌"; position: absolute; top: -16px; left: 18px; font-size: 1.4rem; transform: rotate(-12deg); }
.si-note b { font-family: var(--head); font-weight: 800; color: var(--navy); display: block; margin-bottom: 12px; font-size: 1.05rem; }
.si-note ul li { display: flex; gap: 9px; align-items: center; color: var(--ink); font-weight: 600; margin-bottom: 7px; }
.si-note ul li span { color: var(--green-dark); font-weight: 800; flex: none; }
.si-name { display: block; margin-top: 12px; font-size: 1.6rem; color: var(--blue); line-height: 1; }
.si-note small { display: block; color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 860px){ .steady-intro { flex-direction: column; } .si-dog { width: 62%; } .si-note { transform: none; } }

/* =========================================================
   Investigation Board — consistent, aligned polaroid photos
   ========================================================= */
.polaroid img {
  height: 200px; object-fit: contain; object-position: center bottom;
  background: #f7fafe; padding: 6px;
}
/* gentle, even tilt (aligned but still playful) */
.polaroid:nth-child(4n+1){ transform: rotate(-1.2deg); }
.polaroid:nth-child(4n+2){ transform: rotate(1.2deg); }
.polaroid:nth-child(4n+3){ transform: rotate(-1.2deg); }
.polaroid:nth-child(4n){   transform: rotate(1.2deg); }

/* =========================================================
   SEARCH OVERLAY
   ========================================================= */
.search-overlay { position: fixed; inset: 0; z-index: 500; background: rgba(11,37,69,.5); backdrop-filter: blur(4px);
  display: flex; align-items: flex-start; justify-content: center; padding: 8vh 20px; opacity: 0; visibility: hidden; transition: opacity .2s; }
.search-overlay.show { opacity: 1; visibility: visible; }
.search-panel { width: min(640px, 100%); background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; transform: translateY(-12px); transition: transform .2s; }
.search-overlay.show .search-panel { transform: none; }
.search-bar { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line); color: var(--blue); }
.search-bar input { flex: 1; border: none; outline: none; font-family: var(--font); font-size: 1.05rem; color: var(--ink); }
.search-close { font-family: var(--head); font-weight: 700; font-size: .72rem; color: var(--ink-soft); background: var(--bg-soft); padding: 5px 10px; border-radius: 8px; }
.search-results { max-height: 60vh; overflow-y: auto; padding: 8px; }
.search-hint { font-family: var(--head); font-weight: 700; font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); padding: 10px 12px 4px; }
.search-item { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 14px; transition: background .15s; }
.search-item:hover { background: var(--bg-soft); }
.si-jar { width: 44px; height: 52px; border-radius: 8px 8px 10px 10px; flex: none; box-shadow: var(--shadow-sm); }
.si-info { flex: 1; } .si-info b { font-family: var(--head); color: var(--navy); display: block; } .si-info small { color: var(--ink-soft); }
.si-price { font-family: var(--head); font-weight: 800; color: var(--blue); }
.search-empty { text-align: center; padding: 40px 20px; color: var(--ink-soft); }

/* =========================================================
   ACCOUNT / LOGIN
   ========================================================= */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.auth-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 38px; }
.auth-tabs { display: flex; gap: 8px; background: var(--bg-soft); border-radius: 999px; padding: 5px; margin-bottom: 26px; }
.auth-tabs button { flex: 1; padding: 10px; border-radius: 999px; font-family: var(--head); font-weight: 700; color: var(--ink-soft); }
.auth-tabs button.on { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.account-grid { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.account-side { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: sticky; top: 90px; }
.account-side .who { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.account-side .avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--green)); display: grid; place-items: center; color: #fff; font-family: var(--head); font-weight: 800; }
.account-nav button { display: flex; width: 100%; text-align: left; gap: 10px; padding: 11px 14px; border-radius: 10px; font-family: var(--head); font-weight: 600; color: var(--ink); }
.account-nav button:hover { background: var(--bg-soft); } .account-nav button.on { background: var(--blue); color: #fff; }
.acc-panel { display: none; } .acc-panel.on { display: block; }
.order-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.order-head { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 12px; }
.order-head b { font-family: var(--head); color: var(--navy); }
.order-status { font-family: var(--head); font-weight: 700; font-size: .78rem; padding: 5px 12px; border-radius: 999px; background: #e9f3d9; color: var(--green-dark); }
.order-items { display: flex; gap: 8px; flex-wrap: wrap; }
.order-items span { background: var(--bg-soft); border-radius: 8px; padding: 6px 12px; font-size: .85rem; }
.track-steps { display: flex; justify-content: space-between; margin-top: 16px; position: relative; }
.track-steps::before { content: ""; position: absolute; top: 15px; left: 8%; right: 8%; height: 3px; background: var(--line); }
.track-steps .ts-node { position: relative; z-index: 1; text-align: center; flex: 1; }
.track-steps .ts-dot { width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 3px solid var(--line); display: grid; place-items: center; margin: 0 auto 8px; }
.track-steps .ts-node.done .ts-dot { background: var(--green); border-color: var(--green); color: #fff; }
.track-steps .ts-node small { font-size: .72rem; color: var(--ink-soft); font-family: var(--head); font-weight: 600; }
@media (max-width: 760px){ .account-grid { grid-template-columns: 1fr; } .account-side { position: static; } }

/* =========================================================
   Evidence Board — vibrant refresh
   ========================================================= */
.evidence {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.35), transparent 45%),
    linear-gradient(120deg, #dcefff 0%, #eafce0 48%, #fff1d4 100%);
  background-blend-mode: normal;
}
.evidence::before {
  opacity: .5;
  background-image: radial-gradient(rgba(15,98,230,.18) 1.4px, transparent 1.6px);
  background-size: 22px 22px;
}
.evidence .section-head .script { color: var(--blue); }
.evidence-intro { color: var(--navy); }

/* colorful photo tint per polaroid (matches its pin) */
.evi-grid .polaroid:nth-child(1) img { background: #ffe8e8; }   /* red */
.evi-grid .polaroid:nth-child(2) img { background: #e4efff; }   /* blue */
.evi-grid .polaroid:nth-child(3) img { background: #e4f8dd; }   /* green */
.evi-grid .polaroid:nth-child(4) img { background: #fff2d2; }   /* gold */
.polaroid figcaption { color: var(--blue); }

/* vibrant case notes */
.evi-note { background: #fff4c9; border-color: #f0dc8f; }
.evi-note.find { background: #d8f6c2; border-color: #aee08a; }
.evi-note h4 { color: #e0870c; }
.evi-note.find h4 { color: var(--green-dark); }
.evi-suspect .hl { background: #ffd54a; }

/* =========================================================
   Evidence Board — funky vibrant background
   ========================================================= */
.evidence {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.35), transparent 42%),
    linear-gradient(120deg, #6ee7f0 0%, #7aa8ff 34%, #b98bff 66%, #ff8fc7 100%);
}
.evidence::before {
  opacity: .35;
  background-image: radial-gradient(rgba(255,255,255,.6) 1.4px, transparent 1.7px);
  background-size: 24px 24px;
}
.evidence .section-head .script { color: #fff; text-shadow: 0 3px 10px rgba(11,37,69,.28); }
.evidence-intro { color: #fff; font-weight: 700; text-shadow: 0 2px 8px rgba(11,37,69,.25); }

/* =========================================================
   Shop by Products — bigger, aligned pouches
   ========================================================= */
.pouch-grid { gap: 20px; align-items: stretch; }
.prod-pouch { padding: 24px 14px 22px; justify-content: space-between; }
.prod-pouch .pouch-img { height: 290px; width: 100%; display: flex; align-items: flex-end; justify-content: center; }
.prod-pouch .pouch-img img { height: 290px; width: auto; margin: 0; object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(11,37,69,.18)); transition: transform .2s ease; }
.prod-pouch:hover .pouch-img img { transform: translateY(-6px) scale(1.05); }
.prod-pouch .concern-shop { margin-top: 20px; }
@media (max-width: 1080px){ .prod-pouch .pouch-img, .prod-pouch .pouch-img img { height: 240px; } }

/* =========================================================
   Sticker poses — quiz icon + knows dog cleanup
   ========================================================= */
.qk.qk-dog { width: 118px; height: 118px; background: none; margin-bottom: 6px; }
.qk.qk-dog img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 12px rgba(11,37,69,.16)); }
/* Steady Knows now a clean cutout (no frame) */
.knows-dog { max-width: 300px; max-height: 360px; width: auto; height: auto; margin: 0 auto; display: block;
  filter: drop-shadow(0 14px 22px rgba(11,37,69,.16)); mix-blend-mode: normal !important; }

/* ============ Testimonial carousel: matte side cards + glassy mid card ============ */
.tcards { perspective: 900px; }
/* Side cards — softer, blurrier, matte finish */
.tcard:not(.mid) {
  opacity: .75;
  transform: scale(.92);
  filter: blur(3.2px) saturate(.75);
  background: linear-gradient(180deg, #f4f6f9 0%, #eceff4 100%);
  border: 1px solid rgba(11,37,69,.06);
  box-shadow: 0 6px 16px rgba(11,37,69,.06); /* flat, diffuse — no gloss */
}
/* Center card — glassy / frosted-glass finish */
.tcard.mid {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,.82) 0%, rgba(240,246,255,.6) 100%);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border: 1.5px solid rgba(255,255,255,.9);
  box-shadow:
    0 24px 48px rgba(15,98,230,.14),
    0 4px 14px rgba(11,37,69,.08),
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -18px 30px -24px rgba(15,98,230,.25);
}
/* glass sheen sweeping across the top of the mid card */
.tcard.mid::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.55) 44%, rgba(255,255,255,.12) 56%, transparent 68%);
  pointer-events: none;
}
.tcard.mid > * { position: relative; z-index: 1; }

/* ============ Hero slide 1: full original banner, text overlaid ============ */
.hs-slide.hs-banner {
  background: url("../assets/hero-full.png") center right / cover no-repeat;
  background-color: #f4f7fb; /* matches banner's left gradient */
  display: flex; align-items: center;
}
.hs-banner-content { max-width: 620px; }
.hs-banner-content h1 { color: var(--blue); }
.hs-banner-content h1 .accent { color: var(--navy); }
@media (max-width: 760px) {
  .hs-slide.hs-banner { background-position: 72% center; }
  .hs-slide.hs-banner::before { content: ""; position: absolute; inset: 0; background: rgba(244,247,251,.6); }
}

/* ============ Concern & pouch cards: matte bottom border + glassy buttons ============ */
/* matte lower border — flat, muted band of each card's theme colour */
.concern-box { border-bottom: 6px solid color-mix(in srgb, var(--ct) 55%, #b9c1cc); }
.prod-pouch  { border-bottom: 6px solid #c7d2e2; }

/* glassy Shop Now buttons */
.cb-shop, .concern-shop {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,.72), rgba(255,255,255,.38));
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  border: 1.2px solid rgba(255,255,255,.85);
  box-shadow: 0 8px 20px rgba(11,37,69,.10), inset 0 1px 0 rgba(255,255,255,.9);
}
.prod-pouch .concern-shop {
  background: linear-gradient(160deg, rgba(240,246,255,.85), rgba(226,237,252,.5));
  border: 1.2px solid rgba(255,255,255,.9);
  padding: 11px 22px; border-radius: 999px;
}
/* light sheen across the glass */
.cb-shop::before, .concern-shop::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.6) 45%, transparent 60%);
  pointer-events: none;
}
.concern-box:hover .cb-shop, .prod-pouch:hover .concern-shop {
  background: var(--blue); color: #fff; border-color: rgba(255,255,255,.4);
}

/* ============ Hero slider: match the original banner's aspect ratio (1920x912) so the photo never crops ============ */
.hs-slide { height: clamp(420px, 47.5vw, 912px); }
.hs-slide.hs-banner { background-position: center top; }

/* ============ Real product pack images (SN pouches) in shop, PDP, search & cart ============ */
.product-media .product-pack { height: 200px; width: auto; max-width: 88%; object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(11,37,69,.20)); transition: transform .25s ease; }
.product-card:hover .product-media .product-pack { transform: translateY(-5px) scale(1.04); }
.pdp-media .product-pack { height: 320px; width: auto; max-width: 90%; object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(11,37,69,.22)); }
.si-jar { display: grid; place-items: center; background: #f2f6fc; box-shadow: none; overflow: hidden; }
.si-jar img { width: 85%; height: 85%; object-fit: contain; }
.cart-thumb.pack { background: #f2f6fc; padding: 8px; }
.cart-thumb.pack img { width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(11,37,69,.18)); }

/* ============ Hero slides 2 & 3: floating decor, watermark, perk chips ============ */
.hs-watermark {
  position: absolute; right: -2%; bottom: -14%; z-index: 1; pointer-events: none;
  font-family: var(--head); font-weight: 900; font-size: clamp(14rem, 26vw, 30rem); line-height: 1;
  color: rgba(255,255,255,.08); letter-spacing: -8px; user-select: none;
}
.hs-watermark.green { color: rgba(15,98,230,.07); }
.hs-float {
  position: absolute; z-index: 1; font-size: clamp(1.6rem, 2.6vw, 2.6rem); pointer-events: none;
  opacity: .45; animation: hsFloat 5.5s ease-in-out infinite;
}
@keyframes hsFloat {
  0%,100% { transform: translateY(0) rotate(-6deg); }
  50%     { transform: translateY(-22px) rotate(8deg); }
}
.hs-perks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hs-perk {
  font-family: var(--head); font-weight: 700; font-size: .82rem; color: #fff;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px; border-radius: 999px;
}
.hs-perk.dark { color: var(--navy); background: rgba(255,255,255,.6); border-color: rgba(255,255,255,.9); }

/* ============ Hero slide 1: permanent matte glass panel over the white space ============ */
.hs-banner-content {
  background: linear-gradient(170deg, rgba(255,255,255,.55), rgba(240,246,252,.42));
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 26px;
  padding: 38px 40px;
  box-shadow: 0 18px 40px rgba(11,37,69,.10); /* soft diffuse — matte, no sheen */
}

/* ============ Quiz result cards: keep pack image inside the media box ============ */
.result-products .product-media { height: 230px; overflow: hidden; }
.result-products .product-media .product-pack { height: 195px; max-width: 86%; }

/* checkout payment options */
.pay-opts { display: flex; gap: 10px; flex-wrap: wrap; }
.pay-opt {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--head); font-weight: 700; font-size: .9rem; color: var(--navy);
  background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: 14px; padding: 12px 16px;
  transition: border-color .15s, background .15s;
}
.pay-opt:has(input:checked) { border-color: var(--blue); background: #eaf2ff; }
.pay-opt input { accent-color: var(--blue); }

/* keep the "Top match" badge above the pack image, tucked in the corner */
.product-tag { z-index: 3; }
.result-products .product-media { padding-top: 34px; }
.result-products .product-media .product-pack { height: 175px; }

/* =====================================================================
   VIBRANT PASTEL THEME — unsaturated logo colours + beach accents
   sky (soft logo blue) · sage (soft logo green) · peach · rose · sand · seafoam · lilac
   ===================================================================== */
:root {
  --pas-sky:     #dceafd;  --acc-sky:     #5b8fd9;
  --pas-sage:    #e6f2d8;  --acc-sage:    #8fbb6b;
  --pas-peach:   #ffe7d2;  --acc-peach:   #e98a4f;
  --pas-rose:    #fde3ec;  --acc-rose:    #d96d92;
  --pas-sand:    #fcf0da;  --acc-sand:    #cfa14e;
  --pas-seafoam: #dcf2ee;  --acc-seafoam: #4aa79b;
  --pas-lilac:   #ebe3f8;  --acc-lilac:   #8f74c9;
}

/* --- beach-wash page hero (subpages) --- */
.page-hero {
  background:
    radial-gradient(900px 300px at 8% 0%,  var(--pas-rose) 0%, transparent 60%),
    radial-gradient(900px 320px at 92% 0%, var(--pas-seafoam) 0%, transparent 60%),
    linear-gradient(180deg, var(--pas-sand), #fff 88%);
}

/* --- trust strip: beach gradient + cycling icon tiles --- */
.trust-strip { background: linear-gradient(90deg, var(--pas-sand), var(--pas-seafoam) 30%, var(--pas-sky) 62%, var(--pas-rose)); }
.trust-strip .ts .tsi { box-shadow: none; }
.trust-strip .ts:nth-child(6n+1) .tsi { background: var(--pas-peach); }
.trust-strip .ts:nth-child(6n+2) .tsi { background: var(--pas-sky); }
.trust-strip .ts:nth-child(6n+3) .tsi { background: var(--pas-rose); }
.trust-strip .ts:nth-child(6n+4) .tsi { background: var(--pas-sage); }
.trust-strip .ts:nth-child(6n+5) .tsi { background: var(--pas-lilac); }
.trust-strip .ts:nth-child(6n+6) .tsi { background: var(--pas-seafoam); }

/* --- feature cards: cycling pastel icon bubbles + matte top ribbon --- */
.feature { border-top: 5px solid var(--pas-sky); }
.feature:nth-child(6n+1) { border-top-color: var(--acc-peach); }   .feature:nth-child(6n+1) .fi { background: var(--pas-peach);   color: var(--acc-peach); }
.feature:nth-child(6n+2) { border-top-color: var(--acc-sky); }     .feature:nth-child(6n+2) .fi { background: var(--pas-sky);     color: var(--acc-sky); }
.feature:nth-child(6n+3) { border-top-color: var(--acc-rose); }    .feature:nth-child(6n+3) .fi { background: var(--pas-rose);    color: var(--acc-rose); }
.feature:nth-child(6n+4) { border-top-color: var(--acc-sage); }    .feature:nth-child(6n+4) .fi { background: var(--pas-sage);    color: var(--acc-sage); }
.feature:nth-child(6n+5) { border-top-color: var(--acc-lilac); }   .feature:nth-child(6n+5) .fi { background: var(--pas-lilac);   color: var(--acc-lilac); }
.feature:nth-child(6n+6) { border-top-color: var(--acc-seafoam); } .feature:nth-child(6n+6) .fi { background: var(--pas-seafoam); color: var(--acc-seafoam); }

/* --- Steady Approves tiles: pastel washes --- */
.approve { border-left: 5px solid var(--pas-sky); }
.approve:nth-child(6n+1) { border-left-color: var(--acc-sage); }    .approve:nth-child(6n+1) .ai { background: var(--pas-sage); }
.approve:nth-child(6n+2) { border-left-color: var(--acc-peach); }   .approve:nth-child(6n+2) .ai { background: var(--pas-peach); }
.approve:nth-child(6n+3) { border-left-color: var(--acc-sky); }     .approve:nth-child(6n+3) .ai { background: var(--pas-sky); }
.approve:nth-child(6n+4) { border-left-color: var(--acc-rose); }    .approve:nth-child(6n+4) .ai { background: var(--pas-rose); }
.approve:nth-child(6n+5) { border-left-color: var(--acc-seafoam); } .approve:nth-child(6n+5) .ai { background: var(--pas-seafoam); }
.approve:nth-child(6n+6) { border-left-color: var(--acc-lilac); }   .approve:nth-child(6n+6) .ai { background: var(--pas-lilac); }
.approve .ai { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-inline: auto; }

/* --- About hero chips + quiz perks: cycling pastels --- */
.chip:nth-child(4n+1) .ci { background: var(--pas-peach); }
.chip:nth-child(4n+2) .ci { background: var(--pas-sky); }
.chip:nth-child(4n+3) .ci { background: var(--pas-sage); }
.chip:nth-child(4n+4) .ci { background: var(--pas-rose); }
.knows-perks .kp:nth-child(4n+1) { background: var(--pas-sand); }
.knows-perks .kp:nth-child(4n+2) { background: var(--pas-seafoam); }
.knows-perks .kp:nth-child(4n+3) { background: var(--pas-rose); }
.knows-perks .kp:nth-child(4n+4) { background: var(--pas-lilac); }

/* --- journey flow icons + trust chips --- */
.jf-step:nth-child(odd) .jf-ico { background: var(--pas-peach); }
.jf-step:nth-child(1) .jf-ico { background: var(--pas-sky); }
.jf-step:nth-child(3) .jf-ico { background: var(--pas-seafoam); }
.jf-step:nth-child(5) .jf-ico { background: var(--pas-rose); }
.jf-step:nth-child(7) .jf-ico { background: var(--pas-sage); }
.jf-step:nth-child(9) .jf-ico { background: var(--pas-sand); }
.journey-trust .jt:nth-child(3n+1) { background: var(--pas-peach); }
.journey-trust .jt:nth-child(3n+2) { background: var(--pas-sky); }
.journey-trust .jt:nth-child(3n+3) { background: var(--pas-rose); }

/* --- exclusive marquee: sunset ribbon --- */
.excl-marquee { background: linear-gradient(90deg, var(--pas-peach), var(--pas-rose) 45%, var(--pas-lilac)); color: var(--navy); }
.excl-marquee .dot { color: var(--acc-peach); }

/* --- section script headings: playful underline swash --- */
.script-head { position: relative; display: block; }
.script-head::after {
  content: ""; display: block; width: 130px; height: 6px; margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--acc-peach), var(--acc-rose), var(--acc-sky), var(--acc-sage));
  opacity: .8;
}

/* --- pouch cards: cycling matte bottom borders (replace uniform grey) --- */
.prod-pouch:nth-child(6n+1) { border-bottom-color: var(--acc-sky); }
.prod-pouch:nth-child(6n+2) { border-bottom-color: var(--acc-sand); }
.prod-pouch:nth-child(6n+3) { border-bottom-color: var(--acc-rose); }
.prod-pouch:nth-child(6n+4) { border-bottom-color: var(--acc-lilac); }
.prod-pouch:nth-child(6n+5) { border-bottom-color: var(--acc-sage); }
.prod-pouch:nth-child(6n+6) { border-bottom-color: var(--acc-seafoam); }

/* --- product cards (shop grid): pastel media washes --- */
.product-card:nth-child(6n+1) .product-media { background: linear-gradient(180deg, var(--pas-sky), #fff) !important; }
.product-card:nth-child(6n+2) .product-media { background: linear-gradient(180deg, var(--pas-peach), #fff) !important; }
.product-card:nth-child(6n+3) .product-media { background: linear-gradient(180deg, var(--pas-seafoam), #fff) !important; }
.product-card:nth-child(6n+4) .product-media { background: linear-gradient(180deg, var(--pas-rose), #fff) !important; }
.product-card:nth-child(6n+5) .product-media { background: linear-gradient(180deg, var(--pas-sand), #fff) !important; }
.product-card:nth-child(6n+6) .product-media { background: linear-gradient(180deg, var(--pas-lilac), #fff) !important; }

/* --- contact info tiles + auth card: pastel icon tiles --- */
.feature[style] .fi { margin-bottom: 0; }

/* --- footer stays navy; soften the pre-footer marquee into the beach set --- */
.footer-marquee { background: linear-gradient(90deg, var(--blue), var(--blue-bright) 55%, var(--green)); }
