@font-face {
  font-family: "Archivo Local";
  src: url("assets/fonts/archivo-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Plex Mono Local";
  src: url("assets/fonts/ibm-plex-mono-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Plex Mono Local";
  src: url("assets/fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #14372b;
  --ink-dark: #0b271e;
  --ink-soft: #49655c;
  --paper: #f3efe4;
  --sheet: #fffdf7;
  --paper-deep: #ded7c8;
  --amber: #f3aa17;
  --coral: #d75b45;
  --coral-text: #963d30;
  --mint: #b9d8c7;
  --rule: #bdb5a4;
  --radius: 6px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #dfe6e1;
  font-family: "Archivo Local", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
mark { color: inherit; background: var(--amber); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--coral-text);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--sheet);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header,
main,
.site-footer {
  width: 100%;
  margin-inline: 0;
}

.site-header {
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 10px 48px;
  background: var(--sheet);
  border-inline: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  text-decoration: none;
  font-size: 18px;
  font-weight: 790;
}
.brand img { width: 36px; height: 36px; }

.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}
.desktop-nav a:hover { text-decoration: underline; text-underline-offset: 5px; }

.header-cta {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--sheet);
  background: var(--ink);
  border: 1px solid var(--ink-dark);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
}

main { background: var(--paper); border-inline: 1px solid var(--ink); }

.hero {
  min-height: 655px;
  display: grid;
  align-items: stretch;
  border-bottom: 1px solid var(--ink);
}

.hero-direct { grid-template-columns: minmax(0, 1.3fr) minmax(380px, .7fr); }
.hero-centered { grid-template-columns: minmax(0, 1fr); min-height: 660px; }
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 64px 68px;
}
.hero-centered .hero-copy { align-items: center; padding-inline: 40px; text-align: center; }
.hero-centered h1 { max-width: 1320px; }
.hero-subtitle {
  max-width: 860px;
  margin: 34px 0 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 520;
}
.hero-centered .hero-actions { justify-content: center; }

#check-up,
#work,
#pricing,
#request { scroll-margin-top: 18px; }

.eyebrow,
.summary-label,
.case-number,
.price-label,
.case-media figcaption,
.direction-caption {
  font-family: "Plex Mono Local", monospace;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 500;
}
.eyebrow > span {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 9px;
  background: var(--amber);
  border: 1px solid var(--ink);
  vertical-align: -1px;
}

.hero h1 {
  max-width: 1200px;
  margin: 0;
  font-size: 104px;
  line-height: .95;
  font-weight: 790;
}
.hero h1 > span { display: block; }
.hero h1 mark {
  display: inline;
  padding-inline: .07em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (min-width: 701px) {
  .hero h1 mark {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    white-space: nowrap;
  }
}
.hero-lead {
  max-width: 780px;
  margin: 32px 0 0;
  font-size: 21px;
  line-height: 1.42;
  font-weight: 525;
}
.hero-start { max-width: 780px; margin: 12px 0 0; color: var(--ink-soft); font-size: 14px; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}
.hero-actions > p { margin: 0; }
.hero-actions strong,
.hero-actions span { display: block; }
.hero-actions strong { font-size: 15px; }
.hero-actions p span { color: var(--ink-soft); font-size: 13px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 760;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.button-primary {
  color: var(--sheet);
  background: var(--ink);
  border: 1px solid var(--ink-dark);
  box-shadow: 5px 5px 0 var(--coral);
}
.button-primary:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--coral); }
.button-light { color: var(--ink); background: var(--sheet); border: 1px solid var(--sheet); }

.hero-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  color: var(--sheet);
  background: var(--ink);
  border-left: 1px solid var(--ink-dark);
}
.summary-label { margin: 0 0 24px; color: var(--mint); font-size: 10px; }
.hero-summary ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.28); }
.hero-summary li {
  min-height: 86px;
  display: grid;
  grid-template-columns: 34px 80px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.hero-summary li > span { color: var(--amber); font-family: "Plex Mono Local", monospace; font-size: 10px; }
.hero-summary strong { font-size: 18px; }
.hero-summary small { color: #d4dfda; font-size: 14px; line-height: 1.35; }
.summary-note { margin: 26px 0 0; color: var(--mint); font-size: 14px; }
.hero-offer-price { margin: 0 0 30px; }
.hero-offer-price span,
.hero-offer-price strong,
.hero-offer-price s { display: block; }
.hero-offer-price span { color: var(--mint); font-family: "Plex Mono Local", monospace; font-size: 9px; text-transform: uppercase; }
.hero-offer-price strong { margin: 4px 0; color: var(--amber); font-size: 72px; line-height: 1; }
.hero-offer-price s { color: #b7cbc2; font-size: 13px; }
.hero-offer dl { margin: 0; border-top: 1px solid rgba(255,255,255,.28); }
.hero-offer dl > div { display: grid; grid-template-columns: 78px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.28); }
.hero-offer dt { color: var(--amber); font-family: "Plex Mono Local", monospace; font-size: 9px; text-transform: uppercase; }
.hero-offer dd { margin: 0; color: #d4dfda; font-size: 14px; }

.logo-proof {
  min-height: 118px;
  background: var(--sheet);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}
.marquee {
  position: relative;
  min-height: 118px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}
.marquee::-webkit-scrollbar { display: none; }
.marquee:focus-visible { outline: 3px solid var(--coral); outline-offset: -3px; }
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: logo-scroll 38s steps(5, end) infinite;
}
.marquee:hover .marquee-track,
.marquee:focus .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }
.logo-item {
  flex: 0 0 auto;
  width: 270px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 22px 24px;
  border-right: 1px solid var(--paper-deep);
  filter: grayscale(1);
}
.logo-item img { display: block; width: auto; height: auto; object-fit: contain; }
.logo-business-leader img { width: 154px; }
.logo-huboo img { width: 185px; }
.logo-ahah img { width: 238px; }
.logo-beacon { gap: 12px; }
.logo-beacon .beacon-mark { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 4px; }
.beacon-wordmark { display: grid; gap: 1px; color: var(--ink); line-height: 1; text-align: left; white-space: nowrap; }
.beacon-wordmark strong { font-size: 22px; font-weight: 790; }
.beacon-wordmark small { font-family: "Plex Mono Local", monospace; font-size: 9px; font-weight: 600; letter-spacing: 0; text-transform: uppercase; }
.logo-abr { font-size: 17px; font-weight: 780; white-space: nowrap; }
.logo-abr img { width: 44px; height: 44px; flex: 0 0 auto; }

@media (min-width: 1200px) {
  .logo-item { width: calc(20vw - .4px); }
}

@keyframes logo-scroll { to { transform: translateX(-50%); } }

.pain-section,
.checkup-section,
.case-studies,
.pricing-section,
.request-section {
  padding: 94px 64px;
  border-bottom: 1px solid var(--ink);
}

.pain-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .7fr);
  gap: 100px;
  background: var(--sheet);
}
.section-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: 68px;
  line-height: 1;
  font-weight: 770;
}
.pain-copy { align-self: end; max-width: 620px; }
.pain-copy p { margin: 0 0 22px; font-size: 20px; line-height: 1.48; }
.pain-copy p:last-child { margin-bottom: 0; color: var(--ink-soft); }

.checkup-section { background: var(--paper); }
.compact-heading {
  display: grid;
  grid-template-columns: minmax(180px, .4fr) minmax(0, 1.2fr) minmax(260px, .55fr);
  align-items: end;
  gap: 38px;
  margin-bottom: 56px;
}
.compact-heading .eyebrow { margin: 0; align-self: start; }
.compact-heading h2 { font-size: 58px; }
.compact-heading > p:last-child { margin: 0; color: var(--ink-soft); font-size: 18px; }
.compact-heading-clean { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .55fr); }

.mechanism-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--ink);
}
.mechanism-proof article { min-width: 0; padding: 30px 30px 32px; }
.mechanism-proof article + article { border-left: 1px solid var(--rule); }
.mechanism-label {
  margin: 0 0 22px;
  color: var(--coral-text);
  font-family: "Plex Mono Local", monospace;
  font-size: 10px;
  text-transform: uppercase;
}
.mechanism-proof h3 { margin: 0 0 10px; font-size: 27px; line-height: 1.05; }
.mechanism-proof article > p:last-child { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.5; }
.case-studies { background: var(--sheet); }
.case-accordion { border: 1px solid var(--ink); }
.case-row { background: var(--sheet); }
.case-row + .case-row { border-top: 1px solid var(--ink); }
.case-row[open] { background: var(--paper); }
.case-summary {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 155px;
  align-items: center;
  gap: 34px;
  min-height: 142px;
  padding: 28px 32px;
  list-style: none;
  cursor: pointer;
}
.case-summary::-webkit-details-marker { display: none; }
.case-summary:focus-visible { outline: 3px solid var(--coral); outline-offset: -3px; }
.case-number { color: var(--coral-text); font-family: "Plex Mono Local", monospace; font-size: 11px; text-transform: uppercase; }
.case-title { max-width: 850px; font-size: 33px; font-weight: 750; line-height: 1.08; }
.case-action { display: flex; align-items: center; justify-content: flex-end; gap: 14px; color: var(--ink-soft); font-family: "Plex Mono Local", monospace; font-size: 11px; text-transform: uppercase; }
.case-action-close { display: none; }
.case-row[open] .case-action-open { display: none; }
.case-row[open] .case-action-close { display: inline; }
.case-action-icon { position: relative; width: 26px; height: 26px; flex: 0 0 26px; border: 1px solid var(--ink); border-radius: 50%; }
.case-action-icon::before,
.case-action-icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--ink); transform: translate(-50%, -50%); }
.case-action-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 160ms ease; }
.case-row[open] .case-action-icon::after { transform: translate(-50%, -50%) rotate(0); }
.case-panel { padding: 36px 32px 40px; border-top: 1px solid var(--ink); }
.case-panel-split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: 38px; }
.case-panel-text dl { max-width: 980px; margin-left: auto; }
.case-panel-story { display: grid; grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr); gap: 64px; }
.case-story-label { margin: 0 0 22px; color: var(--coral-text); font-family: "Plex Mono Local", monospace; font-size: 10px; text-transform: uppercase; }
.case-story-lead { max-width: 470px; margin: 0; font-size: 27px; font-weight: 680; line-height: 1.2; }
.case-story-visual { margin: 30px 0 0; border: 1px solid var(--ink); }
.case-story-visual img { display: block; width: 100%; height: auto; }
.case-story-visual figcaption { padding: 10px 12px; border-top: 1px solid var(--ink); font-family: "Plex Mono Local", monospace; font-size: 9px; text-transform: uppercase; }
.case-story-visual-logo { max-width: 220px; }
.case-story-copy { max-width: 820px; }
.case-story-copy section { padding: 0 0 24px; }
.case-story-copy section + section { padding-top: 24px; border-top: 1px solid var(--rule); }
.case-story-copy h3 { margin: 0 0 9px; font-family: "Plex Mono Local", monospace; font-size: 10px; font-weight: 500; text-transform: uppercase; }
.case-story-copy p { margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.58; }
.case-story-commercial { border-top-color: var(--ink) !important; }
.case-story-commercial p { color: var(--ink); font-size: 19px; }
.case-story-note { padding-top: 18px; border-top: 1px solid var(--rule); font-size: 13px !important; }
@media (min-width: 701px) {
  .case-story-copy { display: flex; height: 100%; flex-direction: column; }
  .case-story-copy .case-story-note { margin-top: auto; }
  .case-panel-beacon .case-story-copy { align-self: start; height: auto; }
  .case-panel-beacon .case-story-copy .case-story-note { margin-top: 0; }
}
.case-media { min-width: 0; margin: 0; background: var(--paper-deep); border: 1px solid var(--ink); }
.case-media img { display: block; width: 100%; height: 360px; object-fit: cover; object-position: center; }
.case-row:last-child .case-media img { object-position: top; }
.case-media figcaption { padding: 12px 14px; background: var(--sheet); border-top: 1px solid var(--ink); font-size: 10px; }
.case-panel dl { margin: 0; }
.case-panel dl > div { display: grid; grid-template-columns: 112px 1fr; gap: 24px; padding: 17px 0; border-top: 1px solid var(--rule); }
.case-panel dl > div:first-child { border-top-color: var(--ink); }
.case-panel dt { font-family: "Plex Mono Local", monospace; font-size: 10px; text-transform: uppercase; }
.case-panel dd { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.48; }

.pricing-section { background: var(--paper); }
.pricing-grid { display: grid; grid-template-columns: 1.08fr .96fr .96fr; border: 1px solid var(--ink); }
.price-card { min-width: 0; display: flex; flex-direction: column; padding: 38px; background: var(--sheet); }
.price-card + .price-card { border-left: 1px solid var(--ink); }
.price-primary { background: var(--amber); }
.price-label { margin: 0 0 22px; font-size: 11px; }
.price-card h3 { margin: 0; font-size: 27px; }
.price { margin: 28px 0 22px; }
.price strong { display: block; font-size: 58px; line-height: .95; }
.price span { display: block; margin-top: 7px; color: var(--ink-soft); font-size: 13px; }
.price-card > p:not(.price):not(.price-label):not(.founding):not(.small-print) { margin: 0 0 20px; font-size: 17px; }
.founding, .small-print { margin: auto 0 24px; padding-top: 18px; border-top: 1px solid rgba(20,55,43,.45); font-size: 12px; }
.price-card .button { width: 100%; }

.request-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(440px, .7fr);
  gap: 100px;
  color: var(--sheet);
  background: var(--ink);
}
.request-copy h2 { margin: 0; font-size: 68px; line-height: .98; }
.request-copy > p:last-child { max-width: 600px; margin: 26px 0 0; color: #cedbd5; font-size: 18px; }
.request-form { align-self: start; }
.request-form label { display: block; margin-bottom: 18px; }
.request-form label span { display: block; margin-bottom: 7px; color: #d9e4df; font-size: 13px; }
.request-form input,
.request-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink-dark);
  background: var(--sheet);
  border: 1px solid var(--sheet);
  border-radius: 3px;
}
.request-form textarea { resize: vertical; }
.request-form .button { width: 100%; margin-top: 4px; }
.form-status { min-height: 23px; margin: 12px 0 0; color: var(--amber); }
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.email-draft-panel {
  margin-top: 18px;
  padding: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--mint);
}
.email-draft-panel[hidden] { display: none; }
.email-draft-panel label { margin: 0 0 8px; font-size: 12px; font-weight: 700; }
.email-draft-panel textarea { min-height: 150px; border-color: var(--ink); }
.fallback-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.email-fallback-link,
.copy-button,
.retry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--sheet);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
}
.retry-button { color: var(--ink); background: var(--sheet); }
.copy-status { margin-left: 10px; font-size: 12px; }

.site-footer {
  padding: 64px 48px 40px;
  color: var(--sheet);
  background: var(--ink-dark);
  border-top: 5px solid var(--coral);
  border-inline: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.footer-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; }
.footer-top img { width: 46px; height: 46px; padding: 2px; background: var(--paper); }
.footer-top p { margin: 0; color: var(--amber); font-family: "Plex Mono Local", monospace; font-size: 11px; text-transform: uppercase; }
.footer-top nav { display: flex; gap: 22px; font-size: 12px; }
.footer-wordmark {
  margin: 94px 0 50px;
  color: var(--paper);
  font-size: 122px;
  line-height: .82;
  font-weight: 790;
  letter-spacing: 0;
  white-space: nowrap;
}
.footer-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 17px; border-top: 1px solid var(--mint); color: var(--mint); font-family: "Plex Mono Local", monospace; font-size: 10px; text-transform: uppercase; }
.footer-bottom span:nth-child(2) { text-align: center; }
.footer-bottom span:last-child { text-align: right; }

@media (min-width: 1440px) {
  .footer-wordmark { font-size: 130px; }
}

@media (min-width: 1600px) {
  .footer-wordmark { font-size: 146px; }
}

.privacy-main {
  background: var(--paper);
  border-inline: 1px solid var(--ink);
}
.privacy-hero {
  padding: 100px 64px 80px;
  background: var(--sheet);
  border-bottom: 1px solid var(--ink);
}
.privacy-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: 76px;
  line-height: .98;
  font-weight: 790;
}
.privacy-hero > p:last-child {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
}
.privacy-content { padding: 72px 64px 96px; }
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.privacy-grid article {
  min-width: 0;
  padding: 30px;
  background: var(--sheet);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.privacy-grid h2 { margin: 0 0 16px; font-size: 25px; }
.privacy-grid p { margin: 0 0 12px; color: var(--ink-soft); }
.privacy-grid p:last-child { margin-bottom: 0; }

/* Direction 01 */
.hero-proof { grid-template-columns: minmax(0, 1.08fr) minmax(500px, .92fr); }
.hero-proof-image { position: relative; min-width: 0; margin: 0; overflow: hidden; background: var(--paper-deep); border-left: 1px solid var(--ink); }
.hero-proof-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-proof-image figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 4px;
  padding: 16px;
  color: var(--ink);
  background: var(--sheet);
  border: 1px solid var(--ink);
  font-size: 13px;
}
.hero-proof-image figcaption span { color: var(--ink-soft); }
.direction-caption { margin: 0; padding: 14px 24px; color: var(--ink-soft); background: var(--paper); font-size: 9px; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; padding-inline: 28px; }
  .desktop-nav { display: none; }
  .hero h1 { font-size: 82px; }
  .section-heading h2 { font-size: 58px; }
  .compact-heading h2 { font-size: 52px; }
  .request-copy h2 { font-size: 58px; }
  .footer-wordmark { font-size: 90px; }
  .hero-direct, .hero-proof, .hero-centered { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { min-height: 565px; padding: 62px 44px 56px; }
  .hero-summary { border-top: 1px solid var(--ink); border-left: 0; }
  .hero-proof-image { min-height: 360px; border-top: 1px solid var(--ink); border-left: 0; }
  .pain-section { grid-template-columns: 1fr; gap: 44px; }
  .compact-heading { grid-template-columns: 180px 1fr; }
  .compact-heading > p:last-child { grid-column: 2; }
  .compact-heading-clean { grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr); }
  .compact-heading-clean > p:last-child { grid-column: auto; }
  .case-summary { grid-template-columns: 165px minmax(0, 1fr) 145px; gap: 24px; }
  .case-panel-split { grid-template-columns: 1fr; }
  .case-panel-story { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card:last-child { grid-column: 1 / -1; border-top: 1px solid var(--ink); border-left: 0; }
  .request-section { grid-template-columns: 1fr; gap: 55px; }
  .privacy-hero h1 { font-size: 64px; }
}

@media (max-width: 700px) {
  body { background: var(--paper); }
  .site-header {
    min-height: 60px;
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 8px 16px;
    border-inline: 0;
  }
  .brand { min-width: 0; min-height: 44px; gap: 8px; font-size: 15px; }
  .brand img { width: 32px; height: 32px; }
  .header-cta { min-height: 44px; padding: 0 12px; font-size: 12px; }
  main, .site-footer { border-inline: 0; }
  .hero-copy { min-height: 590px; justify-content: flex-start; padding: 48px 20px 42px; }
  .hero-centered { min-height: 520px; }
  .hero-centered .hero-copy { min-height: 520px; justify-content: center; padding: 38px 20px; }
  .eyebrow { margin-bottom: 18px; font-size: 10px; }
  .hero h1 { font-size: 32px; line-height: 1; }
  .hero h1 > span:first-child { font-size: 38px; line-height: 1; white-space: nowrap; }
  .hero-lead { margin-top: 27px; font-size: 18px; line-height: 1.43; }
  .hero-subtitle { margin-top: 24px; font-size: 17px; line-height: 1.4; }
  .hero-actions { display: grid; gap: 16px; margin-top: 26px; }
  .button { width: 100%; gap: 22px; }
  .hero-actions > p { display: flex; justify-content: space-between; gap: 14px; }
  .hero-actions p span { text-align: right; }
  .hero-summary { display: none; }
  .hero-summary li { min-height: 72px; grid-template-columns: 30px 70px 1fr; gap: 10px; }
  .hero-summary strong { font-size: 16px; }
  .hero-summary small { font-size: 12px; }
  .direction-page .hero-copy { min-height: 650px; }
  .direction-page .hero-proof-image { min-height: 255px; }
  .hero-proof-image figcaption { right: 12px; bottom: 12px; left: 12px; padding: 12px; font-size: 11px; }
  .logo-proof { min-height: 76px; }
  .marquee { min-height: 76px; }
  .logo-item { width: 190px; height: 76px; padding: 12px 14px; }
  .logo-business-leader img { width: 120px; }
  .logo-huboo img { width: 142px; }
  .logo-ahah img { width: 160px; }
  .logo-beacon { gap: 9px; }
  .logo-beacon .beacon-mark { width: 40px; height: 40px; flex-basis: 40px; }
  .beacon-wordmark strong { font-size: 17px; }
  .beacon-wordmark small { font-size: 8px; }
  .logo-abr { gap: 8px; font-size: 12px; }
  .logo-abr img { width: 30px; height: 30px; }
  .pain-section, .checkup-section, .case-studies, .pricing-section, .request-section { padding: 38px 20px; }
  .pain-section { gap: 18px; }
  .section-heading h2, .request-copy h2 { font-size: 23px; line-height: 1.1; }
  .pain-copy p { font-size: 16px; }
  .compact-heading { display: block; margin-bottom: 24px; }
  .compact-heading .eyebrow { margin-bottom: 16px; }
  .compact-heading h2 { font-size: 23px; line-height: 1.1; }
  .compact-heading > p:last-child { margin-top: 14px; font-size: 15px; }
  .mechanism-proof { display: block; }
  .mechanism-proof article { padding: 15px 0 17px; }
  .mechanism-proof article + article { border-top: 1px solid var(--rule); border-left: 0; }
  .mechanism-label { margin-bottom: 14px; }
  .mechanism-proof h3 { font-size: 20px; }
  .mechanism-proof article > p:last-child { font-size: 15px; }
  .case-accordion { border-inline: 0; }
  .case-summary { display: block; min-height: 0; padding: 16px 4px 15px; }
  .case-number { display: block; padding-right: 44px; }
  .case-title { display: block; margin-top: 8px; padding-right: 36px; font-size: 20px; }
  .case-action { position: absolute; top: 14px; right: 4px; }
  .case-action-open, .case-action-close { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .case-summary { position: relative; }
  .case-panel { padding: 22px 4px 28px; }
  .case-panel-split { gap: 24px; }
  .case-media img { height: 250px; }
  .case-panel-story { gap: 22px; }
  .case-story-label { margin-bottom: 12px; }
  .case-story-lead { font-size: 21px; line-height: 1.24; }
  .case-story-visual { margin-top: 20px; }
  .case-story-visual-logo { max-width: 200px; }
  .case-story-copy section { padding-bottom: 18px; }
  .case-story-copy section + section { padding-top: 18px; }
  .case-story-copy p { font-size: 14px; line-height: 1.5; }
  .case-story-commercial p { font-size: 16px; }
  .case-panel dl > div { grid-template-columns: 78px 1fr; gap: 12px; padding: 13px 0; }
  .case-panel dd { font-size: 14px; line-height: 1.42; }
  .pricing-grid { display: block; border-inline: 0; }
  .price-card { padding: 20px; }
  .price-card + .price-card { border-top: 1px solid var(--ink); border-left: 0; }
  .price-label { margin-bottom: 16px; }
  .price-card h3 { font-size: 21px; }
  .price { margin: 16px 0 13px; }
  .price strong { font-size: 44px; }
  .price-card > p:not(.price):not(.price-label):not(.founding):not(.small-print) { margin-bottom: 15px; font-size: 16px; }
  .founding, .small-print { margin-bottom: 18px; padding-top: 14px; }
  .request-section { gap: 24px; }
  .request-copy h2 { font-size: 23px; }
  .request-copy > p:last-child { margin-top: 18px; font-size: 16px; }
  .request-form label { margin-bottom: 14px; }
  .site-footer { padding: 24px 20px 20px; border-inline: 0; }
  .footer-top { grid-template-columns: auto 1fr; }
  .footer-top nav { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding-top: 14px; border-top: 1px solid var(--mint); }
  .footer-top nav a { min-height: 32px; display: flex; align-items: center; }
  .footer-wordmark {
    margin: 24px 0 16px;
    font-size: 43px;
    line-height: .9;
    white-space: normal;
  }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; text-align: left !important; }
  .privacy-main { border-inline: 0; }
  .privacy-hero { padding: 64px 20px 54px; }
  .privacy-hero h1 { font-size: 44px; }
  .privacy-hero > p:last-child { margin-top: 22px; font-size: 17px; }
  .privacy-content { padding: 46px 20px 64px; }
  .privacy-grid { display: block; border-left: 0; }
  .privacy-grid article { padding: 24px 20px; border-left: 1px solid var(--ink); }
}

@media (max-width: 350px) {
  .site-header { gap: 8px; padding-inline: 12px; }
  .brand { gap: 7px; font-size: 13px; white-space: nowrap; }
  .brand img { width: 28px; height: 28px; }
  .header-cta { max-width: none; padding-inline: 8px; font-size: 11px; line-height: 1; white-space: nowrap; }
  .hero-copy { min-height: 620px; padding-inline: 16px; }
  .hero-centered { min-height: 476px; }
  .hero-centered .hero-copy { min-height: 460px; padding: 24px 16px; }
  .hero h1 { font-size: 26px; }
  .hero h1 > span:first-child { font-size: 31px; }
  .hero-lead { font-size: 17px; }
  .hero-subtitle { margin-top: 22px; font-size: 15.5px; line-height: 1.35; }
  .hero-actions { gap: 12px; margin-top: 22px; }
  .hero-actions .button { min-height: 46px; }
  .hero-actions > p { display: block; }
  .hero-actions p span { margin-top: 2px; text-align: center; }
  .hero-actions p { text-align: center; }
  .pain-section, .checkup-section, .case-studies, .pricing-section, .request-section { padding: 32px 16px; }
  .section-heading h2, .compact-heading h2, .request-copy h2 { font-size: 22px; }
  .site-footer { padding-inline: 16px; }
  .footer-top nav { grid-template-columns: repeat(2, 1fr); }
  .footer-wordmark { font-size: 39px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .marquee { overflow-x: auto; scrollbar-width: none; scroll-snap-type: x proximity; }
  .marquee::-webkit-scrollbar { display: none; }
  .marquee-track { animation: none; }
  .logo-item { scroll-snap-align: center; }
  .logo-item[aria-hidden="true"] { display: none; }
}

@media (hover: none), (pointer: coarse) {
  .marquee { overflow-x: auto; scrollbar-width: none; scroll-snap-type: x proximity; }
  .marquee::-webkit-scrollbar { display: none; }
  .marquee-track { animation: none; }
  .logo-item { scroll-snap-align: center; }
  .logo-item[aria-hidden="true"] { display: none; }
}
