/* ==========================================================================
   Case Compare — standalone marketing site
   Brand source of truth: config/brand.json
   Montserrat (self-hosted, variable), navy #000A4B, accents #2F7BE8 / #5F8DCB
   ========================================================================== */

/* --- Montserrat, self-hosted variable font ------------------------------- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Tokens -------------------------------------------------------------- */
:root {
  --navy-900: #000A4B;
  --navy-800: #09215C;
  --navy-700: #0E2A6E;
  --blue-400: #5F8DCB;
  --blue-500: #2F7BE8;
  /* A darkened shade of blue_500, used ONLY for small uppercase label text on
     white so those labels clear 4.5:1. The brand accent itself is unchanged. */
  --label: #1A56B0;
  --paper: #FFFFFF;
  --ink: #101828;

  /* derived, kept in the same family */
  --ink-soft: #45507A;
  --mist: #F3F6FC;
  --mist-deep: #E7EEFA;
  --line: #D8E2F3;
  --line-dark: rgba(255, 255, 255, .16);

  /* build markers — deliberately outside the palette so they read as unfinished */
  --flag: #8A5B00;
  --flag-bg: #FFF8E8;
  --flag-line: #E6C77A;

  --wrap: 1140px;
  --wrap-narrow: 780px;
  --gutter: clamp(20px, 5vw, 56px);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(0, 10, 75, .06), 0 2px 8px rgba(0, 10, 75, .05);
  --shadow-md: 0 2px 4px rgba(0, 10, 75, .05), 0 12px 34px rgba(0, 10, 75, .09);
  --shadow-lg: 0 30px 70px rgba(0, 10, 75, .30);

  --track-wide: .14em;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Reset / base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Montserrat', 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--navy-900);
  text-wrap: balance;
}

h1 { font-size: clamp(2.05rem, 1.35rem + 2.9vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 1rem + .4vw, 1.3rem); letter-spacing: -.01em; }
h4 { font-size: 1rem; letter-spacing: 0; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-500); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-800); }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

strong, b { font-weight: 700; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

::selection { background: var(--blue-500); color: #fff; }

/* Focus — always visible, never removed */
:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 3px;
}
.band--dark :focus-visible,
.site-header--over :focus-visible { outline-color: #9CC2FF; }

.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 200;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --- Layout -------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: calc(var(--wrap-narrow) + var(--gutter) * 2); }

.band { padding-block: clamp(3.5rem, 2rem + 6vw, 7rem); position: relative; }
.band--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.band--mist { background: var(--mist); }
.band--dark {
  background:
    radial-gradient(1100px 620px at 78% -12%, rgba(47, 123, 232, .30), transparent 62%),
    radial-gradient(760px 520px at 8% 108%, rgba(95, 141, 203, .20), transparent 60%),
    linear-gradient(168deg, var(--navy-900) 0%, var(--navy-800) 58%, #05123F 100%);
  color: #DDE6F8;
}
.band--dark h1, .band--dark h2, .band--dark h3, .band--dark h4 { color: #fff; }
.band--dark a { color: #9CC2FF; }
.band--dark a:hover { color: #fff; }

/* hairline seam between bands, in brand blue */
.band--dark + .band:not(.band--dark)::before,
.band:not(.band--dark) + .band--dark::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-500) 22%, var(--blue-400) 60%, transparent);
  opacity: .65;
}

/* --- Typographic helpers ------------------------------------------------- */
.eyebrow {
  display: block;
  margin: 0 0 1rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--label);
}
.band--dark .eyebrow { color: #7FB0F5; }

.lede {
  font-size: clamp(1.05rem, .99rem + .3vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
}
.band--dark .lede { color: #C3D3EE; }

.section-head { max-width: 68ch; margin-bottom: clamp(2rem, 1.2rem + 2vw, 3.25rem); }
.section-head p:last-child { margin-bottom: 0; }

.rule {
  width: 62px; height: 3px;
  margin: 0 0 1.5rem;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  border-radius: 2px;
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  min-height: 52px;
  padding: .85em 1.7em;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  /* 1.17rem = 18.72px. At >= 18.66px bold this counts as WCAG "large text",
     so white on the brand accent (#2F7BE8, 4.10:1) clears AA without
     altering the client's specified accent colour. */
  font-size: 1.17rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              box-shadow .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--blue-500);
  color: #fff;
  box-shadow: 0 8px 22px rgba(47, 123, 232, .34);
}
.btn--primary:hover { background: #1F68D2; color: #fff; box-shadow: 0 12px 30px rgba(47, 123, 232, .42); }

.btn--navy { background: var(--navy-900); color: #fff; box-shadow: var(--shadow-sm); }
.btn--navy:hover { background: var(--navy-700); color: #fff; }

.btn--ghost { background: transparent; color: var(--navy-900); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue-500); color: var(--blue-500); background: #fff; }
.band--dark .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .34); }
.band--dark .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); color: #fff; }

.btn--block { width: 100%; }
.btn--sm { min-height: 46px; font-size: 1.17rem; padding: .55em 1.25em; }

.btn[aria-disabled='true'] {
  background: var(--mist-deep);
  color: var(--ink-soft);
  box-shadow: none;
  cursor: not-allowed;
  border-color: var(--line);
}
.btn[aria-disabled='true']:hover { transform: none; background: var(--mist-deep); color: var(--ink-soft); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 2rem;
}

.cta-note {
  margin: 1rem 0 0;
  font-size: .86rem;
  letter-spacing: .01em;
  color: var(--ink-soft);
}
.band--dark .cta-note { color: #A9BEE2; }

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header--over {
  background: rgba(0, 10, 75, .82);
  border-bottom-color: var(--line-dark);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.brand-link { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-link img { width: clamp(150px, 34vw, 208px); height: auto; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: .55em;
  min-height: 44px;
  padding: .45em .9em;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-900);
  font: inherit;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}
.site-header--over .nav-toggle { color: #fff; border-color: var(--line-dark); }
.nav-toggle__bars { position: relative; width: 18px; height: 12px; }
.nav-toggle__bars span,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span { top: 5px; }
.nav-toggle__bars::after { bottom: 0; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars span { opacity: 0; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars::after { transform: translateY(-5px) rotate(-45deg); }

.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__list li { margin: 0; }
.site-nav__link {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  color: var(--navy-900);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
}
.site-header--over .site-nav__link { color: #DDE6F8; }
.site-nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.site-nav__link:hover { color: var(--blue-500); }
.site-header--over .site-nav__link:hover { color: #fff; }
.site-nav__link:hover::after,
.site-nav__link[aria-current='page']::after { transform: scaleX(1); }
.site-nav__link[aria-current='page'] { color: var(--blue-500); }
.site-header--over .site-nav__link[aria-current='page'] { color: #fff; }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 1.5rem + 7vw, 6.5rem) clamp(3.5rem, 2rem + 7vw, 7rem);
}
/* the lens: concentric rings, the magnifier idea as atmosphere */
.hero::after {
  content: '';
  position: absolute;
  right: -14vw; top: -18vw;
  width: 62vw; height: 62vw;
  max-width: 820px; max-height: 820px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(47, 123, 232, .16) 0 38%, transparent 39%),
    repeating-radial-gradient(circle, rgba(159, 194, 255, .085) 0 1px, transparent 1px 42px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, .86fr);
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  margin-bottom: 1.5rem;
  padding: .5em 1.1em .5em .7em;
  border: 1px solid rgba(159, 194, 255, .34);
  border-radius: 999px;
  background: rgba(47, 123, 232, .13);
  color: #BFD6FA;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__kicker img { width: 22px; height: 22px; }

.hero h1 {
  margin-bottom: 1.1rem;
  /* the tagline is six words long, so it sets slightly smaller than the
     global h1 scale to keep the hero block compact */
  font-size: clamp(2rem, 1.35rem + 2.4vw, 3.15rem);
}
.hero h1 .accent {
  display: block;
  background: linear-gradient(96deg, #9CC2FF 6%, var(--blue-500) 64%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__deck {
  margin: 0 0 1.25rem;
  font-size: clamp(1.1rem, 1rem + .55vw, 1.42rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #9CC2FF;
  max-width: 24ch;
}

.hero__sub { font-size: clamp(1.02rem, .96rem + .35vw, 1.22rem); color: #C7D6F0; max-width: 56ch; }

.hero__price {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-dark);
}

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(159, 194, 255, .22);
}
.hero__media figcaption {
  margin-top: .9rem;
  font-size: .76rem;
  letter-spacing: .05em;
  color: #92A8D0;
  text-align: center;
}

/* --- Price display (echoes her "$27" creative) --------------------------- */
.price {
  display: inline-flex;
  align-items: flex-start;
  gap: .1em;
  font-weight: 800;
  line-height: 1;
  color: var(--blue-500);
  letter-spacing: -.03em;
}
.price__sym { font-size: .5em; font-weight: 700; transform: translateY(.28em); }
.price--xl { font-size: clamp(3rem, 2rem + 4vw, 4.6rem); }
.price--lg { font-size: clamp(2.2rem, 1.7rem + 2vw, 3rem); }
.price--md { font-size: 1.85rem; }
.band--dark .price { color: #6FA8FF; }
.price-meta {
  font-size: .84rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.band--dark .price-meta { color: #A9BEE2; }

/* --- Trust strip --------------------------------------------------------- */
.strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.strip__item { background: var(--paper); padding: 1.5rem clamp(1rem, .6rem + 1vw, 1.9rem); }
.strip__title {
  margin-bottom: .55rem;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--label);
}
.strip__item p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* --- Icon badge (circular blue ring, as on her creative) ----------------- */
.badge {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  margin-bottom: 1.4rem;
  border: 2px solid var(--blue-500);
  border-radius: 50%;
  color: var(--blue-500);
  background: rgba(47, 123, 232, .07);
  flex: 0 0 auto;
}
.badge svg { width: 27px; height: 27px; }
.band--dark .badge {
  border-color: #6FA8FF;
  color: #9CC2FF;
  background: rgba(47, 123, 232, .16);
}

/* --- Cards / grids ------------------------------------------------------- */
.grid { display: grid; gap: clamp(1.1rem, .7rem + 1.4vw, 1.9rem); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 1.1rem + 1.1vw, 2.2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #BBD0EE; }
.card p { color: var(--ink-soft); }
.card h3 { margin-bottom: .6rem; }
.band--dark .card {
  background: linear-gradient(180deg, rgba(14, 42, 110, .82), rgba(9, 33, 92, .62));
  border-color: var(--line-dark);
  box-shadow: none;
}
.band--dark .card:hover { border-color: rgba(159, 194, 255, .42); }
.band--dark .card p { color: #BDCDEA; }

/* --- Product cards ------------------------------------------------------- */
.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.1rem, .7rem + 1.4vw, 1.8rem); }

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #BBD0EE; }
.product--feature {
  border-color: var(--blue-500);
  box-shadow: 0 2px 4px rgba(0, 10, 75, .05), 0 18px 46px rgba(47, 123, 232, .18);
}
.product__flag {
  position: absolute;
  top: -12px; left: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  padding: .34em 1em;
  background: var(--navy-900);
  color: #fff;
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product__kind {
  display: block;
  margin-bottom: .55rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--label);
}
.product__name { font-size: 1.2rem; margin-bottom: .7rem; }
.product__body { flex: 1 1 auto; font-size: .95rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
/* Sticker labels — her list is the three stickers themselves, so they read as
   chips rather than prose. */
.product__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: .8rem 0 0;
  padding: 0;
}
.product__list li {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--navy-900, #000A4B);
  background: #EEF3FB;
  border: 1px solid #BBD0EE;
  border-radius: 999px;
  padding: .22rem .6rem;
}
.product__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.product__ship {
  margin: .85rem 0 0;
  font-size: .78rem;
  letter-spacing: .03em;
  color: var(--ink-soft);
}

/* --- Method / narrowing diagram ----------------------------------------- */
.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: start;
}

.funnel {
  padding: 2rem 1.6rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  background: rgba(9, 33, 92, .42);
}
.funnel__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8FB4EA;
  text-align: center;
}
.funnel__bars { display: grid; gap: 10px; margin: 1.1rem 0; justify-items: center; }
.funnel__bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-500));
}
.funnel__bars span:nth-child(1) { width: 100%; opacity: .40; }
.funnel__bars span:nth-child(2) { width: 88%;  opacity: .50; }
.funnel__bars span:nth-child(3) { width: 74%;  opacity: .60; }
.funnel__bars span:nth-child(4) { width: 60%;  opacity: .70; }
.funnel__bars span:nth-child(5) { width: 46%;  opacity: .80; }
.funnel__bars span:nth-child(6) { width: 32%;  opacity: .90; }
.funnel__bars span:nth-child(7) { width: 20%;  opacity: 1; }

.steps { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps li {
  position: relative;
  margin: 0;
  padding: 1.15rem 0 1.15rem 4.1rem;
  border-bottom: 1px solid var(--line-dark);
  color: #CEDBF2;
  counter-increment: step;
}
.steps li:last-child { border-bottom: 0; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 1.1rem;
  width: 2.6rem;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #6FA8FF;
}

/* --- Honesty panel ------------------------------------------------------- */
.honesty {
  position: relative;
  padding: clamp(1.9rem, 1.2rem + 2.4vw, 3.4rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue-500);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.honesty__quote {
  font-size: clamp(1.15rem, 1rem + .8vw, 1.55rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--navy-900);
  max-width: 46ch;
}
.honesty__note {
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: .93rem;
  color: var(--ink-soft);
  max-width: 68ch;
}

/* --- Includes list (course contents) ------------------------------------- */
.includes { display: grid; gap: clamp(1.2rem, .8rem + 1.4vw, 2rem); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.include h3 { margin-bottom: .55rem; }
.include p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.band--dark .include p { color: #BDCDEA; }

/* --- Offer panel --------------------------------------------------------- */
.offer {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}
.offer__media img {
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.offer__price {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin: 1.6rem 0 0;
  flex-wrap: wrap;
}

/* --- FAQ ----------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.35rem 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary > span:first-child { display: inline; }
.faq summary::after {
  content: '';
  flex: 0 0 auto;
  width: 13px; height: 13px;
  border-right: 2px solid var(--blue-500);
  border-bottom: 2px solid var(--blue-500);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq__body { padding: 0 0 1.5rem; max-width: 70ch; }

/* --- [NEEDS COPY] build markers ------------------------------------------ */
.needs {
  display: block;
  padding: 1.05rem 1.2rem;
  background: var(--flag-bg);
  border: 1px dashed var(--flag-line);
  border-radius: var(--r-sm);
  color: #5C4100;
  font-size: .92rem;
  line-height: 1.55;
}
.needs + .needs { margin-top: .75rem; }
.needs__tag {
  display: inline-block;
  margin-right: .6em;
  padding: .12em .6em;
  background: var(--flag);
  color: #fff;
  border-radius: 4px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  vertical-align: 1px;
  white-space: nowrap;
}
.needs--inline {
  display: inline-block;
  padding: .3rem .7rem;
  font-size: .85rem;
}
.band--dark .needs {
  background: rgba(255, 214, 132, .12);
  border-color: rgba(230, 199, 122, .55);
  color: #F2DFB4;
}

/* --- Notice (contact page, not-a-tip-line) ------------------------------- */
.notice {
  padding: clamp(1.4rem, 1rem + 1.4vw, 2.1rem);
  background: linear-gradient(168deg, var(--navy-900), var(--navy-800));
  color: #D7E2F6;
  border-radius: var(--r-md);
  border: 1px solid var(--navy-700);
}
.notice h2, .notice h3 { color: #fff; }
.notice__head {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
}
.notice__head svg { width: 26px; height: 26px; color: #7FB0F5; flex: 0 0 auto; }
.notice__head h2, .notice__head h3 { margin: 0; font-size: 1.15rem; }
.notice strong { color: #fff; }

/* --- Founder page -------------------------------------------------------- */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: start;
}
.photo-slot {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  max-width: 100%;
  padding: 1.5rem;
  background: var(--mist);
  border: 2px dashed var(--flag-line);
  border-radius: var(--r-md);
  text-align: center;
}
.photo-slot p { font-size: .88rem; color: var(--ink-soft); }

.prompts { margin: 0; padding: 0; list-style: none; counter-reset: q; }
.prompts li {
  position: relative;
  margin: 0;
  padding: 1.15rem 0 1.15rem 3.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--navy-900);
  font-weight: 600;
  counter-increment: q;
}
.prompts li:last-child { border-bottom: 0; }
.prompts li::before {
  content: counter(q, decimal-leading-zero);
  position: absolute;
  left: 0; top: 1.1rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue-500);
  letter-spacing: .06em;
}

/* --- Forms --------------------------------------------------------------- */
.form { display: grid; gap: 1.15rem; }
.field { display: grid; gap: .45rem; }
.field label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-900);
}
.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: .85rem 1rem;
  font-family: inherit;
  font-size: 16px; /* never below 16px — iOS zooms otherwise */
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(47, 123, 232, .16);
}
.field input::placeholder,
.field textarea::placeholder { color: #93A0BE; }

/* --- Contact detail list ------------------------------------------------- */
.detail-list { margin: 0; padding: 0; }
.detail-list div {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.detail-list div:first-child { padding-top: 0; }
.detail-list div:last-child { border-bottom: 0; }
.detail-list dt {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: .5rem;
}
.detail-list dd { margin: 0; color: var(--ink-soft); }

/* --- Final CTA ----------------------------------------------------------- */
.final-cta { text-align: center; }
.final-cta h2 { max-width: 20ch; margin-inline: auto; }
.final-cta .lede { margin-inline: auto; text-align: center; }
.final-cta .btn-row { justify-content: center; }

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: #A9BEE2;
  padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 2rem;
  font-size: .93rem;
}
.site-footer a { color: #C7D6F0; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(1.8rem, 1rem + 3vw, 3.5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.site-footer__brand img { width: 210px; margin-bottom: 1.2rem; }
.site-footer__tagline { color: #C7D6F0; max-width: 34ch; }
.site-footer h2 {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: #7FB0F5;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .6rem; }
.site-footer__disclaimer {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: .84rem;
  line-height: 1.7;
  color: #94AAD2;
  max-width: 92ch;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: .8rem;
  color: #8199C4;
}

/* --- Reveal-on-scroll ---------------------------------------------------- */
html.js .reveal { opacity: 0; transform: translateY(18px); }
html.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

/* staged hero entrance */
.hero__grid > * { animation: rise .7s var(--ease) both; }
.hero__grid > *:nth-child(2) { animation-delay: .12s; }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* --- Copy-review mode (?review=1) ---------------------------------------- */
.review-bar {
  position: fixed;
  right: 14px; bottom: 14px;
  z-index: 150;
  max-width: min(320px, calc(100vw - 28px));
  padding: .8rem 1rem;
  background: var(--navy-900);
  color: #DDE6F8;
  border: 1px solid var(--blue-500);
  border-radius: var(--r-sm);
  font-size: .78rem;
  line-height: 1.5;
  box-shadow: var(--shadow-lg);
}
.review-bar b { color: #fff; }
html.review [data-copy='draft'] {
  outline: 2px dashed rgba(47, 123, 232, .65);
  outline-offset: 4px;
  border-radius: 3px;
}
html.review [data-copy='draft']::before {
  content: 'DRAFT';
  display: inline-block;
  margin-right: .5em;
  padding: .1em .45em;
  background: var(--blue-500);
  color: #fff;
  border-radius: 3px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  vertical-align: 2px;
}

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1000px) {
  .grid--3, .includes, .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strip { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 76px; }

  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem var(--gutter) 1.5rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .site-header--over .site-nav { background: var(--navy-900); border-bottom-color: var(--line-dark); }
  .site-nav.is-open { display: flex; }

  /* Without JS the toggle cannot work, so the nav renders as a plain list. */
  html.no-js .nav-toggle { display: none; }
  html.no-js .site-nav {
    display: flex;
    position: static;
    padding: 0 0 1rem;
    background: none;
    border-bottom: 0;
    box-shadow: none;
  }
  html.no-js .site-header__inner { flex-wrap: wrap; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__list li { border-bottom: 1px solid var(--line); }
  .site-header--over .site-nav__list li { border-bottom-color: var(--line-dark); }
  .site-nav__link { display: block; padding: 1rem 0; font-size: .95rem; }
  .site-nav__link::after { display: none; }
  .site-nav .btn { margin-top: 1.1rem; }

  .hero__grid,
  .method-grid,
  .offer,
  .founder-grid { grid-template-columns: minmax(0, 1fr); }

  .hero__media { max-width: 460px; margin-inline: auto; }
  .offer__media { max-width: 420px; }
  .funnel { max-width: 420px; }
  .photo-slot { max-width: 320px; }
  .hero::after { right: -34vw; top: -30vw; width: 100vw; height: 100vw; }
}

@media (max-width: 620px) {
  body { font-size: 16.5px; }
  .grid--3, .grid--2, .includes, .products { grid-template-columns: minmax(0, 1fr); }
  .site-footer__top { grid-template-columns: minmax(0, 1fr); }
  .btn { width: 100%; }
  .btn-row { gap: 12px; }
  .btn-row .btn { width: 100%; }
  .product__foot { justify-content: flex-start; }
  .product__foot .btn { width: 100%; }
  .steps li { padding-left: 3.2rem; }
  .steps li::before { width: 2.2rem; }
}

/* --- Motion & print ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .nav-toggle, .review-bar, .btn { display: none !important; }
  .band--dark, .notice { background: #fff !important; color: #000 !important; }
  .band--dark h1, .band--dark h2, .band--dark h3 { color: #000 !important; }
}

.tm {
  font-size: .55em;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: .62em;
}

/* --- Additions ----------------------------------------------------------- */

/* Wordmark swaps with the header ground so the lockup is never low-contrast */
.brand-link img.on-dark { display: none; }
.site-header--over .brand-link img.on-dark { display: block; }
.site-header--over .brand-link img.on-light { display: none; }

/* Compact dark page header for the inner pages */
.page-head { padding-block: clamp(3rem, 2rem + 4vw, 5rem) clamp(2.5rem, 1.6rem + 3vw, 4rem); }
.page-head h1 { max-width: 20ch; }
.page-head .lede { margin-top: 1.1rem; }

/* Horizontal "what's inside" rows */
.include--row { display: flex; align-items: flex-start; gap: 1.1rem; }
.include--row + .include--row { margin-top: 1.5rem; }
.include--row h3 { font-size: 1.05rem; }
.badge--sm { width: 48px; height: 48px; margin-bottom: 0; }
.badge--sm svg { width: 21px; height: 21px; }

/* Two-up product grid for the Products page */
.products--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 760px) { .products--2 { grid-template-columns: minmax(0, 1fr); } }

/* Editorial note — guidance for the client, not missing copy */
.editor-note {
  margin: 1.5rem 0 0;
  padding: .3rem 0 .3rem 1.1rem;
  border-left: 3px solid var(--blue-400);
  font-size: .88rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.editor-note b { color: var(--navy-900); }
.band--dark .editor-note { color: #AFC4E6; }
.band--dark .editor-note b { color: #fff; }

/* Stacked blocks inside a column */
.stack > * + * { margin-top: clamp(1.6rem, 1.2rem + 1vw, 2.4rem); }
.stack-sm > * + * { margin-top: 1rem; }

/* ── Founder photo ───────────────────────────────────────────────────────
   A real photo of a real person is the trust argument on this page, so it
   gets treated as content, not decoration: square, soft-cornered, and
   ringed in brand navy rather than floated loose on the page. */
.founder-photo {
  margin: 0;
  max-width: 380px;
}
.founder-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px -18px rgba(0, 10, 75, .45);
  outline: 3px solid var(--navy-900, #000A4B);
  outline-offset: -3px;
}
.founder-vision {
  border-left: 3px solid var(--accent, #2F7BE8);
  padding-left: 1.1rem;
}
@media (max-width: 700px) {
  .founder-photo { max-width: 260px; margin-inline: auto; }
}

/* Her founder story is written in short, deliberate lines — "I noticed. /
   I recognized. / I remembered." Those breaks carry the rhythm, so the
   measure is kept narrow and the leading generous enough that the lines
   read as intended rather than as ragged prose. */
.founder-story .founder-line {
  max-width: 34rem;
  line-height: 1.75;
  margin-block: 0 1.15rem;
}
.founder-story .founder-line:first-of-type { font-size: 1.05rem; }

/* The details a researcher actually compares. "Jewelry" and "aliases" are
   the ones that signal real case work rather than a generic worksheet, so
   they are shown as concrete chips rather than buried in a sentence. */
.compare-fields {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.compare-fields li {
  font-size: .82rem;
  letter-spacing: .02em;
  padding: .38rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 123, 232, .35);
  background: rgba(47, 123, 232, .07);
  color: var(--label, #1A56B0);
  white-space: nowrap;
}

/* ── Chips on a dark band ────────────────────────────────────────────────
   .compare-fields was styled for a light ground; the method section is
   dark, so the chips need their own values there or they vanish. */
.band--dark .compare-fields li {
  border-color: rgba(159, 194, 255, .40);
  background: rgba(47, 123, 232, .20);
  color: #C7DCFF;
}

/* ── "All six at a glance" ───────────────────────────────────────────────
   The client flagged that the Premium Edition — the highest-priced item —
   was two to three clicks deep. This row puts every product and its price
   in the first viewport of the section, each one a single click from here. */
.jump-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}
.jump-chips li { margin: 0; }
.jump-chips a {
  display: inline-flex;
  align-items: baseline;
  gap: .5em;
  padding: .5rem .95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy-900);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .18s var(--ease), background-color .18s var(--ease), transform .18s var(--ease);
}
.jump-chips a:hover { border-color: var(--blue-500); transform: translateY(-1px); color: var(--navy-900); }
.jump-chips b { color: var(--label); font-weight: 700; }
.band--dark .jump-chips a {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(159, 194, 255, .32);
  color: #E4ECFA;
}
.band--dark .jump-chips a:hover { border-color: #9CC2FF; color: #fff; background: rgba(255, 255, 255, .12); }
.band--dark .jump-chips b { color: #9CC2FF; }

/* ── Group titles inside a product section ───────────────────────────── */
.group-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: clamp(2.5rem, 1.8rem + 2vw, 3.75rem) 0 .35rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--label);
}
.group-title::after {
  content: '';
  flex: 1 1 auto;
  height: 1px;
  background: var(--line);
}
.band--dark .group-title { color: #7FB0F5; }
.band--dark .group-title::after { background: var(--line-dark); }

.group-intro {
  max-width: 70ch;
  margin: 0 0 1.75rem;
  color: var(--ink-soft);
}
.band--dark .group-intro { color: #C3D3EE; }

/* ── Notebook tiers ──────────────────────────────────────────────────────
   Three editions of the same notebook, shown as a ladder so the top tier
   reads as the top tier rather than as the fourth card in a flat grid. */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, .7rem + 1.4vw, 1.8rem);
  align-items: stretch;
}
@media (max-width: 860px) { .tiers { grid-template-columns: minmax(0, 1fr); } }

.product__rank {
  display: block;
  margin-bottom: .9rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.product--feature .product__rank { color: var(--label); border-bottom-color: #BBD0EE; }

.product__spec {
  margin: 0 0 1.2rem;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
}

/* the top tier sits a little proud of the other two */
@media (min-width: 861px) {
  .tiers .product--feature { transform: translateY(-10px); }
  .tiers .product--feature:hover { transform: translateY(-13px); }
}

/* ── Add-on pair ─────────────────────────────────────────────────────── */
.addons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.1rem, .7rem + 1.4vw, 1.8rem); }
@media (max-width: 760px) { .addons { grid-template-columns: minmax(0, 1fr); } }

/* ── Founder pull-quote on the sales page ────────────────────────────────
   Her own explanation of why comparing faces works is the clearest
   description of the product anywhere, so it runs in her voice, marked as
   a quotation, with a route to the full story. */
.pullquote {
  position: relative;
  max-width: 44ch;
  margin: 0;
  padding: 0 0 0 clamp(1.2rem, .8rem + 1.4vw, 2rem);
  border-left: 3px solid var(--blue-500);
}
.pullquote p {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 1rem + .85vw, 1.6rem);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #fff;
}
.pullquote footer {
  font-size: .85rem;
  letter-spacing: .04em;
  color: #A9BEE2;
}
.pullquote footer a { color: #9CC2FF; font-weight: 600; }

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}
@media (max-width: 860px) { .quote-grid { grid-template-columns: minmax(0, 1fr); } }

.quote-aside {
  padding: clamp(1.4rem, 1rem + 1.4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
}
.quote-aside p { color: var(--ink-soft); font-size: .98rem; }
.quote-aside p:last-child { margin-bottom: 0; }
.quote-aside cite { font-style: normal; color: var(--navy-900); font-weight: 600; }
.band--dark .quote-aside { border-color: var(--line-dark); background: rgba(9, 33, 92, .45); }
.band--dark .quote-aside p { color: #C3D3EE; }
.band--dark .quote-aside cite { color: #fff; }

/* ── Shipping facts ──────────────────────────────────────────────────── */
.ship-facts {
  margin-top: clamp(2rem, 1.4rem + 1.6vw, 3rem);
  padding: clamp(1.4rem, 1rem + 1.4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
}
.band--mist .ship-facts { background: var(--paper); }
.ship-facts h3 {
  margin-bottom: 1rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--label);
}
.ship-facts ul { margin: 0 0 1.25rem; padding-left: 1.2em; color: var(--ink-soft); font-size: .95rem; }
.ship-facts li { margin-bottom: .45em; }

/* ── Contact form status ─────────────────────────────────────────────── */
.form-note {
  margin: 0;
  font-size: .86rem;
  color: var(--ink-soft);
}

/* ── Wide product card (the course, inside the full-system section) ────── */
.product--wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem 2.5rem;
  align-items: center;
}
.product--wide .product__main { min-width: 0; }
.product--wide .product__body { margin-bottom: 0; max-width: 62ch; }
.product--wide .product__foot {
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  padding-top: 0;
  border-top: 0;
}
@media (max-width: 760px) {
  .product--wide { grid-template-columns: minmax(0, 1fr); }
  .product--wide .product__foot {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
  }
}

/* Divider inside a single dark band, where two ideas share one ground */
.band-divider {
  margin: clamp(2.5rem, 1.8rem + 2vw, 4rem) 0;
  border: 0;
  border-top: 1px solid var(--line-dark);
}
