/* ==========================================================================
   crewbyte.io — marketing site
   Loaded after base.css.

   Design position, in one line: an instrument panel, not a SaaS template.
   The page has no gradients, no illustrations, no background patterns and no
   glows. All of the visual interest comes from four things:

     1. Hairlines and index numbers, borrowed from technical datasheets.
     2. A real type scale with genuine jumps between levels.
     3. Alternating dark and paper bands to give the scroll a pulse.
     4. Live markup mock-ups of the actual product.

   Anything that can't be justified against one of those gets cut.
   ========================================================================== */

/* Sticky header would otherwise sit on top of every anchor target. */
section[id],
div[id] { scroll-margin-top: 88px; }

/* ------------------------------------------------------------------- nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 17, 21, .90);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  gap: var(--s6);
  height: 66px;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: var(--s6);
  margin-left: auto;
}
.site-nav__links a {
  color: rgba(248, 247, 244, .66);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 520;
  letter-spacing: -.005em;
  transition: color .14s ease;
}
.site-nav__links a:hover { color: #F8F7F4; }
.site-nav__links .btn { color: #fff; }

/* The wordmark PNG carries ~25% transparent padding top and bottom, so the
   visible height is about half of these numbers. See .brand in base.css. */
.site-nav .brand__img { height: 44px; }
.site-footer .brand__img { height: 46px; }

@media (max-width: 860px) {
  .site-nav__links .nav-hide { display: none; }
  .site-nav__inner { gap: var(--s4); height: 60px; }
  .site-nav__links { gap: var(--s5); }
  /* Once the section links drop away this is the only CTA in the header, and
     it's being pressed with a thumb. --btn-sm's desktop 36px is too small. */
  .site-nav__links .btn--sm { min-height: 44px; padding: 8px 15px; }
}
@media (max-width: 420px) {
  .site-nav .brand__img { height: 36px; }
  .site-nav__links { gap: var(--s4); }
  .site-nav__links .btn--sm { padding: 7px 11px; }
}

/* ------------------------------------------------------- shared furniture */

/* The index label. Used above every section heading on the page, so the
   whole scroll reads as one numbered document rather than a pile of cards.
   The trailing hairline is what makes it feel drawn rather than typed. */
.ix {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 var(--s5);
  font-size: .6875rem;
  font-weight: 660;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.ix b {
  font-family: var(--font-mono);
  font-weight: 640;
  letter-spacing: .04em;
  color: var(--accent);
}
.ix::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  min-width: 24px;
  background: var(--line);
}
.ix--on-dark { color: rgba(248, 247, 244, .44); }
.ix--on-dark b { color: var(--accent-on-dark); }
.ix--on-dark::after { background: rgba(255, 255, 255, .13); }
/* Centred heads: the rule runs out both sides instead of just one. */
.ix--center { justify-content: center; }
.ix--center::before {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  min-width: 24px;
  background: var(--line);
}
.ix--center.ix--on-dark::before { background: rgba(255, 255, 255, .13); }

.section { padding: clamp(64px, 8.5vw, 122px) 0; }
.section--paper { background: var(--paper); }
.section--sunk  { background: var(--paper-sunk); border-block: 1px solid var(--line); }
.section--dark  { background: var(--ink-900); color: rgba(248, 247, 244, .70); }
.section--dark h2,
.section--dark h3 { color: #F8F7F4; }

.section__head { max-width: 60ch; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head h2 { margin-bottom: var(--s4); }
.section__head p {
  font-size: clamp(1.0625rem, .99rem + .38vw, 1.25rem);
  color: var(--ink-400);
  line-height: 1.6;
  max-width: 56ch;
}
.section--dark .section__head p { color: rgba(248, 247, 244, .62); }
.section__head--center {
  margin-inline: auto;
  text-align: center;
  max-width: 30ch;
}
.section__head--center h2 { max-width: none; }
.section__head--center p { margin-inline: auto; max-width: 54ch; }
@media (min-width: 720px) {
  .section__head--center { max-width: 62ch; }
}

/*
 * The editorial split. Heading pinned on the left, content scrolling past it
 * on the right. This is the layout that carries most of the page on desktop —
 * it fills a wide screen honestly instead of stretching a centred column, and
 * it collapses to a plain stack on a phone with nothing left over.
 */
.split { display: grid; gap: clamp(36px, 5vw, 52px); }
@media (min-width: 1000px) {
  .split {
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: clamp(56px, 6vw, 104px);
    align-items: start;
  }
  .split__head {
    position: sticky;
    top: 108px;
    margin-bottom: 0;
    max-width: none;
  }
  .split__head p { font-size: 1.0625rem; }
}

/* --------------------------------------------------------------------- hero
   Solid --ink-900. Nothing decorative to lean on, so the work is done by type
   scale, measure, and the space between blocks. */
.hero {
  background: var(--ink-900);
  padding: clamp(56px, 8vw, 116px) 0 clamp(52px, 7vw, 96px);
  overflow: hidden;
}

/* Centred hero: the copy is a single centred column with the product shot
   full width beneath it. */
.hero__copy { text-align: center; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 clamp(24px, 3vw, 34px);
  font-size: .6875rem;
  font-weight: 660;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(248, 247, 244, .42);
}
.hero__eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 30px;
  height: 2px;
  background: var(--accent-on-dark);
}

.hero h1 {
  margin: 0 auto clamp(20px, 2.4vw, 28px);
  max-width: 22ch;
  font-size: clamp(2.25rem, 1.5rem + 3.2vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -.042em;
  font-weight: 660;
  color: #F8F7F4;
  text-wrap: balance;
}
/* Teal is the product's "verified" colour throughout the app, so the half of
   the claim about proof carries it. Consistency, not decoration. */
.hero h1 span {
  display: block;
  color: var(--accent-on-dark);
}

.hero__sub {
  margin: 0 auto clamp(28px, 3.4vw, 40px);
  max-width: 62ch;
  font-size: clamp(1.0625rem, .99rem + .45vw, 1.25rem);
  line-height: 1.6;
  color: rgba(248, 247, 244, .64);
}
.hero__sub b { color: rgba(248, 247, 244, .92); font-weight: 560; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s3);
  align-items: center;
}
@media (max-width: 440px) {
  .hero__ctas { gap: var(--s2); }
  .hero__ctas .btn { width: 100%; }
}

.hero__trust {
  list-style: none;
  margin: clamp(44px, 5.5vw, 68px) 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px clamp(24px, 4vw, 48px);
  font-size: .8125rem;
  color: rgba(248, 247, 244, .46);
}
.hero__trust li { margin: 0; display: flex; align-items: center; gap: 9px; }
.hero__trust li::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-on-dark);
}

/* ------------------------------------------------------ hero product shot
   The supplied graphic, sat straight on the dark hero. The PNG has a
   transparent background, so the ink floats on --ink-900 with no frame or
   plate behind it — the callout labels carry their own white pills, which
   is what keeps them readable on the dark. Never rendered above its natural
   1624px, so it stays crisp on a retina display. */
.shot {
  margin: clamp(36px, 4.5vw, 64px) auto 0;
  max-width: 1624px;
}
.shot img { display: block; width: 100%; height: auto; }

/* Thin segment strip under the hero. */
.credstrip {
  background: var(--ink-900);
  border-top: 1px solid rgba(255, 255, 255, .09);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  padding: var(--s5) 0;
}
.credstrip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) clamp(20px, 3.5vw, 48px);
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .6875rem;
  font-weight: 660;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(248, 247, 244, .38);
}
.credstrip__inner b {
  font-weight: 660;
  color: rgba(248, 247, 244, .62);
}

/* ------------------------------------------------------------------ problem
   Hairline-separated rows rather than a card grid. Three cards side by side
   would flatten the hierarchy; a list makes it read as evidence. */
.pains { display: grid; gap: 0; }
.pain {
  padding: clamp(24px, 3.4vw, 34px) 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: var(--s4);
}
.pain:first-child { border-top: 0; padding-top: 0; }
.pain:last-child { padding-bottom: 0; }
@media (min-width: 620px) {
  .pain { grid-template-columns: 44px minmax(0, 1fr); gap: var(--s5); }
}
.pain__n {
  font-family: var(--font-mono);
  font-size: .8125rem;
  font-weight: 640;
  letter-spacing: .04em;
  color: var(--bad);
  padding-top: 5px;
}
.pain h3 {
  font-size: clamp(1.125rem, 1.02rem + .45vw, 1.375rem);
  margin-bottom: var(--s3);
}
.pain p {
  color: var(--ink-400);
  font-size: clamp(.9375rem, .92rem + .12vw, 1rem);
  line-height: 1.65;
  max-width: 62ch;
}
/* The overheard line. Set as a marginal note, not a blockquote. */
.pain__note {
  margin-top: var(--s4);
  padding-left: var(--s4);
  border-left: 2px solid var(--line-strong);
  font-size: .875rem;
  line-height: 1.5;
  color: var(--ink-300);
  font-style: italic;
}

.verdict {
  margin-top: clamp(32px, 4vw, 48px);
  padding: clamp(20px, 2.6vw, 28px);
  background: var(--bad-tint);
  border: 1px solid #EFCEC9;
  border-left: 3px solid var(--bad);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.verdict h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--s2);
  color: var(--ink-900);
}
.verdict p {
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--ink-500);
  max-width: 66ch;
  margin: 0;
}

/* -------------------------------------------------------------------- flow
   Four steps. A single hairline spine runs through the numbers, horizontal
   on desktop and vertical on a phone, so the sequence is legible either way. */
.flow {
  display: grid;
  gap: 0;
  counter-reset: flow;
}
@media (min-width: 940px) {
  .flow { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 2.6vw, 36px); }
}

.flow__step { position: relative; padding: 0 0 var(--s7) 52px; }
.flow__step:last-child { padding-bottom: 0; }
.flow__n {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink-900);
  color: #fff;
  font-family: var(--font-mono);
  font-size: .8125rem;
  font-weight: 640;
  z-index: 1;
}
/* Vertical spine on mobile. */
.flow__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 34px;
  bottom: 8px;
  border-left: 1px solid var(--line-strong);
}
.flow__step h3 { font-size: 1.0625rem; margin-bottom: var(--s2); padding-top: 6px; }
.flow__step p { font-size: .9375rem; color: var(--ink-400); line-height: 1.6; max-width: 46ch; }

@media (min-width: 940px) {
  .flow__step { padding: 52px 0 0 0; }
  .flow__n { top: 0; left: 0; }
  /* Horizontal spine, drawn from the number out to the next column. */
  .flow__step:not(:last-child)::before {
    left: 44px;
    right: calc(-1 * clamp(20px, 2.6vw, 36px));
    top: 17px;
    bottom: auto;
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }
  .flow__step h3 { padding-top: 0; }
}

/* ---------------------------------------------------------------- outcomes
   Big mono figures as typographic anchors. They are labels, not invented
   metrics — nothing here claims a percentage we can't stand behind. */
.outcomes { display: grid; }
.outcome {
  display: grid;
  gap: var(--s2) var(--s5);
  padding: clamp(22px, 3vw, 30px) 0;
  border-top: 1px solid var(--line);
}
.outcome:first-child { border-top: 0; padding-top: 0; }
.outcome:last-child { padding-bottom: 0; }
@media (min-width: 560px) {
  .outcome { grid-template-columns: 104px minmax(0, 1fr); align-items: start; }
}
.outcome__fig {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 1.5rem;
  font-weight: 640;
  letter-spacing: -.035em;
  color: var(--accent-deep);
  line-height: 1.1;
}
.outcome__fig small {
  display: block;
  font-family: var(--font-sans);
  font-size: .625rem;
  font-weight: 660;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-top: 5px;
}
.outcome h3 { font-size: 1.0625rem; margin-bottom: var(--s2); }
.outcome p { font-size: .9375rem; color: var(--ink-400); line-height: 1.65; max-width: 60ch; }

/* --------------------------------------------------------------- features */
.feature {
  display: grid;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding: clamp(36px, 5vw, 68px) 0;
  border-top: 1px solid var(--line);
}
.feature:first-of-type { border-top: 0; padding-top: 0; }
.feature:last-of-type { padding-bottom: 0; }
@media (min-width: 960px) {
  .feature { grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); }
  .feature--flip .feature__media { order: -1; }
}
.feature__body { min-width: 0; }
.feature__body h3 {
  font-size: clamp(1.3125rem, 1.12rem + .68vw, 1.75rem);
  margin-bottom: var(--s4);
  max-width: 20ch;
}
.feature__body > p { color: var(--ink-400); font-size: 1rem; line-height: 1.65; max-width: 52ch; }
.feature__list { list-style: none; padding: 0; margin: var(--s5) 0 0; }
.feature__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: var(--s3);
  font-size: .9375rem;
  color: var(--ink-500);
  line-height: 1.55;
}
.feature__list li:last-child { margin-bottom: 0; }
.feature__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.feature__media { margin: 0; min-width: 0; }

/* ------------------------------------------------------------- UI mock-ups
   Real markup rather than image placeholders: crisp at any size, honest about
   what the product looks like, and free to load. */
.mock {
  background: var(--paper-raised);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  font-size: 13px;
}
.mock--dark {
  background: var(--ink-800);
  border-color: var(--line-dark-strong);
  color: rgba(248, 247, 244, .72);
}
.mock__bar {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: 10px var(--s4);
  background: var(--ink-900);
  color: #F8F7F4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.mock__bar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-on-dark); flex: 0 0 auto; }
.mock__bar .mock__site {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .05em;
  color: rgba(248, 247, 244, .5);
  text-transform: uppercase;
  white-space: nowrap;
}
.mock__body { padding: var(--s4); }
.mock__body--flush { padding: 0; }
.mock__foot {
  padding: var(--s3) var(--s4);
  border-top: 1px solid var(--line);
  background: var(--paper-sunk);
  font-size: .75rem;
  color: var(--ink-300);
  line-height: 1.5;
}

/* The label under each mock. Says what you're looking at, in the same mono
   micro-type the app uses for timestamps. */
.mock__cap {
  margin: var(--s3) 0 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-300);
}

.mock-row {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: 11px var(--s4);
  border-bottom: 1px solid var(--line);
}
.mock--dark .mock-row { border-color: var(--line-dark); }
.mock-row:last-child { border-bottom: 0; }
.mock-row--bad { background: var(--bad-tint); }
.mock-row__main { flex: 1 1 auto; min-width: 0; }
.mock-row__title { font-weight: 570; color: var(--ink-900); font-size: 13px; }
.mock--dark .mock-row__title { color: #F8F7F4; }
.mock-row__meta {
  font-size: 11.5px;
  color: var(--ink-300);
  margin-top: 1px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.mock-row__val {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 620;
  font-size: 14px;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.mock-row .badge { flex: 0 0 auto; }
.val--ok  { color: var(--accent-deep); }
.val--bad { color: var(--bad); }
.mock--dark .val--ok { color: var(--accent-on-dark); }
.mock--dark .val--bad { color: var(--bad-on-dark); }

.mock-tick {
  width: 22px; height: 22px; flex: 0 0 auto;
  border: 1.5px solid var(--line-strong);
  border-radius: 4px;
  display: grid; place-items: center;
  color: transparent;
  font-size: 12px;
  font-weight: 700;
}
.mock-tick--on   { background: var(--accent); border-color: var(--accent); color: #fff; }
.mock-tick--fail { background: var(--bad); border-color: var(--bad); color: #fff; }

/* A stand-in for an evidence photo. Flat blocks, not a fake gradient image. */
.mock-photo {
  width: 34px; height: 34px; flex: 0 0 auto;
  border-radius: 4px;
  background: var(--ink-600);
  position: relative;
  overflow: hidden;
}
.mock-photo::after {
  content: "";
  position: absolute;
  left: 6px; right: 6px; top: 11px;
  height: 12px;
  border-radius: 2px;
  background: var(--ink-200);
}

.mock-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.mock--dark .mock-strip { border-color: var(--line-dark); }
.mock-strip > div { padding: var(--s4); border-left: 1px solid var(--line); min-width: 0; }
.mock--dark .mock-strip > div { border-color: var(--line-dark); }
.mock-strip > div:first-child { border-left: 0; }
.mock-strip__label {
  font-size: 9.5px; font-weight: 660; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-300);
}
.mock-strip__value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 22px; font-weight: 640; letter-spacing: -.035em;
  color: var(--ink-900); line-height: 1.15; margin-top: 3px;
}
.mock--dark .mock-strip__value { color: #F8F7F4; }
@media (max-width: 380px) {
  .mock-strip > div { padding: var(--s3); }
  .mock-strip__value { font-size: 18px; }
}

/* Fourteen-day completion bars for the dashboard mock. */
.mock-bars { display: flex; align-items: flex-end; gap: 3px; height: 46px; padding: var(--s4) var(--s4) 0; }
.mock-bars i { flex: 1; background: var(--accent-tint-strong); border-radius: 1.5px; }
.mock-bars i.hi { background: var(--accent); }
.mock-bars i.lo { background: var(--warn); }
.mock--dark .mock-bars i { background: rgba(53, 183, 154, .28); }
.mock--dark .mock-bars i.hi { background: var(--accent-on-dark); }
.mock--dark .mock-bars i.lo { background: var(--warn-on-dark); }

/* -------------------------------------------------------------------- EHO */
.eho-areas { display: grid; gap: var(--s4); margin-bottom: clamp(36px, 4.5vw, 56px); }
/* Three of these side by side under ~900px leaves each card too narrow for
   its heading. Two up with the third across the bottom, same as .plans. */
@media (min-width: 640px) and (max-width: 899px) {
  .eho-areas { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eho-areas > :last-child { grid-column: 1 / -1; }
}
@media (min-width: 900px) { .eho-areas { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.eho-card {
  padding: var(--s5);
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
}
.eho-card__num {
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 640;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: var(--s3);
}
.eho-card h3 { font-size: 1.0625rem; margin-bottom: var(--s3); }
.eho-card__what {
  font-size: .875rem;
  color: var(--ink-300);
  line-height: 1.6;
  margin-bottom: var(--s4);
}
.eho-card__we {
  margin-top: auto;
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
  font-size: .875rem;
  line-height: 1.6;
  color: var(--ink-600);
}
.eho-card__we b { color: var(--ink-900); font-weight: 620; }

.eho-band {
  display: grid;
  gap: var(--s6);
  padding: clamp(24px, 3.4vw, 44px);
  background: var(--ink-900);
  color: rgba(248, 247, 244, .72);
  border-radius: var(--r-lg);
}
@media (min-width: 880px) {
  .eho-band { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: center; gap: clamp(32px, 4vw, 56px); }
}
.eho-band h3 {
  color: #F8F7F4;
  font-size: clamp(1.375rem, 1.1rem + 1vw, 1.75rem);
  margin-bottom: var(--s4);
  max-width: 22ch;
}
.eho-band p { line-height: 1.65; max-width: 56ch; }

.eho-band__aside {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  padding: var(--s5);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
}
.eho-rating { display: flex; align-items: baseline; gap: var(--s3); }
.eho-rating__num {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--accent-on-dark);
}
.eho-rating__label {
  font-size: .6875rem;
  font-weight: 660;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-200);
}
.eho-band__list { list-style: none; margin: 0; padding: 0; font-size: .875rem; }
.eho-band__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: var(--s3);
  line-height: 1.5;
}
.eho-band__list li:last-child { margin-bottom: 0; }
.eho-band__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--accent-on-dark);
}

/* The honest caveat. Given real weight rather than footnote treatment —
   promising a hygiene rating is a promise nobody can keep. */
.eho-caveat {
  max-width: 74ch;
  margin: clamp(32px, 4vw, 52px) 0 0;
  padding: var(--s5);
  background: var(--paper-sunk);
  border-left: 3px solid var(--ink-300);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .9375rem;
  line-height: 1.68;
  color: var(--ink-500);
}
.eho-caveat strong { color: var(--ink-900); }

/* ------------------------------------------------------------------ pilot */
.trust-grid { display: grid; gap: var(--s4); }
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1180px) { .trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.trust-card {
  padding: var(--s5);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .022);
}
.trust-card h3 { font-size: 1rem; margin-bottom: var(--s2); }
.trust-card p { font-size: .9063rem; line-height: 1.6; color: rgba(248, 247, 244, .60); }

.refs {
  display: grid;
  gap: var(--s4);
  align-items: center;
  padding: var(--s5) var(--s6);
  margin-bottom: var(--s6);
  border: 1px solid rgba(255, 255, 255, .12);
  border-left: 2px solid var(--accent-on-dark);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .03);
}
@media (min-width: 820px) { .refs { grid-template-columns: minmax(0, 1fr) auto; } }
.refs h3 { font-size: 1.0625rem; margin-bottom: var(--s2); }
.refs p { font-size: .9375rem; line-height: 1.6; color: rgba(248, 247, 244, .62); max-width: 62ch; }

.quote { border-left: 2px solid var(--accent); padding-left: var(--s5); margin: 0; }
.quote p {
  font-size: clamp(1.0625rem, 1rem + .5vw, 1.375rem);
  line-height: 1.5;
  letter-spacing: -.015em;
  color: #F8F7F4;
  font-weight: 500;
}
.quote footer { font-size: .875rem; color: rgba(248, 247, 244, .5); margin-top: var(--s4); }

/* ---------------------------------------------------------------- pricing
   Three cards, equal footing, CTAs pinned to a common baseline. The middle
   one is filled dark rather than scaled up or ringed in accent — it carries
   emphasis using the page's existing light/dark language instead of adding
   a new decorative device. */
.plans {
  display: grid;
  gap: var(--s4);
  align-items: stretch;
  margin-bottom: clamp(28px, 3.4vw, 44px);
}
@media (min-width: 700px) and (max-width: 1039px) {
  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* Odd one out spans the row rather than leaving a hole. */
  .plans > :last-child { grid-column: 1 / -1; }
}
@media (min-width: 1040px) { .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.plan {
  --plan-pad: clamp(24px, 2.6vw, 32px);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--plan-pad);
  background: var(--paper-raised);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  min-width: 0;
}
.plan--feature {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: rgba(248, 247, 244, .70);
}

.plan__tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: var(--s4);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-on-dark);
  color: #06231D;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
/*
 * Side by side, a tag left in the flow drops the featured card's price and
 * feature list ~40px below the other two, which reads as a mistake. Lift it
 * out of flow and reserve the same space on every card so the three rows of
 * prices, notes and lists line up. Stacked, there's nothing to align to, so
 * the tag goes back in the flow and the dead space disappears.
 */
@media (min-width: 700px) {
  .plan { padding-top: calc(var(--plan-pad) + 40px); }
  .plan__tag {
    position: absolute;
    top: var(--plan-pad);
    left: var(--plan-pad);
    margin-bottom: 0;
  }
}

.plan__name {
  font-size: 1.0625rem;
  font-weight: 520;
  letter-spacing: -.015em;
  color: var(--ink-400);
  margin-bottom: var(--s2);
}
.plan__name b { font-weight: 660; color: var(--ink-900); }
.plan--feature .plan__name { color: rgba(248, 247, 244, .52); }
.plan--feature .plan__name b { color: #F8F7F4; }

.plan__who {
  font-size: .875rem;
  line-height: 1.55;
  color: var(--ink-300);
  min-height: 3.4em;
  margin-bottom: var(--s5);
}
.plan--feature .plan__who { color: rgba(248, 247, 244, .52); }
@media (max-width: 699px) { .plan__who { min-height: 0; } }

.plan__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--s2) var(--s3);
  padding-bottom: var(--s4);
}
.plan__amount {
  font-family: var(--font-mono);
  font-size: clamp(1.875rem, 1.5rem + 1.2vw, 2.375rem);
  font-weight: 640;
  letter-spacing: -.045em;
  line-height: 1;
  color: var(--ink-900);
}
.plan--feature .plan__amount { color: #F8F7F4; }
.plan__per {
  font-size: .75rem;
  font-weight: 620;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-300);
  line-height: 1.35;
}
.plan--feature .plan__per { color: rgba(248, 247, 244, .48); }
.plan__pricenote {
  font-size: .8125rem;
  line-height: 1.55;
  color: var(--ink-400);
  padding-bottom: var(--s5);
  margin-bottom: var(--s5);
  border-bottom: 1px solid var(--line);
}
.plan--feature .plan__pricenote {
  color: rgba(248, 247, 244, .54);
  border-bottom-color: rgba(255, 255, 255, .14);
}

.plan__list { list-style: none; margin: 0 0 var(--s6); padding: 0; }
.plan__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: var(--s3);
  font-size: .9063rem;
  line-height: 1.5;
  color: var(--ink-500);
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 11px; height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.plan--feature .plan__list li { color: rgba(248, 247, 244, .74); }
.plan--feature .plan__list li::before { border-color: var(--accent-on-dark); }
/* "Everything in X, plus" — a heading inside the list, so it gets no tick. */
.plan__list .plan__from {
  padding-left: 0;
  margin-bottom: var(--s4);
  font-size: .6875rem;
  font-weight: 660;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.plan__list .plan__from::before { content: none; }
.plan--feature .plan__list .plan__from { color: rgba(248, 247, 244, .5); }

.plan__cta { margin-top: auto; }
.plan__cta .btn { width: 100%; }
.plan__foot {
  margin: var(--s3) 0 0;
  font-size: .75rem;
  text-align: center;
  color: var(--ink-300);
}
.plan--feature .plan__foot { color: rgba(248, 247, 244, .46); }

/* Everything common to all three, pulled out so the cards stay comparable
   instead of repeating six identical lines each. */
.every {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper-raised);
  overflow: hidden;
}
.every__head {
  padding: var(--s4) var(--s5);
  border-bottom: 1px solid var(--line);
  background: var(--paper-sunk);
  font-size: .6875rem;
  font-weight: 660;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.every__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}
@media (min-width: 620px) { .every__list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .every__list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
/*
 * Hairline seams between cells. Column rules are only ever added inside a
 * multi-column query — in the single-column state a left border would just
 * be a stray line running down the inside of the panel.
 */
.every__list li {
  position: relative;
  margin: 0;
  padding: var(--s4) var(--s5) var(--s4) calc(var(--s5) + 24px);
  font-size: .875rem;
  line-height: 1.5;
  color: var(--ink-500);
  border-top: 1px solid var(--line);
}
.every__list li::before {
  content: "";
  position: absolute;
  left: var(--s5); top: calc(var(--s4) + 6px);
  width: 11px; height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.every__list li:first-child { border-top: 0; }
@media (min-width: 620px) {
  .every__list li { border-left: 1px solid var(--line); }
  .every__list li:nth-child(-n+2) { border-top: 0; }
  .every__list li:nth-child(odd) { border-left: 0; }
}
@media (min-width: 1000px) {
  .every__list li:nth-child(-n+3) { border-top: 0; }
  .every__list li:nth-child(odd) { border-left: 1px solid var(--line); }
  .every__list li:nth-child(3n+1) { border-left: 0; }
}

.plan-note {
  max-width: 68ch;
  margin: clamp(24px, 3vw, 36px) auto 0;
  text-align: center;
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--ink-400);
}
.plan-note strong { color: var(--ink-900); font-weight: 620; }

/* -------------------------------------------------------------------- cta */
.cta-band {
  background: var(--ink-900);
  color: rgba(248, 247, 244, .70);
  padding: clamp(56px, 7vw, 100px) 0;
}
.cta-band h2 { color: #F8F7F4; margin-bottom: var(--s4); max-width: 18ch; }
.cta-band__grid { display: grid; gap: clamp(36px, 5vw, 64px); }
@media (min-width: 1000px) {
  .cta-band__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); align-items: start; }
  .cta-band__copy { position: sticky; top: 108px; }
}
.cta-band__copy p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(248, 247, 244, .64);
  max-width: 46ch;
}
.cta-band__points {
  list-style: none;
  margin: var(--s7) 0 0;
  padding: var(--s6) 0 0;
  border-top: 1px solid rgba(255, 255, 255, .10);
}
.cta-band__points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: var(--s3);
  font-size: .9375rem;
  line-height: 1.5;
  color: rgba(248, 247, 244, .58);
}
.cta-band__points li:last-child { margin-bottom: 0; }
.cta-band__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 11px; height: 6px;
  border-left: 2px solid var(--accent-on-dark);
  border-bottom: 2px solid var(--accent-on-dark);
  transform: rotate(-45deg);
}

/* ------------------------------------------------------------------- form */
.lead-form {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3.4vw, 34px);
}
.lead-form .label { color: var(--ink-500); }

/* ----------------------------------------------------------------- footer */
.site-footer {
  background: var(--ink-900);
  color: rgba(248, 247, 244, .55);
  padding: clamp(44px, 5vw, 64px) 0 var(--s6);
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: .875rem;
}
.site-footer a { color: rgba(248, 247, 244, .62); text-decoration: none; }
.site-footer a:hover { color: #F8F7F4; text-decoration: underline; }
.footer-grid {
  display: grid;
  gap: var(--s6);
  margin-bottom: var(--s7);
}
@media (min-width: 620px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1fr; } }
.footer-grid h4 {
  color: rgba(248, 247, 244, .42);
  font-size: .6875rem;
  font-weight: 660;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: var(--s3);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: var(--s2); }
.footer-brand { grid-column: 1 / -1; }
@media (min-width: 900px) { .footer-brand { grid-column: auto; } }
.footer-brand p {
  max-width: 36ch;
  color: rgba(248, 247, 244, .5);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: var(--s5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) var(--s5);
  align-items: center;
  font-size: .8125rem;
  color: rgba(248, 247, 244, .38);
}

/* --------------------------------------------------------------- content */
/* Legal / long-form pages. */
.prose { max-width: 68ch; }
.prose h2 { font-size: 1.375rem; margin: var(--s8) 0 var(--s4); }
.prose h3 { font-size: 1.0625rem; margin: var(--s6) 0 var(--s3); }
.prose p, .prose li { color: var(--ink-500); line-height: 1.7; }
.prose ul { padding-left: 1.25em; }
