:root {
  --page-max: 1180px;
  --radius: 8px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --tracking-caps: 0.08em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bno-paper);
  color: var(--bno-slack-black);
  font-family: var(--font-body);
}

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

a {
  color: inherit;
}

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

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

.eyebrow::before {
  content: "";
  width: 36px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(95deg, #FFED02, #FE8301 55%, #ED8BFA);
}

.btn {
  min-height: 48px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1.5px solid var(--bno-slack-black);
  border-radius: 999px;
  color: var(--bno-slack-black);
  background: var(--bno-paper);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.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-secondary,
.btn-light {
  color: var(--bno-slack-black);
  background: var(--bno-paper);
  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);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: 62px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 7%, rgba(237, 139, 250, 0.26), transparent 24%),
    linear-gradient(115deg, #fff 0%, #fff8eb 56%, #fff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  top: -110px;
  width: 660px;
  height: 170px;
  background: linear-gradient(95deg, #FFED02, #FE8301 55%, #ED8BFA);
  border-radius: 999px;
  transform: rotate(15deg);
  opacity: 0.92;
}

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

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 6.4vw, 94px);
  line-height: 0.96;
  font-weight: 430;
  letter-spacing: 0;
}

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

.hero-lede {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.28;
}

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

.hero-proof {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  z-index: 2;
  padding: 20px;
  background: #fff;
  border: 1.5px solid #000;
  border-radius: var(--radius);
  box-shadow: var(--bno-shadow-panel);
}

.signal-map {
  display: grid;
  gap: 14px;
}

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

.signal-chip,
.signal-card,
.sales-card {
  padding: 16px;
  min-height: 86px;
  border-radius: var(--radius);
  font-weight: 900;
}

.signal-chip {
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}

.orange { background: var(--bno-soft-orange); color: #000; }
.black { background: #1c1c1c; }
.pink { background: var(--bno-soft-pink); color: #000; }

.signal-card {
  background: var(--bno-cool-gray);
  border-left: 8px solid var(--bno-fiery-orange);
}

.signal-card:nth-child(2) { border-left-color: var(--bno-fiery-orange); }
.signal-card:nth-child(3) { border-left-color: #ef3733; }
.signal-card:nth-child(4) { border-left-color: #1c1c1c; }

.signal-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.signal-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.signal-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.flow-pill,
.sales-card {
  padding: 14px 16px;
  border-radius: var(--radius);
  text-align: center;
  background: var(--bno-soft-yellow);
  font-weight: 950;
}

.arrow {
  color: var(--bno-fiery-orange);
  font-size: 28px;
  font-weight: 950;
}

.sales-card {
  color: #fff;
  background: #ef3733;
}

.section-head {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.section-head h2,
.answer-block h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.96;
  font-weight: 430;
}

.section-head p,
.answer-block p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 650;
}

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

.answer-block .eyebrow,
.answer-block h2 {
  color: var(--bno-paper);
}

.answer-block p {
  color: rgba(255, 255, 255, 0.78);
}

.answer-card {
  max-width: 980px;
  padding: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.reality-grid,
.method-grid,
.service-grid,
.offer-grid,
.fit-grid,
.faq-list {
  display: grid;
  gap: 16px;
}

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

.reality-grid article,
.method-grid article,
.service-grid article,
.offer-grid article,
.fit-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  border-radius: var(--radius);
  background: #fff;
}

.reality-grid article:nth-child(2),
.offer-grid article:nth-child(2) {
  background: var(--bno-soft-yellow);
}

.reality-grid article:nth-child(3),
.offer-grid article:nth-child(4) {
  background: rgba(237, 139, 250, 0.38);
}

.reality-grid span,
.method-grid span,
.service-grid span,
.offer-grid span {
  color: var(--bno-fiery-orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}

.reality-grid h3,
.method-grid h3,
.service-grid h3,
.offer-grid h3,
.fit-grid h3 {
  margin: 28px 0 12px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  font-weight: 520;
}

.reality-grid p,
.method-grid p,
.service-grid p,
.offer-grid p,
.fit-grid p {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 650;
}

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

.architecture-board {
  padding: 24px;
  border: 1.5px solid #000;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--bno-shadow-panel);
}

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

.architecture-card {
  min-height: 300px;
  padding: 22px;
  border-left: 9px solid var(--bno-fiery-orange);
  background: var(--bno-cool-gray);
}

.architecture-card:nth-child(3) { border-left-color: #ef3733; }
.architecture-card:nth-child(4) { border-left-color: #1c1c1c; }

.architecture-card h3 {
  margin: 0 0 22px;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.architecture-card ul {
  margin: 0;
  padding-left: 20px;
  font-size: 17px;
  line-height: 1.55;
}

.architecture-footer {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.architecture-footer strong {
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  background: var(--bno-soft-yellow);
}

.architecture-footer .sales-card {
  min-height: auto;
}

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

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

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

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

.method-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--bno-paper);
}

.method-grid b {
  display: block;
  margin-bottom: 34px;
  color: var(--bno-mellow-yellow);
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.86;
}

.method-grid h3 {
  color: var(--bno-paper);
}

.offer {
  background: #fff;
}

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

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

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

.service-grid article {
  min-height: 220px;
  background: var(--bno-cool-gray);
}

.team-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
  background: #fff;
}

.team-band h2 {
  max-width: 660px;
}

.team-photos {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.team-photos figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1.5px solid #000;
  background: var(--bno-cool-gray);
}

.team-photos .tall {
  grid-row: span 2;
}

.team-photos img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

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

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

.fit-grid article:first-child {
  background: #fff;
}

.fit-grid article:last-child {
  color: var(--bno-paper);
  background: var(--bno-slack-black);
}

.fit-grid article:last-child p {
  color: rgba(255, 255, 255, 0.72);
}

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

.faq-section {
  background: #fff;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  padding: 22px 24px;
  border: 1.5px solid #000;
  border-radius: var(--radius);
  background: var(--bno-cool-gray);
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 16px 0 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 650;
}

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

.cta-final::after {
  content: "";
  position: absolute;
  right: -220px;
  top: -120px;
  width: 850px;
  height: 150px;
  border-radius: 999px;
  background: linear-gradient(95deg, #FFED02, #FE8301 55%, #ED8BFA);
  transform: rotate(-22deg);
}

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

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

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 (max-width: 1080px) {
  .hero,
  .team-band {
    grid-template-columns: 1fr;
  }

  .method-grid,
  .service-grid,
  .architecture-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-actions .btn,
  .cta-final .btn {
    width: 100%;
  }

  .signal-row,
  .signal-flow,
  .architecture-footer,
  .method-grid,
  .service-grid,
  .architecture-grid,
  .offer-grid,
  .fit-grid,
  .team-photos {
    grid-template-columns: 1fr;
  }

  .arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .reviews-head {
    grid-template-columns: 1fr;
  }

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

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

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