:root {
  --page-max: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  background: var(--bno-paper);
}

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

.section-pad {
  position: relative;
  padding: 112px max(24px, calc((100vw - var(--page-max)) / 2));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - var(--page-max)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1.5px solid var(--bno-slack-black);
  backdrop-filter: blur(12px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-link img {
  width: 34px;
  height: 34px;
}

.brand-link span {
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a,
.desktop-nav button {
  color: var(--bno-slack-black);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.desktop-nav button {
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
}

.desktop-nav .nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
}

.desktop-nav button:hover,
.desktop-nav .nav-link:hover,
.nav-item:focus-within > button,
.nav-item:hover > button {
  color: var(--bno-slack-black);
  background: var(--bno-cool-gray);
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 30;
  width: min(980px, calc(100vw - 40px));
  padding: 16px;
  display: grid;
  gap: 12px;
  border: 1.5px solid var(--bno-slack-black);
  border-radius: 8px;
  background: var(--bno-paper);
  box-shadow: var(--bno-shadow-panel);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 180ms var(--ease-out);
}

.services-menu {
  grid-template-columns: minmax(260px, 0.8fr) repeat(3, minmax(170px, 1fr));
}

.compact-menu {
  width: min(480px, calc(100vw - 40px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-feature,
.mega-column {
  min-height: 100%;
  padding: 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: var(--bno-cool-gray);
}

.mega-feature {
  background: var(--bno-slack-black);
  color: var(--bno-paper);
}

.mega-feature span,
.mega-column span {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}

.mega-feature h3 {
  margin: 0 0 14px;
  color: var(--bno-paper);
  font-size: 31px;
  line-height: 1;
}

.mega-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.mega-column {
  display: grid;
  align-content: start;
  gap: 10px;
  background: var(--bno-paper);
}

.mega-column.highlight {
  background: var(--bno-soft-yellow);
}

.mega-column a {
  display: block;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.22;
}

.mega-column a:hover {
  color: var(--bno-slack-black);
  background: rgba(0, 0, 0, 0.08);
}

.mega-column strong,
.mega-column small {
  display: block;
}

.mega-column small {
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 12px;
  font-weight: 650;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1.5px solid var(--bno-slack-black);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.btn:hover,
.btn:focus-visible {
  color: var(--bno-slack-black);
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  color: var(--bno-paper);
  background: var(--bno-slack-black);
  border-color: var(--bno-slack-black);
}

.btn-secondary,
.btn-light {
  background: var(--bno-paper);
  color: var(--bno-slack-black);
  border-color: var(--bno-slack-black);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-light:hover,
.btn-light:focus-visible {
  color: var(--bno-slack-black);
  background: var(--bno-soft-orange);
  border-color: var(--bno-fiery-orange);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 7px;
  border-radius: var(--radius-pill);
  background: var(--bno-squiggle);
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 54px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.94)),
    var(--bno-squiggle-soft);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 11.2ch;
  margin-bottom: 28px;
  font-size: clamp(58px, 7.4vw, 106px);
  line-height: 0.92;
}

.hero h1 em,
.site-footer em {
  font-style: italic;
}

.hero-lede {
  max-width: 56ch;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 16px;
}

.score-card,
.metric-card,
.answer-card,
.route-grid article,
.deliverables article,
.compare-grid article,
.service-grid article,
.proof-grid article,
.risk-card,
.faq-list details {
  border: 1.5px solid var(--bno-slack-black);
  border-radius: 8px;
}

.score-card {
  min-height: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bno-paper);
}

.score-card strong {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 66px);
  font-weight: 430;
  line-height: 0.95;
}

.score-card p {
  margin: 18px 0 0;
  color: var(--color-fg-muted);
}

.panel-label {
  width: fit-content;
  margin-bottom: auto;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: var(--bno-soft-yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-grid div {
  min-height: 98px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  color: var(--bno-paper);
  background: var(--bno-slack-black);
  font-weight: 780;
}

.mini-grid span {
  color: var(--bno-fiery-orange);
  font-family: var(--font-mono);
  font-size: 12px;
}

.squiggle {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.squiggle-one {
  width: 930px;
  right: -260px;
  top: -130px;
  transform: rotate(20deg);
  opacity: 0.82;
}

.squiggle-two {
  width: 760px;
  left: -360px;
  bottom: -190px;
  transform: rotate(198deg);
  opacity: 0.7;
}

.hero-doodle {
  position: absolute;
  right: max(18px, calc((100vw - var(--page-max)) / 2 + 10px));
  bottom: 26px;
  z-index: 4;
  width: min(190px, 24vw);
  transform: rotate(-5deg);
}

.logo-strip {
  padding: 32px max(20px, calc((100vw - var(--page-max)) / 2));
  color: var(--bno-paper);
  background: var(--bno-slack-black);
  border-top: 1.5px solid var(--bno-slack-black);
  border-bottom: 1.5px solid var(--bno-slack-black);
}

.logo-strip p {
  max-width: none;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(8, minmax(76px, 1fr));
  align-items: center;
  gap: 20px;
}

.logo-cloud img {
  width: 100%;
  height: 72px;
  padding: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--bno-paper);
  object-fit: contain;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 46px;
}

.section-head.center {
  display: block;
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center .eyebrow,
.faq-head .eyebrow {
  width: max-content;
  margin-right: auto;
  margin-left: auto;
}

.section-head h2,
.answer-card h2,
.blueprint h2,
.compare-section h2,
.human-section h2,
.proof-section h2,
.risk-card h2,
.faq-head h2,
.cta-final h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
}

.section-head p:not(.eyebrow),
.answer-card p,
.blueprint-copy p,
.compare-section p,
.human-copy p,
.proof-section p,
.risk-card p,
.faq-head p,
.cta-final p {
  color: var(--color-fg-muted);
  font-size: 18px;
}

.problem-section,
.services {
  background: var(--bno-paper);
}

.problem-head {
  display: block;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.problem-head h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.problem-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px auto 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.metric-card {
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-card span,
.route-grid span,
.compare-grid span,
.service-grid span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}

.metric-card h3,
.route-grid h3,
.compare-grid h3,
.service-grid h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 2vw, 30px);
  line-height: 1.02;
}

.metric-card p,
.route-grid p,
.compare-grid p,
.service-grid p {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
}

.metric-card.orange { background: var(--bno-soft-orange); }
.metric-card.yellow { background: var(--bno-soft-yellow); }
.metric-card.pink { background: var(--bno-soft-pink); }
.metric-card.gray { background: var(--bno-cool-gray); }

.answer-section {
  background: var(--bno-cool-gray);
}

.answer-card {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background: var(--bno-paper);
  box-shadow: var(--bno-shadow-panel);
}

.answer-card p:last-child {
  max-width: 820px;
  margin-top: 22px;
  color: var(--bno-slack-black);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 690;
  line-height: 1.28;
}

.method {
  color: var(--bno-paper);
  background: var(--bno-slack-black);
}

.method h2,
.method p,
.method .eyebrow {
  color: var(--bno-paper);
}

.method .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.method-head .eyebrow::before {
  display: none;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.route-grid article {
  min-height: 430px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: var(--bno-paper);
  color: var(--bno-slack-black);
}

.route-grid article:nth-child(2) { background: var(--bno-soft-yellow); }
.route-grid article:nth-child(3) { background: var(--bno-soft-pink); }
.route-grid article:nth-child(4) { background: var(--bno-soft-orange); }

.route-grid b {
  font-family: var(--font-display);
  font-size: 82px;
  font-weight: 430;
  line-height: 0.9;
}

.route-grid span {
  margin: 24px 0 12px;
  font-weight: 800;
}

.route-grid p {
  margin-top: 18px;
}

.method .route-grid h3,
.method .route-grid p,
.method .route-grid span,
.method .route-grid a {
  color: var(--bno-slack-black);
}

.route-grid a {
  margin-top: auto;
  padding-top: 24px;
  font-weight: 850;
}

.blueprint {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 50px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68)),
    var(--bno-squiggle-soft);
}

.blueprint-copy,
.deliverables {
  position: relative;
  z-index: 2;
}

.blueprint-squiggle {
  position: absolute;
  z-index: 1;
  right: -260px;
  bottom: -120px;
  width: min(1180px, 104vw);
  opacity: 0.38;
  transform: rotate(158deg);
  pointer-events: none;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.deliverables article {
  min-height: 92px;
  padding: 18px;
  display: flex;
  align-items: end;
  border-color: transparent;
  background: var(--bno-soft-yellow);
  font-weight: 840;
  line-height: 1.18;
}

.deliverables article:nth-child(3n+2) { background: var(--bno-soft-orange); }
.deliverables article:nth-child(3n) { background: var(--bno-soft-pink); }

.compare-section {
  background: var(--bno-paper);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-grid article {
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: var(--bno-cool-gray);
}

.compare-grid article.dark {
  color: var(--bno-paper);
  background: var(--bno-slack-black);
}

.compare-grid .dark h3,
.compare-grid .dark span {
  color: var(--bno-paper);
}

.compare-grid h3 {
  margin: 32px 0 20px;
  font-size: clamp(36px, 4vw, 58px);
}

.compare-grid ul,
.offer-card ul {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.compare-grid li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: rgba(0, 0, 0, 0.72);
}

.compare-grid .dark li {
  color: rgba(255, 255, 255, 0.74);
}

.compare-grid li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--bno-soft-orange);
}

.services {
  background: var(--bno-cool-gray);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article {
  min-height: 268px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bno-paper);
}

.service-grid article:nth-child(2) { background: var(--bno-soft-yellow); }
.service-grid article:nth-child(4) { background: var(--bno-soft-pink); }
.service-grid article:nth-child(6) { background: var(--bno-soft-orange); }

.service-grid h3 {
  margin-top: 28px;
}

.human-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 50px;
  align-items: center;
  background: var(--bno-paper);
}

.human-copy p + p {
  margin-top: 14px;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 118px;
  gap: 12px;
}

.photo-mosaic figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1.5px solid var(--bno-slack-black);
  border-radius: 8px;
  background: var(--bno-cool-gray);
}

.photo-mosaic figure:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.photo-mosaic figure:nth-child(2) {
  grid-column: 5 / 7;
  grid-row: 1 / 3;
}

.photo-mosaic figure:nth-child(3) {
  grid-column: 1 / 3;
  grid-row: 3 / 5;
}

.photo-mosaic figure:nth-child(4) {
  grid-column: 3 / 5;
  grid-row: 3 / 5;
}

.photo-mosaic figure:nth-child(5) {
  grid-column: 5 / 7;
  grid-row: 3 / 5;
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-mosaic figure:nth-child(1) img { object-position: center; }
.photo-mosaic figure:nth-child(3) img { object-position: 52% 8%; }
.photo-mosaic figure:nth-child(5) img { object-position: 50% 16%; }

.proof-section {
  color: var(--bno-paper);
  background: var(--bno-slack-black);
}

.proof-section h2,
.proof-section .eyebrow {
  color: var(--bno-paper);
}

.proof-section p,
.proof-section .section-head p:not(.eyebrow) {
  color: var(--bno-paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid article {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bno-paper);
  color: var(--bno-slack-black);
}

.proof-grid strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.45vw, 36px);
  line-height: 0.98;
  font-weight: 430;
}

.proof-grid span {
  color: var(--color-fg-muted);
  font-weight: 680;
}

.risk-section {
  background: var(--bno-cool-gray);
}

.risk-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  background: var(--bno-soft-yellow);
  box-shadow: var(--bno-shadow-panel);
}

.risk-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  pointer-events: none;
}

.risk-copy,
.risk-visual {
  position: relative;
  z-index: 2;
}

.risk-copy h2 {
  max-width: 7.7ch;
}

.risk-copy p:not(.eyebrow) {
  max-width: 34ch;
  color: rgba(0, 0, 0, 0.72);
  font-weight: 780;
}

.risk-squiggle {
  position: absolute;
  width: min(520px, 42vw);
  right: -110px;
  top: -92px;
  opacity: 0.62;
  transform: rotate(-9deg);
  pointer-events: none;
}

.risk-visual {
  display: grid;
  gap: 18px;
  align-content: stretch;
}

.risk-start {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 6px;
  align-items: center;
  padding: 18px;
  background: var(--bno-paper);
  border: 1.5px solid var(--bno-slack-black);
  border-radius: 10px;
  box-shadow: var(--bno-shadow-soft);
}

.risk-start img {
  grid-row: 1 / span 2;
  width: 42px;
}

.risk-start span {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bno-fiery-orange);
  font-weight: 900;
}

.risk-start strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 0.98;
  font-weight: 520;
}

.risk-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.risk-path article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1.5px solid var(--bno-slack-black);
  border-radius: 10px;
  background: var(--bno-paper);
}

.risk-path article:nth-child(1) {
  background: var(--bno-soft-orange);
}

.risk-path article:nth-child(2) {
  background: var(--bno-slack-black);
  color: var(--bno-paper);
}

.risk-path article:nth-child(3) {
  background: linear-gradient(135deg, var(--bno-paper) 0%, var(--bno-paper) 58%, rgba(255, 126, 13, 0.28) 100%);
}

.risk-path small {
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 900;
}

.risk-path article:nth-child(2) small {
  color: #fff;
}

.risk-path b {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1;
  font-weight: 520;
  overflow-wrap: anywhere;
}

.risk-path span {
  display: block;
  font-size: 13px;
  line-height: 1.28;
  font-weight: 760;
  color: rgba(0, 0, 0, 0.72);
}

.risk-path article:nth-child(2) span {
  color: rgba(255, 255, 255, 0.78);
}

.risk-list p {
  margin: 0;
  color: var(--bno-slack-black);
  font-weight: 680;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 50px;
  align-items: start;
  background: var(--bno-paper);
}

.faq-head {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px;
  background: var(--bno-cool-gray);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--color-fg-muted);
}

.cta-final {
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--bno-paper);
  background: var(--bno-slack-black);
}

.cta-final h2,
.cta-final p,
.cta-final .eyebrow {
  color: var(--bno-paper);
}

.cta-final p {
  color: rgba(255, 255, 255, 0.74);
}

.cta-squiggle {
  width: 900px;
  right: -260px;
  top: -170px;
  transform: rotate(-22deg);
  opacity: 0.86;
}

.cta-doodle {
  position: absolute;
  right: max(28px, calc((100vw - var(--page-max)) / 2 + 40px));
  bottom: 32px;
  z-index: 2;
  width: min(260px, 32vw);
}

.site-footer {
  color: var(--bno-paper);
  background: var(--bno-slack-black);
  border-top: 1.5px solid rgba(255, 255, 255, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(180px, 0.72fr) repeat(3, minmax(170px, 0.7fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-brand-block,
.footer-column {
  min-height: 360px;
  padding: 58px max(20px, calc((100vw - var(--page-max)) / 2)) 54px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-brand-block {
  padding-left: max(20px, calc((100vw - var(--page-max)) / 2));
}

.footer-column:last-child {
  padding-right: max(20px, calc((100vw - var(--page-max)) / 2));
  border-right: 0;
}

.footer-brand-block img {
  width: 82px;
}

.footer-column h3 {
  color: var(--bno-paper);
}

.footer-wordmark {
  display: block;
  width: fit-content;
  margin-top: 18px;
  color: var(--bno-paper);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.footer-brand-block p,
.footer-column p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.footer-cta {
  width: fit-content;
  min-height: 58px;
  margin-top: 34px;
  padding-right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-radius: 8px;
  color: var(--bno-paper);
  background: var(--bno-soft-orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: var(--tracking-wide);
  text-decoration: none;
  text-transform: uppercase;
}

.footer-cta span {
  width: 58px;
  min-height: 58px;
  display: grid;
  place-items: center;
  color: var(--bno-slack-black);
  background: var(--bno-paper);
  border: 1.5px solid var(--bno-fiery-orange);
  border-radius: 8px;
  font-size: 22px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-column h3 {
  margin: 0 0 10px;
  font-size: 25px;
}

.footer-column h3:not(:first-child) {
  margin-top: 36px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 650;
  text-decoration: none;
}

.footer-column a:hover,
.footer-bottom a:hover,
.footer-cta:hover {
  color: var(--bno-mellow-yellow);
}

.footer-bottom {
  min-height: 76px;
  padding: 22px max(20px, calc((100vw - var(--page-max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms var(--ease-out), transform 560ms var(--ease-out);
}

body.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    position: relative;
    height: auto;
  }

  .hero,
  .blueprint,
  .human-section,
  .risk-card,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .problem-grid,
  .route-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .logo-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-block,
  .footer-column,
  .footer-column:last-child {
    min-height: auto;
    padding: 34px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .faq-head {
    position: static;
  }
}

@media (max-width: 720px) {
  .section-pad {
    padding: 78px 16px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand-link span {
    display: none;
  }

  .site-header .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(44px, 13vw, 58px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 46px;
  }

  .mini-grid,
  .problem-grid,
  .route-grid,
  .deliverables,
  .compare-grid,
  .service-grid,
  .proof-grid,
  .logo-cloud {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .answer-card h2,
  .blueprint h2,
  .compare-section h2,
  .human-section h2,
  .proof-section h2,
  .risk-card h2,
  .faq-head h2,
  .cta-final h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .metric-card,
  .route-grid article,
  .service-grid article,
  .proof-grid article {
    min-height: 220px;
  }

  .risk-card {
    padding: 28px 18px;
  }

  .risk-card::after,
  .risk-squiggle {
    display: none;
  }

  .risk-copy h2 {
    max-width: 8ch;
  }

  .risk-start {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 16px;
  }

  .risk-start img {
    width: 36px;
  }

  .risk-path {
    grid-template-columns: 1fr;
  }

  .risk-path article {
    min-height: 170px;
  }

  .compare-grid article {
    min-height: 360px;
    padding: 26px;
  }

  .photo-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .photo-mosaic figure:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-mosaic figure:nth-child(1) {
    grid-column: 1 / -1;
  }

  .logo-cloud img {
    height: 68px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-block,
  .footer-column,
  .footer-column:last-child {
    padding: 30px 16px;
    border-right: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 16px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 14px;
  }
}
