/* AirStep — Diabetic Footwear · Brand tokens & base */

:root {
  /* Brand palette — Modern Medical */
  --navy: #0d3b4f;          /* deep teal (brand primary) */
  --navy-deep: #062a3a;
  --sky: #3a6d7f;           /* lighter teal */
  --sky-deep: #1f5667;
  --sky-ink: #134254;
  --sand: #d97757;          /* coral accent */
  --sand-deep: #b85f3e;
  --skylight: #b7ccd3;      /* pale blue */
  --skylight-soft: #e8f0f3;
  --sage: #7a8a5e;
  --moss: #b5b89a;

  /* Neutrals */
  --ink: #0d1115;
  --ink-soft: #444a52;
  --ink-mute: #7a8088;
  --line: #e5e7eb;          /* cool hairline */
  --line-soft: #f0f2f4;
  --paper: #ffffff;         /* pure white */
  --paper-2: #f6f7f8;       /* whisper-grey */
  --paper-3: #ebeef0;
  --white: #ffffff;

  /* Type */
  --serif: "Spectral", "Source Serif 4", "Times New Roman", serif;
  --sans: "Geist", "Söhne", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", monospace;

  /* Scale */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;

  --shadow-1: 0 1px 2px rgba(29,26,27,0.04), 0 2px 6px rgba(29,26,27,0.04);
  --shadow-2: 0 4px 14px rgba(29,26,27,0.08), 0 1px 3px rgba(29,26,27,0.05);
  --shadow-lift: 0 24px 60px -20px rgba(42,72,84,0.35);

  --container: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; margin: 0; line-height: 1.05; }
h1 { font-size: clamp(44px, 5.6vw, 76px); letter-spacing: -0.025em; }
h2 { font-size: clamp(34px, 3.6vw, 52px); letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 1.6vw, 28px); letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
}
.eyebrow.on-dark { color: var(--sand); }

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

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); }
.btn-secondary { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-ghost { color: var(--navy); }
.btn-ghost:hover { color: var(--sand-deep); }
.btn-cta {
  background: var(--navy);
  color: #fff;
  padding: 18px 28px;
  font-size: 16px;
}
.btn-cta:hover { background: var(--navy-deep); }
.btn-block { width: 100%; }

/* === Pills/badges === */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--paper-2);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--sage);
}

/* === Top announcement bar === */
.announce {
  background: var(--ink);
  color: var(--paper-2);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: center; gap: 28px;
  flex-wrap: wrap;
}
.announce .sep { color: #6a6566; }

/* === Nav === */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246,241,232,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center;
  height: 40px;
}
.brand img { height: 100%; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px; color: var(--ink-soft); font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; gap: 14px; align-items: center; }
.cart-btn {
  position: relative;
  padding: 9px 16px 9px 14px;
  border: 1px solid var(--ink);
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
}
.cart-btn:hover { background: var(--ink); color: #fff; }
.cart-btn .count {
  background: var(--sand);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  padding: 1px 7px;
  min-width: 20px; text-align: center;
}

/* === Hero === */
.hero {
  position: relative;
  padding: var(--hero-top-pad, 48px) 0 80px;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: flex-start;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.5fr;
  gap: 56px;
  align-items: start;
  width: 100%;
}
.hero h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy);
  text-transform: uppercase;
}
.hero h1 .l1 { color: var(--navy); display: block; }
.hero h1 .l2 { color: var(--sand-deep); display: block; }
.hero h1 .l3 { color: var(--navy); display: block; }
.hero h1 .rule {
  display: block;
  width: 56px; height: 3px;
  background: var(--sand);
  margin: 18px 0 22px;
}
.hero-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 8px 0 28px;
  line-height: 1.55;
}
.hero-bullets {
  display: flex; flex-direction: column; gap: 14px;
  margin: 0 0 32px; padding: 0; list-style: none;
}
.hero-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink-soft);
}
.hero-bullets li svg { flex-shrink: 0; margin-top: 2px; color: var(--sky); }
.hero-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-trust {
  margin-top: 28px;
  display: flex; gap: 16px; align-items: center;
  color: var(--ink-mute); font-size: 13px;
  flex-wrap: wrap;
}
.hero-tagline {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--sky);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-tagline::before, .hero-tagline::after {
  content: ""; width: 28px; height: 1px; background: var(--sky); opacity: 0.5;
}

.hero-product {
  position: relative;
  aspect-ratio: 5 / 4;
  min-height: var(--hero-frame-h, 620px);
  background: 
    radial-gradient(70% 60% at 50% 35%, #ffffff 0%, var(--skylight-soft) 55%, #c8d9df 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  display: flex; align-items: flex-start; justify-content: center;
}
.hero-product .photo {
  width: 100%; height: 100%;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 0 2%;
}
.hero-product .photo img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 30px rgba(20,30,50,0.25));
  transform: scale(var(--hero-img-scale, 1.15)) translateY(var(--hero-img-y, -4%));
  transform-origin: top center;
}
.hero-product .product-tag {
  position: absolute; top: -16px; left: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 2;
}
.hero-product .product-tag::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sage);
}
.hero-product .product-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1.2;
  z-index: 2;
}
.hero-product .product-badge strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--sand);
}

/* Section base */
section { padding: 96px 0; }
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head h2 { margin-top: 16px; }
.section-head p { color: var(--ink-soft); margin: 16px 0 0; font-size: 17px; max-width: 56ch; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* === Quick Benefits — Hike-style social proof strip === */
.quick-benefits {
  background: var(--white);
  padding: 80px 0 72px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.qb-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.qb-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(31,58,92,0.04);
}
.qb-stars {
  color: var(--sand-deep);
  letter-spacing: 0.04em;
  font-size: 14px;
}
.qb-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
.qb-sub {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--ink-soft);
  margin: 14px 0 0;
}
.qb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.qb-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 4px;
  padding: 12px 8px;
}
.qb-ic {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 30% 30%, #ffffff, var(--paper) 70%, var(--paper-2));
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(31,58,92,0.06);
  transition: transform .25s ease;
}
.qb-ic svg { width: 56%; height: 56%; }
.qb-item:hover .qb-ic { transform: translateY(-3px); }
.qb-label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.qb-sub-label {
  font-size: 12.5px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .qb-grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .quick-benefits { padding: 56px 0; }
}
@media (max-width: 480px) {
  .qb-grid { grid-template-columns: 1fr 1fr; }
  .qb-ic { width: 78px; height: 78px; }
}
.trust-strip {
  background: var(--paper-2);
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.trust-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  align-items: center;
  text-align: center;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-soft);
}
.trust-item .label { font-weight: 500; color: var(--ink); }
.trust-item svg { color: var(--sky); margin-bottom: 4px; }

/* === Diabetes focus section === */
.diabetes {
  background: 
    radial-gradient(80% 60% at 70% 0%, #e8f1f5 0%, transparent 70%),
    radial-gradient(60% 50% at 0% 100%, #f3eddf 0%, transparent 60%),
    var(--paper);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.diabetes .eyebrow.on-dark { color: var(--sand-deep); }
.diabetes .container { position: relative; }
.diabetes-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.diabetes-h {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 18px;
  font-weight: 400;
}
.diabetes-h em { color: var(--sand-deep); font-style: italic; }
.diabetes-lede {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
  max-width: 50ch;
  margin: 22px 0 36px;
}
.diabetes-claims {
  display: flex; flex-direction: column; gap: 22px;
}
.claim {
  display: flex; align-items: flex-start; gap: 18px;
}
.claim-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--sky);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(31,58,92,0.06);
}
.claim h4 {
  font-family: var(--sans);
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  margin: 4px 0 4px;
}
.claim p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 48ch;
}

.pressure-card {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 30px 60px -20px rgba(31,58,92,0.35);
  position: relative;
  overflow: hidden;
}
.pressure-card::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sand) 0%, transparent 70%);
  opacity: 0.35;
}
.pressure-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  position: relative;
}
.pressure-stat {
  display: flex; align-items: baseline; gap: 6px;
  margin: 18px 0 4px;
  position: relative;
}
.pressure-stat .num {
  font-family: var(--serif);
  font-size: 128px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
}
.pressure-stat .unit {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--sand);
  font-weight: 500;
}
.pressure-label {
  font-family: var(--serif);
  font-size: 20px;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
}
.pressure-body {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin: 0;
  position: relative;
}
.pressure-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}
.pressure-foot svg { color: var(--sand); }

.endorsers {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
}
.endorsers-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.endorsers-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.endorser {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 2px 6px rgba(31,58,92,0.04);
  transition: transform .15s, box-shadow .15s;
}
.endorser:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31,58,92,0.08);
}
.endorser span {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.endorser small {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Medical disclaimer block */
.medical-disclaimer {
  margin-top: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sand);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex; gap: 14px;
  align-items: flex-start;
}
.medical-disclaimer svg {
  color: var(--sand-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.medical-disclaimer p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 100ch;
}
.medical-disclaimer strong { color: var(--navy); font-weight: 600; }
.medical-disclaimer em { color: var(--ink); font-style: italic; }

.footer-disclaimer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(246,241,232,0.5);
  max-width: 80ch;
}

@media (max-width: 960px) {
  .diabetes-grid { grid-template-columns: 1fr; gap: 40px; }
  .pressure-stat .num { font-size: 96px; }
  .endorsers-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .endorsers-row { grid-template-columns: 1fr; }
}

/* === Problem / audience section === */
.problem { background: var(--paper); }
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.stat-row.audience-row {
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 32px;
}
.stat .num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--sky);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .body { margin-top: 14px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.stat .src { margin-top: 14px; font-size: 11px; color: var(--ink-mute); letter-spacing: 0.06em; text-transform: uppercase; }

.stat.audience { padding: 28px; display: flex; flex-direction: column; gap: 0; }
.audience-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--paper-2);
  color: var(--sky);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.audience-tag {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
}
.audience .body { margin-top: 0; font-size: 14.5px; }

/* === Anatomy section === */
.anatomy {
  background: var(--ink);
  color: var(--paper-2);
}
.anatomy h2 { color: #fff; }
.anatomy .section-head p { color: rgba(246,241,232,0.7); }
/* === Anatomy / Technology === */
.anatomy {
  background: 
    radial-gradient(70% 50% at 100% 0%, #e8f1f5 0%, transparent 70%),
    var(--paper-2);
  color: var(--ink);
}
.anatomy h2 { color: var(--navy); }
.anatomy .eyebrow.on-dark { color: var(--sand-deep); }
.anatomy .section-head p { color: var(--ink-soft); }
.anatomy-stage {
  position: relative;
  margin-top: 24px;
  border-radius: 24px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: 0 12px 40px -16px rgba(31,58,92,0.12);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.anatomy-callouts {
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 12px;
  display: flex; align-items: center; justify-content: center;
}
.anatomy-callouts img { border-radius: 12px; }
.anatomy-specs {
  display: flex; flex-direction: column;
}
.anatomy-specs-head {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 2fr;
  gap: 16px;
  padding: 0 4px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.anatomy-specs-row {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 2fr;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.anatomy-specs-row:last-child { border-bottom: 0; }
.spec-name {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}
.spec-value {
  color: var(--sand-deep);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.spec-benefit {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .anatomy-stage { grid-template-columns: 1fr; }
  .anatomy-specs-head, .anatomy-specs-row { grid-template-columns: 1fr; gap: 4px; }
  .anatomy-specs-head { display: none; }
  .anatomy-specs-row { padding: 16px 4px; }
}
.anatomy-list {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.anatomy-list .item { display: flex; gap: 14px; align-items: flex-start; }
.anatomy-list .item .num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink);
  font-weight: 600; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.anatomy-list .item h4 { font-family: var(--sans); font-size: 14px; color: #fff; margin: 0 0 4px; font-weight: 600; }
.anatomy-list .item p { margin: 0; font-size: 13px; color: rgba(246,241,232,0.6); line-height: 1.55; }

/* === Features === */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feature {
  background: var(--white);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 240px;
}
.feature .ic {
  width: 44px; height: 44px;
  background: var(--paper-2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
}
.feature h3 { font-family: var(--serif); font-size: 22px; }
.feature p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

/* === Evidence === */
.evidence { background: var(--paper-2); }
.evidence-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
.evidence-data {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  border: 1px solid var(--line-soft);
}
.evidence-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.evidence-row:last-child { border-bottom: 0; }
.evidence-row .k { font-size: 14px; color: var(--ink-soft); max-width: 26ch; }
.evidence-row .v { font-family: var(--serif); font-size: 32px; color: var(--sky); }
.evidence-quote {
  font-family: var(--serif); font-size: 26px; line-height: 1.35;
  color: var(--ink); letter-spacing: -0.01em;
  margin-top: 32px;
}
.evidence-cite { margin-top: 18px; font-size: 13px; color: var(--ink-mute); }
.evidence-cite strong { color: var(--ink); font-weight: 600; }

/* === Reviews === */
.reviews-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 48px; gap: 32px; flex-wrap: wrap;
}
.score {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 22px; background: var(--paper-2);
  border-radius: var(--r-lg);
}
.score .big { font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--ink); }
.score .stars { color: var(--sand-deep); font-size: 18px; letter-spacing: 0.04em; }
.score .meta { font-size: 12px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.08em; }

.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.review .stars { color: var(--sand-deep); letter-spacing: 0.05em; font-size: 14px; }
.review .body { font-size: 15px; line-height: 1.55; color: var(--ink); }
.review .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.review .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--skylight); color: var(--sky-ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
}
.review .name { font-size: 13px; font-weight: 600; }
.review .verified { font-size: 11px; color: var(--sage); letter-spacing: 0.04em; display: flex; align-items: center; gap: 4px; }

/* === Comparison === */
.compare { background: var(--paper); }
.compare-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 56px 56px 40px;
  box-shadow: 0 20px 60px -20px rgba(31,58,92,0.12);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.compare-intro { padding-top: 8px; }
.compare-h {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}
.compare-lede {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 44ch;
}
.compare-grid {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--white);
  font-size: 15px;
  color: var(--ink);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row .feat { font-weight: 500; }
.compare-row .col-us, .compare-row .col-them {
  display: flex; align-items: center; justify-content: center;
}
.compare-row .col-us {
  background: linear-gradient(180deg, rgba(122,138,94,0.06), rgba(122,138,94,0.10));
  padding: 18px 12px;
  margin: -18px 0;
}
.compare-row.compare-head {
  background: var(--paper-2);
  padding: 22px 24px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
}
.compare-row.compare-head .col-us {
  background: linear-gradient(180deg, rgba(122,138,94,0.08), rgba(122,138,94,0.14));
  padding: 6px 12px;
  margin: -22px 0;
  border-bottom: 0;
}
.compare-row.compare-head .col-them { color: var(--ink-mute); line-height: 1.25; }

.cmp-yes {
  color: var(--sage);
  display: inline-flex; align-items: center;
}
.cmp-no {
  color: #c54a3a;
  display: inline-flex; align-items: center;
  opacity: 0.85;
}
.cmp-warn {
  color: #c54a3a;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.cmp-warn small {
  font-size: 11px;
  color: #c54a3a;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .compare-card { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .compare-row { padding: 14px 14px; font-size: 13px; }
  .compare-row.compare-head { padding: 16px 14px; font-size: 11px; }
  .compare-row .col-us { padding: 14px 6px; margin: -14px 0; }
  .compare-row.compare-head .col-us { margin: -16px 0; }
}

/* === Buy block === */
.buy-block {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
  align-items: start;
}
.buy-gallery {
  background: 
    radial-gradient(70% 60% at 50% 35%, #ffffff 0%, var(--skylight-soft) 55%, #c8d9df 100%);
  border-radius: var(--r-lg);
  aspect-ratio: 1 / 1;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-2);
  display: flex; align-items: center; justify-content: center;
}
.buy-gallery .photo {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 6%;
}
.buy-gallery .photo img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(20,30,50,0.2));
}
.buy-gallery .badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--ink); color: #fff;
  padding: 8px 14px; border-radius: var(--r-pill);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500;
}
.buy-thumbs { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.buy-thumbs button {
  width: 76px; height: 76px;
  background: var(--skylight-soft);
  border-radius: 8px;
  border: 2px solid transparent;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 4px;
}
.buy-thumbs button img { width: 100%; height: 100%; object-fit: contain; }
.buy-thumbs button.active { border-color: var(--ink); background: var(--skylight-soft); }

.buy-info .price-row {
  display: flex; align-items: baseline; gap: 12px; margin-top: 16px;
}
.buy-info .price {
  font-family: var(--serif); font-size: 38px; letter-spacing: -0.02em;
}
.buy-info .price-was { font-size: 18px; color: var(--ink-mute); text-decoration: line-through; }
.buy-info .save { font-size: 12px; background: var(--sand); padding: 4px 10px; border-radius: var(--r-pill); font-weight: 600; color: var(--ink); }

.buy-info h2 { margin-top: 8px; font-size: 40px; }
.buy-info .star-row { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--ink-soft); margin-top: 8px; }
.buy-info .star-row .stars { color: var(--sand-deep); }

.buy-meta { color: var(--ink-soft); margin-top: 20px; font-size: 15px; }
.option-group { margin-top: 32px; }
.option-group .opt-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.option-group .opt-head .opt-label { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--ink); }
.option-group .opt-head .opt-value { font-size: 13px; color: var(--ink-soft); }

.color-row { display: flex; gap: 12px; flex-wrap: wrap; }
.swatch {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 3px;
  cursor: pointer;
  transition: transform .12s;
}
.swatch .inner { width: 100%; height: 100%; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); }
.swatch.active { border-color: var(--ink); }
.swatch:hover { transform: scale(1.05); }

.size-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.size-btn {
  height: 48px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 500;
  font-size: 14px;
  transition: all .15s;
}
.size-btn:hover { border-color: var(--ink); }
.size-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.size-btn:disabled { color: var(--ink-mute); background: var(--paper-2); border-color: var(--line-soft); position: relative; cursor: not-allowed; text-decoration: line-through; }

.qty-row {
  display: flex; gap: 16px; margin-top: 32px; align-items: stretch;
}
.qty-stepper {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.qty-stepper button { width: 44px; height: 56px; font-size: 18px; color: var(--ink-soft); }
.qty-stepper button:hover { color: var(--ink); background: var(--paper-2); }
.qty-stepper .val { width: 36px; text-align: center; font-weight: 500; }

.buy-promise {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  padding: 20px;
  background: var(--paper-2);
  border-radius: var(--r-lg);
}
.buy-promise .item { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); }
.buy-promise .item svg { color: var(--sky); flex-shrink: 0; margin-top: 2px; }
.buy-promise .item strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; font-size: 13px; }

/* === FAQ === */
.faq { background: var(--paper); }
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.faq-q .ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s, background .15s, color .15s;
}
.faq-item.open .faq-q .ic { background: var(--ink); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease;
}
.faq-a-inner {
  padding-bottom: 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 64ch;
}
.faq-item.open .faq-a { max-height: 500px; }

/* === Footer === */
.footer {
  background: var(--ink);
  color: var(--paper-2);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid h4 {
  font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; font-weight: 600;
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { font-size: 14px; color: rgba(246,241,232,0.65); }
.footer-grid a:hover { color: #fff; }
.footer-blurb {
  font-family: var(--serif); font-size: 18px; line-height: 1.45;
  max-width: 36ch; color: rgba(246,241,232,0.85);
  margin-top: 20px;
}
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  font-size: 12px; color: rgba(246,241,232,0.5);
}
.footer-legal-links { display: flex; gap: 18px; }
.footer-legal-links a {
  color: rgba(246,241,232,0.7); font-size: 12px; font-weight: 500;
  transition: color .15s;
}
.footer-legal-links a:hover { color: #fff; }
.payments { display: flex; gap: 8px; }
.payments .pay-chip {
  background: #fff;
  color: var(--ink);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 9px; border-radius: 4px;
}

/* === Sticky buy bar === */
.sticky-buy {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(29,26,27,0.96);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 14px 28px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 30;
  transform: translateY(100%);
  transition: transform .25s ease;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sticky-buy.show { transform: translateY(0); }
.sticky-buy .meta { display: flex; gap: 16px; align-items: center; }
.sticky-buy .sb-name { font-family: var(--serif); font-size: 18px; }
.sticky-buy .sb-price { font-size: 14px; color: rgba(255,255,255,0.6); }
.sticky-buy .btn-primary { background: var(--sand); color: var(--ink); padding: 12px 22px; font-weight: 600; }
.sticky-buy .btn-primary:hover { background: #fff; }

/* === Cart drawer & checkout === */
.scrim {
  position: fixed; inset: 0; background: rgba(20,18,19,0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.scrim.show { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(480px, 96vw);
  background: var(--paper);
  z-index: 101;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lift);
}
.drawer.show { transform: translateX(0); }
.drawer.wide { width: min(640px, 96vw); }

.drawer-head {
  padding: 22px 28px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line-soft);
}
.drawer-head h3 { font-family: var(--serif); font-size: 22px; }
.drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.drawer-close:hover { background: var(--paper-2); }

.drawer-body {
  flex: 1; overflow-y: auto;
  padding: 22px 28px;
}

.drawer-foot {
  padding: 22px 28px;
  border-top: 1px solid var(--line-soft);
  background: var(--paper-2);
}

.cart-line {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-line .thumb {
  width: 80px; height: 80px;
  background: var(--skylight-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 6px;
}
.cart-line .thumb img { width: 100%; height: 100%; object-fit: contain; }
.cart-line .info h4 { font-family: var(--serif); font-size: 17px; margin-bottom: 2px; }
.cart-line .info .sub { font-size: 12.5px; color: var(--ink-soft); }
.cart-line .actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; justify-content: space-between; }
.cart-line .actions .price { font-weight: 500; font-size: 15px; }
.cart-line .actions .remove { font-size: 12px; color: var(--ink-mute); text-decoration: underline; }
.cart-line .actions .remove:hover { color: var(--ink); }

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--ink-soft);
}
.cart-empty svg { color: var(--line); margin: 0 auto 16px; }

.cart-totals {
  display: grid; gap: 8px;
  margin-bottom: 16px; font-size: 14px;
}
.cart-totals .row { display: flex; justify-content: space-between; }
.cart-totals .row.total { font-size: 18px; padding-top: 12px; border-top: 1px solid var(--line); margin-top: 6px; font-weight: 500; }
.cart-totals .ship-free { color: var(--sage); font-weight: 500; }

/* === Checkout form === */
.checkout-step-bar {
  display: flex; gap: 8px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper-2);
}
.checkout-step-bar .step {
  flex: 1; display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-mute); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600;
}
.checkout-step-bar .step .num {
  width: 22px; height: 22px; border-radius: 50%; background: var(--line);
  color: var(--ink-mute); font-weight: 600; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.checkout-step-bar .step.active { color: var(--ink); }
.checkout-step-bar .step.active .num { background: var(--ink); color: #fff; }
.checkout-step-bar .step.done .num { background: var(--sage); color: #fff; }
.checkout-step-bar .step.done { color: var(--sage); }

.form-grid { display: grid; gap: 12px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.field input, .field select {
  height: 48px; padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 15px;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(77,112,128,0.15); }
.field.invalid input { border-color: #b04444; }
.field .err { color: #b04444; font-size: 12px; }

.section-label {
  font-family: var(--serif); font-size: 22px;
  margin: 28px 0 14px;
}
.section-label:first-child { margin-top: 0; }

.card-input-row {
  display: grid; gap: 12px;
  grid-template-columns: 2fr 1fr 1fr;
}
.card-pay-icons {
  display: flex; gap: 6px; align-items: center;
  font-size: 11px; color: var(--ink-mute);
  letter-spacing: 0.04em; margin-bottom: 8px;
}
.card-pay-icons .chip {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 4px; padding: 4px 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
}

.summary-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 22px;
}
.summary-card h4 { font-family: var(--serif); font-size: 18px; margin-bottom: 14px; }
.secured-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-mute);
  margin-top: 14px;
}
.secured-row svg { color: var(--sage); }

/* === Success screen === */
.success {
  padding: 60px 28px; text-align: center;
}
.success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--sage); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.success h3 { font-size: 32px; }
.success p { color: var(--ink-soft); margin-top: 14px; max-width: 36ch; margin-left: auto; margin-right: auto; }
.success .order-box {
  margin-top: 28px;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 20px;
  text-align: left;
}

/* === Responsive === */
@media (max-width: 960px) {
  .hero-grid, .evidence-grid, .buy-block { grid-template-columns: 1fr; gap: 40px; }
  .features-grid, .review-grid, .stat-row, .stat-row.audience-row, .anatomy-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  section { padding: 64px 0; }
  .size-grid { grid-template-columns: repeat(5, 1fr); }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .features-grid, .review-grid, .stat-row, .anatomy-list, .footer-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.5fr 1fr 1fr; padding: 14px 14px; font-size: 12px; }
  .card-input-row { grid-template-columns: 1fr; }
  .form-grid.two { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  h1 { font-size: 40px; }
}

/* =============================================================
   === HERO COUNTER — "Every 30 Seconds" landing variant ===
   ============================================================= */
/* Brand band — large logo moment above the footer */
.brand-band {
  background:
    radial-gradient(75% 90% at 50% 0%, #eef4f6 0%, transparent 62%),
    var(--paper);
  border-top: 1px solid var(--line-soft);
  text-align: center;
  padding: 92px 0;
}
.brand-band .container { display: flex; flex-direction: column; align-items: center; }
.brand-band-logo {
  height: clamp(108px, 17vw, 208px);
  width: auto;
  display: block;
}
.brand-band-tag {
  margin-top: 30px;
  font-family: var(--sans);
  font-size: clamp(11px, 1.3vw, 14px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  max-width: 40ch;
  line-height: 1.7;
}

.hero-counter {
  position: relative;
  background: var(--paper);
  padding: 56px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero-counter-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
}

.hero-counter-left {
  padding-top: 24px;
}
.hero-counter-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 500;
  padding: 8px 14px 8px 12px;
  background: rgba(200, 68, 75, 0.06);
  border: 1px solid rgba(200, 68, 75, 0.15);
  border-radius: 999px;
}
.live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #c8444b;
  opacity: 0.25;
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 0 0 0 rgba(200, 68, 75, 0.4);
}
.live-dot.on {
  opacity: 1;
  box-shadow: 0 0 0 4px rgba(200, 68, 75, 0.18);
}

.hero-counter-number {
  font-family: var(--serif);
  font-size: clamp(72px, 9.5vw, 150px);
  line-height: 0.9;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  margin: 22px 0 16px;
  user-select: none;
}

.hero-counter-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 4px;
  font-weight: 400;
  max-width: 22ch;
  text-wrap: balance;
}
.hero-counter-subline {
  color: var(--ink-soft);
  font-style: italic;
}

.hero-counter-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 28px 0 0;
}

.hero-counter-source {
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Right column — the intervention card */
.hero-counter-right {
  padding-top: 24px;
}
.hero-counter-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 36px 36px 28px;
  box-shadow:
    0 28px 60px -20px rgba(20, 30, 50, 0.12),
    0 10px 24px -12px rgba(20, 30, 50, 0.08);
  position: relative;
}
.hero-counter-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 500;
  margin-bottom: 14px;
}
.hero-counter-card-h {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 14px;
  font-weight: 500;
  text-wrap: balance;
}
.hero-counter-card-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.hero-counter-card-img {
  position: relative;
  width: 110%;
  margin-left: -5%;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 24px 60px -16px rgba(20,30,50,0.18);
}
.hero-counter-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transform: scale(1.05);
}
.hero-counter-card .btn-cta {
  padding: 18px 24px;
  font-size: 15px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.hero-counter-card-foot {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  justify-content: center;
}
.hero-counter-card-foot svg { color: var(--sage, #2f7a4f); flex-shrink: 0; }

@media (max-width: 960px) {
  .hero-counter-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-counter-number { font-size: clamp(140px, 30vw, 220px); }
}
@media (max-width: 600px) {
  .hero-counter { padding: 32px 0 48px; }
  .hero-counter-card { padding: 28px 24px 22px; }
  .hero-counter-card-h { font-size: 26px; }
}

/* =============================================================
   === DIABETES CRISIS section (dark, urgent, problem-framing) ===
   ============================================================= */
.crisis {
  background:
    radial-gradient(70% 50% at 80% 0%, rgba(176, 141, 86, 0.18) 0%, transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(77, 112, 128, 0.18) 0%, transparent 60%),
    var(--ink);
  color: #ece6dc;
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}
.crisis .eyebrow.on-dark { color: var(--sand); }
.crisis .container { position: relative; }

.crisis-head {
  max-width: 780px;
  margin-bottom: 72px;
}
.crisis-h {
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 18px 0 22px;
  font-weight: 400;
  text-wrap: balance;
}
.crisis-h em {
  color: var(--sand);
  font-style: italic;
}
.crisis-lede {
  font-size: 19px;
  line-height: 1.65;
  color: #cfc6b8;
  max-width: 62ch;
  margin: 0;
}

/* Hero stat: huge "30 seconds" treatment */
.crisis-hero-stat {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0 72px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 64px;
}
.crisis-hero-stat-num {
  display: flex;
  align-items: baseline;
  gap: 16px;
  color: var(--sand);
  font-family: var(--serif);
  letter-spacing: -0.04em;
}
.crisis-hero-stat-num .big {
  font-size: clamp(140px, 18vw, 240px);
  line-height: 0.85;
  font-weight: 500;
}
.crisis-hero-stat-num .unit {
  font-size: clamp(28px, 3vw, 40px);
  color: #cfc6b8;
  font-style: italic;
  font-weight: 300;
}
.crisis-hero-stat-body {
  font-size: 20px;
  line-height: 1.55;
  color: #e8e2d5;
}
.crisis-hero-stat-body strong { color: #fff; font-weight: 500; }
.crisis-src {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8275;
}

/* Three secondary stats */
.crisis-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 96px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.crisis-stat {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.crisis-stat:last-child { border-right: 0; }
.crisis-stat .num {
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 80px);
  line-height: 1;
  color: var(--sand);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.crisis-stat .num .pct {
  font-size: 0.5em;
  margin-left: 2px;
  color: #cfc6b8;
}
.crisis-stat .label {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.55;
  color: #cfc6b8;
  max-width: 28ch;
}

/* The silent-progression journey */
.crisis-journey-title {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 32px;
}
.crisis-steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.crisis-steps li {
  position: relative;
  padding: 32px 28px 32px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.crisis-steps li:last-child { border-right: 0; padding-right: 0; }
.crisis-steps .step-n {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--sand);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 14px;
}
.crisis-steps h4 {
  font-family: var(--sans);
  font-size: 18px;
  color: #fff;
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.crisis-steps p {
  font-size: 14px;
  line-height: 1.55;
  color: #b9b1a3;
  margin: 0;
}
.crisis-bridge {
  margin-top: 48px;
  padding: 32px 36px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--sand);
  border-radius: 4px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: #ece6dc;
  font-weight: 300;
  letter-spacing: -0.01em;
  max-width: 90ch;
}
.crisis-bridge strong {
  color: #fff;
  font-weight: 500;
  display: block;
  margin-top: 10px;
}

/* SA-local context */
.crisis-local {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.crisis-local-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 28px;
}
.crisis-local-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.crisis-local-num {
  font-family: var(--serif);
  font-size: clamp(44px, 4.8vw, 64px);
  line-height: 1;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.crisis-local-num .pct {
  font-size: 0.55em;
  color: #cfc6b8;
}
.crisis-local-label {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.55;
  color: #cfc6b8;
  max-width: 32ch;
}

@media (max-width: 960px) {
  .crisis-hero-stat { grid-template-columns: 1fr; gap: 24px; }
  .crisis-stats { grid-template-columns: 1fr; }
  .crisis-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .crisis-stat:last-child { border-bottom: 0; }
  .crisis-steps { grid-template-columns: repeat(2, 1fr); }
  .crisis-steps li:nth-child(2) { border-right: 0; }
  .crisis-steps li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 32px; }
  .crisis-local-row { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .crisis { padding: 72px 0 80px; }
  .crisis-steps { grid-template-columns: 1fr; }
  .crisis-steps li { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding-right: 0; }
  .crisis-steps li:last-child { border-bottom: 0; }
}

/* =============================================================
   === WHY AIRSTEP — origin story / editorial section ===
   ============================================================= */
.why {
  background: var(--paper-2);
  padding: 110px 0 120px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sand) 0%, transparent 70%);
  opacity: 0.07;
  pointer-events: none;
}
.why-head {
  max-width: 880px;
  margin: 0 auto 56px;
  text-align: center;
  position: relative;
}
.why-h {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 16px 0 0;
  font-weight: 400;
  text-wrap: balance;
}
.why-h em {
  font-style: italic;
  color: var(--sand-deep);
  font-weight: 400;
}
.why-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto 64px;
  position: relative;
}
.why-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}
.why-p strong {
  color: var(--navy);
  font-weight: 600;
}
.why-lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.why-stat {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-stat-v {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 6px;
}
.why-stat-v span {
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.why-stat-k {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-deep);
}
.why-stat-b {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .why-body { grid-template-columns: 1fr; gap: 24px; }
  .why-stats { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .why { padding: 72px 0 80px; }
  .why-stat { padding: 28px 24px; }
  .why-stat-v { font-size: 40px; }
}
   ============================================================= */
.nappi {
  background: var(--paper);
  padding: 90px 0 100px;
  border-top: 1px solid var(--line-soft);
}
.nappi-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 32px;
}
.nappi-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 14px 0 12px;
}
.nappi-head p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}
.nappi-toggle {
  background: var(--navy);
  color: #fff;
  border: 0;
  padding: 12px 22px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background .15s ease;
}
.nappi-toggle:hover { background: var(--sand-deep); }
.nappi-chev {
  display: inline-flex;
  transition: transform .25s ease;
}
.nappi-chev.up { transform: rotate(180deg); }

.nappi-shared {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}
.nappi-shared-item {
  background: var(--white);
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nappi-shared-k {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.nappi-shared-v {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.01em;
  font-weight: 500;
}

.nappi-table-wrap {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
}
.nappi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.nappi-table thead {
  background: var(--paper-2);
}
.nappi-table th {
  text-align: left;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}
.nappi-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  vertical-align: middle;
}
.nappi-table tr:last-child td { border-bottom: 0; }
.nappi-size {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
  width: 80px;
}
.nappi-code,
.nappi-cat {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nappi-code {
  font-weight: 600;
  color: var(--sky-ink);
}
.nappi-desc {
  font-size: 13px;
  color: var(--ink-soft);
}
.nappi-foot {
  padding: 18px 22px;
  background: var(--paper-2);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  border-top: 1px solid var(--line);
}
.nappi-foot a {
  color: var(--sand-deep);
  text-decoration: none;
  font-weight: 500;
}
.nappi-foot a:hover { text-decoration: underline; }
.nappi-disclaimer {
  margin: 14px 0 0;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ink-mute);
}

@media (max-width: 900px) {
  .nappi-head { grid-template-columns: 1fr; align-items: start; }
  .nappi-shared { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nappi { padding: 64px 0 72px; }
  .nappi-shared { grid-template-columns: 1fr; }
  .nappi-table { font-size: 13px; }
  .nappi-table th, .nappi-table td { padding: 12px 14px; }
  .nappi-desc { display: none; }
}
   ============================================================= */
.movement {
  background:
    radial-gradient(55% 50% at 100% 0%, rgba(217, 119, 87, 0.06) 0%, transparent 60%),
    var(--paper);
  padding: 110px 0 120px;
  border-top: 1px solid var(--line-soft);
}
.movement-head { margin-bottom: 56px; }
.movement-head h2 em {
  font-style: italic;
  color: var(--sand-deep);
  font-weight: 400;
}
.movement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mv-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}
.mv-card:hover {
  box-shadow: 0 22px 48px -26px rgba(31,58,92,0.30);
  transform: translateY(-3px);
  border-color: var(--line);
}
.mv-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: rgba(31, 58, 92, 0.10);
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Tag pills */
.mv-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
}
.mv-tag svg { flex-shrink: 0; }
.mv-tag--fault { color: #b15441; background: rgba(197, 74, 58, 0.09); }
.mv-tag--fix   { color: var(--sky-ink); background: var(--skylight-soft); }

/* Fault zone (top, white) */
.mv-fault { padding: 28px 26px 30px; }
.mv-fault-h {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 14px 0 0;
  line-height: 1.3;
}
.mv-fault p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 9px 0 0;
}

/* Connector node straddling the fault/fix seam */
.mv-connector { position: relative; height: 0; }
.mv-node {
  position: absolute;
  left: 50%; top: 0;
  transform: translate(-50%, -50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 14px -3px rgba(13, 59, 79, 0.45);
  border: 3px solid var(--white);
}

/* Fix zone (bottom, teal-tinted) */
.mv-fix {
  flex: 1;
  padding: 32px 26px 28px;
  background: linear-gradient(180deg, rgba(232, 240, 243, 0.7), rgba(232, 240, 243, 0.25));
  border-top: 1px solid var(--line-soft);
}
.mv-fix-h {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  margin: 14px 0 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.mv-fix p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 9px 0 0;
}

@media (max-width: 1000px) {
  .movement-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .movement { padding: 72px 0 80px; }
  .movement-grid { grid-template-columns: 1fr; gap: 16px; }
}
   ============================================================= */
.podiatrists {
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(183, 204, 211, 0.25) 0%, transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(217, 119, 87, 0.06) 0%, transparent 60%),
    var(--paper);
  padding: 110px 0 120px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.pod-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.pod-h {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 18px 0 22px;
  font-weight: 400;
  text-wrap: balance;
}
.pod-h em { color: var(--sand-deep); font-style: italic; }
.pod-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 60ch;
}

/* What a podiatrist provides — 4-up cards */
.pod-provides {
  margin-bottom: 80px;
}
.pod-provides-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  text-align: center;
  margin-bottom: 28px;
}
.pod-provides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pod-provides-item {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pod-provides-n {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--sand-deep);
  letter-spacing: -0.02em;
  font-weight: 500;
  flex-shrink: 0;
  width: 32px;
}
.pod-provides-item h5 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 6px;
}
.pod-provides-item p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* Directory header */
.pod-directory-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
  flex-wrap: wrap;
}
.pod-directory-head h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin: 0;
}
.pod-directory-note {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}

/* Regions accordion — collapsed by default */
.pod-regions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 72px;
}
.pod-region {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.pod-region.open {
  box-shadow: 0 12px 32px -16px rgba(31,58,92,0.16);
  border-color: var(--line);
}
.pod-region-head {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  text-align: left;
  background: transparent;
  transition: background .15s ease;
  cursor: pointer;
}
.pod-region-head:hover { background: var(--paper-2); }
.pod-region-name {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.pod-region-count {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  white-space: nowrap;
}
.pod-region-chev {
  color: var(--ink-mute);
  display: inline-flex;
  transition: transform .25s ease;
}
.pod-region.open .pod-region-chev {
  transform: rotate(180deg);
  color: var(--sand-deep);
}
.pod-region-body {
  padding: 4px 26px 26px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.pod-region-body[hidden] { display: none; }

/* Individual podiatrist card */
.pod-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.pod-card:hover {
  box-shadow: 0 12px 28px -16px rgba(31,58,92,0.18);
  border-color: var(--line);
  transform: translateY(-1px);
}
.pod-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.pod-card-name {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 4px;
  font-weight: 500;
}
.pod-card-creds {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.45;
}
.pod-card-city {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.pod-card-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.pod-card-discipline {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-ink);
  background: rgba(58, 109, 127, 0.10);
  border: 1px solid rgba(58, 109, 127, 0.22);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.pod-card-discipline.alt {
  color: var(--sand-deep);
  background: rgba(217, 119, 87, 0.10);
  border-color: rgba(217, 119, 87, 0.28);
}
.pod-card-practice {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-top: -4px;
}
.pod-card-role {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: -4px;
}
.pod-card-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pod-chip {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--sky-ink);
  background: rgba(58, 109, 127, 0.08);
  border: 1px solid rgba(58, 109, 127, 0.18);
  padding: 4px 10px;
  border-radius: 999px;
}

.pod-card-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.pod-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
  text-decoration: none;
  transition: color .15s ease;
}
.pod-contact-row.pod-contact-row--block {
  align-items: flex-start;
}
a.pod-contact-row:hover { color: var(--sand-deep); }
.pod-contact-ic {
  color: var(--sky);
  flex-shrink: 0;
  display: inline-flex;
  margin-top: 1px;
}
.pod-maps-link {
  color: var(--sand-deep);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.pod-maps-link:hover { text-decoration: underline; }
.pod-maps-link svg { vertical-align: -1px; }

/* Cadence — how often should you see one */
.pod-cadence {
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 44px 44px 36px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.pod-cadence::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sand) 0%, transparent 70%);
  opacity: 0.22;
}
.pod-cadence-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 28px;
  position: relative;
}
.pod-cadence-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}
.pod-cadence-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 24px 22px;
}
.pod-cadence-freq {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
}
.pod-cadence-who {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}
.pod-cadence-foot {
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  position: relative;
}

/* "Are you a podiatrist?" footer block */
.pod-add-yours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--sand);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.pod-add-yours strong { color: var(--navy); font-weight: 600; display: block; margin-bottom: 2px; }
.pod-add-yours a {
  color: var(--sand-deep);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pod-add-yours a:hover { text-decoration: underline; }

@media (max-width: 1024px) {
  .pod-provides-grid { grid-template-columns: 1fr 1fr; }
  .pod-region-body { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .podiatrists { padding: 72px 0 80px; }
  .pod-provides-grid { grid-template-columns: 1fr; }
  .pod-cadence { padding: 32px 24px 28px; }
  .pod-cadence-row { grid-template-columns: 1fr; }
  .pod-add-yours { grid-template-columns: 1fr; gap: 18px; padding: 22px 22px; }
  .pod-region-head { padding: 18px 20px; gap: 12px; }
  .pod-region-name { font-size: 20px; }
  .pod-region-body { padding: 4px 16px 18px; }
  .pod-card { padding: 20px 18px; }
  .pod-card-head { flex-direction: column; align-items: flex-start; }
}

/* =============================================================
   === Newly diagnosed — foot-care starter routine ===
   ============================================================= */
.newly {
  background:
    radial-gradient(70% 55% at 100% 0%, #eef4f6 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 100%, #f6efe6 0%, transparent 60%),
    var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.newly-head { max-width: 720px; }
.newly-head h2 em { color: var(--sand-deep); font-style: italic; }
.newly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.newly-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 4px 14px rgba(31,58,92,0.04);
  display: flex;
  flex-direction: column;
}
.newly-n {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--sky);
  margin-bottom: 16px;
}
.newly-t {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 12px;
}
.newly-b {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
/* Footwear step — the Airstep tie-in */
.newly-card.is-airstep {
  background: linear-gradient(180deg, #fbf4ee 0%, var(--white) 70%);
  border-color: var(--sand);
  box-shadow: 0 8px 24px rgba(217,119,87,0.12);
}
.newly-card.is-airstep .newly-n { color: var(--sand-deep); }
.newly-tag {
  margin-top: 16px;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--sand-deep);
  padding: 9px 14px;
  border: 1px solid var(--sand);
  border-radius: var(--r-pill);
  transition: background .15s, color .15s;
}
.newly-tag:hover { background: var(--sand); color: #fff; }
.newly-tag:hover svg { color: #fff; }
.newly-tag svg { color: var(--sand-deep); }
.newly-foot {
  margin-top: 36px;
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sky);
  border-radius: 10px;
  padding: 18px 22px;
}
.newly-foot svg { color: var(--sky); flex-shrink: 0; margin-top: 2px; }
.newly-foot p {
  font-size: 13px; line-height: 1.6; color: var(--ink-soft);
  margin: 0; max-width: 100ch;
}
.newly-foot strong { color: var(--navy); font-weight: 600; }
@media (max-width: 900px) {
  .newly-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .newly-grid { grid-template-columns: 1fr; gap: 14px; }
  .newly-card { padding: 26px 22px; }
}

/* =============================================================
   === Science pillars (FreeStride system) ===
   ============================================================= */
.pillars {
  background: var(--paper-2);
  border-top: 1px solid var(--line-soft);
}
.pillars-head { max-width: 760px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 4px 14px rgba(31,58,92,0.04);
}
.pillar-n {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--sand-deep);
  margin-bottom: 16px;
}
.pillar-t {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 18px;
}
.pillar-pts {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.pillar-pts li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.5;
}
.pillar-pts li svg { flex-shrink: 0; margin-top: 3px; color: var(--sky); }

/* =============================================================
   === Engineered for purpose — 12 deliberate decisions ===
   ============================================================= */
.engineered {
  background:
    radial-gradient(80% 60% at 0% 0%, var(--navy-deep) 0%, transparent 60%),
    var(--navy);
  color: var(--paper-2);
}
.engineered h2 { color: #fff; }
.engineered .section-head p { color: rgba(255,255,255,0.72); }
.engineered-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
}
.eng-item {
  background: var(--navy);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.eng-n {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.12em;
  color: var(--sand);
}
.eng-t {
  font-family: var(--serif); font-weight: 400;
  font-size: 19px; color: #fff; line-height: 1.18; margin: 4px 0 0;
}
.eng-b { font-size: 13.5px; color: rgba(255,255,255,0.68); line-height: 1.5; margin: 0; }

/* =============================================================
   === Nav — hamburger + mobile menu ===
   ============================================================= */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .26s ease, opacity .18s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  z-index: 60;
  visibility: hidden;
}
.mobile-menu.show { visibility: visible; }
.mobile-menu-scrim {
  position: absolute; inset: 0;
  background: rgba(13,17,21,0.42);
  opacity: 0; transition: opacity .28s ease;
}
.mobile-menu.show .mobile-menu-scrim { opacity: 1; }
.mobile-menu-panel {
  position: absolute; top: 0; left: 0; right: 0;
  max-height: 100dvh; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 50px -18px rgba(13,17,21,0.4);
  padding-bottom: calc(26px + env(safe-area-inset-bottom, 0px));
  transform: translateY(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.show .mobile-menu-panel { transform: translateY(0); }
.mobile-menu-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; padding: 0 18px;
  border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0; background: var(--paper);
}
.mobile-menu-close {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); margin-right: -8px;
}
.mobile-menu-close:hover { background: var(--paper-2); }
.mobile-menu-body { padding: 8px 20px 4px; display: flex; flex-direction: column; }
.mobile-menu-body a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 6px; min-height: 56px;
  font-family: var(--serif); font-size: 22px; color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu-body a svg { color: var(--ink-mute); }
.mobile-menu-cta {
  margin-top: 20px;
  background: var(--navy); color: #fff !important;
  border-radius: var(--r-pill);
  justify-content: center !important;
  font-family: var(--sans) !important; font-size: 16px !important; font-weight: 600;
  border-bottom: 0 !important;
}
.mobile-menu-foot {
  display: flex; align-items: center; gap: 7px;
  margin-top: 18px; font-size: 12.5px; color: var(--ink-soft);
}
.mobile-menu-foot svg { color: var(--sage); flex-shrink: 0; }

/* =============================================================
   === iPhone / mobile full pass ===
   ============================================================= */
html { -webkit-text-size-adjust: 100%; }

@media (max-width: 960px) {
  .nav-burger { display: flex; }
}

@media (max-width: 768px) {
  /* Prevent iOS auto-zoom on focus — inputs must be ≥16px */
  .field input, .field select, input, select, textarea { font-size: 16px; }

  /* Announce bar — tighter, fewer gaps */
  .announce { gap: 8px 16px; font-size: 11.5px; padding: 9px 14px; }
  .announce .sep { display: none; }

  /* Hero */
  .hero { padding: 24px 0 56px; }
  .hero-product { min-height: 360px; border-radius: 20px; }
  .hero-cta-row .btn { width: 100%; }
  .hero-cta-row { gap: 10px; }

  /* Science pillars */
  .pillars-grid { grid-template-columns: 1fr; gap: 14px; }
  .pillar-card { padding: 26px 22px; }
  .pillar-t { font-size: 21px; }

  /* Engineered — 2 columns */
  .engineered-grid { grid-template-columns: 1fr 1fr; }
  .eng-item { padding: 22px 18px; }
  .eng-t { font-size: 18px; }

  /* Buy block */
  .buy-promise { grid-template-columns: 1fr; }
  .buy-info h2 { font-size: 30px; }
  .qty-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .qty-stepper { align-self: flex-start; }

  /* Drawers fill the screen edge-to-edge */
  .drawer, .drawer.wide { width: 100vw; }
  .drawer-head, .drawer-body, .drawer-foot { padding-left: 20px; padding-right: 20px; }
  .drawer-foot {
    flex-wrap: wrap;
    padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  }
  .drawer-foot .btn { min-height: 52px; }
  .drawer-foot .btn-secondary { flex: 1 1 100%; order: 2; }

  /* Checkout step bar — compact */
  .checkout-step-bar { padding: 14px 18px; gap: 6px; }
  .checkout-step-bar .step { font-size: 10.5px; gap: 6px; }

  /* NAPPI table scrolls horizontally instead of squashing */
  .nappi-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .nappi-table { min-width: 560px; }

  /* Sticky buy bar — respect the home-bar safe area */
  .sticky-buy {
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px));
    gap: 12px;
  }
  .sticky-buy .meta { flex: 1; min-width: 0; }
  .sticky-buy .sb-name { font-size: 15px; }
  .sticky-buy .sb-price { font-size: 12px; }
  .sticky-buy .btn-primary { white-space: nowrap; padding: 12px 18px; }

  /* Comfortable tap targets */
  .faq-q { min-height: 56px; }
  .cart-btn { min-height: 44px; }
}

@media (max-width: 480px) {
  .engineered-grid { grid-template-columns: 1fr; }
  .cart-btn .cart-btn-label { display: none; }
  .cart-btn { padding: 0 12px; }
  h1 { font-size: 34px; }
  .section-head { margin-bottom: 36px; }
  .container { padding: 0 16px; }
}

/* =============================================================
   === Wholesale / practitioner application page ===
   ============================================================= */
.wh-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  min-height: 44px;
}
.wh-back:hover { color: var(--ink); }
.wh-back span { font-size: 17px; }

.wh-hero {
  background:
    radial-gradient(70% 60% at 100% 0%, var(--skylight-soft) 0%, transparent 60%),
    var(--paper);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line-soft);
}
.wh-hero h1 {
  font-family: var(--sans); font-weight: 700; text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 56px); letter-spacing: -0.025em;
  color: var(--navy); margin: 14px 0 0;
}
.wh-hero p {
  font-size: 18px; color: var(--ink-soft); max-width: 60ch;
  margin: 18px 0 0; line-height: 1.55;
}
.wh-benefits {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  margin-top: 28px;
}
.wh-benefit {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 500; color: var(--navy);
}
.wh-benefit svg { color: var(--sky); flex-shrink: 0; }

.wh-form-section { padding: 56px 0 80px; background: var(--paper-2); }
.wh-grid {
  display: grid; grid-template-columns: 1.5fr 0.9fr; gap: 40px;
  align-items: start;
}
.wh-form {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 36px 36px 32px;
  box-shadow: 0 8px 30px -18px rgba(31,58,92,0.18);
}
.wh-block { margin-bottom: 30px; }
.wh-block:last-of-type { margin-bottom: 22px; }
.wh-block .section-label { margin-top: 0; font-size: 18px; margin-bottom: 16px; }

.wh-type-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.wh-type {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 16px; min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  background: var(--white);
  transition: all .15s;
}
.wh-type:hover { border-color: var(--ink-mute); }
.wh-type-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--line); flex-shrink: 0;
  transition: all .15s;
}
.wh-type.active { border-color: var(--navy); color: var(--navy); background: var(--skylight-soft); }
.wh-type.active .wh-type-dot { border-color: var(--navy); background: var(--navy); box-shadow: inset 0 0 0 3px var(--white); }

.wh-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 15px; line-height: 1.5;
  resize: vertical; min-height: 96px;
  transition: border-color .15s, box-shadow .15s;
}
.wh-form textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(77,112,128,0.15); }

.wh-consent {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--ink-soft); line-height: 1.5;
  cursor: pointer; margin-top: 4px;
}
.wh-consent input { width: 20px; height: 20px; margin-top: 1px; flex-shrink: 0; accent-color: var(--navy); cursor: pointer; }
.wh-consent.invalid span { color: #b04444; }

.wh-submit { margin-top: 24px; }
.wh-form-note {
  margin-top: 16px; font-size: 13.5px; color: var(--ink-mute); text-align: center; line-height: 1.6;
}
.wh-form-note a { color: var(--sand-deep); text-decoration: underline; }
.wh-form-note strong { color: var(--ink-soft); }

.wh-aside { position: sticky; top: 92px; }
.wh-aside-card {
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 32px 30px;
}
.wh-aside-card h3 { font-family: var(--serif); font-size: 24px; color: #fff; margin-bottom: 22px; }
.wh-steps { list-style: none; margin: 0; padding: 0; }
.wh-steps li {
  display: flex; align-items: flex-start;
  font-size: 14.5px; color: rgba(255,255,255,0.82); line-height: 1.5;
  margin-bottom: 18px;
}
.wh-steps li:last-child { margin-bottom: 0; }
.wh-step-n {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: var(--sand);
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin-right: 14px;
}
.wh-step-t { flex: 1; padding-top: 2px; }
.wh-aside-meta {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 26px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 12.5px; color: rgba(255,255,255,0.7); line-height: 1.5;
}
.wh-aside-meta svg { color: var(--sand); flex-shrink: 0; margin-top: 1px; }

/* Success state */
.wh-success-section { padding: 80px 0 96px; background: var(--paper); }
.wh-success { max-width: 640px; margin: 0 auto; text-align: center; }
.wh-success-check {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--sage); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.wh-success h1 {
  font-family: var(--sans); font-weight: 700; text-transform: uppercase;
  font-size: clamp(30px, 3.6vw, 46px); letter-spacing: -0.025em;
  color: var(--navy); margin: 10px 0 0;
}
.wh-success p { font-size: 17px; color: var(--ink-soft); margin: 18px auto 0; max-width: 52ch; line-height: 1.6; }
.wh-success-ref {
  display: flex; justify-content: center; gap: 0;
  margin: 32px auto 0; max-width: 420px;
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
}
.wh-success-ref > div { flex: 1; padding: 18px 20px; }
.wh-success-ref > div + div { border-left: 1px solid var(--line); }
.wh-success-ref .k { display: block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.wh-success-ref .v { display: block; font-family: var(--serif); font-size: 19px; margin-top: 5px; color: var(--ink); }
.wh-success-contact { margin: 28px 0 0; font-size: 14.5px; color: var(--ink-soft); }
.wh-success-contact a { color: var(--sand-deep); text-decoration: underline; }
.wh-success .btn { margin-top: 32px; }

@media (max-width: 900px) {
  .wh-grid { grid-template-columns: 1fr; gap: 24px; }
  .wh-aside { position: static; }
}
@media (max-width: 768px) {
  .wh-hero { padding: 40px 0 36px; }
  .wh-form { padding: 26px 20px 24px; border-radius: 14px; }
  .wh-form textarea { font-size: 16px; }
  .wh-success-ref { flex-direction: column; }
  .wh-success-ref > div + div { border-left: 0; border-top: 1px solid var(--line); }
}

/* NAPPI section — wholesale CTA */
.nappi-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 20px; padding: 24px 28px;
  background: var(--skylight-soft);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
}
.nappi-cta-text { display: flex; flex-direction: column; gap: 4px; }
.nappi-cta-text strong { font-family: var(--serif); font-weight: 500; font-size: 21px; color: var(--navy); }
.nappi-cta-text span { font-size: 14px; color: var(--ink-soft); max-width: 52ch; }
.nappi-cta .btn { flex-shrink: 0; }
@media (max-width: 600px) {
  .nappi-cta { padding: 22px 20px; }
  .nappi-cta .btn { width: 100%; }
}

/* ===================================================================
   Multi-page site: home "explore" hub + prev/next page navigation
   =================================================================== */
.hub { padding: 88px 0; background: var(--paper-2); border-top: 1px solid var(--line-soft); }
.hub-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.hub-head p { margin-top: 16px; }
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hub-card {
  display: flex; flex-direction: column; gap: 11px;
  padding: 32px 30px 28px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  box-shadow: 0 14px 38px -28px rgba(20,30,50,0.18);
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px -28px rgba(20,30,50,0.28);
  border-color: var(--line);
}
.hub-card-eyebrow {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sky);
}
.hub-card-title {
  font-family: var(--serif);
  font-size: 25px; font-weight: 500;
  color: var(--navy); line-height: 1.1;
  letter-spacing: -0.01em;
}
.hub-card-desc {
  font-size: 14.5px; line-height: 1.58;
  color: var(--ink-soft); margin: 0; flex: 1;
}
.hub-card-go {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  color: var(--sand-deep);
  transition: gap .16s;
}
.hub-card:hover .hub-card-go { gap: 12px; }
@media (max-width: 900px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hub { padding: 56px 0; } .hub-grid { grid-template-columns: 1fr; } }

.page-end-wrap { background: var(--paper-2); border-top: 1px solid var(--line-soft); }
.page-end {
  display: flex; justify-content: space-between; align-items: stretch;
  gap: 20px; padding: 44px 0;
}
.page-end-link {
  display: flex; flex-direction: column; gap: 7px;
  padding: 20px 26px;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  transition: transform .14s, box-shadow .16s, border-color .16s;
}
.page-end-link:hover {
  transform: translateY(-3px);
  border-color: var(--line);
  box-shadow: 0 18px 38px -26px rgba(20,30,50,0.26);
}
.page-end-link.next { text-align: right; align-items: flex-end; margin-left: auto; }
.page-end-dir {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.page-end-link.prev .page-end-dir svg { transform: rotate(180deg); }
.page-end-label {
  font-family: var(--serif);
  font-size: 21px; color: var(--navy);
  letter-spacing: -0.01em;
}
@media (max-width: 600px) {
  .page-end { flex-direction: column; padding: 32px 0; }
  .page-end-link { min-width: 0; width: 100%; }
  .page-end-link.next { margin-left: 0; text-align: left; align-items: flex-start; }
}

/* ===== Shoe photo gallery ===== */
.shoe-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.shoe-gallery-stage {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shoe-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.18s ease;
}
.shoe-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(20,30,50,0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  z-index: 2;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(20,30,50,0.12);
}
.shoe-gallery-nav:hover { background: #fff; box-shadow: 0 4px 14px rgba(20,30,50,0.18); }
.shoe-gallery-nav.prev { left: 10px; }
.shoe-gallery-nav.next { right: 10px; }
.shoe-gallery-thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.shoe-gallery-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: #fff;
  transition: border-color 0.15s;
  flex-shrink: 0;
}
.shoe-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.shoe-gallery-thumb.active {
  border-color: var(--sky, #4a7c8e);
}
.shoe-gallery-label {
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* hero CTA row (counter section) */
.hero-counter-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero-counter-trust-line {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
@keyframes heroPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(30,58,74,0.45); }
  50%      { box-shadow: 0 0 0 8px rgba(30,58,74,0); }
}

/* ===== Product photo strip ===== */
.product-strip {
  background: var(--paper-2, #f5f0e8);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 0;
  overflow: hidden;
}
.product-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.product-strip-img {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #fff;
}
.product-strip-img--center {
  background: var(--paper-2, #f5f0e8);
}
.product-strip-img img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.product-strip-img:hover img {
  transform: scale(1.03);
}
@media (max-width: 640px) {
  .product-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
  .product-strip-img:last-child {
    display: none;
  }
}

/* ===== FreeStride infographic banner ===== */
.freestride-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.freestride-banner-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

/* ===== Gout section ===== */
.gout-section {
  background: var(--paper-2, #f5f0e8);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 96px 0;
}
.gout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 56px 0 48px;
}
.gout-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 36px 32px;
}
.gout-card-n {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--sky, #4a7c8e);
  display: block;
  margin-bottom: 14px;
}
.gout-card-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
}
.gout-card-body {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.gout-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--navy);
  border-radius: 16px;
  padding: 32px 40px;
  flex-wrap: wrap;
}
.gout-footer-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(246,241,232,0.85);
  max-width: 62ch;
}
.gout-footer-text strong { color: #fff; }
@media (max-width: 720px) {
  .gout-grid { grid-template-columns: 1fr; }
  .gout-footer { flex-direction: column; align-items: flex-start; }
}
/* ===== Logo watermark backgrounds ===== */
.hero-counter::before,
.trust-strip::before,
.page-end-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/Airstep_Logo_HiRes_300dpi.png");
  background-repeat: no-repeat;
  background-size: 600px auto;
  background-position: center center;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}
.hero-counter,
.trust-strip,
.page-end-wrap {
  position: relative;
}
.hero-counter > *,
.trust-strip > *,
.page-end-wrap > * {
  position: relative;
  z-index: 1;
}
/* ===== Logo header ===== */
.logo-header {
  background: var(--paper, #faf6ef);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
}
.logo-header-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.logo-header-link:hover { opacity: 1; }
/* 2-panel strip variant */
.product-strip-inner--two {
  grid-template-columns: 1fr 1fr;
}