
/* ==========================================================================
   The No Bullshit Business Coach — "Strike-Through" design system  v2.0

   The brand name IS the design language. Coaching clichés get struck out
   with an orange marker; what's left is plain talk. Everything else follows:
   hard offset shadows, 2px ink borders, hazard tape, receipt-style numbers,
   sticky-note reviews, hand-written annotations and a promise ticker.

   Brand:  #000000 ink · #FE6E10 signal orange · #F0F0F0 paper grey
   Type:   Archivo 800/900 uppercase display · Inter body · Caveat notes
   Every class from v1 still exists, so inner pages inherit the refresh.
   ========================================================================== */

:root {
  --black: #000000;
  --orange: #fe6e10;
  --orange-deep: #d85a08;
  --orange-soft: #fff1e6;
  --grey-light: #f0f0f0;

  --white: #ffffff;
  --ink: #0a0a0a;
  --body: #4b4d52;
  --muted: #86888e;
  --hairline: #e2e2e4;
  --hairline-strong: #cfcfd2;
  --hairline-dark: rgba(255, 255, 255, 0.16);

  --font-display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-note: "Caveat", "Segoe Print", "Bradley Hand", cursive;

  --wrap: 1320px;
  --wrap-narrow: 820px;
  --gutter: clamp(22px, 5vw, 68px);
  --section-y: clamp(70px, 9vw, 140px);

  --shadow: 6px 6px 0 var(--ink);
  --shadow-orange: 6px 6px 0 var(--orange);
  --border: 2px solid var(--ink);

  --header-h: 98px;
  --ease: cubic-bezier(0.2, 0.6, 0.3, 1);
  --snap: cubic-bezier(0.7, 0, 0.2, 1);
  --logo: url("../images/no-bullshit-business-coach-logo-lockup.svg");

  /* Hand-drawn marker strike, used everywhere a cliché gets crossed out. */
  --strike: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'><path d='M2 11 C 40 6, 80 14, 120 9 S 180 12, 198 8' fill='none' stroke='%23fe6e10' stroke-width='7' stroke-linecap='round'/></svg>");
  --hazard: repeating-linear-gradient(-45deg, var(--orange) 0 14px, var(--ink) 14px 28px);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Paper grain over the whole page — barely there, but it kills the flat-web feel. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img, svg, iframe, video { max-width: 100%; }
img { height: auto; border: 0; }

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}
a:hover, a:focus-visible { color: var(--ink); background: var(--orange-soft); }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
::selection { background: var(--orange); color: var(--black); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--orange);
  color: var(--black);
  padding: 14px 24px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------- marker devices */
/* Hand-drawn strike-through. Use on any span: <s class="strike">jargon</s> */
.strike, s.strike {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.strike::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  top: 50%;
  height: 0.34em;
  margin-top: -0.17em;
  background: var(--strike) center / 100% 100% no-repeat;
  pointer-events: none;
  transform-origin: left center;
}
.strike--draw::after { transform: scaleX(0); }
.strike--draw.is-struck::after { transform: scaleX(1); transition: transform 0.42s var(--snap); }

/* Orange marker highlight behind a word. */
.mark {
  position: relative;
  display: inline-block;
  color: var(--black);
  padding: 0 0.12em;
  margin: 0 -0.06em;
  isolation: isolate;
}
.mark::before {
  content: "";
  position: absolute;
  inset: 0.08em -0.05em 0.02em -0.05em;
  background: var(--orange);
  transform: skew(-6deg, -1deg);
  z-index: -1;
}
.section--dark .mark, .hero .mark, .section--quote .mark { color: var(--black); }

/* Hollow / outlined display type. */
.outline {
  color: transparent;
  -webkit-text-stroke: 2px currentColor;
  paint-order: stroke fill;
}
.outline--ink { -webkit-text-stroke-color: var(--ink); }
.outline--white { -webkit-text-stroke-color: var(--white); }
.outline--orange { -webkit-text-stroke-color: var(--orange); }

/* Hand-written margin note. */
.note {
  font-family: var(--font-note);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--orange);
  text-transform: none;
  letter-spacing: 0;
  transform: rotate(-3deg);
  display: inline-block;
}
.note--arrow::before { content: "\2190\00a0"; }

/* Hazard tape divider — drop <div class="tape"></div> between sections. */
.tape {
  height: 14px;
  background: var(--hazard);
  background-size: 40px 40px;
}
.tape--thin { height: 8px; }

/* ------------------------------------------------------------- typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.42em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.04em;
}

h2, .section__title {
  font-size: clamp(32px, 4.8vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(21px, 2.2vw, 32px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 800;
}

h4 {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  font-weight: 800;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); font-weight: 700; }

/* Eyebrow = a little orange stamp. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--orange);
  padding: 9px 12px 8px;
  margin: 0 0 26px;
  transform: rotate(-1.5deg);
  transform-origin: left center;
  box-shadow: 3px 3px 0 var(--ink);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--ink);
  flex: 0 0 auto;
}
.section--dark .eyebrow, .hero .eyebrow, .section--quote .eyebrow { box-shadow: 3px 3px 0 var(--white); }

.section__title { margin-bottom: 0.5em; }
.section__intro { max-width: 62ch; font-size: 18px; }

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

.section {
  position: relative;
  padding-block: var(--section-y);
  background: var(--white);
}
.section--alt { background: var(--grey-light); }
.section--dark {
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--dark strong { color: var(--white); }
.section--dark a { color: var(--white); }
.section--dark a:hover { color: var(--black); background: var(--orange); }
.section--quote {
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  padding-block: clamp(80px, 10vw, 160px);
  overflow: hidden;
}

/* Section counter down the left edge — "01", "02"… on wide screens. */
main { counter-reset: section; }
main > .section { counter-increment: section; }
@media (min-width: 1500px) {
  main > .section::before {
    content: counter(section, decimal-leading-zero);
    position: absolute;
    left: 28px;
    top: var(--section-y);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--muted);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
  main > .section::after {
    content: "";
    position: absolute;
    left: 34px;
    top: calc(var(--section-y) + 44px);
    bottom: var(--section-y);
    width: 2px;
    background: var(--orange);
    opacity: 0.35;
  }
  main > .section--dark::before, main > .section--quote::before { color: rgba(255, 255, 255, 0.45); }
  main > .hero::before, main > .hero::after { content: none; }
}

/* Reveal on scroll — JS adds .js-reveal to <html>, then .is-in per block.
   Without JS everything is simply visible. */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal .section > .wrap {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .js-reveal .section > .wrap.is-in { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 4px;
  background: var(--hazard);
  background-size: 40px 40px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--snap);
}
.site-header.is-scrolled::after { transform: scaleX(1); }

.site-header__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
  transition: padding 0.3s var(--ease);
}
.site-header.is-scrolled .site-header__inner { padding-block: 10px; }

.site-header__logo {
  display: block;
  flex: 0 0 auto;
  width: 90px;
  height: 65px;
  background: var(--logo) left center / contain no-repeat;
  text-decoration: none;
  transition: opacity 0.2s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease);
}
.site-header.is-scrolled .site-header__logo { width: 72px; height: 52px; }
.site-header__logo:hover { opacity: 0.78; background-color: transparent; }
.site-header__logo img { display: none; }
.site-header__logo span {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.nav { margin-left: auto; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item { position: relative; }

.nav__item > a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding: 14px 14px;
  transition: color 0.18s var(--ease);
  background: none;
}
.nav__item > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 3px;
  background: var(--strike) center / 100% 100% no-repeat;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--snap);
}
.nav__item > a:hover { color: var(--white); background: none; }
.nav__item > a:hover::after { transform: scaleX(1); }
.nav__item.is-active > a { color: var(--white); }
.nav__item.is-active > a::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
  padding: 10px 14px;
  cursor: pointer;
}

.nav__sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow-orange);
  list-style: none;
  margin: 8px 0 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.nav__item--has-sub:hover > .nav__sub,
.nav__item--has-sub:focus-within > .nav__sub,
.nav__item--has-sub.is-open > .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav__sub a {
  display: block;
  padding: 11px 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: background 0.16s var(--ease), border-color 0.16s var(--ease);
}
.nav__sub a:hover {
  background: var(--orange-soft);
  border-left-color: var(--orange);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 0 auto;
}
.site-header__phone {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  text-decoration: none;
  white-space: nowrap;
}
.site-header__phone { display: inline-flex; align-items: center; gap: 8px; }
.site-header__phone-icon { width: 18px; height: 18px; fill: var(--orange); flex: 0 0 auto; }
.site-header__phone:hover { color: var(--orange); background: none; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 3px;
  width: 26px;
  background: var(--white);
  transition: transform 0.26s var(--ease), opacity 0.2s var(--ease), background 0.2s;
}
.burger[aria-expanded="true"] span { background: var(--orange); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ----------------------------------------------------------------- buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  padding: 19px 30px;
  border: var(--border);
  border-radius: 0;
  box-shadow: var(--shadow);
  cursor: pointer;
  margin-top: 38px;
  transition: transform 0.16s var(--snap), box-shadow 0.16s var(--snap),
              background 0.2s var(--ease), color 0.2s var(--ease);
}
.btn::after {
  content: "\2192";
  font-size: 16px;
  transition: transform 0.26s var(--ease);
}
.btn:hover, .btn:focus-visible {
  background: var(--black);
  color: var(--white);
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--orange);
  text-decoration: none;
}
.btn:active { transform: translate(6px, 6px); box-shadow: 0 0 0 var(--orange); }
.btn:hover::after { transform: translateX(5px); }

.btn--sm {
  padding: 11px 18px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  margin-top: 0;
  box-shadow: 4px 4px 0 var(--white);
}
.btn--sm::after { display: none; }
.btn--sm:hover { box-shadow: 2px 2px 0 var(--orange); transform: translate(2px, 2px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.section--dark .btn--ghost, .hero .btn--ghost { color: var(--white); border-color: var(--white); box-shadow: var(--shadow-orange); }

.section--dark .btn, .section--quote .btn, .hero .btn { box-shadow: 6px 6px 0 var(--white); border-color: var(--orange); }
.section--dark .btn:hover, .section--quote .btn:hover, .hero .btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 3px 3px 0 var(--orange);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 3px solid var(--orange);
  padding-bottom: 4px;
}
.link-arrow::after { content: "\2192"; transition: transform 0.24s var(--ease); }
.link-arrow:hover { background: none; }
.link-arrow:hover::after { transform: translateX(5px); }

/* -------------------------------------------------------------------- hero */
.hero {
  position: relative;
  background: var(--black);
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.42) 46%, rgba(0, 0, 0, 0.15) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background: var(--hazard);
  background-size: 40px 40px;
  z-index: 1;
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(92px, 14vw, 168px) var(--gutter) clamp(60px, 7vw, 100px);
}
.hero h1 { color: var(--white); max-width: 15ch; margin-bottom: 0; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55); }
.hero .eyebrow { margin-bottom: 30px; }
.hero__tagline {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  max-width: 50ch;
  margin: 26px 0 0;
}
.hero .btn { margin-top: 40px; }

/* Home hero: the strike-through stage. Sized to fill the viewport under
   the header with no scroll; type and photo scale with viewport height. */
.hero--home {
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  align-items: center;
  background:
    radial-gradient(60% 70% at 80% 40%, rgba(254, 110, 16, 0.16), transparent 70%),
    var(--black);
}
.hero--home::after { content: none; }
.hero--home .hero__bg { display: none; }
.hero--home .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding-top: clamp(24px, 4vh, 64px);
  padding-bottom: clamp(36px, 5vh, 72px);
}
.hero--home h1 { max-width: none; font-size: clamp(36px, min(5.2vw, 8.2vh), 84px); }
.hero--home .breadcrumbs { margin-bottom: clamp(12px, 2vh, 32px); }
.hero--home .eyebrow { margin-bottom: clamp(12px, 2.2vh, 30px); }
.hero--home .strike-stage { font-size: clamp(18px, min(2.2vw, 3.2vh), 32px); margin-bottom: clamp(10px, 1.8vh, 22px); }
.hero--home .hero__tagline { margin-top: clamp(14px, 2.2vh, 26px); font-size: clamp(16px, min(1.5vw, 2.1vh), 20px); }
.hero--home .hero__ctas { margin-top: clamp(20px, 3.2vh, 40px); }

/* Giant background wordmark. */
.hero__ghost {
  position: absolute;
  right: -0.06em;
  top: 0.04em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(160px, 30vw, 460px);
  line-height: 0.8;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.09);
  pointer-events: none;
  user-select: none;
  z-index: -1;
  white-space: nowrap;
}

/* The rotating cliché line. */
.strike-stage {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 22px;
  min-height: 1.3em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.4em;
}
.strike-stage__label {
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
}
.strike-stage__word {
  position: relative;
  color: var(--white);
  display: inline-block;
}
.strike-stage__word.is-in { animation: word-in 0.32s var(--snap) both; }
.strike-stage__word.is-out { animation: word-out 0.3s var(--snap) both; }
@keyframes word-in  { from { opacity: 0; transform: translateY(0.4em); } to { opacity: 1; transform: none; } }
@keyframes word-out { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(-0.4em); } }

/* Static fallback list (no JS / reduced motion): every cliché struck. */
.strike-stage--static .strike-stage__word { margin-right: 0.35em; color: rgba(255, 255, 255, 0.7); }

.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 22px 28px; margin-top: 40px; }
.hero__ctas .btn { margin-top: 0; }
.hero__ctas .note { color: var(--orange); }

/* Tilted photo card. */
.hero__card {
  position: relative;
  margin: 0;
  justify-self: end;
  width: min(100%, 520px, 54vh);
  aspect-ratio: 4 / 5;
  transform: rotate(3deg);
  transition: transform 0.6s var(--ease);
}
.hero__card:hover { transform: rotate(1deg) scale(1.01); }
.hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(16px, 16px) rotate(-2deg);
  background: var(--orange);
  z-index: -1;
}
.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 22% 60%;
  display: block;
  border: 3px solid var(--white);
  filter: contrast(1.05);
}
.hero__card .tape-strip {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 150px;
  height: 30px;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--hazard);
  background-size: 40px 40px;
  opacity: 0.95;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.hero__card figcaption {
  position: absolute;
  left: -26px;
  bottom: 34px;
  background: var(--white);
  color: var(--black);
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: var(--border);
  box-shadow: var(--shadow-orange);
  transform: rotate(-4deg);
}
.hero__card figcaption span { display: block; font-family: var(--font-ui); font-weight: 500; font-size: 11.5px; letter-spacing: 0.1em; color: var(--body); margin-top: 3px; }

.breadcrumbs { margin-bottom: 32px; }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.breadcrumbs li + li::before { content: "/"; color: rgba(255, 255, 255, 0.3); margin-right: 10px; }
.breadcrumbs a { color: rgba(255, 255, 255, 0.6); text-decoration: none; background: none; }
.breadcrumbs a:hover { color: var(--white); background: none; }
.breadcrumbs span { color: var(--orange); }

/* ------------------------------------------------------------- chat dialog */
.chat-dialog {
  border: 0;
  padding: 0;
  margin: auto;
  width: min(92vw, 720px);
  max-height: calc(100vh - 40px);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  overflow: visible;
}
.chat-dialog::backdrop { background: rgba(0, 0, 0, 0.78); backdrop-filter: blur(3px); }
.chat-dialog[open] { animation: dialog-in 0.32s var(--snap) both; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(24px) rotate(-1deg); } to { opacity: 1; transform: none; } }
.chat-dialog__panel {
  position: relative;
  background: var(--black);
  border: 3px solid var(--orange);
  box-shadow: 10px 10px 0 var(--orange);
  padding: clamp(28px, 4vw, 48px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.chat-dialog__panel::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 140px;
  height: 26px;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--hazard);
  background-size: 40px 40px;
}
.chat-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--black);
  border: 2px solid var(--black);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.16s var(--snap), background 0.2s;
}
.chat-dialog__close:hover { background: var(--white); transform: rotate(90deg); }
.chat-dialog__title {
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 0.3em;
}
.chat-dialog__intro { max-width: 52ch; }
.chat-dialog .eyebrow { box-shadow: 3px 3px 0 var(--white); }
.chat-dialog .form { margin-top: 28px; }
.chat-dialog .form__row { margin-bottom: 16px; }
.chat-dialog .form input, .chat-dialog .form select, .chat-dialog .form textarea { padding: 13px 15px; }
.chat-dialog .form textarea { min-height: 80px; }
.chat-dialog .btn { margin-top: 10px; box-shadow: 6px 6px 0 var(--white); border-color: var(--orange); }
.chat-dialog .btn:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.chat-dialog .form__note a { color: var(--orange); }
body.has-dialog { overflow: hidden; }
@media (max-width: 640px) {
  /* Compact bottom sheet: everything fits without scrolling on a phone. */
  .chat-dialog { width: 100vw; max-width: 100vw; max-height: 100dvh; margin: auto 0 0; }
  .chat-dialog[open] { animation-name: dialog-up; }
  @keyframes dialog-up { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
  .chat-dialog__panel {
    box-shadow: none;
    border-width: 3px 0 0;
    max-height: 100dvh;
    padding: 18px 16px calc(14px + env(safe-area-inset-bottom));
    overflow-y: auto;
  }
  .chat-dialog__panel::before { display: none; }
  .chat-dialog__close { top: 8px; right: 8px; width: 38px; height: 38px; font-size: 24px; }
  .chat-dialog .eyebrow, .chat-dialog__intro, .chat-dialog .form__note { display: none; }
  .chat-dialog__title { font-size: 26px; margin: 0 48px 0 0; }
  .chat-dialog__title .note { font-size: 17px; }
  .chat-dialog .form { margin-top: 12px; }
  .chat-dialog .form-grid { grid-template-columns: 1fr 1fr; gap: 0 10px; }
  .chat-dialog .form__row { margin-bottom: 8px; }
  .chat-dialog .form label { font-size: 9.5px; letter-spacing: 0.12em; margin-bottom: 4px; }
  .chat-dialog .form input, .chat-dialog .form select { padding: 9px 11px; font-size: 15px; }
  .chat-dialog .form select { background-position: calc(100% - 14px) 18px, calc(100% - 8px) 18px; }
  .chat-dialog .form textarea { min-height: 58px; padding: 9px 11px; font-size: 15px; rows: 2; }
  .chat-dialog .btn { margin-top: 4px; width: 100%; justify-content: center; padding: 13px 20px; box-shadow: 4px 4px 0 var(--white); }
  .chat-dialog .form__status { margin-top: 8px; font-size: 13px; min-height: 0; }
}

/* ------------------------------------------------------ reviews hero notes */
/* Four real reviews fanned in a pile on the right of the hero. */
.hero--reviews { min-height: min(88vh, 860px); }
.hero--reviews .hero__bg { opacity: 0.16; }
.hero--reviews::after { background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.55) 100%); }
.hero--reviews .hero__inner { position: relative; z-index: 2; }
.hero--reviews .hero__inner > * { max-width: 52%; }
.hero--reviews h1 { max-width: 12ch; }
.hero__notes {
  position: absolute;
  z-index: 1;
  right: max(var(--gutter), calc((100% - var(--wrap)) / 2 + var(--gutter)));
  top: 50%;
  width: min(44%, 560px);
  height: 0;
  pointer-events: none;
}
.hero__note {
  position: absolute;
  right: 0;
  width: min(100%, 420px);
  margin: 0;
  padding: 26px 26px 20px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--orange);
  color: var(--body);
  transform: translateY(-50%) translate(var(--x, 0), var(--y, 0)) rotate(var(--r, -4deg));
  transform-origin: center;
  pointer-events: auto;
  transition: transform 0.35s var(--snap), box-shadow 0.35s var(--snap);
}
.hero__note:hover { transform: translateY(-50%) translate(var(--x, 0), var(--y, 0)) rotate(0) scale(1.04); box-shadow: 12px 12px 0 var(--orange); z-index: 10; }
.hero__note::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 110px;
  height: 24px;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--hazard);
  background-size: 40px 40px;
}
.hero__note-stars { display: block; color: var(--orange); letter-spacing: 3px; font-size: 14px; margin-bottom: 10px; }
.hero__note p { font-size: 15.5px; line-height: 1.55; margin: 0 0 14px; color: var(--ink); }
.hero__note figcaption {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 2px solid var(--ink);
  padding-top: 10px;
}
.hero__note figcaption span { font-family: var(--font-ui); font-weight: 500; font-size: 11.5px; letter-spacing: 0.06em; color: var(--muted); text-transform: none; margin-left: 8px; }
/* the pile: back to front */
.hero__note:nth-child(1) { --x: -130px; --y: -200px; --r: -6deg; z-index: 1; }
.hero__note:nth-child(2) { --x: 20px;   --y: -80px;  --r: 3deg;  z-index: 2; }
.hero__note:nth-child(3) { --x: -110px; --y: 50px;   --r: -3deg; z-index: 3; }
.hero__note:nth-child(4) { --x: 30px;   --y: 175px;  --r: 4deg;  z-index: 4; }
@media (max-width: 1080px) {
  .hero--reviews .hero__inner > * { max-width: 58%; }
  .hero__notes { width: 40%; }
  .hero__note { width: min(100%, 320px); padding: 20px 20px 16px; }
  .hero__note p { font-size: 14px; }
  .hero__note:nth-child(1) { --x: -60px; --y: -180px; }
  .hero__note:nth-child(3) { --x: -50px; }
}
@media (max-width: 760px) {
  .hero--reviews { min-height: 0; flex-direction: column; align-items: stretch; }
  .hero--reviews .hero__inner > * { max-width: none; }
  .hero--reviews .hero__inner { order: 1; }
  .hero__notes {
    position: relative;
    right: auto; top: auto;
    width: 100%;
    height: auto;
    z-index: 2;
    order: 2;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--gutter) 56px;
    display: grid;
    gap: 22px;
  }
  .hero__note { position: relative; right: auto; width: 100%; transform: rotate(var(--r)); --x: 0; --y: 0; }
  .hero__note:hover { transform: rotate(0); }
  .hero__note:nth-child(1) { --r: -2deg; }
  .hero__note:nth-child(2) { --r: 1.5deg; }
  .hero__note:nth-child(3), .hero__note:nth-child(4) { display: none; }
}

/* ------------------------------------------------------------------ ticker */
.ticker {
  background: var(--orange);
  color: var(--black);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  overflow: hidden;
  padding: 14px 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(14px, 1.3vw, 18px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}
.ticker--dark { background: var(--black); color: var(--white); border-color: var(--orange); }
.ticker__track {
  display: inline-flex;
  gap: 0;
  animation: ticker 42s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track > span { display: inline-flex; align-items: center; padding: 0 28px; }
.ticker__track > span::after { content: ""; width: 10px; height: 10px; background: currentColor; margin-left: 56px; transform: rotate(45deg); }
.ticker__track s { text-decoration: none; position: relative; margin-right: 14px; opacity: 0.8; }
.ticker__track s::after {
  content: ""; position: absolute; left: -2px; right: -2px; top: 50%; height: 0.32em; margin-top: -0.16em;
  background: var(--strike) center / 100% 100% no-repeat;
  filter: brightness(0);
}
.ticker--dark .ticker__track s::after { filter: none; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------------- split */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5.5vw, 88px);
  align-items: center;
}
.split__media {
  position: relative;
  overflow: visible;
}
.split__media img {
  width: 100%;
  display: block;
  object-fit: cover;
  border: var(--border);
  box-shadow: 10px 10px 0 var(--orange);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.split__media:hover img { transform: translate(-4px, -4px); box-shadow: 14px 14px 0 var(--orange); }
.section--dark .split__media img { border-color: var(--white); }

/* Cut-out PNG (no frame) sitting on a tilted orange block. */
.split__media--cutout { padding: 8% 4% 0; }
.split__media--cutout::before {
  content: "";
  position: absolute;
  inset: 12% 0 6%;
  background: var(--orange);
  transform: rotate(-3deg);
  z-index: 0;
}
.split__media--cutout::after {
  content: "";
  position: absolute;
  inset: 16% 4% 2%;
  border: var(--border);
  transform: rotate(2deg);
  z-index: 0;
}
.split__media--cutout img { position: relative; z-index: 1; border: 0; box-shadow: none; }
.split__media--cutout:hover img { transform: none; box-shadow: none; }
/* Long-copy splits: media stays in view while you read. */
.split--sticky { align-items: start; }
@media (min-width: 981px) { .split--sticky .split__media { position: sticky; top: 120px; } }

/* ------------------------------------------------------------------- lists */
.tick-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.tick-list li {
  position: relative;
  padding: 16px 0 16px 44px;
  border-top: 2px dashed var(--hairline-strong);
}
.tick-list li:last-child { border-bottom: 2px dashed var(--hairline-strong); }
.section--dark .tick-list li { border-color: var(--hairline-dark); }
.tick-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.25em;
  width: 22px;
  height: 22px;
  background: var(--orange);
  border: 2px solid var(--ink);
}
.tick-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: calc(1.25em + 5px);
  width: 12px;
  height: 12px;
  background: var(--ink);
  clip-path: polygon(14% 44%, 0 60%, 39% 100%, 100% 22%, 84% 8%, 39% 68%);
}

/* ------------------------------------------------------------------ versus */
/* "Typical coach vs Rob" comparison — the concept in one module. */
.versus {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: 52px;
  border: var(--border);
  box-shadow: var(--shadow-orange);
  background: var(--white);
}
.versus__col { padding: 34px clamp(22px, 3vw, 44px) 38px; }
.versus__col--them { background: var(--grey-light); border-right: var(--border); }
.versus__col--rob { background: var(--white); }
.versus__head {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.versus__head small {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.versus__col--rob .versus__head { color: var(--orange); border-bottom-color: var(--orange); }
.versus ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.versus li {
  position: relative;
  padding: 15px 0 15px 40px;
  border-top: 1px solid var(--hairline-strong);
  font-size: 16px;
  line-height: 1.55;
}
.versus li:first-child { border-top: 0; }
.versus__col--them li { color: var(--muted); }
.versus__col--them li::before {
  content: "\2715";
  position: absolute;
  left: 4px;
  top: 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  color: var(--ink);
  opacity: 0.6;
}
.versus__col--them li span {
  position: relative;
  display: inline;
  background: var(--strike) center / 100% 0.36em no-repeat;
  background-position: center 54%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.versus__col--rob li { color: var(--ink); font-weight: 500; }
.versus__col--rob li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 20px;
  height: 20px;
  background: var(--orange);
  border: 2px solid var(--ink);
}
.versus__col--rob li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 21px;
  width: 12px;
  height: 12px;
  background: var(--ink);
  clip-path: polygon(14% 44%, 0 60%, 39% 100%, 100% 22%, 84% 8%, 39% 68%);
}
.versus__stamp {
  position: absolute;
  right: 8px;
  top: -40px;
  font-family: var(--font-note);
  font-size: 26px;
  font-weight: 700;
  color: var(--orange);
  transform: rotate(6deg);
}
.versus { position: relative; }

/* ------------------------------------------------------------------- cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.card {
  position: relative;
  background: var(--white);
  padding: 38px 32px 36px;
  border: var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--snap), box-shadow 0.2s var(--snap);
}
.card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--orange); }
.card::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: 44px;
  height: 10px;
  background: var(--orange);
}
.card h3, .card h4 { font-size: clamp(18px, 1.4vw, 22px); margin-bottom: 0.55em; }
.card h3 a, .card h4 a { text-decoration: none; color: inherit; background: none; }
.card:hover h3 a, .card:hover h4 a { color: var(--orange); }
.card p { font-size: 15.5px; line-height: 1.66; margin: 0; }
.section--alt .card { box-shadow: var(--shadow); }

/* --------------------------------------------------------------- icon grid */
/* Stamp tiles: bordered, hard shadow, numbered. */
.icon-grid {
  list-style: none;
  margin: 52px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 26px;
  counter-reset: tile;
}
.icon-grid li {
  counter-increment: tile;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 22px;
  padding: 30px 26px 28px;
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--snap), box-shadow 0.2s var(--snap);
}
.icon-grid li:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--orange); }
.icon-grid li::before {
  content: counter(tile, decimal-leading-zero);
  position: absolute;
  right: 18px;
  top: 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--hairline-strong);
  transition: -webkit-text-stroke-color 0.2s;
}
.icon-grid li:hover::before { -webkit-text-stroke-color: var(--orange); }
.icon-grid img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform 0.34s var(--ease);
}
.icon-grid li:hover img { transform: rotate(-6deg); }
.icon-grid span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 19ch;
}
.section--dark .icon-grid li { background: var(--black); border-color: var(--white); box-shadow: var(--shadow-orange); }
.icon-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.icon-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.section--dark .icon-grid span { color: var(--white); }

/* ----------------------------------------------------------------- pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px 30px;
  margin-top: 64px;
  counter-reset: pillar;
}
.pillar { counter-increment: pillar; position: relative; }
.pillar a { display: block; color: inherit; text-decoration: none; background: none; }
.pillar a:hover { background: none; }
.pillar img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--grey-light);
  border: var(--border);
  filter: grayscale(1) contrast(1.1);
  transition: filter 0.4s var(--ease), transform 0.3s var(--snap), box-shadow 0.3s var(--snap);
}
.pillar a:hover img { filter: none; transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--orange); }
.pillar a::before {
  content: counter(pillar, decimal-leading-zero);
  position: absolute;
  left: -6px;
  top: -22px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--orange);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  transition: transform 0.3s var(--snap);
}
.pillar a:hover::before { transform: rotate(-8deg) scale(1.08); }
.pillar h3 {
  margin: 22px 0 10px;
  font-size: clamp(19px, 1.8vw, 26px);
  transition: color 0.24s var(--ease);
}
.pillar h3::after {
  content: "\2192";
  display: inline-block;
  margin-left: 10px;
  color: var(--orange);
  transition: transform 0.24s var(--ease);
}
.pillar a:hover h3 { color: var(--orange); }
.pillar a:hover h3::after { transform: translateX(6px); }
.pillar p { font-size: 15.5px; line-height: 1.62; }

/* -------------------------------------------------------------- logo strip */
/* One row, N logos visible, steps along one logo at a time (JS). */
.section--logos { padding-block: clamp(50px, 6vw, 88px); }
.logo-strip {
  --logos-visible: 6;
  list-style: none;
  margin: 42px 0 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: var(--border);
  background: var(--white);
  box-shadow: var(--shadow-orange);
}
.logo-strip li {
  flex: 0 0 calc(100% / var(--logos-visible));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 22px;
  min-height: 108px;
  border-right: 1px solid var(--hairline);
  transition: background 0.2s var(--ease);
}
.logo-strip li:hover { background: var(--orange-soft); }
.logo-strip.is-sliding li { transition: transform 0.6s var(--snap), background 0.2s var(--ease); }
.logo-strip img {
  width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.logo-strip li:hover img { filter: none; opacity: 1; transform: scale(1.06); }
@media (max-width: 1080px) { .logo-strip { --logos-visible: 4; } }
@media (max-width: 640px)  { .logo-strip { --logos-visible: 2; } }

/* ------------------------------------------------------ trust grid / receipt */
.trust-grid {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 0;
  border: 2px solid var(--white);
}
.trust-grid li {
  padding: 34px 28px 32px;
  border-right: 2px dashed rgba(255, 255, 255, 0.28);
  position: relative;
  transition: background 0.25s var(--ease);
}
.trust-grid li:last-child { border-right: 0; }
.trust-grid li:hover { background: rgba(254, 110, 16, 0.08); }
.trust-grid small {
  display: block;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.trust-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(56px, 6.4vw, 96px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.05em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s var(--ease);
}
.trust-grid li:hover strong, .trust-grid li.is-lit strong { color: var(--orange); }
.trust-grid span {
  display: block;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

/* Receipt framing on the dark stats section. */
.receipt-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.receipt-meta {
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  line-height: 1.8;
}
.receipt-meta b { color: var(--orange); font-weight: 500; }

/* ----------------------------------------------------------------- reviews */
/* Sticky notes: slight rotation, tape at top, straightens on hover. */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 36px 30px;
  margin-top: 60px;
  padding-top: 10px;
  align-items: start;
}
.review {
  position: relative;
  margin: 0;
  background: var(--white);
  padding: 40px 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: var(--border);
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
  transition: transform 0.3s var(--snap), box-shadow 0.3s var(--snap);
}
.review:nth-child(2n) { transform: rotate(1deg); }
.review:nth-child(3n) { transform: rotate(-0.6deg); }
.review:hover { transform: rotate(0) translate(-3px, -3px); box-shadow: 9px 9px 0 var(--orange); z-index: 2; }
.review::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 120px;
  height: 26px;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--hazard);
  background-size: 40px 40px;
  opacity: 0.9;
}
.review::after {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 22px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 96px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.22;
  pointer-events: none;
}
.review__stars { color: var(--orange); letter-spacing: 4px; font-size: 15px; }
.review blockquote { margin: 0; }
.review blockquote p { font-size: 16px; line-height: 1.64; color: var(--body); }
.review figcaption {
  margin-top: auto;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.review figcaption span {
  display: block;
  margin-top: 3px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: none;
}
.section--alt .review { background: var(--white); }

.reviews-widget { margin-top: 48px; min-height: 120px; }
.section--reviews-main { padding-top: clamp(56px, 7vw, 100px); }
.instagram-feed { margin-top: 44px; min-height: 160px; }
.section--reviews .section__title { margin-bottom: 0.2em; }
.reviews-widget .ti-widget { font-family: var(--font-ui); }

.pull-quote { margin: 0; text-align: center; position: relative; }
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 70px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--white);
  text-wrap: balance;
}
.pull-quote cite {
  display: inline-block;
  margin-top: 34px;
  font-family: var(--font-note);
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--orange);
  transform: rotate(-2deg);
}
.section--quote .ghost {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(120px, 26vw, 400px);
  line-height: 1;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px rgba(254, 110, 16, 0.22);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ------------------------------------------------------------------- video */
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--black);
  margin-bottom: 36px;
  border: var(--border);
  box-shadow: var(--shadow-orange);
}
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.split .video { margin-bottom: 0; }
.video--lite { cursor: pointer; }
.video__play { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: var(--black); cursor: pointer; overflow: hidden; }
.video__play img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.85; transition: opacity 0.3s var(--ease), transform 0.5s var(--ease); }
.video__play:hover img { opacity: 1; transform: scale(1.03); }
.video__btn { position: absolute; left: 50%; top: 50%; width: 92px; height: 64px; transform: translate(-50%, -50%); background: var(--orange); border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--white); transition: transform 0.16s var(--snap); }
.video__btn::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-40%, -50%); border-left: 26px solid var(--black); border-top: 16px solid transparent; border-bottom: 16px solid transparent; }
.video__play:hover .video__btn { transform: translate(-50%, -50%) scale(1.08); }
.video__play:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }

/* ------------------------------------------------------------------- steps */
.steps {
  list-style: none;
  margin: 50px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.steps li {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 32px 0;
  border-top: 2px dashed var(--hairline-strong);
}
.steps li:last-child { border-bottom: 2px dashed var(--hairline-strong); }
.section--dark .steps li { border-color: var(--hairline-dark); }
.steps__n {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--black);
  border: var(--border);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  transform: rotate(-4deg);
}
.section--dark .steps__n { box-shadow: 4px 4px 0 var(--white); border-color: var(--white); }
.steps h3, .steps h4 { font-size: clamp(18px, 1.6vw, 24px); margin-bottom: 10px; }
.steps p { font-size: 15.5px; line-height: 1.66; }

/* ---------------------------------------------------------------- timeline */
.timeline { display: grid; gap: 0; margin-top: 50px; }
.timeline__item {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  border-top: 2px dashed var(--hairline-strong);
  padding: 46px 0;
}
.timeline__item:last-child { border-bottom: 2px dashed var(--hairline-strong); }
.timeline__item img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  object-position: center;
  padding: 16px 18px;
  background: var(--white);
  border: var(--border);
  box-shadow: 5px 5px 0 var(--orange);
  filter: grayscale(1);
  opacity: 0.85;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}
.timeline__item:hover img { filter: none; opacity: 1; }
.timeline h3, .timeline h4 { margin-bottom: 14px; }
.timeline .eyebrow { margin-bottom: 12px; }
.timeline p { font-size: 15.5px; line-height: 1.66; }
.timeline .link-arrow { margin-top: 20px; }

/* ------------------------------------------------------------------- table */
.table-scroll {
  overflow-x: auto;
  margin-top: 44px;
  border: var(--border);
  box-shadow: var(--shadow-orange);
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  font-size: 15.5px;
  background: var(--white);
}
caption {
  caption-side: bottom;
  padding: 18px 22px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  text-align: left;
}
th, td {
  text-align: left;
  padding: 18px 24px;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
thead th {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
tbody th { color: var(--ink); font-weight: 700; }
tbody tr:hover td, tbody tr:hover th { background: var(--orange-soft); }

/* --------------------------------------------------------------------- FAQ */
.faq {
  border: var(--border);
  background: var(--white);
  margin-top: -2px;
  transition: box-shadow 0.2s var(--snap), transform 0.2s var(--snap);
  position: relative;
  counter-increment: faq;
}
.faq:first-of-type { margin-top: 44px; }
.wrap { counter-reset: faq; }
.faq[open] { box-shadow: var(--shadow-orange); z-index: 1; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 26px 68px 26px 74px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q" counter(faq);
  position: absolute;
  left: 22px;
  top: 26px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--orange);
}
.faq summary h3 {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.014em;
  text-transform: uppercase;
  margin: 0;
  transition: color 0.2s var(--ease);
}
.faq summary:hover h3 { color: var(--orange); }
.faq summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  background:
    linear-gradient(var(--ink), var(--ink)) center/16px 3px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center/3px 16px no-repeat,
    var(--orange);
  border: 2px solid var(--ink);
  transition: transform 0.3s var(--snap);
}
.faq[open] summary::after { transform: rotate(135deg); }
.faq__body { padding: 0 68px 30px 74px; font-size: 16px; line-height: 1.7; }

/* -------------------------------------------------------------------- form */
.form { margin-top: 44px; }
.form__row { margin-bottom: 22px; }
.form label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.form label span { color: var(--orange); }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 17px 18px;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  appearance: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: rgba(255, 255, 255, 0.32); }
.form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--orange) 50%),
    linear-gradient(135deg, var(--orange) 50%, transparent 50%);
  background-position: calc(100% - 20px) 26px, calc(100% - 13px) 26px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}
.form select option { background: #070707; color: var(--white); }
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 4px 4px 0 var(--orange);
  outline: none;
}
.form textarea { resize: vertical; min-height: 110px; }
.form__note { margin-top: 20px; font-size: 13px; color: rgba(255, 255, 255, 0.45); }
.form__status { margin-top: 20px; font-size: 15px; min-height: 1.3em; }
.form__status.is-error { color: #ff9d8f; }
.form__status.is-ok { color: var(--orange); }
.form button[type="submit"]:disabled { opacity: 0.55; cursor: wait; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 22px; }
.form-grid .form__row--full { grid-column: 1 / -1; }

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

/* ------------------------------------------------------------------ footer */
.site-footer {
  position: relative;
  background: var(--black);
  color: rgba(255, 255, 255, 0.56);
  padding-block: clamp(68px, 8vw, 116px) 40px;
  font-size: 15px;
  border-top: 10px solid transparent;
  border-image: var(--hazard) 10;
  overflow: hidden;
}
.site-footer::before {
  content: "NO BS.";
  position: absolute;
  right: -0.05em;
  bottom: -0.18em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(120px, 22vw, 340px);
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.site-footer .wrap { position: relative; }
.footer__top {
  display: grid;
  grid-template-columns: minmax(250px, 1.4fr) repeat(4, minmax(135px, 1fr));
  gap: 52px 34px;
}
.footer__brand > a {
  display: block;
  width: 164px;
  height: 119px;
  margin-bottom: 30px;
  background: var(--logo) left top / contain no-repeat;
  text-decoration: none;
}
.footer__brand > a:hover { opacity: 0.8; background-color: transparent; }
.footer__brand img { display: none; }
.footer__brand address { font-style: normal; line-height: 1.9; }
.footer__brand address a { color: rgba(255, 255, 255, 0.8); text-decoration: none; background: none; }
.footer__brand address a:hover { color: var(--orange); background: none; }
.footer__social {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
}
.footer__social a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease),
              transform 0.16s var(--snap), box-shadow 0.16s var(--snap);
}
.footer__social svg { width: 20px; height: 20px; fill: currentColor; display: block; }
.footer__social a:hover {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--white);
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.footer__col h3 {
  font-family: var(--font-ui);
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer__col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  text-decoration: none;
  background: none;
  transition: color 0.18s var(--ease), padding-left 0.18s var(--ease);
}
.footer__col a:hover { color: var(--white); padding-left: 6px; background: none; }

.footer__map { margin-top: 64px; }
.footer__map h3 {
  font-family: var(--font-ui);
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer__map iframe {
  width: 100%;
  height: 320px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  filter: grayscale(1) invert(0.92) contrast(0.86);
}

.footer__legal {
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.footer__legal p { margin: 0; }
.footer__legal a { color: rgba(255, 255, 255, 0.45); text-decoration: none; background: none; }
.footer__legal a:hover { color: var(--orange); background: none; }

/* -------------------------------------------------------------- mobile bar */
.mobile-bar { display: none; }
@media (max-width: 980px) {
  body { padding-bottom: 68px; }
  .mobile-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 95;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--black);
    border-top: 3px solid var(--orange);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  }
  .mobile-bar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--orange);
  }
  .mobile-bar__btn svg { width: 18px; height: 18px; fill: currentColor; }
  .mobile-bar__btn--call { color: var(--white); background: var(--black); }
  .mobile-bar__btn--chat { color: var(--black); background: var(--orange); }
  .mobile-bar__btn:hover { background: var(--white); color: var(--black); }
  /* Trustindex floating badge never shows on mobile (script isn't loaded there either) */
  .ti-widget-container, [class*="ti-floating"], [id^="ti-floating"] { display: none !important; }
  .chat-dialog__panel { max-height: calc(100vh - 24px); }
}

/* -------------------------------------------------------------- cursor dot */
.cursor {
  position: fixed;
  left: 0; top: 0;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-100px, -100px);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), margin 0.2s var(--ease), opacity 0.2s;
  opacity: 0;
}
.cursor.is-on { opacity: 1; }
.cursor.is-link { width: 44px; height: 44px; margin: -22px 0 0 -22px; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* -------------------------------------------------------------- responsive */
@media (max-width: 1300px) {
  .nav__item > a { font-size: 11.5px; padding-inline: 10px; letter-spacing: 0.07em; }
  .nav__item > a::after { left: 10px; right: 10px; }
  .site-header__phone { display: none; }
}

@media (max-width: 1080px) {
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 30px; }
  .timeline__item { grid-template-columns: 150px minmax(0, 1fr); gap: 30px; }
  .hero--home .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero__card { justify-self: start; width: min(100%, 420px); margin-top: 20px; }
  .hero__ghost { font-size: clamp(140px, 34vw, 300px); }
}

@media (max-width: 980px) {
  .burger { display: flex; }
  .site-header__actions { margin-left: auto; }
  .site-header__logo { width: 76px; height: 55px; }

  .nav {
    position: fixed;
    inset: 88px 0 0;
    background: var(--black);
    margin: 0;
    padding: 26px var(--gutter) 80px;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    visibility: hidden;
    border-top: 6px solid transparent;
    border-image: var(--hazard) 6;
  }
  .nav.is-open { transform: translateX(0); visibility: visible; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .nav__item > a {
    padding: 20px 0;
    font-size: 16px;
    letter-spacing: 0.06em;
    font-family: var(--font-display);
    font-weight: 800;
  }
  .nav__item > a::after { display: none; }
  .nav__toggle { display: block; position: absolute; right: 0; top: 10px; }
  .nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: 0;
    box-shadow: none;
    border-left: 3px solid var(--orange);
    padding: 0 0 16px 16px;
    margin: 0;
    min-width: 0;
    background: none;
  }
  .nav__item--has-sub.is-open > .nav__sub { display: block; }
  .nav__item--has-sub:hover > .nav__sub { display: none; }
  .nav__item--has-sub.is-open:hover > .nav__sub { display: block; }
  .nav__sub a { padding: 12px 0; border-left: 0; color: rgba(255, 255, 255, 0.75); }
  .nav__sub a:hover { padding-left: 6px; background: none; color: var(--white); }

  .icon-grid--3, .icon-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: minmax(0, 1fr); }
  .split--reverse .split__media { order: -1; }
  .versus { grid-template-columns: minmax(0, 1fr); }
  .versus__col--them { border-right: 0; border-bottom: var(--border); }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .hero--home { min-height: 0; }
  .hero__bg { opacity: 0.38; }
  .hero h1 { max-width: none; }
  .hero__card { transform: rotate(2deg); width: min(100%, 340px); }
  .hero__card figcaption { left: -8px; bottom: 18px; font-size: 11.5px; }
  .hero__ghost { display: none; }
  .strike-stage { font-size: 19px; }
  .cards, .reviews { grid-template-columns: minmax(0, 1fr); }
  .timeline__item { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .timeline__item img { max-width: 160px; }
  .footer__top { grid-template-columns: minmax(0, 1fr); }
  .footer__legal { flex-direction: column; gap: 8px; }
  .icon-grid, .icon-grid--3, .icon-grid--4 { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .icon-grid li { flex-direction: row; align-items: center; padding: 20px 22px; }
  .icon-grid li::before { font-size: 30px; top: 10px; right: 14px; }
  .icon-grid img { width: 50px; height: 50px; flex: 0 0 auto; }
  .steps li { gap: 20px; }
  .steps__n { width: 46px; height: 46px; font-size: 18px; }
  .btn { width: 100%; justify-content: center; text-align: center; }
  .btn--sm { width: auto; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .faq summary { padding: 22px 54px 22px 54px; }
  .faq summary::before { left: 14px; top: 22px; font-size: 13px; }
  .faq summary::after { right: 14px; }
  .faq__body { padding: 0 20px 26px 54px; }
  .review { transform: none; }
  .review::after { font-size: 64px; right: 16px; }
  .trust-grid { border: 0; }
  .trust-grid li { border-right: 0; border-bottom: 2px dashed rgba(255, 255, 255, 0.28); padding-inline: 0; }
  .trust-grid li:last-child { border-bottom: 0; }
  .receipt-meta { text-align: left; }
  .versus__stamp { display: none; }
  .site-footer::before { font-size: 120px; }
}

@media print {
  .site-header, .site-footer, .btn, .form, .video, .breadcrumbs, .ticker, .cursor, body::after { display: none !important; }
  body { color: #000; font-size: 11pt; background: #fff; }
  .section { padding-block: 18px; background: #fff !important; }
  a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
