:root {
  color-scheme: light;
  --paper: #faf7f2;
  --linen: #e8dfd4;
  --surface: #ffffff;
  --ink: #2c2420;
  --muted: #5c534c;
  --muted-2: #8a8078;
  --terracotta: #c45c26;
  --terracotta-soft: #fff4ec;
  --sage: #5b7c6e;
  --sage-soft: #e7f0eb;
  --rose: #a63d40;
  --rose-soft: #f8e8e8;
  --amber: #b8860b;
  --amber-soft: #f7f0dc;
  --well: #f3eee6;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --shadow-soft: 0 1.5rem 4rem rgb(44 36 32 / 8%);
  --radius-small: 0.75rem;
  --radius-medium: 1.25rem;
  --radius-large: 2rem;
  --content: 73.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 7vw, 5.75rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
}

h3 {
  margin-bottom: 0.625rem;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
}

p {
  margin-bottom: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  border-radius: 0.5rem;
  background: var(--ink);
  color: var(--surface);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 0.2rem solid var(--terracotta);
  outline-offset: 0.2rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.115em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--terracotta {
  color: var(--ink);
}

.eyebrow--terracotta::before {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
  vertical-align: 0.05rem;
}

.lede {
  max-width: 41rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.6;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.075rem;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 0.0625rem solid rgb(232 223 212 / 80%);
  background: rgb(250 247 242 / 94%);
  backdrop-filter: blur(1rem);
}

.site-header__inner {
  position: relative;
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--terracotta);
  color: var(--surface);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand-mark__letter {
  transform: translate(-0.1rem, -0.02rem);
}

.brand-wave {
  position: absolute;
  right: 0.15rem;
  bottom: 0.28rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 0.1rem solid transparent;
  border-top-color: currentcolor;
  border-radius: 50%;
  transform: rotate(35deg);
}

.brand-wave:nth-of-type(2) {
  right: -0.02rem;
  bottom: 0.1rem;
  width: 0.8rem;
  height: 0.8rem;
  opacity: 0.82;
}

.brand-wave:nth-of-type(3) {
  right: -0.22rem;
  bottom: -0.1rem;
  width: 1.05rem;
  height: 1.05rem;
  opacity: 0.64;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  place-items: center;
  border: 0.0625rem solid var(--linen);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 1.2rem;
  height: 0.125rem;
  background: currentcolor;
  content: "";
}

.menu-toggle__lines {
  position: relative;
}

.menu-toggle__lines::before {
  position: absolute;
  top: -0.4rem;
}

.menu-toggle__lines::after {
  position: absolute;
  top: 0.4rem;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.5rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.4rem);
}

.site-nav a,
.language-link,
.header-login {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.language-link:hover,
.header-login:hover {
  color: var(--ink);
}

.language-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.language-link::before {
  color: var(--muted-2);
  content: "·";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-cta {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border: 0.0625rem solid var(--terracotta);
  border-radius: 999px;
  background: var(--terracotta-soft);
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: -18rem;
  right: -17rem;
  width: 39rem;
  height: 39rem;
  border: 5.5rem solid var(--terracotta-soft);
  border-radius: 50%;
  content: "";
  opacity: 0.76;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.8fr);
}

.hero__copy {
  min-width: 0;
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border: 0.0625rem solid transparent;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--surface);
}

.button--secondary {
  border-color: var(--linen);
  background: var(--surface);
  color: var(--ink);
}

.button__arrow {
  margin-left: 0.55rem;
  font-family: var(--sans);
  font-size: 1.15em;
  line-height: 1;
}

.audience-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.audience-note::before {
  width: 2rem;
  height: 0.125rem;
  background: var(--terracotta);
  content: "";
}

.report-shell {
  position: relative;
  margin: 0;
}

.report-shell::before {
  position: absolute;
  z-index: -1;
  right: -1.25rem;
  bottom: -1.25rem;
  width: 76%;
  height: 76%;
  border-radius: var(--radius-large);
  background: var(--linen);
  content: "";
}

.report-card {
  overflow: hidden;
  border: 0.0625rem solid var(--linen);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.report-card__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 0.0625rem solid var(--linen);
  background: var(--terracotta-soft);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.report-card__label span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
}

.report-card__label span:last-child::before {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
}

.report-card__body {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.report-card__person {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.report-card__person p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.report-card__person h2 {
  margin: 0.2rem 0 0;
  font-size: 1.55rem;
}

.level-badge {
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  flex: 0 0 auto;
  place-items: center;
  border: 0.0625rem solid #c9ddd3;
  border-radius: 50%;
  background: var(--sage-soft);
  color: #3d5c4f;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.score-row {
  display: grid;
  align-items: end;
  gap: 1.5rem;
  grid-template-columns: auto 1fr;
}

.score {
  color: var(--sage);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.score span {
  color: var(--muted-2);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0;
}

.score-context {
  padding-bottom: 0.2rem;
}

.score-context p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.threshold-track {
  position: relative;
  height: 0.45rem;
  overflow: hidden;
  border-radius: 999px;
  background: var(--well);
}

.threshold-track::before {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: var(--sage);
  content: "";
}

.skills {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid var(--linen);
}

.skill {
  display: grid;
  align-items: center;
  gap: 0.75rem;
  grid-template-columns: minmax(6.5rem, 0.85fr) minmax(5rem, 1fr) auto;
  color: var(--muted);
  font-size: 0.78rem;
}

.skill strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.skill__track {
  height: 0.35rem;
  overflow: hidden;
  border-radius: 999px;
  background: var(--well);
}

.skill__track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--sage);
}

.skill__value--78 {
  width: 78%;
}

.skill__value--81 {
  width: 81%;
}

.skill__value--84 {
  width: 84%;
}

.skill__value--86 {
  width: 86%;
}

.report-card__note {
  margin: 1.25rem 0 0;
  color: var(--muted-2);
  font-size: 0.72rem;
  line-height: 1.5;
}

.value-loop {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  border-block: 0.0625rem solid var(--linen);
  background: var(--surface);
}

.loop-list {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: loop;
  gap: 1.5rem;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.loop-list li {
  position: relative;
  min-width: 0;
  counter-increment: loop;
}

.loop-list li:not(:last-child)::after {
  position: absolute;
  top: 1.35rem;
  right: -0.95rem;
  width: 0.4rem;
  height: 0.4rem;
  border-top: 0.1rem solid var(--muted-2);
  border-right: 0.1rem solid var(--muted-2);
  content: "";
  transform: rotate(45deg);
}

.loop-list li::before {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.1rem;
  place-items: center;
  border: 0.0625rem solid var(--linen);
  border-radius: 50%;
  background: var(--paper);
  color: var(--terracotta);
  content: counter(loop, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 700;
}

.loop-list h3 {
  font-size: 1.3rem;
}

.loop-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.evidence {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.evidence-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.evidence-card {
  min-height: 20rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 0.0625rem solid var(--linen);
  border-radius: var(--radius-medium);
  background: var(--surface);
}

.evidence-card__number {
  display: inline-flex;
  margin-bottom: 4.75rem;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.evidence-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.ai-review {
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
}

.ai-review__panel {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5rem);
  border: 0.0625rem solid #f0d8c8;
  border-radius: var(--radius-large);
  background: var(--terracotta-soft);
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: 0.8fr 1fr;
}

.ai-review__panel::after {
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 22rem;
  height: 22rem;
  border: 3.5rem solid rgb(196 92 38 / 8%);
  border-radius: 50%;
  content: "";
}

.ai-review h2 {
  max-width: 10ch;
}

.ai-review__steps {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.ai-review__steps li {
  display: grid;
  padding: 1.25rem 0;
  border-bottom: 0.0625rem solid #ead5c8;
  gap: 1rem;
  grid-template-columns: 2.5rem 1fr;
}

.ai-review__steps li:last-child {
  border-bottom: 0;
}

.ai-review__steps span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 0.0625rem solid #e1bfa9;
  border-radius: 50%;
  color: var(--terracotta);
  font-family: var(--serif);
  font-weight: 700;
}

.ai-review__steps h3 {
  margin-bottom: 0.35rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.4;
}

.ai-review__steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.use-cases {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  border-block: 0.0625rem solid var(--linen);
  background: var(--surface);
}

.use-case-grid {
  display: grid;
  overflow: hidden;
  border: 0.0625rem solid var(--linen);
  border-radius: var(--radius-medium);
  grid-template-columns: repeat(2, 1fr);
}

.use-case {
  min-height: 14rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.use-case:nth-child(odd) {
  border-right: 0.0625rem solid var(--linen);
}

.use-case:nth-child(-n + 2) {
  border-bottom: 0.0625rem solid var(--linen);
}

.use-case__label {
  margin-bottom: 2.25rem;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.use-case p:last-child {
  max-width: 29rem;
  margin-bottom: 0;
  color: var(--muted);
}

.trust {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.trust__grid {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: minmax(17rem, 0.65fr) minmax(20rem, 1fr);
}

.trust__intro {
  position: sticky;
  top: 8rem;
}

.trust__principles {
  display: grid;
  margin-top: 2rem;
  padding: 0;
  gap: 0.85rem;
  list-style: none;
}

.trust__principles li {
  display: grid;
  align-items: start;
  gap: 0.75rem;
  grid-template-columns: 1.35rem 1fr;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust__principles li::before {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.18rem;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: #3d5c4f;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 800;
}

.faq-list {
  border-top: 0.0625rem solid var(--linen);
}

.faq-list details {
  border-bottom: 0.0625rem solid var(--linen);
}

.faq-list summary {
  display: grid;
  padding: 1.45rem 2.75rem 1.45rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 0.35rem;
  color: var(--terracotta);
  content: "+";
  font-family: var(--sans);
  font-size: 1.45rem;
  font-weight: 400;
}

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

.faq-list details p {
  max-width: 42rem;
  padding: 0 2.75rem 1.45rem 0;
  color: var(--muted);
}

.final-cta {
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.final-cta__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.25rem, 7vw, 5.25rem);
  border-radius: var(--radius-large);
  background: var(--ink);
  color: var(--surface);
}

.final-cta__panel::after {
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  width: 20rem;
  height: 20rem;
  border: 3rem solid rgb(196 92 38 / 22%);
  border-radius: 50%;
  content: "";
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 47rem;
}

.final-cta h2 {
  max-width: 13ch;
}

.final-cta p {
  max-width: 39rem;
  color: #d9d0c9;
  font-size: 1.075rem;
}

.final-cta .button--secondary {
  border-color: #766c66;
  background: transparent;
  color: var(--surface);
}

.site-footer {
  padding-block: 2.5rem;
  border-top: 0.0625rem solid var(--linen);
}

.site-footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer .brand {
  margin-bottom: 0.75rem;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 650;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.not-found__card {
  width: min(100%, 45rem);
  padding: clamp(2rem, 7vw, 4.5rem);
  border: 0.0625rem solid var(--linen);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.not-found__code {
  margin-bottom: 1rem;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.not-found h1 {
  max-width: none;
  font-size: clamp(2.5rem, 7vw, 4.75rem);
}

.not-found__es {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 0.0625rem solid var(--linen);
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .button,
  .header-cta,
  .site-nav a,
  .language-link,
  .header-login,
  .faq-list summary {
    transition:
      color 160ms ease,
      border-color 160ms ease,
      background-color 160ms ease,
      transform 160ms ease;
  }

  .button:hover,
  .header-cta:hover {
    transform: translateY(-0.12rem);
  }

  .button--primary:hover {
    box-shadow: 0 0.6rem 1.5rem rgb(196 92 38 / 18%);
  }
}

@media (max-width: 68rem) {
  .hero__grid {
    gap: 3rem;
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.78fr);
  }

  .loop-list {
    gap: 1rem;
  }

  .loop-list p {
    font-size: 0.82rem;
  }
}

@media (max-width: 55.99rem) {
  .js .menu-toggle {
    display: grid;
  }

  .site-menu {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
    order: 2;
    width: 100%;
    justify-content: flex-end;
  }

  .js .site-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    display: none;
    width: min(24rem, calc(100vw - 2rem));
    padding: 1.25rem;
    border: 0.0625rem solid var(--linen);
    border-radius: var(--radius-medium);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
  }

  .js .site-menu[data-open] {
    display: grid;
    gap: 1rem;
  }

  .js .site-menu .site-nav {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }

  .js .site-nav a {
    padding-block: 0.65rem;
    border-bottom: 0.0625rem solid var(--linen);
  }

  .js .site-menu .language-link {
    padding-block: 0.3rem;
  }

  .js .site-menu .language-link::before {
    display: none;
  }

  .js .site-menu .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .hero__copy {
    max-width: 47rem;
  }

  .report-shell {
    width: min(100%, 40rem);
    margin-inline: auto;
  }

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

  .loop-list li:nth-child(3)::after {
    display: none;
  }

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

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

  .evidence-card__number {
    margin-bottom: 3rem;
  }

  .ai-review__panel,
  .trust__grid {
    grid-template-columns: 1fr;
  }

  .trust__intro {
    position: static;
  }
}

@media (max-width: 42rem) {
  h1 {
    font-size: clamp(2.75rem, 14vw, 4.25rem);
  }

  .container {
    width: min(calc(100% - 1.5rem), var(--content));
  }

  .site-header__inner {
    min-height: 4.5rem;
  }

  .brand {
    font-size: 1.5rem;
  }

  .brand-mark {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 0.65rem;
    font-size: 1.5rem;
  }

  .hero {
    padding-top: 3.75rem;
  }

  .hero::before {
    top: -22rem;
    right: -25rem;
  }

  .hero__actions,
  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .report-shell::before {
    right: -0.5rem;
    bottom: -0.65rem;
  }

  .report-card__body {
    padding: 1.25rem;
  }

  .score-row {
    gap: 1rem;
  }

  .skill {
    gap: 0.5rem;
    grid-template-columns: minmax(5.75rem, 0.85fr) minmax(4rem, 1fr) auto;
  }

  .loop-list {
    grid-template-columns: 1fr;
  }

  .loop-list li {
    display: grid;
    align-items: start;
    padding-bottom: 1rem;
    gap: 0 1rem;
    grid-template-columns: 2.75rem 1fr;
  }

  .loop-list li::before {
    margin: 0;
    grid-row: span 2;
  }

  .loop-list li::after {
    display: none;
  }

  .loop-list h3 {
    margin-bottom: 0.35rem;
  }

  .evidence-card__number {
    margin-bottom: 2.25rem;
  }

  .ai-review__panel {
    padding: 2rem 1.25rem;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .use-case:nth-child(odd) {
    border-right: 0;
  }

  .use-case:nth-child(-n + 3) {
    border-bottom: 0.0625rem solid var(--linen);
  }

  .use-case__label {
    margin-bottom: 1.5rem;
  }

  .faq-list summary {
    font-size: 1.12rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero__actions,
  .final-cta {
    display: none;
  }

  body,
  .value-loop,
  .use-cases {
    background: var(--surface);
  }

  .hero,
  .evidence,
  .trust {
    padding-block: 2rem;
  }

  .report-card,
  .evidence-card {
    box-shadow: none;
    break-inside: avoid;
  }
}
