/* styles.css */
@font-face {
  font-family: "Instrument Sans";
  src: url('/uploads/6ABHtpHCdcM-BrVLnkdI2-instrument-sans-latin.woff2') format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url('/uploads/L1QlM6c2h-T760xGJwBj--instrument-italic-latin.woff2') format("woff2");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url('/uploads/jngyCetk7pcWpd9s3ABWa-oswald-latin.woff2') format("woff2");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #f5f4f1;
  --surface: #fbfaf8;
  --surface-strong: #ffffff;
  --surface-soft: #eceae5;
  --ink: #191613;
  --muted: #66615b;
  --line: rgb(25 22 19 / 14%);
  --line-strong: rgb(25 22 19 / 26%);
  --accent: #df4b1b;
  --accent-strong: #b93610;
  --accent-soft: #f7ded4;
  --on-accent: #fffaf6;
  --focus: #a32c09;
  --shadow: 0 28px 80px rgb(63 47 36 / 10%);
  --radius-card: 18px;
  --radius-control: 999px;
  --header-height: 72px;
  --container: 1360px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #151412;
  --surface: #1b1a18;
  --surface-strong: #23211e;
  --surface-soft: #292622;
  --ink: #f1eee8;
  --muted: #b7b0a7;
  --line: rgb(241 238 232 / 14%);
  --line-strong: rgb(241 238 232 / 28%);
  --accent: #f06437;
  --accent-strong: #ff7b50;
  --accent-soft: #3b241c;
  --on-accent: #17120f;
  --focus: #ff8c65;
  --shadow: 0 28px 80px rgb(0 0 0 / 30%);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #151412;
    --surface: #1b1a18;
    --surface-strong: #23211e;
    --surface-soft: #292622;
    --ink: #f1eee8;
    --muted: #b7b0a7;
    --line: rgb(241 238 232 / 14%);
    --line-strong: rgb(241 238 232 / 28%);
    --accent: #f06437;
    --accent-strong: #ff7b50;
    --accent-soft: #3b241c;
    --on-accent: #17120f;
    --focus: #ff8c65;
    --shadow: 0 28px 80px rgb(0 0 0 / 30%);
  }
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

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

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

::selection {
  background: var(--accent);
  color: var(--on-accent);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 60;
  padding: 10px 14px;
  border-radius: var(--radius-control);
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 29px;
  height: 29px;
  color: currentColor;
  flex: 0 0 auto;
}

.brand-mark path {
  fill: currentColor;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.theme-button,
.menu-button {
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.theme-button {
  min-width: 112px;
  padding: 0 14px;
}

.menu-button {
  display: none;
  min-width: 70px;
  padding: 0 14px;
}

.theme-button:hover,
.menu-button:hover {
  border-color: var(--ink);
  background: var(--surface-strong);
}

.theme-button:active,
.menu-button:active,
.button:active {
  transform: translateY(1px) scale(0.985);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-control);
  background: var(--accent);
  color: var(--on-accent);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}

.mobile-panel {
  position: fixed;
  inset: var(--header-height) 0 auto;
  z-index: 35;
  display: none;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.mobile-panel[aria-hidden="false"] {
  display: block;
}

.mobile-panel nav {
  display: grid;
  gap: 0;
  padding: 14px 24px 26px;
}

.mobile-panel a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.mobile-panel a:last-child {
  margin-top: 18px;
  padding: 14px 18px;
  border: 0;
  border-radius: var(--radius-control);
  background: var(--accent);
  color: var(--on-accent);
  font-size: 15px;
  text-align: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  min-height: calc(100dvh - var(--header-height));
  padding-block: 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(22px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--accent-strong);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.35rem, 5.65vw, 5.9rem);
  font-weight: 500;
  letter-spacing: -0.068em;
  line-height: 0.94;
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.3vw, 1.24rem);
  line-height: 1.5;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--ink);
  background: var(--surface-strong);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--on-accent);
}

.button-primary:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: var(--on-accent);
}

.button-text {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  text-decoration: underline;
  text-underline-offset: 0.28em;
}

.button-text:hover {
  background: transparent;
  color: var(--accent-strong);
}

.hero-media,
.media-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface-soft);
}

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

.hero-media picture,
.hero-media img,
.media-frame picture,
.media-frame img {
  width: 100%;
  height: 100%;
}

.hero-media img,
.media-frame img {
  object-fit: cover;
}

.media-frame.is-loading::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, transparent 30%, color-mix(in srgb, var(--surface-strong) 72%, transparent) 48%, transparent 66%);
  background-size: 200% 100%;
  content: "";
  animation: media-shimmer 1.4s ease-in-out infinite;
}

.media-frame.is-error::after {
  position: absolute;
  inset: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-card) - 6px);
  background: var(--surface);
  color: var(--muted);
  content: "Imagem indisponível";
  font-size: 13px;
}

@keyframes media-shimmer {
  to {
    background-position: -200% 0;
  }
}

.evidence-wrap {
  padding-block: 0 24px;
}

.evidence-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.evidence-item {
  min-width: 0;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.evidence-value {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.evidence-label {
  display: block;
  max-width: 210px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.evidence-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 22px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.section {
  padding-block: clamp(86px, 10vw, 144px);
}

.section-compact {
  padding-block: clamp(64px, 8vw, 104px);
}

.section-head {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin-bottom: clamp(44px, 6vw, 78px);
}

.section-head h2,
.split-copy h2,
.offer-copy h2,
.closing h2,
.contact-copy h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5.4vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.section-head p,
.split-copy > p,
.offer-copy > p,
.closing p,
.contact-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.module-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.module-card h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 4.1rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.module-card p {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.module-name {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent-strong);
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.module-card a {
  display: inline-block;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 700;
}

.module-report {
  grid-column: span 7;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(230px, 1.2fr);
  gap: 30px;
  padding: 0;
}

.module-report .module-copy {
  padding: clamp(28px, 4vw, 50px);
}

.module-report .media-frame {
  min-height: 100%;
  border-radius: 0;
}

.module-crit {
  grid-column: span 5;
  background: var(--accent-soft);
}

.module-guide {
  grid-column: span 4;
  min-height: 380px;
}

.module-guide::after {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 290px;
  height: 290px;
  border: 44px solid var(--accent);
  border-radius: 50%;
  content: "";
  opacity: 0.18;
}

.module-laudai {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 44px;
  background: var(--surface-soft);
}

.structure-stack {
  align-self: end;
  display: grid;
  gap: 10px;
}

.structure-stack span {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-strong);
  font-size: 13px;
  font-weight: 700;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(36px, 7vw, 94px);
  align-items: center;
}

.feature-split > * {
  min-width: 0;
}

.feature-split.reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.feature-split.reverse .split-copy {
  order: -1;
}

.feature-split .media-frame {
  aspect-ratio: 16 / 10;
  min-height: 420px;
}

.split-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.split-copy h2 {
  max-width: 680px;
}

.split-copy > p {
  margin-top: 26px;
}

.fact-list {
  display: grid;
  width: 100%;
  margin-top: 36px;
}

.fact {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 0.65fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.fact strong {
  font-size: 14px;
}

.fact span {
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 700;
}

.science-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 9vw, 150px);
  align-items: start;
}

.science-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.science-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.064em;
  line-height: 0.97;
}

.science-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
}

.evidence-cards {
  display: grid;
  gap: 18px;
}

.evidence-card {
  min-height: 260px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.evidence-card:first-child {
  margin-right: 12%;
}

.evidence-card:last-child {
  margin-left: 12%;
  background: var(--accent-soft);
}

.evidence-card h3 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.evidence-card p {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--muted);
}

.evidence-card a {
  display: inline-block;
  margin-top: 28px;
  font-weight: 700;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 18px;
}

.quote-main,
.quote-small {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.quote-main {
  display: grid;
  align-content: space-between;
  min-height: 520px;
  padding: clamp(34px, 5vw, 64px);
}

.quote-main blockquote,
.quote-small blockquote {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.quote-main blockquote {
  max-width: 850px;
  font-size: clamp(2.15rem, 4.5vw, 5rem);
  line-height: 1.02;
}

.quote-stack {
  display: grid;
  gap: 18px;
}

.quote-small {
  display: grid;
  align-content: space-between;
  min-height: 250px;
  padding: 30px;
}

.quote-small:last-child {
  background: var(--accent-soft);
}

.quote-small blockquote {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.quote-attribution {
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
}

.quote-attribution strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.offer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(42px, 9vw, 140px);
  align-items: center;
  padding: clamp(38px, 7vw, 90px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--accent-soft);
}

.offer-copy > p {
  margin-top: 24px;
}

.price-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
  background: var(--surface-strong);
}

.price-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 18px 0 0;
}

.price strong {
  font-family: "Oswald", sans-serif;
  font-size: clamp(4.8rem, 8vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.83;
}

.price span {
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 14px;
}

.price-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.closing {
  display: grid;
  justify-items: start;
  padding: clamp(44px, 8vw, 110px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.closing h2 {
  max-width: 880px;
}

.closing p {
  margin-top: 24px;
}

.site-footer {
  margin-top: clamp(72px, 10vw, 140px);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.7fr);
  gap: clamp(30px, 6vw, 90px);
  padding-block: 64px;
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: var(--muted);
}

.footer-column h2 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 22px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  min-height: min(820px, calc(100dvh - var(--header-height)));
  padding-block: 24px;
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(26px, 5vw, 72px);
}

.page-hero h1 {
  font-size: clamp(3.2rem, 5.25vw, 5.6rem);
}

.page-hero .media-frame {
  min-height: 480px;
}

.page-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.workflow {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.workflow-intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.workflow-intro h2,
.governance-intro h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.064em;
  line-height: 0.97;
}

.workflow-intro p,
.governance-intro p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
}

.workflow-stages {
  display: grid;
  gap: 18px;
}

.workflow-stage {
  min-height: 260px;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.workflow-stage:nth-child(2) {
  margin-left: 8%;
  background: var(--accent-soft);
}

.workflow-stage:nth-child(3) {
  margin-left: 16%;
}

.workflow-stage h3 {
  margin: 0;
  font-size: clamp(2.1rem, 3.8vw, 4.3rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.workflow-stage p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
}

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

.module-index article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.module-index article:nth-child(1) {
  grid-column: span 7;
  background: var(--accent-soft);
}

.module-index article:nth-child(2) {
  grid-column: span 5;
}

.module-index article:nth-child(3) {
  grid-column: span 4;
}

.module-index article:nth-child(4) {
  grid-column: span 4;
  background: var(--surface-soft);
}

.module-index article:nth-child(5) {
  grid-column: span 4;
}

.module-index h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.module-index p {
  margin: 18px 0 0;
  color: var(--muted);
}

.governance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
}

.governance-intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.governance-list {
  display: grid;
}

.governance-item {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.governance-item strong {
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.governance-item p {
  margin: 0;
  color: var(--muted);
}

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

.data-stage {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.data-stage:nth-child(2),
.data-stage:nth-child(4) {
  margin-top: 52px;
}

.data-stage h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.data-stage p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.dpo-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 110px);
  padding: clamp(34px, 6vw, 78px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-soft);
}

.dpo-panel h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.dpo-list {
  display: grid;
  gap: 20px;
}

.dpo-list div {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.dpo-list strong {
  display: block;
  margin-bottom: 6px;
}

.dpo-list span {
  color: var(--muted);
  font-size: 14px;
}

.faq {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
}

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

.faq summary {
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.faq p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 26px;
  color: var(--muted);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  min-height: calc(100dvh - var(--header-height));
  padding-block: 24px;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 5vw, 72px);
}

.contact-copy > p {
  margin-top: 26px;
}

.contact-hero .media-frame {
  min-height: 520px;
}

.contact-options {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.contact-primary,
.contact-secondary {
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.contact-primary {
  background: var(--accent-soft);
}

.contact-secondary {
  background: var(--surface);
}

.contact-primary h2,
.contact-secondary h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.contact-primary p,
.contact-secondary p {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
}

.contact-email {
  display: inline-block;
  margin-top: 34px;
  color: var(--accent-strong);
  font-size: clamp(1.35rem, 2.8vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.meeting-facts {
  display: grid;
  margin-top: 34px;
}

.meeting-facts div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.meeting-facts strong,
.meeting-facts span {
  display: block;
}

.meeting-facts span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .theme-button {
    min-width: 92px;
  }

  .hero,
  .page-hero,
  .contact-hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3rem, 5.6vw, 4.6rem);
  }

  .module-report {
    grid-column: span 12;
  }

  .module-crit,
  .module-guide {
    grid-column: span 6;
  }

  .module-laudai {
    grid-column: span 6;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .desktop-nav,
  .header-cta,
  .theme-button {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero,
  .page-hero,
  .contact-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 12px 24px;
  }

  .hero-copy,
  .page-hero-copy,
  .contact-copy {
    min-height: 560px;
    padding: 62px 18px;
  }

  .hero h1,
  .page-hero h1,
  .contact-copy h1 {
    font-size: clamp(3.2rem, 11vw, 5.2rem);
  }

  .hero-media,
  .page-hero .media-frame,
  .contact-hero .media-frame {
    min-height: 68vw;
    max-height: 720px;
  }

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

  .evidence-item:nth-child(2) {
    border-right: 0;
  }

  .evidence-item:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .evidence-link {
    border-top: 1px solid var(--line);
  }

  .feature-split,
  .feature-split.reverse,
  .science-layout,
  .workflow,
  .governance-layout {
    grid-template-columns: 1fr;
  }

  .feature-split.reverse .split-copy {
    order: 0;
  }

  .science-copy,
  .workflow-intro,
  .governance-intro {
    position: static;
  }

  .quote-layout,
  .offer,
  .dpo-panel,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .quote-main {
    min-height: 430px;
  }

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

  .module-index article:nth-child(n) {
    grid-column: span 6;
  }

  .module-index article:first-child {
    grid-column: span 12;
  }

  .data-path {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero-copy,
  .page-hero-copy,
  .contact-copy {
    min-height: 500px;
    padding: 50px 10px;
  }

  .hero h1,
  .page-hero h1,
  .contact-copy h1 {
    font-size: clamp(2.85rem, 14vw, 4.5rem);
    letter-spacing: -0.062em;
  }

  .hero-lead,
  .page-lead {
    font-size: 16px;
  }

  .button-row {
    width: 100%;
  }

  .button-row .button {
    flex: 1 1 100%;
    width: 100%;
  }

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

  .evidence-item,
  .evidence-item:nth-child(2),
  .evidence-item:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .evidence-item:nth-child(3) {
    border-top: 0;
  }

  .evidence-link {
    min-height: 76px;
    border-top: 0;
  }

  .section {
    padding-block: 80px;
  }

  .section-head h2,
  .split-copy h2,
  .offer-copy h2,
  .closing h2,
  .science-copy h2,
  .workflow-intro h2,
  .governance-intro h2 {
    font-size: clamp(2.55rem, 13vw, 4.4rem);
  }

  .module-grid,
  .module-index {
    grid-template-columns: 1fr;
  }

  .module-report,
  .module-crit,
  .module-guide,
  .module-laudai,
  .module-index article:nth-child(n) {
    grid-column: 1;
  }

  .module-report,
  .module-laudai {
    grid-template-columns: 1fr;
  }

  .module-report .media-frame {
    min-height: 280px;
  }

  .module-card {
    min-height: 300px;
  }

  .feature-split .media-frame {
    min-height: 72vw;
  }

  .fact,
  .governance-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .evidence-card:first-child,
  .evidence-card:last-child,
  .workflow-stage:nth-child(2),
  .workflow-stage:nth-child(3) {
    margin-inline: 0;
  }

  .quote-main {
    min-height: 390px;
  }

  .offer {
    padding: 28px;
  }

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

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

  .data-path {
    grid-template-columns: 1fr;
  }

  .data-stage:nth-child(2),
  .data-stage:nth-child(4) {
    margin-top: 0;
  }

  .dpo-panel {
    padding: 28px;
  }
}

@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 {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--bg);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}


/* styles-v2.css */
/* Laudos Studio, editorial system v2 */

:root {
  --bg: #f2efe8;
  --surface: #f8f6f1;
  --surface-strong: #ffffff;
  --surface-soft: #e7e2d9;
  --ink: #131210;
  --muted: #68635c;
  --line: rgb(19 18 16 / 13%);
  --line-strong: rgb(19 18 16 / 25%);
  --accent: #ff4f1f;
  --accent-strong: #e83e11;
  --accent-soft: #ffd8ca;
  --on-accent: #160d09;
  --focus: #cb3109;
  --shadow: 0 32px 100px rgb(39 28 18 / 12%);
  --radius-card: 30px;
  --radius-control: 999px;
  --header-height: 82px;
  --container: 1440px;
  --header-container: 2100px;
  --hero-copy-guide: 1760px;
  --section-space: clamp(112px, 12vw, 190px);
}

:root[data-theme="dark"] {
  --bg: #0d0d0c;
  --surface: #151513;
  --surface-strong: #1c1b18;
  --surface-soft: #25231f;
  --ink: #f2efe8;
  --muted: #aaa39a;
  --line: rgb(242 239 232 / 12%);
  --line-strong: rgb(242 239 232 / 24%);
  --accent: #ff5a28;
  --accent-strong: #ff754d;
  --accent-soft: #3d2118;
  --on-accent: #160d09;
  --focus: #ff8a67;
  --shadow: 0 34px 110px rgb(0 0 0 / 32%);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0d0d0c;
    --surface: #151513;
    --surface-strong: #1c1b18;
    --surface-soft: #25231f;
    --ink: #f2efe8;
    --muted: #aaa39a;
    --line: rgb(242 239 232 / 12%);
    --line-strong: rgb(242 239 232 / 24%);
    --accent: #ff5a28;
    --accent-strong: #ff754d;
    --accent-soft: #3d2118;
    --on-accent: #160d09;
    --focus: #ff8a67;
    --shadow: 0 34px 110px rgb(0 0 0 / 32%);
  }
}

html {
  background: var(--bg);
  scroll-padding-top: 110px;
}

body {
  overflow-x: clip;
  background: var(--bg);
  font-size: 16px;
  line-height: 1.5;
}

.container {
  width: min(calc(100% - 40px), var(--container));
}

.site-header {
  position: fixed;
  top: 14px;
  right: 0;
  left: 0;
  z-index: 50;
  height: 56px;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.header-inner {
  width: min(calc(100% - 40px), var(--header-container));
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  height: 56px;
  padding: 0 8px 0 18px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius-control);
  background: rgb(18 17 15 / 78%);
  color: #f8f5ef;
  box-shadow: 0 16px 50px rgb(0 0 0 / 16%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
  pointer-events: auto;
}

.brand,
.site-header .brand {
  color: #f8f5ef;
  font-size: 16px;
  letter-spacing: -0.045em;
}

.brand-mark {
  width: 25px;
  height: 25px;
}

.desktop-nav {
  gap: clamp(20px, 2.1vw, 34px);
}

.desktop-nav a {
  color: rgb(248 245 239 / 65%);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.015em;
}

.desktop-nav a::after {
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: #fff;
}

.menu-button {
  min-height: 40px;
  border-color: rgb(255 255 255 / 16%);
  color: #fff;
}

.menu-button:hover {
  border-color: rgb(255 255 255 / 42%);
  background: rgb(255 255 255 / 9%);
}

.header-cta {
  min-height: 40px;
  padding: 0 18px;
  border-color: var(--accent);
  background: var(--accent);
  color: #180d08;
  font-size: 12px;
}

.header-cta:hover {
  border-color: #ff7047;
  background: #ff7047;
  transform: translateY(-1px);
}

.mobile-panel {
  inset: 0;
  z-index: 45;
  min-height: 100dvh;
  border: 0;
  background: #0d0d0c;
  color: #f4f0e9;
}

.mobile-panel nav {
  width: min(calc(100% - 32px), 720px);
  margin: 0 auto;
  padding: 104px 0 34px;
}

.mobile-panel a {
  padding: 16px 2px;
  border-color: rgb(255 255 255 / 12%);
  font-size: clamp(28px, 9vw, 48px);
  font-weight: 520;
  letter-spacing: -0.055em;
}

.mobile-panel a:last-child {
  min-height: 56px;
  margin-top: 24px;
  padding: 16px 22px;
  color: #160d09;
  font-size: 15px;
}

.eyebrow,
.module-name,
.price-kicker {
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.button,
.header-cta {
  gap: 10px;
}

.button::after,
.header-cta::after {
  content: "↗";
  font-size: 0.92em;
  line-height: 1;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover::after,
.header-cta:hover::after {
  transform: translate(2px, -2px);
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border-color: var(--line-strong);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #160d09;
}

.button-primary:hover {
  border-color: #ff7047;
  background: #ff7047;
  color: #160d09;
}

/* Home hero */

.home-page .hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: calc(100% - 24px);
  max-width: none;
  min-height: max(720px, calc(100svh - 24px));
  margin: 12px auto 0;
  padding: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #11100e;
}

.home-page .hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(0 0 0 / 20%);
  content: "";
  pointer-events: none;
}

.home-page .hero-copy,
.home-page .hero-media {
  grid-area: 1 / 1 / 2 / 2;
}

.home-page .hero-media {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: #11100e;
}

.home-page .hero-media picture,
.home-page .hero-media img {
  width: 100%;
  height: 100%;
}

.home-page .hero-media img {
  object-fit: cover;
  object-position: 57% center;
  filter: brightness(0.88) contrast(1.04) saturate(0.92);
  transform: scale(1.015);
  animation: heroImageIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page .hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(88%, 1240px);
  min-width: 0;
  margin-left: max(0px, calc((100% - var(--hero-copy-guide)) / 2));
  padding: 150px clamp(28px, 6vw, 108px) clamp(70px, 8vh, 112px);
  color: #f8f5ef;
}

.home-page .hero-copy::before {
  display: block;
  width: 56px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--accent);
  content: "";
}

.home-page .hero .eyebrow {
  margin-bottom: 22px;
  color: #ff754d;
  animation: heroCopyIn 850ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page .hero h1 {
  max-width: 1240px;
  color: #f8f5ef;
  font-size: clamp(4.5rem, 7.55vw, 7.65rem);
  font-weight: 520;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-wrap: balance;
  animation: heroCopyIn 950ms 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page .hero h1 span {
  display: block;
  white-space: nowrap;
}

.home-page .hero-lead {
  max-width: 610px;
  margin-top: 28px;
  color: rgb(248 245 239 / 72%);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  animation: heroCopyIn 950ms 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page .hero .button-row {
  animation: heroCopyIn 950ms 340ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page .hero .button:not(.button-primary) {
  border-color: rgb(255 255 255 / 35%);
  color: #fff;
}

.home-page .hero .button:not(.button-primary):hover {
  border-color: #fff;
  background: #fff;
  color: #16120f;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.07);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

/* Evidence rail */

.evidence-wrap {
  padding-top: 20px;
}

.evidence-bar {
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(190px, 0.72fr);
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-card);
  background: var(--accent);
  color: #180d08;
  box-shadow: none;
}

.evidence-item {
  min-height: 154px;
  padding: 30px;
  border-color: rgb(22 13 9 / 16%);
}

.evidence-value {
  color: #180d08;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  font-weight: 550;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.evidence-label {
  max-width: 190px;
  margin-top: 16px;
  color: rgb(22 13 9 / 68%);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.evidence-link {
  min-height: 154px;
  padding: 30px;
  color: #180d08;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.evidence-link::after,
.text-link::after,
.module-card > a::after,
.module-copy > a::after,
.evidence-card a::after {
  content: "↗";
  margin-left: 8px;
  transition: transform 220ms ease;
}

.evidence-link:hover::after,
.text-link:hover::after,
.module-card > a:hover::after,
.module-copy > a:hover::after,
.evidence-card a:hover::after {
  display: inline-block;
  transform: translate(3px, -3px);
}

/* Global editorial rhythm */

.section {
  padding-block: var(--section-space);
}

.section-compact {
  padding-block: clamp(74px, 8vw, 124px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.6fr);
  gap: clamp(40px, 8vw, 140px);
  align-items: end;
  max-width: none;
  margin-bottom: clamp(54px, 7vw, 96px);
}

.section-head h2,
.split-copy h2,
.offer-copy h2,
.closing h2,
.science-copy h2,
.workflow-intro h2,
.governance-intro h2,
.contact-primary h2,
.contact-secondary h2 {
  max-width: 940px;
  font-size: clamp(3.55rem, 6.3vw, 7.1rem);
  font-weight: 520;
  letter-spacing: -0.074em;
  line-height: 0.9;
  text-wrap: balance;
}

.section-head p,
.split-copy > p,
.offer-copy > p,
.closing p,
.science-copy p,
.workflow-intro p,
.governance-intro p,
.contact-primary p,
.contact-secondary p {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

/* Modules */

.module-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(320px, auto)) minmax(300px, auto);
  gap: 14px;
}

.module-card {
  padding: clamp(28px, 3.6vw, 54px);
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: none;
}

.module-card h3 {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(2.2rem, 3.65vw, 4.8rem);
  font-weight: 520;
  letter-spacing: -0.068em;
  line-height: 0.94;
}

.module-card p {
  max-width: 500px;
  color: var(--muted);
  font-size: 15px;
}

.module-card a {
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.module-report {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(330px, 1fr);
  min-height: 740px;
  padding: 0;
  background: var(--surface);
}

.module-report .module-copy {
  padding: clamp(34px, 4vw, 62px);
}

.module-report .media-frame {
  min-height: 0;
  margin: 0 12px 12px;
  border-radius: calc(var(--radius-card) - 10px);
}

.module-report .media-frame img {
  object-position: center 38%;
}

.module-crit {
  grid-column: 8 / 13;
  grid-row: 1;
  background: var(--accent);
  color: #160d09;
}

.module-crit .module-name,
.module-crit p {
  color: rgb(22 13 9 / 66%);
}

.module-guide {
  position: relative;
  isolation: isolate;
  grid-column: 8 / 13;
  grid-row: 2;
  background: #171614;
  color: #f2efe8;
}

.module-guide::after {
  right: -34px;
  bottom: -48px;
  width: 190px;
  height: 190px;
  border: 38px solid var(--accent);
  border-radius: 50%;
  background: transparent;
  opacity: 0.86;
}

.module-guide p {
  color: rgb(242 239 232 / 62%);
}

.module-laudai {
  grid-column: 1 / 13;
  grid-row: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 80px;
  align-items: center;
  border: 1px solid var(--line);
  background: transparent;
}

.structure-stack {
  gap: 0;
}

.structure-stack span {
  padding: 17px 2px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 650;
}

.structure-stack span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

/* Immersive feature stages */

.feature-split,
.feature-split.reverse {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 0;
  min-height: 720px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.feature-split.reverse {
  grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1.16fr);
}

.feature-split .media-frame {
  min-height: 100%;
  border: 0;
  border-radius: 0;
}

.feature-split .media-frame img {
  transform: scale(1.01);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-split:hover .media-frame img {
  transform: scale(1.045);
}

.feature-split .split-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 6vw, 92px);
}

.feature-split.reverse .split-copy {
  order: 0;
}

.feature-split.reverse .media-frame {
  order: 1;
}

.split-copy h2 {
  margin-top: 0;
  font-size: clamp(3.2rem, 5.2vw, 6.1rem);
}

.split-copy .eyebrow + h2 {
  margin-top: 0;
}

.fact-list {
  width: 100%;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.fact {
  grid-template-columns: minmax(120px, 0.52fr) minmax(0, 1fr);
  gap: 20px;
  padding: 19px 0;
  border-color: var(--line);
}

.fact strong,
.fact span {
  font-size: 12px;
  line-height: 1.45;
}

.fact strong {
  color: var(--ink);
}

.text-link {
  margin-top: 34px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

/* Public evidence */

.science-layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(70px, 11vw, 190px);
  padding: clamp(50px, 7vw, 105px);
  border-radius: var(--radius-card);
  background: #161513;
  color: #f2efe8;
}

.science-copy {
  top: 110px;
}

.science-copy h2 {
  color: #f2efe8;
  font-size: clamp(3.4rem, 5.4vw, 6.4rem);
}

.science-copy p {
  color: rgb(242 239 232 / 58%);
}

.evidence-cards {
  gap: 0;
  counter-reset: evidence;
}

.evidence-card,
.evidence-card:first-child,
.evidence-card:last-child {
  position: relative;
  margin: 0;
  padding: 58px 0 64px 110px;
  border: 0;
  border-top: 1px solid rgb(242 239 232 / 18%);
  border-radius: 0;
  background: transparent;
  counter-increment: evidence;
}

.evidence-card::before {
  position: absolute;
  top: 57px;
  left: 0;
  color: var(--accent);
  content: "0" counter(evidence);
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.evidence-card h3 {
  color: #f2efe8;
  font-size: clamp(3.4rem, 5.5vw, 6.5rem);
  font-weight: 520;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.evidence-card p {
  max-width: 520px;
  color: rgb(242 239 232 / 58%);
}

.evidence-card a {
  color: #f2efe8;
  font-size: 12px;
  text-decoration: none;
}

/* Voices */

.quote-layout {
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
  gap: 14px;
}

.quote-main,
.quote-small {
  border: 0;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.quote-main {
  min-height: 620px;
  padding: clamp(42px, 6vw, 92px);
}

.quote-main blockquote {
  max-width: 950px;
  font-size: clamp(3.2rem, 5vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.quote-stack {
  gap: 14px;
}

.quote-small {
  min-height: 0;
  padding: clamp(32px, 3.6vw, 52px);
}

.quote-small:last-child {
  background: var(--accent-soft);
}

.quote-small blockquote {
  font-size: clamp(1.65rem, 2.3vw, 2.75rem);
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.quote-attribution {
  margin-top: 46px;
  color: var(--muted);
  font-size: 11px;
}

.quote-attribution strong {
  color: var(--ink);
  font-size: 12px;
}

/* Offer and close */

.offer {
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.75fr);
  gap: 70px;
  min-height: 560px;
  padding: clamp(44px, 7vw, 100px);
  border: 0;
  border-radius: var(--radius-card);
  background: var(--accent);
  color: #160d09;
}

.offer .eyebrow,
.offer-copy > p,
.offer .price-note {
  color: rgb(22 13 9 / 65%);
}

.offer-copy h2 {
  max-width: 820px;
  color: #160d09;
}

.price-panel {
  align-self: stretch;
  padding: 20px 0 20px clamp(36px, 5vw, 74px);
  border: 0;
  border-left: 1px solid rgb(22 13 9 / 22%);
  border-radius: 0;
  background: transparent;
  color: #160d09;
}

.price-kicker {
  color: rgb(22 13 9 / 60%);
}

.price strong {
  color: #160d09;
  font-size: clamp(4.6rem, 7vw, 8.4rem);
  letter-spacing: -0.075em;
}

.price span {
  color: rgb(22 13 9 / 62%);
}

.offer .button-primary {
  border-color: #160d09;
  background: #160d09;
  color: #f8f5ef;
}

.offer .button-primary:hover {
  border-color: #33221a;
  background: #33221a;
  color: #fff;
}

.closing {
  position: relative;
  min-height: 560px;
  padding: clamp(48px, 8vw, 112px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: transparent;
}

.closing h2 {
  max-width: 980px;
}

.closing p {
  max-width: 620px;
}

/* Shared page heroes */

.page-hero,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 0;
  width: calc(100% - 24px);
  max-width: none;
  min-height: min(820px, calc(100svh - 24px));
  margin-top: 12px;
  padding: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #161513;
  color: #f3efe8;
}

.page-hero-copy,
.contact-copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 0;
  padding: 150px clamp(44px, 6vw, 96px) clamp(66px, 8vw, 104px);
}

.page-hero h1,
.contact-copy h1 {
  max-width: 790px;
  color: #f3efe8;
  font-size: clamp(4rem, 6.6vw, 7.3rem);
  font-weight: 520;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-wrap: balance;
}

.page-hero .eyebrow,
.contact-hero .eyebrow {
  color: #ff754d;
}

.page-lead,
.contact-copy > p {
  max-width: 600px;
  color: rgb(243 239 232 / 64%);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.page-hero .button:not(.button-primary),
.contact-hero .button:not(.button-primary) {
  border-color: rgb(255 255 255 / 30%);
  color: #fff;
}

.page-hero .button:not(.button-primary):hover,
.contact-hero .button:not(.button-primary):hover {
  border-color: #fff;
  background: #fff;
  color: #16120f;
}

.page-hero > .media-frame,
.contact-hero > .media-frame {
  min-height: 100%;
  border: 0;
  border-radius: 0;
}

.page-hero > .media-frame img,
.contact-hero > .media-frame img {
  filter: saturate(0.86) contrast(1.03);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-hero:hover > .media-frame img,
.contact-hero:hover > .media-frame img {
  transform: scale(1.035);
}

.platform-page .page-hero > .media-frame img {
  object-position: 59% center;
}

.security-page .page-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
}

.security-page .page-hero > .media-frame img {
  object-position: center;
}

/* Workflow and platform */

.workflow,
.governance-layout {
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(70px, 12vw, 190px);
}

.workflow-intro,
.governance-intro {
  top: 114px;
}

.workflow-intro h2,
.governance-intro h2 {
  font-size: clamp(3.4rem, 5.3vw, 6.2rem);
}

.workflow-stages {
  gap: 0;
  counter-reset: workflow;
}

.workflow-stage,
.workflow-stage:nth-child(2),
.workflow-stage:nth-child(3) {
  position: relative;
  min-height: 230px;
  margin: 0;
  padding: 42px 0 46px 100px;
  border: 0;
  border-top: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  counter-increment: workflow;
}

.workflow-stage::before {
  position: absolute;
  top: 45px;
  left: 0;
  color: var(--accent);
  content: "0" counter(workflow);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.workflow-stage h3 {
  font-size: clamp(2.15rem, 3.1vw, 3.8rem);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.workflow-stage p {
  max-width: 580px;
  color: var(--muted);
}

.module-index {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, auto);
  gap: 14px;
}

.module-index article,
.module-index article:nth-child(n) {
  position: relative;
  grid-column: span 4;
  min-height: 260px;
  padding: clamp(30px, 3.7vw, 54px);
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.module-index article:first-child {
  grid-column: span 8;
  background: var(--accent);
  color: #160d09;
}

.module-index article:nth-child(2) {
  grid-column: span 4;
  background: #171614;
  color: #f2efe8;
}

.module-index article:nth-child(5) {
  background: var(--accent-soft);
}

.module-index h3 {
  font-size: clamp(2.4rem, 3.8vw, 4.8rem);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.module-index p {
  max-width: 520px;
  color: currentColor;
  opacity: 0.62;
}

/* Governance */

.governance-list {
  gap: 0;
  counter-reset: governance;
}

.governance-item {
  position: relative;
  grid-template-columns: minmax(160px, 0.56fr) minmax(0, 1fr);
  gap: 48px;
  padding: 32px 0 34px 62px;
  border-color: var(--line-strong);
  counter-increment: governance;
}

.governance-item::before {
  position: absolute;
  top: 35px;
  left: 0;
  color: var(--accent);
  content: "0" counter(governance);
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.governance-item strong {
  font-size: 15px;
}

.governance-item p {
  margin: 0;
  color: var(--muted);
}

.data-path {
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  counter-reset: data;
}

.data-stage,
.data-stage:nth-child(2),
.data-stage:nth-child(4) {
  position: relative;
  min-height: 310px;
  margin: 0;
  padding: 42px 34px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  counter-increment: data;
}

.data-stage:last-child {
  border-right: 0;
}

.data-stage::before {
  display: block;
  margin-bottom: 78px;
  color: var(--accent);
  content: "0" counter(data);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.data-stage h3 {
  font-size: clamp(1.9rem, 2.5vw, 3rem);
  font-weight: 520;
  letter-spacing: -0.055em;
}

.dpo-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 160px);
  min-height: 560px;
  padding: clamp(46px, 7vw, 98px);
  border: 0;
  border-radius: var(--radius-card);
  background: var(--accent);
  color: #160d09;
}

.dpo-panel h2 {
  color: #160d09;
  font-size: clamp(3.3rem, 5.2vw, 6rem);
  font-weight: 520;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.dpo-panel .page-lead,
.dpo-list span {
  color: rgb(22 13 9 / 64%);
}

.dpo-list div {
  padding: 22px 0;
  border-color: rgb(22 13 9 / 22%);
}

.dpo-list strong {
  color: #160d09;
}

.faq {
  max-width: 1000px;
  margin-left: auto;
  border-top: 1px solid var(--line-strong);
}

.faq details {
  border-color: var(--line-strong);
}

.faq summary {
  padding: 30px 48px 30px 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 560;
  letter-spacing: -0.03em;
}

.faq summary::after {
  position: absolute;
  right: 0;
  color: var(--accent);
  content: "+";
  font-size: 25px;
  font-weight: 400;
}

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

.faq p {
  max-width: 760px;
  padding-bottom: 30px;
  color: var(--muted);
}

/* Contact */

.contact-options {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 14px;
}

.contact-primary,
.contact-secondary {
  min-height: 560px;
  padding: clamp(42px, 6vw, 88px);
  border: 0;
  border-radius: var(--radius-card);
}

.contact-primary {
  background: #171614;
  color: #f2efe8;
}

.contact-primary h2 {
  color: #f2efe8;
}

.contact-primary p {
  color: rgb(242 239 232 / 58%);
}

.contact-secondary {
  background: var(--surface);
}

.contact-email {
  color: var(--accent);
  font-size: clamp(2rem, 4.3vw, 5rem);
  font-weight: 520;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.contact-email::after {
  content: "↗";
  margin-left: 12px;
  font-size: 0.7em;
}

.meeting-facts {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.meeting-facts div {
  grid-template-columns: minmax(110px, 0.52fr) minmax(0, 1fr);
  gap: 26px;
  padding: 20px 0;
  border-color: var(--line);
}

/* Demo */

.demo-page .page-hero > .media-frame img {
  object-position: 48% center;
}

@media (min-width: 1680px) {
  :root {
    --container: 1880px;
  }
}

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

.demo-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 560px;
  padding: clamp(42px, 6vw, 88px);
  border-radius: var(--radius-card);
}

.demo-card:first-child {
  background: var(--accent);
  color: #160d09;
}

.demo-card:last-child {
  background: #171614;
  color: #f2efe8;
}

.demo-card .eyebrow {
  color: currentColor;
  opacity: 0.58;
}

.demo-card h2 {
  max-width: 620px;
  color: currentColor;
  font-size: clamp(3.4rem, 5.4vw, 6.4rem);
  font-weight: 520;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.demo-card p {
  max-width: 540px;
  color: currentColor;
  opacity: 0.66;
}

.demo-card .button {
  margin-top: auto;
}

.demo-card:first-child .button {
  border-color: #160d09;
  background: #160d09;
  color: #f8f5ef;
}

.demo-card:last-child .button {
  border-color: rgb(242 239 232 / 30%);
  color: #f2efe8;
}

.demo-card:last-child .button:hover {
  border-color: #f2efe8;
  background: #f2efe8;
  color: #171614;
}

/* Footer */

.site-footer {
  margin-top: clamp(78px, 10vw, 150px);
  padding: 76px 0 28px;
  border: 0;
  background: #0b0b0a;
  color: #f2efe8;
}

.footer-main {
  grid-template-columns: minmax(300px, 2fr) repeat(3, minmax(130px, 0.7fr));
  gap: 48px;
  padding-bottom: 72px;
}

.site-footer .brand {
  color: #f2efe8;
  font-size: 22px;
}

.footer-brand p {
  max-width: 390px;
  color: rgb(242 239 232 / 48%);
}

.footer-column h2 {
  color: rgb(242 239 232 / 42%);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgb(242 239 232 / 76%);
  text-decoration: none;
}

.footer-column a:hover,
.footer-legal a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 26px;
  border-color: rgb(242 239 232 / 12%);
  color: rgb(242 239 232 / 42%);
}

.footer-legal a {
  color: inherit;
}

/* Motion */

.js .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.99);
  transition: opacity 850ms cubic-bezier(0.16, 1, 0.3, 1), transform 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.module-grid .reveal:nth-child(2),
.quote-stack .reveal:nth-child(1),
.workflow-stages .reveal:nth-child(2),
.governance-list .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.module-grid .reveal:nth-child(3),
.quote-stack .reveal:nth-child(2),
.workflow-stages .reveal:nth-child(3),
.governance-list .reveal:nth-child(3) {
  transition-delay: 160ms;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .home-page .hero-copy {
    width: 88%;
  }

  .home-page .hero h1 {
    font-size: clamp(4.3rem, 8.2vw, 6.7rem);
  }

  .feature-split,
  .feature-split.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  }

  .section-head {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  }
}

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

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    top: 9px;
    height: 54px;
  }

  .header-inner {
    height: 54px;
    padding-left: 16px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    color: #fff;
  }

  .home-page .hero {
    min-height: max(700px, calc(100svh - 18px));
    margin-top: 9px;
    border-radius: 28px;
  }

  .home-page .hero-copy {
    width: 100%;
    padding: 130px 34px 70px;
  }

  .home-page .hero h1 {
    max-width: 820px;
    font-size: clamp(4.15rem, 11vw, 6rem);
  }

  .home-page .hero-media img {
    object-position: 62% center;
  }

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

  .evidence-link {
    grid-column: 1 / -1;
    min-height: 74px;
    border-top: 1px solid rgb(22 13 9 / 16%);
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-head p {
    max-width: 620px;
  }

  .module-grid {
    grid-template-rows: minmax(600px, auto) repeat(2, minmax(300px, auto)) minmax(300px, auto);
  }

  .module-report {
    grid-column: 1 / 13;
    grid-row: 1;
    min-height: 600px;
  }

  .module-crit {
    grid-column: 1 / 7;
    grid-row: 2;
  }

  .module-guide {
    grid-column: 7 / 13;
    grid-row: 2;
  }

  .module-laudai {
    grid-column: 1 / 13;
    grid-row: 3;
  }

  .feature-split,
  .feature-split.reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feature-split .media-frame,
  .feature-split.reverse .media-frame {
    order: 0;
    min-height: 62vw;
  }

  .feature-split .split-copy,
  .feature-split.reverse .split-copy {
    order: 1;
    min-height: 580px;
  }

  .science-layout,
  .workflow,
  .governance-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .science-copy,
  .workflow-intro,
  .governance-intro {
    position: static;
  }

  .quote-layout,
  .offer,
  .dpo-panel,
  .contact-options,
  .demo-paths {
    grid-template-columns: 1fr;
  }

  .offer,
  .dpo-panel {
    gap: 54px;
  }

  .price-panel {
    padding: 42px 0 0;
    border-top: 1px solid rgb(22 13 9 / 22%);
    border-left: 0;
  }

  .page-hero,
  .contact-hero,
  .security-page .page-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 9px;
    border-radius: 28px;
  }

  .page-hero-copy,
  .contact-copy {
    min-height: 680px;
    padding: 140px 44px 70px;
  }

  .page-hero > .media-frame,
  .contact-hero > .media-frame {
    min-height: 62vw;
  }

  .module-index article:nth-child(n) {
    grid-column: span 6;
  }

  .module-index article:first-child {
    grid-column: span 12;
  }

  .data-path {
    grid-template-columns: 1fr 1fr;
  }

  .data-stage,
  .data-stage:nth-child(2),
  .data-stage:nth-child(4) {
    border-bottom: 1px solid var(--line);
  }

  .data-stage:nth-child(2) {
    border-right: 0;
  }

  .data-stage:nth-child(3),
  .data-stage:nth-child(4) {
    border-bottom: 0;
  }

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

@media (max-width: 640px) {
  :root {
    --radius-card: 24px;
    --section-space: 104px;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .header-inner {
    width: calc(100% - 20px);
  }

  .brand {
    font-size: 15px;
  }

  .home-page .hero {
    width: calc(100% - 12px);
    min-height: max(700px, calc(100svh - 12px));
    margin-top: 6px;
    border-radius: 26px;
  }

  .home-page .hero::after {
    background: rgb(0 0 0 / 34%);
  }

  .home-page .hero-copy {
    padding: 112px 22px 48px;
  }

  .home-page .hero-copy::before {
    width: 38px;
    margin-bottom: 20px;
  }

  .home-page .hero .eyebrow {
    margin-bottom: 16px;
  }

  .home-page .hero h1 {
    font-size: clamp(3.35rem, 15.5vw, 4.85rem);
    line-height: 0.88;
  }

  .home-page .hero h1 span {
    white-space: normal;
  }

  .home-page .hero-lead {
    max-width: 92%;
    margin-top: 22px;
    font-size: 15px;
  }

  .home-page .hero .button-row {
    margin-top: 28px;
  }

  .home-page .hero .button {
    flex: 0 0 auto;
    width: auto;
    min-height: 48px;
    padding-inline: 18px;
  }

  .home-page .hero-media img {
    object-position: 67% center;
  }

  .evidence-wrap {
    padding-top: 10px;
  }

  .evidence-bar {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .evidence-item,
  .evidence-item:nth-child(2),
  .evidence-item:nth-child(3) {
    display: grid;
    grid-template-columns: minmax(110px, 0.65fr) minmax(0, 1fr);
    align-items: center;
    min-height: 112px;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid rgb(22 13 9 / 16%);
  }

  .evidence-value {
    font-size: 2.8rem;
  }

  .evidence-label {
    margin: 0;
  }

  .evidence-link {
    grid-column: auto;
    min-height: 72px;
    padding: 24px;
    border-top: 0;
  }

  .section-head h2,
  .split-copy h2,
  .offer-copy h2,
  .closing h2,
  .science-copy h2,
  .workflow-intro h2,
  .governance-intro h2,
  .contact-primary h2,
  .contact-secondary h2 {
    font-size: clamp(3rem, 13.5vw, 4.75rem);
  }

  .module-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
  }

  .module-report,
  .module-crit,
  .module-guide,
  .module-laudai {
    grid-column: 1;
    grid-row: auto;
  }

  .module-report {
    min-height: 630px;
  }

  .module-report .module-copy {
    padding: 32px 26px;
  }

  .module-report .media-frame {
    margin: 0 8px 8px;
  }

  .module-crit,
  .module-guide {
    min-height: 340px;
  }

  .module-laudai {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 440px;
  }

  .module-card h3 {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .feature-split,
  .feature-split.reverse {
    border-radius: 24px;
  }

  .feature-split .media-frame,
  .feature-split.reverse .media-frame {
    min-height: 76vw;
  }

  .feature-split .split-copy,
  .feature-split.reverse .split-copy {
    min-height: 0;
    padding: 56px 26px 62px;
  }

  .fact {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .science-layout {
    gap: 34px;
    padding: 54px 26px 24px;
    border-radius: 24px;
  }

  .science-copy,
  .evidence-cards,
  .evidence-card {
    min-width: 0;
  }

  .evidence-card,
  .evidence-card:first-child,
  .evidence-card:last-child {
    padding: 34px 0 46px;
  }

  .evidence-card::before {
    position: static;
    display: block;
    margin-bottom: 24px;
  }

  .evidence-card h3 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .quote-layout {
    gap: 10px;
  }

  .quote-main {
    min-height: 520px;
    padding: 38px 26px;
  }

  .quote-main blockquote {
    font-size: clamp(2.8rem, 12.5vw, 4.2rem);
  }

  .quote-stack {
    gap: 10px;
  }

  .quote-small {
    padding: 34px 26px;
  }

  .offer,
  .dpo-panel {
    min-height: 0;
    padding: 52px 26px;
    border-radius: 24px;
  }

  .price strong {
    font-size: 5.8rem;
  }

  .closing {
    min-height: 620px;
    padding: 54px 26px;
    border-radius: 24px;
  }

  .page-hero,
  .contact-hero,
  .security-page .page-hero {
    width: calc(100% - 12px);
    margin-top: 6px;
    border-radius: 26px;
  }

  .page-hero-copy,
  .contact-copy {
    min-height: 650px;
    padding: 118px 22px 52px;
  }

  .page-hero h1,
  .contact-copy h1 {
    font-size: clamp(3.3rem, 14.8vw, 4.65rem);
  }

  .page-hero .button-row,
  .contact-hero .button-row {
    gap: 8px;
  }

  .page-hero .button,
  .contact-hero .button {
    flex: 1 1 100%;
    width: 100%;
  }

  .page-hero > .media-frame,
  .contact-hero > .media-frame {
    min-height: 86vw;
  }

  .workflow-stage,
  .workflow-stage:nth-child(2),
  .workflow-stage:nth-child(3) {
    min-height: 0;
    padding: 34px 0 38px 48px;
  }

  .workflow-stage::before {
    top: 36px;
  }

  .module-index {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .module-index article:nth-child(n) {
    grid-column: 1;
    min-height: 280px;
    padding: 32px 26px;
  }

  .governance-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0 30px 46px;
  }

  .governance-item::before {
    top: 31px;
  }

  .data-path {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .data-stage,
  .data-stage:nth-child(2),
  .data-stage:nth-child(3),
  .data-stage:nth-child(4) {
    min-height: 260px;
    padding: 30px 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .data-stage:last-child {
    border-bottom: 0;
  }

  .data-stage::before {
    margin-bottom: 44px;
  }

  .dpo-list div,
  .meeting-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-primary,
  .contact-secondary,
  .demo-card {
    min-height: 500px;
    padding: 48px 26px;
    border-radius: 24px;
  }

  .demo-card h2 {
    font-size: clamp(3rem, 13.5vw, 4.75rem);
  }

  .contact-email {
    font-size: 1.72rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    gap: 18px;
  }

  .js .reveal {
    transform: translateY(22px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-media img,
  .home-page .hero .eyebrow,
  .home-page .hero h1,
  .home-page .hero-lead,
  .home-page .hero .button-row {
    animation: none;
  }

  .feature-split .media-frame img,
  .page-hero > .media-frame img,
  .contact-hero > .media-frame img {
    transform: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .header-inner {
    background: #171614;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
