/* ============================================
   SUREFOOT — PLANTAR FASCIITIS LP
   Brand tokens + base + layout + components
   ============================================ */

:root {
  --grey-50: #F7F7F7;
  --grey-100: #EFEFEF;
  --grey-200: #DEDEDE;
  --grey-400: #888888;
  --grey-700: #444444;

  --font-display: "League Gothic", Impact, sans-serif;
  --font-body: "Commissioner", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-max: 1240px;
  --container-narrow: 820px;
  --section-pad-y: clamp(64px, 8vw, 120px);
  --section-pad-y-tight: clamp(48px, 6vw, 80px);
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); }

/* ---------- HEADINGS ---------- */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--black);
  text-transform: uppercase;
  margin: 0 0 32px;
}
.section-heading--light { color: var(--white); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 0;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover { background: var(--black); border-color: var(--black); }
.btn--primary:active { transform: translateY(1px); }
.btn--large { padding: 22px 40px; font-size: 16px; }
.btn--block { display: block; width: 100%; }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ---------- NAV (dark — matches official Surefoot site) ---------- */
.nav {
  background: var(--black);
  border-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav__logo img { width: 160px; height: auto; display: block; }
.nav__links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--red); }
.nav__cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 2px solid var(--white);
  color: var(--white);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav__cta:hover { background: var(--white); color: var(--black); }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px; background: none; border: none; cursor: pointer; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform 0.2s, opacity 0.2s; }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { padding: 14px 20px; }
  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 8px 0 20px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 200;
  }
  .nav__links--open a {
    padding: 16px 24px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.05) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
  color: var(--white);
}
.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8.5vw, 124px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 24px;
  max-width: 780px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero__sub {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 0 32px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__trust li::before { content: ""; }
@media (max-width: 600px) {
  .hero__trust { gap: 8px 16px; font-size: 11px; }
  .hero__h1 { font-size: clamp(40px, 11vw, 64px); }
}

/* ---------- PAIN AGITATION ---------- */
.pain {
  background: var(--black);
  color: var(--white);
  padding: var(--section-pad-y) 0;
}
.pain__list {
  display: grid;
  gap: 24px;
  max-width: 820px;
  counter-reset: pain;
}
.pain__list li {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  line-height: 1.45;
  padding-left: 56px;
  position: relative;
  counter-increment: pain;
}
.pain__list li::before {
  content: counter(pain, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 4px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--red);
  letter-spacing: 0.05em;
}

/* ---------- WHY SUREFOOT ---------- */
.why {
  background: var(--grey-50);
  padding: var(--section-pad-y) 0;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 60px, rgba(17,17,17,0.04) 60px, rgba(17,17,17,0.04) 61px),
    repeating-linear-gradient(90deg, transparent 0, transparent 60px, rgba(17,17,17,0.04) 60px, rgba(17,17,17,0.04) 61px);
  pointer-events: none;
}
.why > * { position: relative; }
.why__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}
.why__step h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 12px 0 8px;
  text-transform: uppercase;
}
.why__step p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--grey-700);
  margin: 0;
}
.why__num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--red);
  line-height: 1;
}
.stat-card {
  background: var(--black);
  color: var(--white);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: 0.005em;
}
.stat-card__label {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.5;
}
.why__pf {
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  max-width: 820px;
  color: var(--grey-700);
}
.why__pf strong { color: var(--black); font-weight: 700; }

@media (max-width: 720px) {
  .why__steps { grid-template-columns: 1fr; gap: 32px; }
  .stat-card { grid-template-columns: 1fr; gap: 16px; padding: 32px; text-align: left; }
}

/* ---------- ARCH TEST WIDGET ---------- */
.arch-test {
  background: var(--white);
  padding: var(--section-pad-y) 0;
}
.arch-test__intro {
  font-size: 18px;
  color: var(--grey-700);
  margin: 0 0 48px;
  max-width: 640px;
}
.widget {
  background: var(--grey-50);
  padding: 56px 48px;
  border: 2px solid var(--black);
  position: relative;
}
.widget__screen { display: none; }
.widget__screen--active { display: block; animation: fadeUp 0.35s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.widget__progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.widget__progress-bar {
  display: block;
  height: 4px;
  background: var(--red);
  flex: 1;
  max-width: 240px;
  transition: width 0.3s ease;
}
.widget__progress-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.widget__h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.widget p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--grey-700);
  margin: 0 0 32px;
  max-width: 640px;
}
.widget__needs {
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 24px;
  margin: 0 0 32px;
  max-width: 480px;
}
.widget__needs > div {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 12px;
}
.widget__needs ul li {
  padding: 8px 0;
  font-size: 16px;
  border-top: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  gap: 12px;
}
.widget__needs ul li:first-child { border-top: 0; padding-top: 0; }
.widget__needs ul li::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid var(--black);
  flex-shrink: 0;
}
.widget__save, .widget__notsure {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  color: var(--grey-700);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.widget__save:hover, .widget__notsure:hover { color: var(--red); }
.widget__back {
  display: inline-block;
  margin-top: 24px;
  margin-left: 16px;
  font-size: 14px;
  color: var(--grey-400);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Instructions list */
.instructions { display: grid; gap: 24px; margin-bottom: 32px; }
.instructions li { display: flex; gap: 24px; align-items: flex-start; }
.instructions__num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--red);
  line-height: 0.9;
  flex-shrink: 0;
  width: 60px;
}
.instructions p { margin: 0; padding-top: 8px; font-size: 17px; }

/* Answer cards */
.answers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.answer-card {
  display: block;
  text-align: left;
  background: var(--white);
  border: 2px solid var(--black);
  padding: 24px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  width: 100%;
}
.answer-card:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.answer-card:hover .answer-card__tier { color: var(--red); }
.answer-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 16px;
  background: var(--grey-50);
  padding: 8px;
}
.answer-card:hover img { background: var(--white); }
.answer-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.answer-card__desc {
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.answer-card__tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}
.answer-card__tier small { font-weight: 500; opacity: 0.7; font-size: 11px; }

@media (max-width: 720px) {
  .answers { grid-template-columns: 1fr; }
  .answer-card img { height: 180px; }
  .widget { padding: 32px 24px; }
}

/* Reveal screen */
.reveal__loading {
  text-align: center;
  padding: 80px 0;
}
.reveal__spinner {
  width: 64px;
  height: 64px;
  border: 4px solid var(--grey-200);
  border-top-color: var(--red);
  border-radius: 50%;
  margin: 0 auto 32px;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.reveal__loading p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-700);
}
.dots::after {
  content: "";
  animation: dots 1.4s steps(4, end) infinite;
}
@keyframes dots {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75% { content: "..."; }
}
.reveal__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 12px;
}
.reveal__h3 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.reveal__desc {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 640px;
}
.anchor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.anchor__option {
  background: var(--white);
  border: 2px solid var(--grey-200);
  padding: 28px;
}
.anchor__option--recommended {
  border-color: var(--red);
  position: relative;
}
.anchor__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.anchor__badge--alt { background: var(--black); }
.anchor__name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.anchor__price {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.anchor__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-700);
}
.reveal__guarantee {
  font-size: 13px;
  color: var(--grey-400);
  margin-top: 16px;
  letter-spacing: 0.04em;
}
@media (max-width: 720px) {
  .anchor { grid-template-columns: 1fr; }
}

/* ---------- PRODUCTS ---------- */
.products {
  background: var(--white);
  padding: var(--section-pad-y) 0;
  border-top: 1px solid var(--grey-100);
}
.products__intro {
  font-size: 18px;
  color: var(--grey-700);
  margin: 0 0 48px;
  max-width: 640px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.product-card:hover {
  border-color: var(--black);
}
.product-card__media {
  background: var(--white);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border-bottom: 1px solid var(--grey-100);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card__info {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.product-card__hook {
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-700);
  margin: 0 0 24px;
}
.product-card__pricing {
  margin-top: auto;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-100);
}
.product-card__bundle {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  letter-spacing: 0.01em;
}
.product-card__bundle-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-top: 6px;
}
.product-card__breakdown {
  font-size: 13px;
  color: var(--grey-700);
  margin-top: 10px;
  line-height: 1.5;
}
.product-card__breakdown strong {
  color: var(--black);
  font-weight: 700;
}
.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--grey-700);
}
.product-card__meta li {
  position: relative;
  padding-right: 16px;
}
.product-card__meta li + li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 3px;
  height: 3px;
  background: var(--grey-200);
  border-radius: 50%;
  transform: translateY(-50%);
}
.product-card__note {
  margin: 12px 0 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-400);
  text-align: center;
}

@media (max-width: 880px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ---------- SOCIAL PROOF ---------- */
.proof {
  background: var(--black);
  color: var(--white);
  padding: var(--section-pad-y) 0;
}
.proof__placeholder {
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, monospace;
  color: var(--red);
  margin: 0 0 32px;
  opacity: 0.7;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.testimonial {
  margin: 0;
  padding: 32px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--red);
}
.testimonial blockquote {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--white);
}
.testimonial figcaption {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.proof__stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(231,0,0,0.1);
  border-left: 4px solid var(--red);
  padding: 32px;
  margin-bottom: 64px;
}
.proof__stat-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.9;
  color: var(--red);
}
.proof__stat-label {
  font-size: 17px;
  line-height: 1.45;
  color: var(--white);
}
.proof__stat-cite {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--grey-400);
  font-family: ui-monospace, SFMono-Regular, monospace;
}
.press {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
}
.press__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 16px;
}
.press__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  align-items: center;
}
.press__logos span {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .testimonials { grid-template-columns: 1fr; }
  .proof__stat { grid-template-columns: 1fr; gap: 16px; }
  .press__logos { gap: 16px 32px; }
  .press__logos span { font-size: 18px; }
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--grey-50);
  padding: var(--section-pad-y) 0;
}
.accordion { display: grid; gap: 0; border-top: 1px solid var(--grey-200); }
.faq-item {
  border-bottom: 1px solid var(--grey-200);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item__body {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-700);
  max-width: 720px;
}
.faq-item__body p { margin: 0; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: var(--section-pad-y) 0;
}
.final-cta__h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.final-cta__sub {
  font-size: 18px;
  font-weight: 300;
  margin: 0 0 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .btn--primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.final-cta .btn--primary:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.final-cta__tag {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ============================================
   PHASE 9.1 — MULTI-PAGE FUNNEL ADDITIONS
   .invite (LP CTA section), /scan, /match
   ============================================ */

/* ---------- LP — INVITE SECTION ---------- */
.invite {
  background: var(--black);
  color: var(--white);
  padding: var(--section-pad-y) 0;
  position: relative;
  overflow: hidden;
}
.invite::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--red);
}
.invite__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.invite__copy { max-width: 560px; }
.invite__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 20px;
}
.invite__h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--white);
}
.invite__intro {
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.55;
  margin: 0 0 32px;
  color: rgba(255,255,255,0.85);
}
.invite__steps {
  margin: 0 0 36px;
  display: grid;
  gap: 14px;
}
.invite__steps li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 17px;
  color: var(--white);
}
.invite__step-num {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--red);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  width: 32px;
}
.invite__guarantee {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.invite__visual {
  background: var(--white);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.invite__visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 380px;
}
@media (max-width: 880px) {
  .invite__inner { grid-template-columns: 1fr; gap: 32px; }
  .invite__visual { padding: 24px; order: -1; }
  .invite__visual img { max-width: 360px; }
}

/* ---------- /SCAN AND /MATCH SHARED HEADER ---------- */
body.page-scan, body.page-match {
  background: var(--white);
}
/* Sticky offset adjusted for taller scan header (logo + announcement bar) */
body.page-scan .scan-progress, body.page-match .scan-progress {
  top: 100px;
}
.scan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 0;
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 50;
}
.scan-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.scan-header__logo img { width: 140px; height: auto; display: block; }
.scan-header__exit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s ease;
  padding: 8px;
}
.scan-header__exit:hover { color: var(--white); }
.scan-header__exit span[aria-hidden] { font-size: 22px; line-height: 1; }
@media (max-width: 600px) {
  .scan-header__exit-label { display: none; }
}

.scan-progress {
  height: 4px;
  background: var(--grey-100);
  position: sticky;
  top: 64px;
  z-index: 49;
}
.scan-progress__bar {
  height: 100%;
  background: var(--red);
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- /SCAN — STEP LAYOUT ---------- */
.scan-main {
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
}
.step {
  display: none;
  flex: 1;
  padding: clamp(40px, 6vw, 80px) 24px;
}
.step--active {
  display: flex;
  animation: stepIn 0.4s ease;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.step__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  align-items: center;
}
.step__inner--full {
  display: block;
  text-align: left;
}
.step__copy { max-width: 600px; }
.step__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 20px;
}
.step__h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.step__h1--centered { text-align: center; }
.step__lede {
  font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--grey-700);
  margin: 0 0 32px;
}
.step__lede--centered { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.step__lede strong { color: var(--black); font-weight: 700; }

.step__needs, .step__cue {
  background: var(--grey-50);
  border-left: 4px solid var(--red);
  padding: 28px 32px;
  margin: 0 0 32px;
}
.step__needs-label, .step__cue-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-700);
  margin-bottom: 16px;
}
.step__needs ul, .step__cue ul {
  display: grid;
  gap: 10px;
}
.step__needs li, .step__cue li {
  font-size: 16px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.step__needs li::before, .step__cue li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 2px;
  background: var(--red);
}

/* Step 3 — primary cue ("YOU'LL TELL US ONE OF THESE") needs to be the
   thing the user reads, not background information. Bump weight + size. */
.step__cue--primary {
  background: var(--black);
  border-left-color: var(--red);
  border-left-width: 4px;
  padding: 32px 36px;
}
.step__cue--primary .step__cue-label {
  color: var(--red);
  font-size: 14px;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}
.step__cue--primary li {
  font-size: 18px;
  color: var(--white);
  padding-left: 36px;
  line-height: 1.45;
  counter-increment: cue;
}
.step__cue--primary ul {
  counter-reset: cue;
  gap: 14px;
}
.step__cue--primary li::before {
  content: counter(cue);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.step__cue--primary li strong { color: var(--red); font-weight: 700; }

.step__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 8px;
}
/* Back button always to LEFT of primary CTA via row-reverse */
.step__actions--reversed { flex-direction: row-reverse; justify-content: flex-end; }
.step__hint {
  font-size: 14px;
  color: var(--grey-400);
  font-style: italic;
  margin: -16px 0 24px;
  max-width: 580px;
}
.step__secondary, .step__back {
  font-size: 14px;
  color: var(--grey-700);
  text-decoration: underline;
  text-underline-offset: 4px;
  background: transparent;
  border: 0;
  padding: 8px 0;
  cursor: pointer;
  font-family: inherit;
}
.step__secondary:hover, .step__back:hover { color: var(--red); }

.step__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.step__visual img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 600px;
  object-fit: contain;
}

/* Step 1 — single-column intro layout (no right-side visual) */
.step__inner--centered {
  display: block;
  max-width: 760px;
  text-align: left;
}
.step__inner--centered .step__copy { max-width: none; }
.step__stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 0 36px;
  padding: 24px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.step__stat {
  text-align: left;
}
.step__stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  color: var(--red);
  letter-spacing: 0.005em;
  margin-bottom: 4px;
}
.step__stat-label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--grey-700);
  font-weight: 400;
}
@media (max-width: 600px) {
  .step__stats-row { grid-template-columns: 1fr; gap: 16px; padding: 20px 0; }
}

/* Step 4 / Answer — three tier cards */
.step__heading {
  text-align: center;
  margin-bottom: 56px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.tier-card {
  display: block;
  text-align: left;
  background: var(--white);
  border: 2px solid var(--black);
  padding: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
  width: 100%;
  font-family: inherit;
  overflow: hidden;
}
.tier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 0 -4px var(--red);
  border-color: var(--red);
}
.tier-card--featured {
  border-color: var(--red);
  border-width: 3px;
}
.tier-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 2;
}
.tier-card img {
  width: 100%;
  height: auto;
  background: var(--white);
  display: block;
  padding: 16px;
}
.tier-card__body {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--grey-100);
}
.tier-card__name {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.tier-card__sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 16px;
}
.tier-card__desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
}
.tier-card__desc strong { color: var(--red); }

.step__answer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  flex-wrap: wrap;
  gap: 16px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

@media (max-width: 880px) {
  .step__inner { grid-template-columns: 1fr; gap: 32px; }
  .step__visual { order: -1; min-height: 240px; padding: 24px; }
  .step__visual img { max-width: 360px; }
  .step__visual-stat-num { font-size: 56px; }
  .tier-cards { grid-template-columns: 1fr; }
  .tier-card img { padding: 12px; max-height: 200px; object-fit: contain; }
}

/* ---------- /MATCH — LOADING ---------- */
.match-loading {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 24px;
  transition: opacity 0.4s ease;
}
.match-loading--out { opacity: 0; }
.match-loading__inner { max-width: 480px; }
.match-loading__spinner {
  width: 64px;
  height: 64px;
  border: 4px solid rgba(255,255,255,0.15);
  border-top-color: var(--red);
  border-radius: 50%;
  margin: 0 auto 32px;
  animation: spin 1s linear infinite;
}
.match-loading__copy {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.match-loading__sub {
  font-size: 14px;
  color: var(--grey-400);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ---------- /MATCH — REVEAL HERO ---------- */
/* ---------- /MATCH — SLIM BANNER ---------- */
.match-banner {
  background: var(--black);
  color: var(--white);
  padding: 28px 0;
  animation: fadeUp 0.4s ease;
}
.match-banner__inner { text-align: center; }
.match-banner__row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.match-banner__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.match-banner__divider {
  display: inline-block;
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.25);
}
.match-banner__tier {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.match-banner__tier strong {
  color: var(--white);
  font-weight: 400;
}
.match-banner__note {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin: 10px 0 0;
}
.match-banner__note a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.match-banner__note span[data-result="tier-short"] { font-weight: 700; color: var(--white); }

/* ---------- /MATCH — SIZE PICKER ---------- */
.size-picker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  padding: 10px 14px;
  border: 1px solid var(--grey-200);
  background: var(--white);
  transition: border-color 0.15s ease;
}
.size-picker:focus-within { border-color: var(--black); }
.size-picker__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-400);
  flex: 0 0 auto;
}
.size-picker__select {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  padding: 4px 0;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23111111' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px 8px;
  padding-right: 20px;
  cursor: pointer;
}
.size-picker__select:focus { outline: none; }

/* ---------- /MATCH — WHY CONFORMA ---------- */
.why-conforma {
  background: var(--grey-50);
  padding: var(--section-pad-y) 0;
  scroll-margin-top: 100px;
}
.why-conforma__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-conforma__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 12px;
}
.why-conforma__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--black);
}
.why-conforma__text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-700);
  margin: 0 0 14px;
}
.why-conforma__text p strong { color: var(--black); font-weight: 700; }
.why-conforma__aside {
  font-size: 14px !important;
  color: var(--grey-400) !important;
  border-top: 1px solid var(--grey-200);
  padding-top: 14px;
  margin-top: 18px !important;
}
.why-conforma__visual {
  background: var(--white);
  padding: 24px;
  border: 1px solid var(--grey-100);
}
.why-conforma__visual img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 880px) {
  .why-conforma__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- /MATCH — ANCHOR (Conforma vs Custom) ---------- */
.match-anchor {
  background: var(--white);
  padding: var(--section-pad-y) 0;
}
.match-anchor__intro {
  font-size: 18px;
  color: var(--grey-700);
  margin: 0 0 48px;
  max-width: 640px;
}
.anchor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.anchor-card {
  background: var(--white);
  border: 2px solid var(--grey-200);
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.anchor-card--recommended {
  border-color: var(--red);
  border-width: 3px;
  position: relative;
}
.anchor-card__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  align-self: flex-start;
  margin-bottom: 20px;
}
.anchor-card__badge--alt { background: var(--black); }
.anchor-card__name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.anchor-card__price {
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}
.anchor-card__features {
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
}
.anchor-card__features li {
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  color: var(--grey-700);
}
.anchor-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 2px;
  background: var(--red);
}
.anchor-card__pitch {
  font-size: 14px;
  line-height: 1.55;
  color: var(--grey-400);
  margin: auto 0 0;
  border-top: 1px solid var(--grey-100);
  padding-top: 16px;
}
.match-anchor__note {
  font-size: 14px;
  color: var(--grey-400);
  margin: 16px 0 0;
  letter-spacing: 0.02em;
}
@media (max-width: 880px) {
  .anchor-grid { grid-template-columns: 1fr; }
}

/* ---------- /MATCH — PRODUCTS ---------- */
.match-products {
  background: var(--white);
  padding: var(--section-pad-y) 0;
  border-top: 1px solid var(--grey-100);
}
.match-products .section-heading {
  text-align: center;
  margin-bottom: 12px;
}
.match-products__intro {
  font-size: 18px;
  color: var(--grey-700);
  margin: 0 auto 48px;
  max-width: 640px;
  text-align: center;
  line-height: 1.5;
}
.match-products__intro span { font-weight: 700; color: var(--red); }
.match-products__guarantee {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-top: 40px;
}

/* ---------- COMPACT FOOTER ---------- */
/* .footer--compact moved to global.css — used by 32 pages site-wide, most of which don't load this file */

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* ============================================
   PHASE 10 — GUIDE LP + SHOP + PRODUCT PAGES
   ============================================ */

/* ---------- SECONDARY BUTTON ---------- */
.btn--secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--secondary:hover { background: var(--black); color: var(--white); }

/* ---------- GUIDE LAYOUT ---------- */
.guide-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}
.guide-sidebar {
  position: sticky;
  top: 80px;
  height: fit-content;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding: 24px;
  border: 1px solid var(--grey-200);
  background: var(--white);
}
.guide-sidebar__logo { width: 120px; margin-bottom: 20px; }
.guide-sidebar__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin: 0 0 12px;
}
.sidebar-cta {
  display: block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 16px;
  margin-bottom: 16px;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.15s ease;
}
.sidebar-cta:hover { background: var(--black); }
.sidebar-shoe {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: var(--grey-50);
  padding: 8px;
  margin-bottom: 12px;
}
.sidebar-stat {
  font-size: 12px;
  color: var(--grey-400);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  text-align: center;
}
.sidebar-divider {
  height: 1px;
  background: var(--grey-100);
  margin: 16px 0;
}
.sidebar-toc__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin: 0 0 10px;
}
.sidebar-toc ul { display: grid; gap: 4px; }
.sidebar-toc a {
  font-size: 14px;
  color: var(--grey-700);
  text-decoration: none;
  padding: 4px 0;
  display: block;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.sidebar-toc a:hover { color: var(--red); border-left-color: var(--red); }

.guide-content { min-width: 0; }
.guide-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--grey-100);
}
.guide-section:last-child { border-bottom: 0; }
.guide-section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 12px;
}
.guide-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--black);
}
.guide-section p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--grey-700);
  margin: 0 0 16px;
  max-width: 720px;
}
.guide-section ul.guide-list {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin: 0 0 16px;
}
.guide-list li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--grey-700);
  padding-left: 24px;
  position: relative;
}
.guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  background: var(--red);
}

@media (max-width: 960px) {
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; border: 0; border-bottom: 2px solid var(--grey-100); padding: 0 0 24px; }
  .guide-sidebar > *:not(.sidebar-toc) { display: none; }
  .sidebar-toc { margin: 0; }
}

/* ---------- CAUSE CARDS — vertical accordion ---------- */
.cause-cards {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--grey-200);
  margin-top: 8px;
}
.cause-card {
  border-bottom: 1px solid var(--grey-200);
  border-left: 4px solid transparent;
  padding: 0;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.cause-card:last-child { border-bottom: 0; }
.cause-card:hover { background: var(--grey-50); }
.cause-card.open { background: var(--grey-50); border-left-color: var(--red); }
.cause-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}
.cause-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}
.cause-card__toggle {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.cause-card.open .cause-card__toggle { transform: rotate(45deg); }
.cause-card__body {
  display: none;
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey-700);
  padding: 0 24px 20px;
}
.cause-card.open .cause-card__body { display: block; }

/* ---------- SUREFOOT SYSTEM (guide) ---------- */
.surefoot-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 32px 0;
}
.surefoot-step__num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.surefoot-step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.surefoot-step p {
  font-size: 15px;
  color: var(--grey-700);
  margin: 0;
  max-width: none;
}

@media (max-width: 720px) {
  .surefoot-steps { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- ORTHOTIC EXPLAINER STRIP ---------- */
.orthotic-strip {
  background: var(--black);
  color: var(--white);
  padding: 48px 0;
}
.orthotic-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.orthotic-option-block {
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.orthotic-option-block--featured { border-color: var(--red); border-width: 2px; }
.orthotic-block__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-bottom: 16px;
}
.orthotic-block__badge--red { background: var(--red); color: var(--white); }
.orthotic-block__badge--black { background: rgba(255,255,255,0.15); color: var(--white); }
.orthotic-block__name {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
}
.orthotic-block__price {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}
.orthotic-block__features {
  display: grid;
  gap: 8px;
  margin: 0;
}
.orthotic-block__features li {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  padding-left: 20px;
  position: relative;
}
.orthotic-block__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--red);
}

@media (max-width: 720px) {
  .orthotic-strip__inner { grid-template-columns: 1fr; }
}

/* ---------- MEDICAL REVIEWERS ---------- */
.medical-reviewers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.reviewer-card {
  background: var(--grey-50);
  padding: 28px;
}
.reviewer-card__badge {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-bottom: 16px;
}
.reviewer-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.reviewer-card__cred {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin: 0 0 12px;
}
.reviewer-card__bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey-700);
  margin: 0;
}

@media (max-width: 600px) {
  .medical-reviewers { grid-template-columns: 1fr; }
}

/* ---------- COMPETITOR TABLE ---------- */
.competitor-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 15px;
}
.competitor-table th {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
}
.competitor-table th:first-child { background: var(--grey-50); color: var(--black); font-size: 13px; letter-spacing: 0.08em; }
.competitor-table th.surefoot-col { background: var(--red); }
.competitor-table td {
  border: 1px solid var(--grey-100);
  padding: 14px 16px;
  vertical-align: middle;
}
.competitor-table td:first-child {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-700);
  background: var(--grey-50);
}
.competitor-table .check {
  color: var(--red);
  font-weight: 700;
  font-size: 18px;
}
.competitor-table .cross {
  color: var(--grey-200);
  font-size: 18px;
}
.competitor-table tr:hover td { background: var(--grey-50); }
.competitor-table tr:hover td:first-child { background: var(--grey-100); }

@media (max-width: 720px) {
  .competitor-table { font-size: 13px; }
  .competitor-table th, .competitor-table td { padding: 10px 12px; }
}

/* ---------- RESEARCH NOTE ---------- */
.research-note {
  border-left: 4px solid var(--red);
  background: var(--grey-50);
  padding: 18px 22px;
  margin: 24px 0;
}
.research-note__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 6px;
}
.research-note p { font-size: 14px; line-height: 1.55; color: var(--grey-700); margin: 0; max-width: none; }

/* ---------- SUPPORT TIERS ---------- */
.support-tiers {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--grey-200);
  margin-top: 24px;
}
.support-tier {
  display: grid;
  grid-template-columns: 72px 1fr;
  border-bottom: 1px solid var(--grey-200);
}
.support-tier:last-child { border-bottom: 0; }
.support-tier__level {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 20px 10px;
  background: var(--grey-50);
  border-right: 1px solid var(--grey-200);
}
.support-tier--featured .support-tier__level { background: var(--red); }
.support-tier--premium .support-tier__level { background: var(--black); }
.tier-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-200);
}
.tier-dot--on { background: var(--black); }
.support-tier--featured .tier-dot--on { background: var(--white); }
.support-tier--featured .tier-dot { background: rgba(255,255,255,0.25); }
.support-tier--premium .tier-dot--on { background: var(--white); }
.support-tier--premium .tier-dot { background: rgba(255,255,255,0.2); }
.support-tier__info { padding: 20px 24px; }
.support-tier--featured .support-tier__info { background: rgba(231,0,0,0.03); }
.support-tier--premium .support-tier__info { background: rgba(17,17,17,0.03); }
.support-tier__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--red);
  color: var(--white);
  margin-bottom: 8px;
}
.support-tier--premium .support-tier__badge { background: var(--black); }
.support-tier__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--black);
}
.support-tier__desc { font-size: 14px; line-height: 1.55; color: var(--grey-700); margin: 0; max-width: none; }

/* ---------- EXERCISE STEPS ---------- */
.exercise-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.exercise-step {
  border: 1px solid var(--grey-200);
  padding: 24px;
}
.exercise-step__num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--red);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}
.exercise-step__name {
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 8px;
  color: var(--black);
}
.exercise-step p { font-size: 14px; line-height: 1.55; color: var(--grey-700); margin: 0; max-width: none; }

@media (max-width: 720px) {
  .exercise-steps { grid-template-columns: 1fr; gap: 12px; }
  .support-tier { grid-template-columns: 56px 1fr; }
}

/* ---------- WARNING SIGNS ---------- */
.warning-signs { display: grid; gap: 10px; margin-top: 20px; }
.warning-sign {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  background: var(--grey-50);
  border-left: 3px solid var(--grey-200);
}
.warning-sign--alert { border-left-color: var(--red); }
.warning-sign__icon { font-size: 15px; flex-shrink: 0; line-height: 1.6; }
.warning-sign__text { font-size: 15px; line-height: 1.55; color: var(--grey-700); margin: 0; }
.warning-sign__text strong { color: var(--black); }

/* ---------- RECOVERY TIMELINE ---------- */
.recovery-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--grey-200);
  margin-top: 24px;
}
.timeline-phase {
  padding: 24px;
  border-right: 1px solid var(--grey-200);
}
.timeline-phase:last-child { border-right: 0; }
.timeline-phase__period {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  margin: 0 0 2px;
  line-height: 1;
}
.timeline-phase__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 10px;
}
.timeline-phase__desc { font-size: 13px; line-height: 1.5; color: var(--grey-700); margin: 0; }

@media (max-width: 960px) {
  .recovery-timeline { grid-template-columns: repeat(2, 1fr); }
  .recovery-timeline .timeline-phase:nth-child(2) { border-right: 0; }
  .recovery-timeline .timeline-phase:nth-child(1),
  .recovery-timeline .timeline-phase:nth-child(2) { border-bottom: 1px solid var(--grey-200); }
}
@media (max-width: 480px) {
  .recovery-timeline { grid-template-columns: 1fr; }
  .timeline-phase { border-right: 0 !important; border-bottom: 1px solid var(--grey-200); }
  .timeline-phase:last-child { border-bottom: 0; }
}

/* ---------- CONDITION PRODUCTS (bottom of LP) ---------- */
.condition-products {
  background: var(--grey-50);
  padding: var(--section-pad-y) 0;
}
.condition-products .section-heading { text-align: center; margin-bottom: 12px; }
.condition-products__intro {
  text-align: center;
  font-size: 18px;
  color: var(--grey-700);
  margin: 0 auto 48px;
  max-width: 580px;
}
.condition-products .product-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.condition-products .product-card__name { font-size: 24px; }
.condition-products .product-card__bundle { font-size: 32px; }
.condition-products .product-card__media { padding: 20px; }

@media (max-width: 1100px) {
  .condition-products .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .condition-products .product-grid { grid-template-columns: 1fr; }
}

/* ---------- PROTOTYPE FLAGS ---------- */
.proto-flags {
  background: #1a1a00;
  border-top: 4px solid #ffcc00;
  padding: 48px 0;
}
.proto-flags__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffcc00;
  margin: 0 0 8px;
}
.proto-flags__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 32px;
  max-width: none;
}
.proto-flags__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.proto-flag {
  padding: 20px;
  border-left: 4px solid #555;
  background: rgba(255,255,255,0.04);
}
.proto-flag--blocker { border-left-color: #ff4444; }
.proto-flag--fix     { border-left-color: #ffcc00; }
.proto-flag--review  { border-left-color: #66aaff; }
.proto-flag__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.proto-flag--blocker .proto-flag__tag { color: #ff4444; }
.proto-flag--fix .proto-flag__tag     { color: #ffcc00; }
.proto-flag--review .proto-flag__tag  { color: #66aaff; }
.proto-flag__claim {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.4;
}
.proto-flag__note {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: none;
}
@media (max-width: 960px) { .proto-flags__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .proto-flags__grid { grid-template-columns: 1fr; } }

/* ---------- SHOP PAGE ---------- */
.shop-header {
  background: var(--white);
  padding: var(--section-pad-y-tight) 0 0;
  border-bottom: 1px solid var(--grey-100);
}
.shop-header__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 12px;
}
.shop-header h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.shop-header__sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--grey-700);
  margin: 0 0 40px;
  max-width: 560px;
  line-height: 1.5;
}
.shop-products {
  background: var(--white);
  padding: var(--section-pad-y) 0;
}
.shop-products .product-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.shop-products .product-card__name { font-size: 24px; }
.shop-products .product-card__bundle { font-size: 30px; }
.shop-products .product-card__media { padding: 20px; }

@media (max-width: 1100px) {
  .shop-products .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .shop-products .product-grid { grid-template-columns: 1fr; }
}

/* ---------- PRODUCT PAGE ---------- */
.product-hero {
  background: var(--white);
  padding: var(--section-pad-y-tight) 0;
}
.product-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.product-hero__image-wrap {
  position: sticky;
  top: 100px;
  background: var(--grey-50);
  padding: 32px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 12px;
}
.product-hero__name {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.product-hero__hook {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--grey-700);
  margin: 0 0 28px;
}

/* Orthotic picker */
.orthotic-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 24px;
}
.orthotic-option {
  padding: 20px;
  border: 2px solid var(--grey-200);
  cursor: pointer;
  background: var(--white);
  text-align: left;
  transition: border-color 0.15s ease;
  font-family: inherit;
  width: 100%;
}
.orthotic-option:hover { border-color: var(--grey-400); }
.orthotic-option--selected { border-color: var(--red); }
.orthotic-option__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  margin-bottom: 10px;
}
.orthotic-option__badge--popular { background: var(--red); color: var(--white); }
.orthotic-option__badge--upgrade { background: var(--black); color: var(--white); }
.orthotic-option__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
  display: block;
}
.orthotic-option__detail {
  font-size: 13px;
  color: var(--grey-400);
  letter-spacing: 0.02em;
}
.orthotic-option__price {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  display: block;
  margin-top: 10px;
}

/* Inline arch test block */
.arch-test-inline {
  background: var(--grey-50);
  border-left: 4px solid var(--red);
  padding: 24px;
  margin: 0 0 24px;
}
.arch-test-inline[hidden] { display: none; }
.arch-test-inline__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 6px;
}
.arch-test-inline__h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.arch-test-inline__p {
  font-size: 14px;
  color: var(--grey-700);
  margin: 0 0 16px;
  line-height: 1.5;
}

/* Custom orthotic info block */
.custom-info {
  background: var(--grey-50);
  border-left: 4px solid var(--black);
  padding: 24px;
  margin: 0 0 24px;
}
.custom-info[hidden] { display: none; }
.custom-info__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin: 0 0 6px;
}
.custom-info__h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.custom-info__p {
  font-size: 14px;
  color: var(--grey-700);
  margin: 0 0 12px;
  line-height: 1.5;
}
.custom-info__timeline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin: 0;
}

/* Add to cart / price area */
.product-price {
  margin: 0 0 16px;
}
.product-price__bundle {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  letter-spacing: 0.01em;
}
.product-price__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-top: 6px;
}
.product-price__breakdown {
  font-size: 13px;
  color: var(--grey-700);
  margin-top: 8px;
}
.product-guarantee {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-top: 12px;
}

@media (max-width: 880px) {
  .product-hero__inner { grid-template-columns: 1fr; }
  .product-hero__image-wrap { position: static; aspect-ratio: 4/3; }
  .orthotic-picker { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .orthotic-picker { grid-template-columns: 1fr; }
}

/* ---------- SHOE DETAILS ---------- */
.shoe-details {
  background: var(--grey-50);
  padding: var(--section-pad-y) 0;
}
.shoe-details__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.shoe-details h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
}
.shoe-specs {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--grey-200);
}
.shoe-specs__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 15px;
}
.shoe-specs__key {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  padding-top: 2px;
}
.why-shoe__list {
  display: grid;
  gap: 20px;
  margin: 0;
}
.why-shoe__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-shoe__num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.why-shoe__text h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
}
.why-shoe__text p { font-size: 15px; color: var(--grey-700); margin: 0; max-width: none; }

@media (max-width: 720px) {
  .shoe-details__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- GUARANTEE STRIP ---------- */
.guarantee-strip {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 48px 0;
}
.guarantee-strip__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.guarantee-strip__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ---------- SCAN HEADER ON NON-SCAN PAGES ---------- */
.page-shop .nav,
.page-product .nav { display: block; }

/* ========================================================
   PRODUCT PAGE
   ======================================================== */

/* Extra grey tokens used by product pages */
:root {
  --grey-500: #AAAAAA;
  --grey-600: #666666;
}

.product-page {
  padding: var(--section-pad-y) 0;
  background: #f8f8f8;   /* sampled from the product-photo background so the shoe melts into the page */
}

.product-layout {
  display: grid;
  /* minmax(0, …) lets the columns hold their intended ratio instead of being
     stretched by wide content (e.g. the thumbnail strip) — keeps the hero a
     normal, fixed size and lets the thumbnails scroll inside their column. */
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Image column */
.product-images {
  position: sticky;
  top: 100px;
  min-width: 0;   /* allow the thumb strip to overflow-scroll, not blow out the column */
}

.product-images__hero {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--grey-50);
  display: block;
}

.product-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.product-thumb {
  /* 4.5 thumbs per row — a fixed 80px showed exactly four on phones and
     hid that more photos exist; the half-visible fifth signals the scroll */
  flex: 0 0 calc((100% - 3.5 * 8px) / 4.5);
  min-width: 0;   /* the img's intrinsic width otherwise overrides the flex-basis */
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--grey-50);
  cursor: pointer;
  border: 2px solid transparent;
  padding: 4px;
  scroll-snap-align: start;
}

.product-thumb.active,
.product-thumb:hover {
  border-color: var(--red);
}

/* Buy box */
.product-buy {
  padding-top: 8px;
}

.product-buy__eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--red);
  margin: 0 0 8px;
  display: none;
}

.product-buy__name {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.product-buy__price {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 4px;
}

.product-buy__price-note {
  font-size: 13px;
  color: var(--grey-600);
  margin: 0 0 24px;
}

/* Color swatches */
.color-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.color-swatches {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--grey-200);
  cursor: pointer;
  transition: border-color 0.15s;
}

.color-swatch.active,
.color-swatch:hover {
  border-color: var(--red);
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* Orthotic picker */
.orthotic-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.orthotic-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.orthotic-btn {
  border: 2px solid var(--grey-200);
  background: var(--white);
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s;
  position: relative;
}

.orthotic-btn.selected {
  border-color: var(--red);
  background: #fff8f8;
}

.orthotic-btn__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  margin-bottom: 6px;
}

.orthotic-btn__name {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.orthotic-btn__detail {
  font-size: 12px;
  color: var(--grey-600);
}

/* Size grid */
.size-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  display: flex;
  justify-content: space-between;
}

.size-label a {
  font-weight: 400;
  color: var(--grey-600);
  text-decoration: underline;
  font-size: 12px;
}

#size-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.size-btn {
  border: 1px solid var(--grey-200);
  background: var(--white);
  padding: 10px 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
  white-space: nowrap;
}

.size-btn:hover {
  border-color: var(--grey-600);
}

.size-btn.selected {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.size-fit-note {
  font-size: 12px;
  color: var(--grey-600);
  margin: 0 0 24px;
}

/* Add to Cart */
#add-to-cart {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background 0.15s;
}

#add-to-cart:hover:not(:disabled) {
  background: var(--red-dark);
}

#add-to-cart.btn--disabled,
#add-to-cart:disabled {
  background: var(--grey-200);
  color: var(--grey-500);
  cursor: not-allowed;
}

.product-trust {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--grey-600);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.product-trust span::before {
  content: '\2713 ';
  color: var(--red);
  font-weight: 700;
}

/* Why this shoe */
.why-shoe {
  border-top: 1px solid var(--grey-100);
  padding-top: 24px;
  margin-top: 24px;
}

.why-shoe h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 16px;
}

.why-shoe ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-shoe li {
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--grey-100);
  font-size: 15px;
  position: relative;
}

.why-shoe li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
  .product-images {
    position: static;
  }
  #size-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .orthotic-picker {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   EXPLORE HUB (/lp-demo/explore/)
   ============================================ */

/* ---------- EXPLORE HEADER ---------- */
.explore-header {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 64px;
  text-align: center;
}
.explore-header .guide-section__eyebrow {
  color: var(--red);
}
.explore-header h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}
.explore-header__sub {
  font-size: 18px;
  color: var(--grey-300);
  max-width: 500px;
  margin: 0 auto;
}

/* ---------- EXPLORE GRID ---------- */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--grey-100);
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 var(--container-pad);
}

.explore-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 32px 28px;
  text-decoration: none;
  color: var(--black);
  transition: background 0.15s;
  border-left: 4px solid transparent;
}

.explore-card:hover {
  background: var(--grey-50);
  border-left-color: var(--red);
}

.explore-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  line-height: 1;
}

.explore-card__hook {
  font-size: 14px;
  color: var(--grey-600);
  margin: 0;
}

.explore-card__arrow {
  font-size: 24px;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 16px;
}

/* ---------- EXPLORE CTA STRIP ---------- */
.explore-cta {
  background: var(--grey-50);
  text-align: center;
  padding: 64px 24px;
  border-top: 2px solid var(--grey-100);
}
.explore-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--black);
}
.explore-cta__sub {
  font-size: 18px;
  color: var(--grey-700);
  margin: 0 0 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================
   SHOP COLLECTION PAGE
   ======================================================== */

.shop-header {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 40px;
}
.shop-header__eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--red);
  margin: 0 0 8px;
}
.shop-header__h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.shop-header__sub {
  font-size: 15px;
  color: var(--grey-300);
  max-width: 560px;
}

/* Category tabs */
.shop-tabs {
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  position: sticky;
  top: 60px;
  z-index: 90;
}
.shop-tabs .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.shop-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  color: var(--grey-500);
  transition: color 0.15s, border-color 0.15s;
}
.shop-tab:hover { color: var(--black); }
.shop-tab.active { color: var(--black); border-bottom-color: var(--red); }

/* Benefit pills */
.shop-filters {
  padding: 16px 0;
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-100);
}
.shop-filters .container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-pill {
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.15s, border-color 0.15s;
}
.filter-pill:hover { border-color: var(--black); }
.filter-pill.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* Toolbar */
.shop-toolbar {
  padding: 16px 0;
}
.shop-count {
  font-size: 13px;
  color: var(--grey-600);
  margin: 0;
}

/* Shop card grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey-100);
  margin-bottom: 2px;
}

.shop-card {
  position: relative;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
}

.shop-card__img-link { display: block; }
.shop-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--grey-50);
  display: block;
  transition: transform 0.3s ease;
}
/* image zoom removed — quick-add overlay supersedes it on hover */

.shop-card__info {
  padding: 16px 16px 12px;
}
.shop-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  margin: 0 0 2px;
  line-height: 1;
}
.shop-card__meta {
  font-size: 12px;
  color: var(--grey-500);
  margin: 0 0 6px;
}
.shop-card__price {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px;
}
.shop-card__price-note {
  font-size: 12px;
  font-weight: 400;
  color: var(--grey-500);
}
.shop-card__colors {
  display: flex;
  gap: 6px;
}
.shop-card__swatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
}

/* Quick-add overlay — slides up on hover */
.shop-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--red);
  padding: 14px 16px 16px;
  transform: translateY(100%);
  transition: transform 0.2s ease;
}
.shop-card:hover .shop-card__quick-add { transform: translateY(0); }

.quick-add__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.quick-add__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin: 0;
}
.quick-add__view-link {
  font-size: 11px;
  color: var(--grey-500);
  text-decoration: underline;
}
.quick-add__color-row {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.quick-color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: border-color 0.1s;
}
.quick-color-swatch.active { border-color: var(--red); }
.quick-color-swatch:hover { border-color: var(--grey-400); }
.quick-color-swatch.active:hover { border-color: var(--red); }
.quick-add__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
  max-height: 80px;
  overflow-y: auto;
}
.quick-size-btn {
  border: 1px solid var(--grey-200);
  background: var(--white);
  padding: 5px 6px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.1s, background 0.1s;
  white-space: nowrap;
}
.quick-size-btn:hover { border-color: var(--grey-600); }
.quick-size-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

.quick-add__btn {
  width: 100%;
  padding: 10px;
  background: var(--grey-200);
  color: var(--grey-500);
  border: none;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: not-allowed;
  transition: background 0.15s, color 0.15s;
}
.quick-add__btn--ready {
  background: var(--red);
  color: var(--white);
  cursor: pointer;
}
.quick-add__btn--ready:hover { background: var(--red-dark); }

/* View product link on card */
.shop-card__view-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--grey-500);
  text-decoration: underline;
  margin-top: 6px;
}

/* Active nav link */
.nav__link--active { border-bottom: 2px solid var(--red); }

@media (max-width: 900px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
  .shop-card__quick-add { position: static; transform: none; border-top: 1px solid var(--grey-100); }
}
