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

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

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

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

.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: var(--bno-paper);
  border-bottom: 1.5px solid var(--bno-slack-black);
}

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

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

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

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

.desktop-nav a {
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.btn {
  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 {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  color: var(--bno-paper);
  background: 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);
}

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

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

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

.hero h1 {
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.94;
  max-width: 10.5ch;
  margin-bottom: 28px;
}

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

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

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

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

.score-card,
.metric-card,
.audit-stack article,
.timeline article,
.deliverables article,
.offer-card,
.levels-grid article,
.rating-card,
.review-column article {
  border: 1.5px solid var(--bno-slack-black);
  border-radius: 8px;
}

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

.score-card strong {
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 0.95;
  font-weight: 430;
}

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

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

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

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

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

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

.squiggle-one {
  width: 920px;
  right: -260px;
  top: -110px;
  transform: rotate(20deg);
  opacity: 0.86;
}

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

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

.logo-strip {
  padding: 32px max(20px, calc((100vw - var(--page-max)) / 2));
  background: var(--bno-slack-black);
  color: var(--bno-paper);
  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;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-weight: 700;
}

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

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

.logo-cloud img:nth-last-child(-n+3) {
  height: 74px;
}

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

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

.section-head h2,
.diagnosis h2,
.blueprint h2,
.cta-final h2,
.reviews h2 {
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.96;
}

.section-head p:not(.eyebrow),
.diagnosis-copy p,
.blueprint-copy p,
.cta-final p {
  color: var(--color-fg-muted);
  font-size: 18px;
}

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

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

.problem-head .eyebrow {
  margin-bottom: 18px;
}

.problem-head h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: 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,
.timeline small,
.offer-card span,
.levels-grid span,
.review-column span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}

.metric-card h3,
.timeline h3,
.offer-card h3,
.levels-grid h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 1.9vw, 30px);
  line-height: 1.02;
  margin: 0;
}

.metric-card p,
.timeline p,
.offer-card p,
.levels-grid p {
  color: rgba(0,0,0,0.68);
  margin: 0;
}

.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); }

.diagnosis {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(330px, 0.74fr);
  gap: 56px;
  align-items: center;
  background: var(--bno-cool-gray);
  overflow: hidden;
}

.doodle-left {
  position: absolute;
  left: max(10px, calc((100vw - var(--page-max)) / 2));
  bottom: -24px;
  width: 190px;
}

.audit-stack {
  display: grid;
  gap: 14px;
}

.audit-stack article {
  background: var(--bno-paper);
  padding: 24px;
}

.audit-stack span {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.audit-stack p {
  margin: 0;
  color: var(--color-fg-muted);
}

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

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

.method-head {
  max-width: 980px;
}

.method-head .eyebrow {
  display: block;
  width: max-content;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

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

.booms-map article {
  min-height: 280px;
  padding: 22px;
  background: var(--bno-paper);
  color: var(--bno-slack-black);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booms-map b {
  font-family: var(--font-display);
  font-size: 92px;
  line-height: 0.9;
  font-weight: 420;
  color: var(--bno-fiery-orange);
}

.booms-map span {
  font-family: var(--font-display);
  font-size: 28px;
}

.booms-map p {
  margin: 0;
  color: var(--color-fg-muted);
}

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

.route .section-head {
  display: block;
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

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

.route .section-head h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
  overflow: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}

.timeline article {
  min-height: 285px;
  padding: 24px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bno-cool-gray);
}

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

.timeline h3 {
  font-size: clamp(20px, 1.45vw, 25px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.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;
  width: min(1180px, 104vw);
  right: -260px;
  bottom: -120px;
  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: 86px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  background: var(--bno-soft-yellow);
  border-color: transparent;
  font-weight: 800;
}

.deliverables article strong {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 0.98;
  font-weight: 520;
  overflow-wrap: anywhere;
}

.deliverables article span {
  color: rgba(0, 0, 0, 0.72);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 760;
}

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

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

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

.offers-head {
  max-width: 940px;
}

.offers-head .eyebrow {
  display: block;
  width: max-content;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.offer-card {
  padding: 32px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  background: var(--bno-cool-gray);
}

.offer-card.dark {
  background: var(--bno-slack-black);
  color: var(--bno-paper);
}

.offer-card.dark h3 {
  color: var(--bno-paper);
}

.offer-card.dark p,
.offer-card.dark li {
  color: rgba(255,255,255,0.72);
}

.offer-card h3 {
  font-size: clamp(34px, 3.9vw, 54px);
  margin: 32px 0 18px;
}

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

.offer-card li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: var(--color-fg-muted);
}

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

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

.levels-head {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.levels-head .eyebrow {
  display: block;
  width: max-content;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.levels-head h2 {
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.96;
  margin-left: auto;
  margin-right: auto;
}

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

.levels-grid article {
  min-height: 300px;
  padding: 22px;
  background: var(--bno-paper);
  display: flex;
  flex-direction: column;
}

.levels-grid h3 {
  margin: 36px 0 16px;
}

.levels-grid strong {
  margin-top: auto;
  padding-top: 28px;
  font-size: 18px;
  line-height: 1.15;
}

.note {
  margin: 28px 0 0;
  max-width: 980px;
  font-weight: 750;
}

.reviews {
  background: var(--bno-paper);
  overflow: hidden;
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: end;
  gap: 32px;
  margin-bottom: 42px;
}

.rating-card {
  background: var(--bno-soft-yellow);
  padding: 22px;
}

.rating-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.9;
  font-weight: 420;
}

.rating-card span,
.rating-card small {
  display: block;
  font-weight: 800;
}

.rating-card small {
  margin-top: 8px;
  color: rgba(0,0,0,0.58);
}

.review-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  height: 660px;
  overflow: hidden;
  padding: 4px 0;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.review-wall::before,
.review-wall::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
}

.review-wall::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bno-paper), rgba(248, 247, 242, 0));
}

.review-wall::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bno-paper), rgba(248, 247, 242, 0));
}

.review-column {
  min-width: 0;
  overflow: hidden;
}

.review-column-inner {
  display: grid;
  gap: 18px;
  animation: reviewScrollUp 54s linear infinite;
  will-change: transform;
}

.review-column.reverse .review-column-inner {
  animation-name: reviewScrollDown;
  animation-duration: 62s;
  transform: translateY(-50%);
}

.review-wall:hover .review-column-inner {
  animation-play-state: paused;
}

.review-column article {
  min-height: 245px;
  padding: 22px;
  background: var(--bno-cool-gray);
  box-shadow: var(--bno-shadow-soft);
  display: flex;
  flex-direction: column;
}

.review-column article:nth-child(2n) { background: var(--bno-paper); }
.review-column article:nth-child(3n) { background: var(--bno-soft-yellow); }
.review-column article:nth-child(5n) { background: var(--bno-soft-pink); }

.stars {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bno-fiery-orange);
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 850;
  margin-bottom: 8px;
}

.stars span {
  color: var(--bno-slack-black);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
}

.review-column h3 {
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.05;
  margin: 0;
}

.review-column p {
  margin: 16px 0 20px;
  font-size: 15px;
  line-height: 1.42;
  color: var(--bno-slack-black);
}

.review-column span:not(.stars span) {
  color: var(--color-fg-muted);
  line-height: 1.35;
}

.review-column b {
  margin-top: auto;
  padding-top: 16px;
}

.source-line {
  color: var(--color-fg-muted);
  font-size: 13px;
  margin-top: 12px;
  max-width: none;
}

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

.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;
  width: min(260px, 32vw);
  z-index: 2;
}

.site-footer {
  padding: 28px max(20px, calc((100vw - var(--page-max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--bno-paper);
  border-top: 1.5px solid var(--bno-slack-black);
}

.site-footer img {
  width: 42px;
}

.site-footer p {
  margin: 0;
  max-width: none;
  font-family: var(--font-display);
  font-size: 24px;
}

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);
}

@keyframes reviewScrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes reviewScrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .review-column-inner {
    animation: none;
  }

  .levels-head {
    text-align: left;
    margin-left: 0;
  }
}

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

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

  .hero,
  .diagnosis,
  .blueprint,
  .offer-grid,
  .reviews-head {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

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

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

  .logo-cloud {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 620px;
  }

  .review-column:nth-child(3) {
    display: none;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .site-header .btn {
    display: none;
  }

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

  .brand-link span {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 0.96;
  }

  .score-card strong {
    font-size: 42px;
  }

  .problem-grid,
  .booms-map,
  .deliverables,
  .levels-grid {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .timeline article,
  .offer-card,
  .levels-grid article {
    min-height: 220px;
  }

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

  .review-wall {
    grid-template-columns: 1fr;
    height: 620px;
  }

  .review-column:nth-child(2),
  .review-column:nth-child(3) {
    display: none;
  }

  .hero-doodle,
  .doodle-left {
    opacity: 0.28;
  }

  .cta-doodle {
    opacity: 0.42;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-column-inner {
    animation: none;
  }
}
