@font-face {
  font-family: "Manrope";
  src: url("../ManropeVariable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../IBMPlexMono-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../IBMPlexMono-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #06131d;
  --night: #073a67;
  --azure: #0b6fbd;
  --azure-dark: #085896;
  --gold: #c79a45;
  --ivory: #f7f4ed;
  --paper: #fbfaf7;
  --soft-blue: #eef3f6;
  --white: #ffffff;
  --slate: #526779;
  --muted: #526779;
  --line: #d6e0e7;
  --line-dark: rgba(247, 244, 237, 0.18);
  --success: #23705b;
  --error: #a43f34;
  --radius: 8px;
  --media-radius: 16px;
  --media-border: rgba(7, 58, 103, 0.16);
  --media-shadow: 0 24px 64px rgba(6, 19, 29, 0.12), 0 6px 18px rgba(6, 19, 29, 0.06);
  --container: 1280px;
  --header: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
dl,
dd,
figure,
ol,
ul {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.6rem, 4.1vw, 3.25rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
}

h4 {
  font-size: 1.08rem;
}

:focus-visible {
  outline: 3px solid var(--azure);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  border: 2px solid var(--azure);
  color: var(--ink);
  transform: translateY(-180%);
}

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

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

.shell {
  width: min(var(--container), calc(100% - 96px));
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.eyebrow,
.mono-label,
.validation-note,
.demo-note,
figcaption,
.footer-meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--azure);
}

.eyebrow.light {
  color: #7bc4ff;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--azure);
  border-radius: 4px;
  background: var(--azure);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--azure-dark);
  border-color: var(--azure-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.86rem;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--night);
  font-weight: 700;
}

.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header);
  background: rgba(251, 250, 247, 0.98);
  border-bottom: 1px solid rgba(7, 58, 103, 0.12);
}

.header-inner {
  display: flex;
  width: min(var(--container), calc(100% - 96px));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  gap: 32px;
}

.brand {
  display: flex;
  width: 174px;
  min-width: 174px;
  height: 62px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  color: var(--night);
  font-size: 0.88rem;
  font-weight: 650;
}

.main-nav > a:not(.button) {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--azure);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--night);
  transition: transform 180ms ease;
}

.hero {
  padding-block: 48px 48px;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  min-height: 650px;
  align-items: stretch;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 48px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 56px 24px;
}

.hero h1 {
  max-width: 620px;
  color: var(--ink);
}

.hero h1 span {
  color: var(--night);
}

.lead {
  max-width: 590px;
  margin-top: 28px;
  color: var(--slate);
  font-size: 1.17rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 34px;
  gap: 16px 24px;
}

.hero-facts {
  display: grid;
  margin-top: auto;
  padding-top: 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-facts div {
  min-width: 0;
  padding: 15px 18px 0 0;
  border-top: 1px solid var(--line);
}

.hero-facts div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  color: var(--night);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-facts dd {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.hero-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--media-border);
  border-radius: var(--media-radius);
  background: var(--white);
  box-shadow: var(--media-shadow);
}

.hero-media::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 28%;
  height: 5px;
  background: var(--gold);
  content: "";
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: 58% center;
}

figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 8px;
  background: rgba(6, 19, 29, 0.82);
  color: var(--white);
  letter-spacing: 0.08em;
}

.section-intro {
  max-width: 750px;
}

.situations {
  padding-block: 64px 88px;
  background: linear-gradient(180deg, #eaf1f5 0%, #f1f5f6 42%, var(--soft-blue) 100%);
}

.section-intro > p:last-child {
  max-width: 690px;
  margin-top: 24px;
  color: var(--slate);
  font-size: 1.05rem;
}

.wide-intro {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
  gap: 80px;
}

.wide-intro > p {
  padding-bottom: 6px;
  color: var(--slate);
}

.scenario-composer {
  display: grid;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--media-border);
  border-radius: var(--media-radius);
  background: var(--white);
  box-shadow: 0 20px 54px rgba(6, 19, 29, 0.09);
  grid-template-columns: 280px minmax(0, 1fr);
}

.scenario-tabs {
  display: flex;
  padding: 24px 28px 24px 0;
  border-right: 1px solid var(--line);
  background: #f7f9fa;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.scenario-tabs button {
  position: relative;
  min-height: 82px;
  padding: 16px 14px 16px 20px;
  border: 0;
  border-left: 2px solid transparent;
  background: transparent;
  color: var(--slate);
  cursor: pointer;
  text-align: left;
}

.scenario-tabs button span,
.scenario-tabs button small {
  display: block;
}

.scenario-tabs button span {
  font-weight: 700;
}

.scenario-tabs button small {
  margin-top: 5px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.scenario-tabs button[aria-selected="true"] {
  border-left-color: var(--azure);
  background: #edf5fb;
  color: var(--night);
}

.scenario-panel {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
}

.scenario-panel[hidden] {
  display: none;
}

.scenario-photo {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  padding: 8px;
  background: var(--white);
}

.scenario-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.scenario-photo img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.hero-media figcaption,
.scenario-photo figcaption,
.method-photo figcaption {
  right: 20px;
  bottom: 20px;
}

.scenario-story {
  display: flex;
  padding: 48px 36px;
  background: var(--white);
  flex-direction: column;
  justify-content: center;
}

.status-line {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 10px;
  color: var(--success);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border: 2px solid var(--success);
  border-radius: 50%;
}

.scenario-story h3 {
  color: var(--night);
}

.evidence-flow {
  margin-top: 32px;
  list-style: none;
}

.evidence-flow li {
  display: grid;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
}

.evidence-flow li span {
  color: var(--azure);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-flow li p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.5;
}

.method {
  padding-block: 96px;
  background: linear-gradient(180deg, #f4f0e8 0%, var(--ivory) 100%);
}

.method-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 80px;
}

.method-photo {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--media-border);
  border-radius: var(--media-radius);
  background: var(--white);
  box-shadow: var(--media-shadow);
}

.method-photo img {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 901px) {
  .method-photo img {
    object-position: 64% center;
  }
}

.method-photo figcaption {
  z-index: 1;
}

.method-copy h2 {
  max-width: 560px;
}

.offers {
  padding-block: 96px;
  background: linear-gradient(180deg, #f7f9fa 0%, var(--soft-blue) 100%);
}

.offer-grid {
  display: grid;
  margin-top: 48px;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.offer-card {
  display: flex;
  min-width: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--media-radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(6, 19, 29, 0.07);
  flex-direction: column;
}

.offer-card-featured {
  border-color: rgba(21, 117, 174, 0.55);
  box-shadow: 0 22px 54px rgba(21, 117, 174, 0.12);
}

.offer-card-premium {
  border-color: rgba(199, 154, 69, 0.6);
  background: linear-gradient(180deg, #fff 0%, #fbf7ee 100%);
}

.offer-code {
  min-height: 1.2em;
  color: var(--azure);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin-top: 8px;
  color: var(--night);
}

.offer-price {
  display: flex;
  align-items: baseline;
  margin-top: 18px;
  gap: 8px;
  color: var(--night);
}

.offer-price strong {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
}

.offer-price span {
  color: var(--muted);
  font-size: 0.82rem;
}

.offer-summary {
  min-height: 5.2em;
  margin-top: 24px;
  color: var(--slate);
  line-height: 1.65;
}

.offer-card ul {
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding: 13px 0 13px 26px;
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.5;
}

.offer-card li::before {
  position: absolute;
  top: 15px;
  left: 2px;
  color: var(--success);
  content: "\2713";
  font-weight: 800;
}

.offer-boundary,
.offer-digital {
  margin-top: 22px;
  padding: 15px 16px;
  border-radius: 10px;
  background: #f3f6f7;
  color: var(--slate);
  font-size: 0.78rem;
  line-height: 1.55;
}

.offer-digital {
  border: 1px solid rgba(199, 154, 69, 0.35);
  background: #fffaf0;
}

.offer-digital strong,
.offer-digital span {
  display: block;
}

.offer-digital strong {
  margin-bottom: 5px;
  color: var(--night);
}

.offer-card > .text-link {
  margin-top: auto;
  padding-top: 28px;
}

.offers-note {
  max-width: 900px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: center;
}

.lead-small {
  margin-top: 24px;
  color: var(--slate);
  font-size: 1.04rem;
}

.trust-person {
  display: flex;
  align-items: center;
  margin-top: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 16px;
}

.trust-person > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--azure);
  border-radius: 50%;
  color: var(--night);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.trust-person strong,
.trust-person small {
  display: block;
}

.trust-person strong {
  color: var(--night);
}

.trust-person small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.method-steps {
  margin-top: 36px;
  list-style: none;
}

.method-steps li {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
}

.method-steps li > span {
  color: var(--azure);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
}

.method-steps strong {
  color: var(--night);
}

.method-steps p {
  margin-top: 3px;
  color: var(--slate);
  font-size: 0.9rem;
}

.validation-note {
  margin-top: 28px;
  color: #7b6642;
  letter-spacing: 0.07em;
}

.report {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.report-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: 72px;
}

.report-copy h2 {
  color: var(--white);
}

.report-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: #b4c5d1;
}

.report-benefits {
  margin-top: 36px;
  list-style: none;
}

.report-benefits li {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
}

.report-benefits svg {
  width: 22px;
  fill: none;
  stroke: #7bc4ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.report-benefits strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
}

.report-benefits span {
  color: #a8bac8;
  font-size: 0.9rem;
}

.report-demo {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #b8c9d4;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.report-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}

.report-demo-head h3 {
  margin-top: 6px;
  color: var(--night);
  font-size: 1.3rem;
}

.mono-label {
  color: var(--azure);
  letter-spacing: 0.08em;
}

.report-status {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 7px 10px;
  border-bottom: 3px solid var(--gold);
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 800;
  gap: 7px;
}

.report-status svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.report-meta {
  display: grid;
  padding: 20px 28px;
  background: #f3f7fa;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.report-meta div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.report-meta span,
.report-meta strong {
  display: block;
}

.report-meta span,
.report-observations span {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-meta strong {
  margin-top: 4px;
  color: var(--night);
  font-size: 0.77rem;
}

.report-body {
  display: grid;
  padding: 28px;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
  gap: 28px;
}

.report-body figure {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 4px;
}

.report-body figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-observations > div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.report-observations p {
  margin-top: 7px;
  color: var(--slate);
  font-size: 0.84rem;
  line-height: 1.5;
}

.report-observations .attention {
  border-top-color: var(--azure);
}

.report-observations .attention span {
  color: var(--azure);
}

.report-demo-foot {
  padding: 13px 28px;
  background: var(--night);
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-align: right;
}

/* Passe corrective 04 — projection premium, factuelle et explicitement fictive. */
.report {
  padding-block: 104px;
}

.report-intro {
  display: grid;
  align-items: end;
  margin-bottom: 52px;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
  gap: 80px;
}

.report-intro h2 {
  max-width: 790px;
  color: var(--white);
}

.report-intro > p {
  padding-bottom: 6px;
  color: #b4c5d1;
  font-size: 1.02rem;
}

.report-demo-rich {
  overflow: hidden;
  border: 1px solid rgba(218, 231, 239, 0.72);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22), 0 0 0 6px rgba(255, 255, 255, 0.035);
}

.report-demo-rich .report-demo-head {
  padding: 28px 32px;
}

.report-demo-rich .report-demo-head h3 {
  margin-top: 7px;
  font-size: 1.38rem;
}

.report-demo-rich .report-status {
  min-height: 32px;
  padding: 5px 9px;
  border: 1px solid #b9d3e5;
  border-bottom: 1px solid #b9d3e5;
  border-radius: 4px;
  background: #f5f8fa;
  color: var(--night);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.report-demo-rich .report-status svg {
  width: 17px;
  fill: none;
  stroke: var(--azure);
}

.report-demo-rich .report-meta {
  padding: 20px 32px;
  background: #edf3f6;
}

.report-kpis {
  display: grid;
  padding: 22px 32px 28px;
  background: #edf3f6;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.report-kpis > div {
  display: flex;
  min-height: 96px;
  padding: 16px 18px;
  border: 1px solid #d0dde5;
  border-radius: 10px;
  background: var(--white);
  flex-direction: column;
  justify-content: center;
}

.report-kpis dt {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.report-kpis dd {
  order: -1;
  margin-bottom: 5px;
  color: var(--night);
  font-size: 1.68rem;
  font-weight: 650;
  line-height: 1;
}

.report-kpis > div:nth-child(3) dd {
  color: #8a6827;
}

.report-gallery {
  display: grid;
  padding: 32px;
  background: var(--white);
  grid-template-columns: minmax(0, 2fr) minmax(290px, 1fr);
  gap: 12px;
}

.report-gallery-rail {
  display: grid;
  min-height: 450px;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.report-shot {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(7, 58, 103, 0.18);
  border-radius: 13px;
  background: #f5f2eb;
  box-shadow: 0 12px 28px rgba(6, 19, 29, 0.09);
}

.report-shot-main {
  min-height: 450px;
}

.report-shot picture {
  display: block;
  width: 100%;
  height: 100%;
}

.report-shot img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.report-shot-main img {
  object-position: 56% center;
}

.report-gallery .report-shot figcaption {
  right: 6px;
  bottom: 6px;
  left: 6px;
  max-width: none;
  overflow: hidden;
  padding: 24px 10px 8px;
  border-left: 0;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, transparent, rgba(6, 19, 29, 0.9));
  box-shadow: inset 2px 0 0 var(--gold);
  font-size: 0.63rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.caption-short {
  display: none;
}

.report-detail-grid {
  display: grid;
  align-items: stretch;
  padding: 4px 32px 32px;
  background: var(--white);
  grid-template-columns: minmax(0, 7fr) minmax(290px, 4fr);
  gap: 28px;
}

.report-summary,
.report-decision {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.report-summary h4,
.report-decision h4 {
  margin-top: 9px;
  color: var(--night);
}

.report-summary > p,
.report-decision > p {
  margin-top: 13px;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.6;
}

.report-checklist {
  display: grid;
  margin-top: 22px;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px 24px;
}

.report-checklist li {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  gap: 16px;
  color: var(--slate);
  font-size: 0.8rem;
}

.report-checklist strong {
  color: var(--success);
  font-size: 0.76rem;
}

.report-checklist .attention strong {
  color: #8a6827;
}

.report-decision {
  position: relative;
  overflow: hidden;
  border-color: #bdd3e2;
  background: linear-gradient(145deg, #eef6fb 0%, #f8fafb 100%);
}

.report-decision::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  content: "";
}

.report-decision .text-link {
  margin-top: 24px;
  color: var(--night);
}

.report-demo-rich .report-demo-foot {
  padding: 15px 32px;
  background: var(--night);
  text-align: left;
}

.outcomes {
  padding-block: 96px;
  background: linear-gradient(180deg, #eef3f6 0%, var(--paper) 170px, var(--paper) 100%);
}

.outcome-list {
  margin-top: 48px;
}

.outcome-list article {
  display: grid;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(180px, 2fr) minmax(220px, 2.5fr) minmax(220px, 2.5fr) minmax(190px, 2fr);
  gap: 32px;
}

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

.outcome-name {
  display: flex;
  align-items: center;
  gap: 16px;
}

.outcome-name svg {
  width: 24px;
  min-width: 24px;
  fill: none;
  stroke: var(--azure);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.outcome-list article > p {
  color: var(--slate);
  font-size: 0.9rem;
}

.outcome-list article > p span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.outcome-list article > strong {
  color: var(--night);
  font-size: 0.96rem;
  line-height: 1.45;
}

.territory {
  position: relative;
  overflow: hidden;
  padding-block: 96px;
  background: var(--night);
  color: var(--white);
}

.territory::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 32%;
  height: 4px;
  background: var(--gold);
  content: "";
}

.territory-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: 72px;
}

.territory-copy h2 {
  color: var(--white);
}

.territory-copy > p:not(.eyebrow, .validation-note) {
  margin-top: 24px;
  color: #c2d0da;
}

.territory-copy dl {
  margin-top: 32px;
  border-top: 1px solid var(--line-dark);
}

.territory-copy dl div {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 18px;
}

.territory-copy dt {
  color: #7bc4ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.69rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.territory-copy dd {
  color: var(--white);
  font-size: 0.92rem;
}

.light-note {
  color: #dfc58e;
}

.territory-map {
  position: relative;
  min-height: 510px;
  overflow: hidden;
}

.territory-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}

.territory-map::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--night) 0%, transparent 24%, transparent 100%);
  content: "";
  pointer-events: none;
}

.territory-map figcaption {
  right: 24px;
  bottom: 18px;
  left: 24px;
  max-width: none;
  z-index: 2;
  text-align: left;
  white-space: normal;
}

.study {
  padding-block: 96px;
  background: linear-gradient(180deg, #f0ede5 0%, var(--ivory) 180px, var(--ivory) 100%);
}

.study-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 96px;
}

.study-copy {
  position: sticky;
  top: calc(var(--header) + 40px);
}

.study-copy > p:not(.eyebrow, .local-only) {
  margin-top: 24px;
  color: var(--slate);
  font-size: 1.04rem;
}

.contact-lines {
  display: flex;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  flex-direction: column;
  gap: 7px;
  color: var(--night);
  font-weight: 700;
}

.contact-lines a:hover {
  color: var(--azure);
}

.contact-lines a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.local-only {
  display: flex;
  align-items: center;
  margin-top: 28px;
  gap: 9px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
}

.local-only span {
  width: 8px;
  height: 8px;
  border: 2px solid var(--azure);
  border-radius: 50%;
}

.study-form {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.study-form[aria-busy="true"] {
  cursor: progress;
}

.form-instructions,
.staging-form-notice,
.no-js-notice {
  margin-bottom: 20px;
  color: var(--slate);
  font-size: 0.82rem;
}

.staging-form-notice {
  padding: 12px 14px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: #fff9ec;
  color: #684d19;
  font-weight: 750;
}

.js .no-js-notice {
  display: none;
}

.no-js .study-form > :not(.no-js-notice) {
  display: none;
}

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

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--night);
  font-size: 0.84rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #b8c7d1;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--azure);
  outline: 2px solid rgba(11, 111, 189, 0.18);
  outline-offset: 1px;
}

.field [aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: var(--error);
  font-size: 0.75rem;
}

.submit-button {
  width: 100%;
  margin-top: 2px;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.form-status {
  min-height: 26px;
  margin-top: 14px;
  color: var(--success);
  font-weight: 700;
}

.study-form > small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.74rem;
}

.study-form > small a,
.legal-copy a {
  color: var(--night);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-copy a.button {
  color: var(--white);
  text-decoration: none;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.whatsapp-inline {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 16px;
  color: var(--night);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding-block: 56px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(220px, 1.5fr) minmax(320px, 2fr) minmax(180px, 1fr);
  gap: 48px;
}

.footer-grid > div img {
  width: 174px;
  height: auto;
}

.footer-grid > div p {
  margin-top: 14px;
  color: #aebfca;
  font-size: 0.86rem;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: #dce6ec;
  font-size: 0.84rem;
}

.footer-grid nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.footer-link-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-align: left;
}

.footer-link-button:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-settings-inline {
  color: var(--night);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-meta {
  color: #8298a7;
  letter-spacing: 0.07em;
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: #176b4d;
  box-shadow: 0 12px 30px rgba(6, 19, 29, 0.25);
  color: var(--white);
  font-weight: 800;
}

.consent-panel {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  width: min(430px, calc(100% - 48px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  color: var(--white);
}

.consent-panel[hidden] {
  display: none;
}

.consent-panel h2 {
  font-size: 1.22rem;
}

.consent-panel p {
  margin-top: 12px;
  color: #c2d0da;
  font-size: 0.88rem;
}

.consent-panel .consent-status:empty {
  display: none;
}

.consent-panel .consent-status:not(:empty) {
  color: var(--white);
  font-weight: 700;
}

.consent-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 12px;
}

.button-secondary {
  border-color: #8ca0af;
  background: transparent;
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.legal-main {
  min-height: calc(100vh - var(--header));
  padding-block: 80px;
  background: var(--ivory);
}

.legal-shell {
  width: min(820px, calc(100% - 48px));
  margin-inline: auto;
}

.legal-copy {
  margin-top: 36px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.legal-copy h2 {
  margin-top: 28px;
  font-size: 1.35rem;
}

.legal-copy p,
.legal-copy li {
  margin-top: 14px;
  color: var(--slate);
}

.legal-copy ul {
  padding-left: 22px;
}

.pending-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 20px;
  padding: 6px 10px;
  border: 1px solid #c79a45;
  border-radius: 999px;
  color: #7b5b1f;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root {
    --header: 76px;
  }

  .shell,
  .header-inner {
    width: calc(100% - 64px);
  }

  .section {
    padding-block: 80px;
  }

  .situations {
    padding-block: 64px 80px;
  }

  .method,
  .offers,
  .report,
  .outcomes,
  .territory,
  .study {
    padding-block: 80px;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.82rem;
  }

  .hero-grid {
    min-height: 590px;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 32px;
  }

  .hero-media {
    min-height: 590px;
  }

  .hero-copy {
    padding-block: 32px 16px;
  }

  .hero-facts {
    padding-top: 32px;
  }

  .scenario-composer {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .scenario-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .scenario-photo {
    min-height: 390px;
  }

  .method-grid,
  .territory-grid {
    gap: 48px;
  }

  .method-photo {
    min-height: 0;
  }

  .offer-card {
    padding: 26px;
  }

  .report-intro {
    grid-template-columns: minmax(0, 6fr) minmax(280px, 4fr);
    gap: 48px;
  }

  .report-gallery {
    padding: 26px;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
  }

  .report-gallery-rail,
  .report-shot-main {
    min-height: 410px;
  }

  .report-detail-grid {
    padding: 4px 26px 26px;
    grid-template-columns: minmax(0, 6fr) minmax(270px, 4fr);
  }

  .outcome-list article {
    grid-template-columns: minmax(160px, 1.5fr) repeat(2, minmax(190px, 2fr));
  }

  .outcome-list article > strong {
    grid-column: 2 / -1;
  }

  .study-grid {
    gap: 56px;
  }
}

@media (max-width: 900px) {
  .js .menu-toggle {
    display: block;
    order: 2;
  }

  .js .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 20px 32px 26px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
  }

  .js .main-nav.is-open {
    display: flex;
  }

  .no-js .site-header {
    height: auto;
  }

  .no-js .header-inner {
    height: auto;
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .no-js .main-nav {
    position: static;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }

  .main-nav > a:not(.button) {
    padding-inline: 4px;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .hero {
    padding-block: 36px 56px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    padding-block: 16px 0;
  }

  .hero-media {
    min-height: 470px;
  }

  .hero-facts {
    margin-top: 32px;
  }

  .situations {
    padding-block: 64px 72px;
  }

  .method,
  .offers,
  .report,
  .outcomes,
  .territory,
  .study {
    padding-block: 72px;
  }

  .wide-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .scenario-composer {
    grid-template-columns: minmax(0, 1fr);
  }

  .scenario-tabs {
    display: grid;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .scenario-tabs button {
    min-height: 96px;
    padding: 14px;
    border-left: 0;
    border-bottom: 3px solid transparent;
  }

  .scenario-tabs button + button {
    border-left: 1px solid var(--line);
  }

  .scenario-tabs button[aria-selected="true"] {
    border-bottom-color: var(--azure);
  }

  .scenario-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .method-grid,
  .offer-grid,
  .territory-grid,
  .study-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .method-photo {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .offer-summary {
    min-height: 0;
  }

  .territory-copy {
    max-width: 640px;
  }

  .report-intro {
    margin-bottom: 42px;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .report-intro > p {
    max-width: 680px;
    padding-bottom: 0;
  }

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

  .report-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .report-shot-main {
    min-height: 360px;
  }

  .report-gallery-rail {
    min-height: 180px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr);
  }

  .report-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .territory-map {
    min-height: 430px;
  }

  .study-copy {
    position: static;
    max-width: 650px;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .report-kpis {
    padding: 18px 26px 22px;
    gap: 8px;
  }

  .report-kpis > div {
    min-height: 80px;
    padding: 12px 14px;
  }

  .report-kpis dd {
    font-size: 1.45rem;
  }
}

@media (max-width: 700px) {
  :root {
    --header: 72px;
  }

  .shell,
  .header-inner {
    width: calc(100% - 40px);
  }

  .section {
    padding-block: 60px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .brand {
    width: 152px;
    min-width: 152px;
  }

  .main-nav {
    padding-inline: 20px;
  }

  .hero {
    padding-block: 26px 48px;
  }

  .situations {
    padding-block: 56px 64px;
  }

  .method,
  .report,
  .offers,
  .outcomes,
  .territory,
  .study {
    padding-block: 64px;
  }

  .lead {
    font-size: 1.04rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-facts div,
  .hero-facts div + div {
    padding: 13px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-media {
    min-height: 390px;
  }

  .scenario-composer {
    margin-top: 32px;
  }

  .scenario-tabs {
    grid-template-columns: minmax(0, 1fr);
  }

  .scenario-tabs button {
    min-height: 70px;
    border-bottom: 1px solid var(--line);
  }

  .scenario-tabs button + button {
    border-left: 0;
  }

  .scenario-tabs button[aria-selected="true"] {
    border-left: 3px solid var(--azure);
    border-bottom-color: var(--line);
  }

  .scenario-photo {
    min-height: 310px;
  }

  .scenario-story {
    padding: 32px 22px;
  }

  .evidence-flow li {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .method-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .report-intro {
    margin-bottom: 34px;
  }

  .report-demo-rich {
    border-radius: 14px;
  }

  .report-demo-rich .report-demo-head {
    align-items: flex-start;
    padding: 22px;
    flex-direction: column;
  }

  .report-demo-rich .report-status {
    white-space: normal;
  }

  .report-demo-rich .report-meta {
    padding: 16px 22px;
    grid-template-columns: minmax(0, 1fr);
  }

  .report-demo-rich .report-meta div + div {
    margin-top: 12px;
    padding-top: 12px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .report-kpis {
    padding: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .report-kpis > div {
    min-height: 88px;
    padding: 14px;
  }

  .report-kpis dd {
    font-size: 1.45rem;
  }

  .report-gallery {
    padding: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .report-gallery-rail {
    display: contents;
  }

  .report-shot,
  .report-shot-main {
    min-height: 0;
    padding: 4px;
    border-radius: 10px;
  }

  .report-shot-main {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .report-gallery-rail .report-shot {
    aspect-ratio: 1 / 1;
  }

  .report-gallery .report-shot figcaption {
    right: 4px;
    bottom: 4px;
    left: 4px;
    max-width: none;
    padding: 18px 6px 5px;
    font-size: 0.6rem;
  }

  .caption-full {
    display: none;
  }

  .caption-short {
    display: inline;
  }

  .report-detail-grid {
    padding: 0 16px 16px;
    gap: 12px;
  }

  .report-summary,
  .report-decision {
    padding: 22px;
  }

  .report-checklist {
    grid-template-columns: minmax(0, 1fr);
  }

  .report-demo-rich .report-demo-foot {
    padding: 14px 16px;
    text-align: left;
  }

  .outcome-list {
    margin-top: 32px;
  }

  .outcome-list article {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .outcome-list article > strong {
    grid-column: auto;
    padding-top: 4px;
  }

  .territory-grid {
    gap: 36px;
  }

  .territory-map {
    min-height: 310px;
  }

  .territory-map::after {
    background: linear-gradient(180deg, var(--night) 0%, transparent 22%, transparent 100%);
  }

  .territory-map figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    font-size: 0.58rem;
  }

  .field-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .study-form {
    padding: 26px 20px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .footer-grid nav {
    flex-direction: column;
    gap: 4px;
  }

  .footer-meta {
    grid-column: auto;
  }

  .whatsapp-float {
    display: none;
  }

  .consent-panel {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 20px;
  }

  .consent-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .consent-actions .button {
    width: 100%;
  }

  .legal-main {
    padding-block: 56px;
  }

  .legal-copy {
    padding: 24px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
