:root {
  --ink: #111111;
  --paper: #ffffff;
  --muted: #f1fbf8;
  --panel: #fbfbf7;
  --accent: #ff07fe;
  --accent-2: #34dac3;
  --accent-3: #21b8a7;
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 20px 70px rgba(17, 17, 17, 0.12);
  --radius: 8px;
  --max: 1200px;
  --gutter: clamp(20px, 4vw, 56px);
  --content-gutter: max(var(--gutter), calc((100vw - var(--max)) / 2));
  --copy-size: clamp(1.06rem, 1.25vw, 1.2rem);
  --kicker-size: 0.82rem;
  --h2-size: clamp(2.35rem, 4.6vw, 4.8rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

strong {
  background: linear-gradient(transparent 55%, rgba(255, 7, 254, 0.36) 55%);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px var(--content-gutter);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: auto;
  height: clamp(38px, 4vw, 52px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  padding: 10px 0;
}

.site-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section,
.footer {
  width: 100%;
  padding: clamp(60px, 8vw, 112px) var(--content-gutter);
}

.section {
  scroll-margin-top: 92px;
}

.section > *,
.footer > * {
  max-width: var(--max);
}

.section-full {
  position: relative;
  min-height: clamp(520px, 72vh, 690px);
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.84), rgba(17, 17, 17, 0.38) 54%, rgba(17, 17, 17, 0.08)),
    linear-gradient(0deg, rgba(255, 7, 254, 0.24), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  min-height: clamp(520px, 72vh, 690px);
  margin-right: var(--content-gutter);
  margin-left: var(--content-gutter);
  padding: 52px 0;
  color: var(--paper);
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  font-size: var(--kicker-size);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 16.96px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Impact, "Arial Narrow", "Franklin Gothic Condensed", sans-serif;
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 840px;
  font-size: clamp(2.4rem, 4.9vw, 4.7rem);
}

h2 {
  font-size: var(--h2-size);
}

h2 span,
h3 span,
.kicker {
  color: var(--accent-2);
}

h3 {
  font-size: clamp(1.55rem, 3.5vw, 2.7rem);
}

h1 + p,
h2 + p {
  padding-top: clamp(18px, 2vw, 26px);
}

.actions,
.contact-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 2px solid var(--ink);
  border-radius: 0;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.button-whatsapp {
  gap: 9px;
  background: #25d366;
  border-color: #25d366;
  color: var(--ink);
}

.button-whatsapp img {
  width: 22px;
  height: 22px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  margin: 0 auto;
}

.split > * {
  max-width: none;
}

#what {
  background: #f7f7f2;
}

#what strong {
  background: linear-gradient(transparent 55%, rgba(52, 218, 195, 0.42) 55%);
}

.split p,
.feature p,
.section-heading p,
.contact-copy p,
.trailer-copy p,
.topic-card p,
.steps-grid p,
.step-more p,
.plan p,
.plan li,
.faq-list details p {
  font-size: var(--copy-size);
}

.split h2 + p,
.feature h2 + p,
.section-heading h2 + p,
.contact-copy h2 + p {
  padding-top: clamp(18px, 2vw, 26px);
}

.media-frame {
  margin: 0;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 1.24;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tailored-carousel {
  display: grid;
  gap: 14px;
  background: transparent;
}

.tailored-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1.24;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  touch-action: pan-y;
}

.media-frame .tailored-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 320ms ease, transform 320ms ease;
  pointer-events: none;
}

.media-frame .tailored-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.tailored-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tailored-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.tailored-dot.is-active {
  border-color: var(--accent);
  background: var(--accent);
}

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

.section-dark .kicker,
.section-dark h2 span {
  color: var(--accent);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.feature > * {
  margin: 0 auto;
}

.feature img {
  width: min(100%, 900px);
}

.trailer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.76fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: #FFFFFF;
}

section.section.trailer {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  background-image: none !important;
}

.trailer > * {
  max-width: none;
}

.trailer-preview {
  position: relative;
}

.trailer-preview img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trailer-copy .actions {
  align-items: center;
}

.trailer-copy h2 span {
  color: var(--ink);
}

.trailer-copy .kicker {
  color: var(--accent);
}

.trailer-copy .actions span {
  font-weight: 800;
}

.way {
  background: var(--paper);
}

.way .section-heading {
  margin-bottom: clamp(20px, 3vw, 34px);
}

.way .section-heading h2 {
  max-width: 980px;
  color: var(--ink);
}

.way .section-heading h2 span {
  color: var(--accent);
}

.way .section-heading p {
  max-width: 100%;
  color: var(--ink);
}

.text-underline {
  background: linear-gradient(transparent 55%, rgba(255, 7, 254, 0.36) 55%);
  font-weight: 800;
}

.way-visual {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.way-copy p,
.tailored p {
  font-size: var(--copy-size);
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(28px, 5vw, 58px);
  text-align: center;
}

.section-heading.align-left {
  text-align: left;
}

.topics {
  background: #f4f4f0;
}

.topic-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 12px;
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.topic-grid {
  display: grid;
  grid-auto-columns: calc((100% - 36px) / 3);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.topic-grid::-webkit-scrollbar {
  display: none;
}

.topic-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.topic-card img {
  width: 100%;
  height: clamp(210px, 18vw, 240px);
  object-fit: cover;
}

.topic-card div {
  padding: 24px;
}

.topic-card h3 {
  margin-bottom: 12px;
}

.carousel-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  transition: transform 150ms ease, background 150ms ease;
}

.carousel-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.carousel-button[data-carousel-prev]::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.carousel-button[data-carousel-next]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.carousel-button:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

.topics-cta {
  width: min(var(--max), 100%);
  margin: clamp(22px, 4vw, 34px) auto 0;
  text-align: center;
  font-weight: 850;
}

.topics-cta a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent-2);
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
}

.tailored {
  background: var(--paper);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: var(--copy-size);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  background: var(--accent-2);
}

.stack-frame img {
  background: var(--panel);
  object-fit: contain;
}

.how {
  background: rgb(244, 244, 240);
}

.how .section-heading,
.how .parts,
.steps-grid {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.how .parts {
  width: min(720px, 100%);
  margin-bottom: 34px;
}

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

.steps-grid article {
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: var(--accent-2);
  font-weight: 900;
}

.steps-grid h3 {
  margin-bottom: 14px;
}

.step-more {
  margin-top: 22px;
}

.step-more summary {
  display: inline-block;
  color: var(--ink);
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  list-style: none;
}

.step-more summary::-webkit-details-marker {
  display: none;
}

.step-more summary::after {
  content: " +";
}

.step-more p {
  margin-top: 18px;
}

.step-more img {
  width: 100%;
  margin-top: 14px;
  height: auto;
  border-radius: 0;
  background: transparent;
}

.section-accent {
  background: linear-gradient(180deg, rgba(52, 218, 195, 0.94) 0%, #f7f7ef 100%);
}

.section-accent .kicker,
.section-accent h2 span {
  color: var(--ink);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.plan {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
}

.plan img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.plan img.plan-image-contain {
  object-fit: contain;
  background: transparent;
}

.plan div {
  padding: clamp(24px, 4vw, 40px);
}

.plan-count {
  display: inline-block;
  padding: 8px 10px;
  margin-bottom: 20px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
}

.plan h3 + p {
  margin-top: 24px;
}

.plan ul {
  display: grid;
  gap: 12px;
  padding-left: 1.15em;
  margin: 22px 0 0;
}

.center-action {
  justify-content: center;
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.expect-grid article {
  min-height: 210px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.expect-grid h3 {
  margin-bottom: 12px;
  color: var(--accent-3);
}

.impact-proof,
.review-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.impact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.impact-row .impact-proof {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 920px) {
  .impact-row {
    grid-template-columns: 1fr;
  }
}

.impact-proof {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  padding: clamp(20px, 3vw, 30px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.impact-proof p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.impact-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
}

.impact-logos img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--paper);
}

.impact-logos img.logo-nvb {
  padding: 10px 12px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(22px, 4vw, 44px);
}

.review-card {
  display: grid;
  align-content: space-between;
  min-height: 330px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
}

.review-card-featured {
  background: var(--accent-2);
  color: var(--ink);
}

.review-label {
  margin: 0 0 26px;
  padding-left: 12px;
  border-left: 4px solid currentColor;
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.review-card-featured .review-label {
  color: var(--ink);
}

.review-card blockquote {
  margin: 0;
}

.review-card blockquote p {
  margin: 0;
  font-size: clamp(1.28rem, 2.1vw, 1.76rem);
  font-weight: 850;
  line-height: 1.14;
}

.review-card cite {
  display: block;
  margin-top: 28px;
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.review-card-featured cite {
  color: var(--ink);
}

.review-grid + .impact-proof {
  margin-top: clamp(22px, 4vw, 44px);
}

.methodology {
  background: var(--paper);
}

.methodology-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.methodology-copy h2 span {
  color: var(--accent);
}

.methodology .kicker {
  color: var(--accent);
  font-size: 16.96px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.methodology-copy p:not(.kicker) {
  color: #4a4a4a;
  font-size: var(--copy-size);
  line-height: 1.5;
}

.method-stats {
  width: min(520px, 100%);
  margin-top: clamp(28px, 5vw, 58px);
  object-fit: contain;
}

.methodology-visual {
  position: relative;
  min-height: clamp(380px, 46vw, 560px);
}

.methodology-logos {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 18px;
  width: min(270px, 36%);
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.84);
}

.methodology-logos img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.methodology-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 76%;
  height: 76%;
  object-fit: cover;
  object-position: right center;
}

.methodology-screen {
  position: absolute;
  right: 13%;
  bottom: 0;
  width: min(70%, 560px);
  aspect-ratio: 1.48;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
}

.section-muted {
  background: var(--muted);
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0;
  cursor: pointer;
  font-family: Impact, "Arial Narrow", "Franklin Gothic Condensed", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 760px;
  padding-bottom: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.62fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(52, 218, 195, 0.92), rgba(255, 7, 254, 0.72)),
    var(--accent-2);
}

.contact > * {
  max-width: none;
}

.contact .kicker,
.contact h2 span {
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 32px);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.proof {
  padding-top: clamp(44px, 7vw, 84px);
}

.photo-strip,
.logo-strip {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 14px;
  margin-bottom: 22px;
}

.photo-strip img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.proof-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 18px;
  color: var(--accent-2);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 16px;
  align-items: center;
}

.logo-strip img {
  width: 100%;
  max-height: 78px;
  object-fit: contain;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: end;
  background: var(--ink);
  color: var(--paper);
}

.footer a {
  color: var(--paper);
}

.footer-logo {
  width: min(250px, 100%);
  margin-bottom: 22px;
}

.footer-purpose {
  display: grid;
  gap: 10px;
  justify-items: end;
  text-align: right;
}

.footer-purpose p {
  margin: 0;
  font-weight: 800;
}

.footer-link-heading {
  color: var(--accent-2);
  text-transform: uppercase;
}

.footer-link-list {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer-purpose img {
  width: min(260px, 100%);
  margin-top: 14px;
}

@media (max-width: 920px) {
  .split,
  .feature,
  .trailer,
  .way-copy,
  .methodology-layout,
  .plan-grid,
  .impact-proof,
  .review-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .expect-grid {
    grid-template-columns: 1fr;
  }

  .topic-grid {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .impact-proof p {
    max-width: 100%;
  }

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

  .impact-logos img {
    height: 70px;
    padding: 12px;
  }

  .review-card {
    min-height: auto;
  }

  .expect-grid article {
    min-height: auto;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .photo-strip img {
    height: 260px;
  }

  .methodology-visual {
    min-height: clamp(430px, 68vw, 560px);
  }

  .methodology-copy {
    max-width: 760px;
  }

  .method-stats {
    width: min(620px, 100%);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .methodology-layout {
    gap: 28px;
  }

  .methodology-visual {
    min-height: 430px;
  }

  .methodology-logos {
    position: relative;
    width: min(260px, 60%);
    margin-bottom: 14px;
    background: transparent;
  }

  .methodology-photo {
    top: 74px;
    width: 92%;
    height: 62%;
  }

  .methodology-screen {
    right: 0;
    width: 78%;
    border-radius: 22px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(17, 17, 17, 0.76), rgba(17, 17, 17, 0.48)),
      linear-gradient(0deg, rgba(255, 7, 254, 0.22), transparent 44%);
  }

  .hero-content {
    padding-top: 38px;
  }

  .topic-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .topic-grid {
    grid-auto-columns: min(86%, 360px);
  }

  .carousel-button {
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
  }

  .logo-strip {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

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

  .footer-purpose {
    justify-items: start;
    text-align: left;
  }

  .footer-link-list {
    justify-items: start;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.08rem;
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .button {
    width: 100%;
  }

  .hero-content {
    padding: 30px 0;
  }

  .hero .button-light {
    display: none;
  }

  .logo-strip {
    grid-template-columns: 1fr;
  }

  .impact-logos {
    grid-template-columns: 1fr;
  }

  .impact-logos img {
    height: 76px;
  }
}
