@import url('https://fonts.googleapis.com/css2?family=Chivo:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --canvas: oklch(0.965 0.014 88);
  --surface: oklch(0.995 0.006 88);
  --ink: oklch(0.16 0.035 270);
  --ink-soft: oklch(0.32 0.04 270);
  --muted: oklch(0.44 0.035 270);
  --line: oklch(0.83 0.025 88);
  --blue: oklch(0.49 0.27 268);
  --blue-deep: oklch(0.31 0.22 268);
  --blue-pale: oklch(0.91 0.055 270);
  --signal: oklch(0.88 0.19 94);
  --signal-deep: oklch(0.68 0.16 74);
  --mint: oklch(0.84 0.13 166);
  --coral: oklch(0.69 0.19 32);
  --danger: oklch(0.57 0.22 25);
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --z-sticky: 20;
  --z-menu: 30;
  --z-toast: 50;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Chivo', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

p,
li {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.15rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.75rem);
}

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

::selection {
  background: var(--signal);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: calc(var(--z-toast) + 1);
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--surface);
  transition: transform 180ms var(--ease);
}

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

.shell {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--ink);
  color: var(--surface);
  border-bottom: 1px solid color-mix(in oklch, var(--surface) 14%, transparent);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.wordmark-mark {
  width: 35px;
  height: 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 3px;
  padding: 6px;
  border-radius: 1px;
  background: var(--blue);
}

.wordmark-mark i {
  display: block;
  border-radius: 2px 2px 1px 1px;
  background: var(--surface);
}

.wordmark-mark i:nth-child(1) { height: 42%; }
.wordmark-mark i:nth-child(2) { height: 73%; }
.wordmark-mark i:nth-child(3) { height: 100%; background: var(--signal); }
.wordmark-mark i:nth-child(4) { height: 58%; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 30px);
  margin-left: auto;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  padding: 26px 0 23px;
  color: oklch(0.82 0.025 88);
  font-weight: 600;
  font-size: 0.94rem;
}

.nav-links > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.nav-links > a[aria-current='page'] {
  color: var(--surface);
}

.nav-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 0;
  border-radius: 2px;
  background: var(--ink);
  color: var(--surface);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

.nav-cta {
  background: var(--signal);
  color: var(--ink);
}

.button-light {
  background: var(--surface);
  color: var(--ink);
}

.button-light:hover {
  background: var(--signal);
  color: var(--ink);
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-weight: 800;
}

.text-link::after {
  content: '↗';
  transition: transform 180ms var(--ease);
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--surface);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}

.menu-toggle[aria-expanded='true'] span { opacity: 0; }
.menu-toggle[aria-expanded='true']::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded='true']::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--surface);
}

.hero::before {
  content: '';
  position: absolute;
  width: 42rem;
  height: 42rem;
  right: -12rem;
  top: -22rem;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklch, var(--signal) 92%, transparent) 0 16%, transparent 17% 100%);
  opacity: 0.7;
}

.hero-grid {
  position: relative;
  min-height: min(820px, calc(100vh - 78px));
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  padding-block: clamp(78px, 10vw, 140px);
}

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

.signal-tag {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 7px 12px 7px 8px;
  border-radius: 999px;
  background: var(--signal);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.signal-tag::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px color-mix(in oklch, var(--blue) 20%, transparent);
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 30px;
  font-weight: 800;
}

.hero-copy > p {
  max-width: 62ch;
  margin-bottom: 34px;
  color: oklch(0.94 0.025 270);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-link {
  padding: 10px 6px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in oklch, var(--surface) 70%, transparent);
}

.research-stage {
  position: relative;
  min-height: 500px;
  padding: 26px;
  border: 1px solid color-mix(in oklch, var(--surface) 42%, transparent);
  border-radius: var(--radius-lg);
  background: color-mix(in oklch, var(--blue-deep) 58%, transparent);
  overflow: hidden;
}

.stage-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.stage-head p {
  margin: 0;
  color: oklch(0.9 0.035 270);
  font-size: 0.82rem;
}

.stage-head strong {
  display: block;
  max-width: 17ch;
  margin-top: 5px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.live-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: oklch(0.45 0.16 157);
}

.plot-field {
  position: relative;
  height: 310px;
  margin-top: 36px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(color-mix(in oklch, var(--surface) 11%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in oklch, var(--surface) 11%, transparent) 1px, transparent 1px);
  background-size: 25% 25%;
}

.plot-line {
  position: absolute;
  inset: 36px 18px 34px 18px;
}

.plot-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.plot-line path {
  fill: none;
  stroke: var(--signal);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 4px color-mix(in oklch, var(--ink) 28%, transparent));
}

.plot-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--coral);
}

.dot-a { left: 15%; bottom: 30%; }
.dot-b { left: 41%; bottom: 53%; background: var(--signal); }
.dot-c { left: 67%; bottom: 43%; background: var(--mint); }
.dot-d { right: 8%; top: 21%; background: var(--signal); }

.stage-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-top: 20px;
}

.stage-foot p {
  margin: 0;
  font-size: 0.78rem;
  color: oklch(0.9 0.03 270);
}

.stage-foot strong {
  display: block;
  margin-top: 2px;
  color: var(--signal);
  font-size: 1.1rem;
}

.trust-band {
  background: var(--signal);
  color: var(--ink);
}

.trust-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.trust-row > span:first-child {
  flex: 0 0 auto;
  font-weight: 800;
}

.trust-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--ink-soft);
  font-weight: 600;
}

.trust-list span::before {
  content: '•';
  margin-right: 14px;
  color: var(--blue);
}

.section {
  padding-block: clamp(84px, 11vw, 150px);
}

.section-tight {
  padding-block: clamp(60px, 8vw, 96px);
}

.section-blue {
  background: var(--blue);
  color: var(--surface);
}

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

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

.section-soft {
  background: var(--blue-pale);
}

.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: clamp(32px, 6vw, 90px);
  margin-bottom: clamp(48px, 7vw, 86px);
}

.section-intro h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.section-intro p {
  max-width: 54ch;
  margin-bottom: 0;
  color: var(--muted);
}

.section-ink .section-intro p,
.section-blue .section-intro p {
  color: oklch(0.84 0.035 270);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.split-layout.reverse .media-frame {
  order: 2;
}

.media-frame {
  position: relative;
}

.media-frame img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: saturate(0.82) contrast(1.05);
}

.media-frame .image-note {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: min(240px, 68%);
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--signal);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.prose-block h2 {
  max-width: 12ch;
  margin-bottom: 26px;
}

.prose-block h3 {
  margin-top: 38px;
}

.prose-block p {
  max-width: 62ch;
  color: var(--muted);
}

.prose-block .lead {
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 13px;
  color: var(--blue);
  font-weight: 900;
}

.service-lines {
  border-top: 1px solid var(--line);
}

.service-line {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(300px, 1.25fr) auto;
  align-items: center;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}

.service-line:hover {
  transform: translateX(8px);
  color: var(--blue-deep);
}

.service-line h3,
.service-line p {
  margin: 0;
}

.service-line p {
  max-width: 58ch;
  color: var(--muted);
}

.service-line .arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-size: 1.2rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: color-mix(in oklch, var(--surface) 18%, transparent);
}

.process-step {
  min-height: 330px;
  padding: clamp(24px, 3vw, 40px);
  background: var(--ink);
}

.process-step .step-number {
  display: block;
  margin-bottom: 76px;
  color: var(--signal);
  font-size: 1.1rem;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 18px;
}

.process-step p {
  margin: 0;
  color: oklch(0.78 0.03 270);
}

.proof-strip {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-intro,
.proof-item {
  min-height: 190px;
  padding: 28px;
}

.proof-item {
  border-left: 1px solid var(--line);
}

.proof-intro strong {
  display: block;
  max-width: 15ch;
  font-size: 1.3rem;
  line-height: 1.25;
}

.proof-item strong {
  display: block;
  margin-bottom: 15px;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.proof-item span {
  color: var(--muted);
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.case-visual {
  position: relative;
  min-height: 490px;
  border-radius: var(--radius-md);
  background: var(--blue);
  overflow: hidden;
}

.case-visual img {
  width: 100%;
  height: 100%;
  min-height: 490px;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.68;
}

.case-visual::after {
  content: 'CATEGORY SIGNAL / FIELD NOTE';
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
}

.case-copy h2 {
  max-width: 10ch;
  margin-bottom: 26px;
}

.case-copy p {
  max-width: 56ch;
}

.case-result {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 34px 0;
  padding: 22px 0;
  border-top: 1px solid color-mix(in oklch, var(--ink) 26%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 26%, transparent);
}

.case-result strong {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.case-result span {
  max-width: 20ch;
  font-weight: 700;
  line-height: 1.3;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 110px);
}

.faq-layout h2 {
  max-width: 9ch;
}

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

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

.faq-list summary {
  position: relative;
  padding: 26px 50px 26px 0;
  list-style: none;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 700;
}

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

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 22px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-size: 1.3rem;
  transition: transform 200ms var(--ease);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 65ch;
  padding: 0 44px 26px 0;
  color: var(--muted);
}

.cta-band {
  overflow: hidden;
  background: var(--blue);
  color: var(--surface);
}

.cta-grid {
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 60px;
}

.cta-grid h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.cta-action {
  position: relative;
  display: flex;
  justify-content: center;
}

.cta-action::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  border: 1px solid color-mix(in oklch, var(--surface) 35%, transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cta-action .button {
  position: relative;
  min-width: 190px;
  min-height: 190px;
  border-radius: 50%;
  font-size: 1.1rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(86px, 12vw, 155px) clamp(70px, 9vw, 110px);
  background: var(--blue);
  color: var(--surface);
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 34vw;
  height: 34vw;
  min-width: 320px;
  min-height: 320px;
  right: -8vw;
  bottom: -18vw;
  border: clamp(36px, 5vw, 72px) solid var(--signal);
  border-radius: 50%;
  opacity: 0.94;
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: oklch(0.88 0.04 270);
  font-size: 0.88rem;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--signal);
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 28px;
}

.page-hero p {
  max-width: 62ch;
  margin-bottom: 0;
  color: oklch(0.93 0.03 270);
  font-size: clamp(1.04rem, 1.6vw, 1.26rem);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: start;
}

.statement-grid h2 {
  max-width: 13ch;
}

.statement-aside {
  padding-top: 20px;
}

.statement-aside p {
  color: var(--muted);
}

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

.value-panel {
  min-height: 260px;
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.value-panel:first-child {
  grid-row: span 2;
  min-height: 538px;
  background: var(--blue);
  color: var(--surface);
}

.value-panel:nth-child(2) {
  background: var(--signal);
}

.value-panel:nth-child(3) {
  background: var(--mint);
}

.value-panel h3 {
  max-width: 14ch;
}

.value-panel p {
  max-width: 48ch;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.value-panel:first-child p {
  color: oklch(0.9 0.03 270);
}

.value-panel .value-mark {
  display: block;
  width: 60px;
  height: 8px;
  margin-bottom: clamp(70px, 11vw, 180px);
  border-radius: 999px;
  background: var(--signal);
}

.scoreboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.scoreboard > div {
  padding: clamp(24px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
}

.scoreboard > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.scoreboard > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.scoreboard strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
}

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

.method-map {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(42px, 8vw, 110px);
}

.method-index {
  position: sticky;
  top: 118px;
  align-self: start;
}

.method-index h2 {
  max-width: 10ch;
}

.method-items {
  border-top: 1px solid var(--line);
}

.method-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.method-item h3 {
  margin-bottom: 13px;
}

.method-item p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
}

.evidence-table {
  width: 100%;
  border-collapse: collapse;
}

.evidence-table th,
.evidence-table td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.evidence-table th {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.evidence-table td:first-child {
  font-weight: 700;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.status-chip::before {
  content: '●';
  color: oklch(0.45 0.17 157);
  font-size: 0.65rem;
}

.project-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: end;
}

.project-hero h1 {
  max-width: 11ch;
}

.project-meta {
  border-top: 1px solid color-mix(in oklch, var(--surface) 30%, transparent);
}

.project-meta div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--surface) 30%, transparent);
}

.project-meta span {
  color: oklch(0.82 0.04 270);
}

.project-meta strong {
  text-align: right;
}

.story-section {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(42px, 8vw, 110px);
  padding: 50px 0;
  border-top: 1px solid var(--line);
}

.story-section:last-child {
  border-bottom: 1px solid var(--line);
}

.story-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.story-section p {
  max-width: 68ch;
  color: var(--muted);
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.outcome-grid > div {
  min-height: 240px;
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.outcome-grid > div:first-child {
  background: var(--signal);
}

.outcome-grid strong {
  display: block;
  margin-bottom: 24px;
  color: var(--blue-deep);
  font-size: clamp(2.3rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.outcome-grid p {
  margin-bottom: 0;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 9vw, 120px);
  align-items: start;
}

.profile-image {
  position: sticky;
  top: 110px;
}

.profile-image img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--blue-pale);
}

.profile-role {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--blue-deep);
  font-weight: 800;
}

.profile-copy h2 {
  max-width: 12ch;
  margin-bottom: 28px;
}

.profile-copy .lead {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--ink);
}

.expertise-bars {
  margin-top: 44px;
}

.expertise-row {
  margin-bottom: 28px;
}

.expertise-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 9px;
  font-weight: 700;
}

.expertise-track {
  height: 9px;
  border-radius: 999px;
  background: var(--blue-pale);
  overflow: hidden;
}

.expertise-track span {
  display: block;
  width: var(--level);
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 110px);
}

.contact-copy h2 {
  max-width: 10ch;
}

.contact-details {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.contact-detail {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-detail strong,
.contact-detail a {
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-form {
  padding: clamp(26px, 5vw, 56px);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--canvas);
  color: var(--ink);
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: oklch(0.46 0.035 270);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--blue) 20%, transparent);
}

.form-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.form-status {
  display: none;
  margin: 20px 0 0;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  background: var(--mint);
  color: var(--ink);
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(46px, 8vw, 100px);
}

.policy-nav {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--blue-pale);
}

.policy-nav strong {
  display: block;
  margin-bottom: 14px;
}

.policy-nav a {
  display: block;
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.policy-nav a:hover {
  color: var(--blue-deep);
}

.policy-content {
  max-width: 76ch;
}

.policy-content section {
  padding: 0 0 42px;
}

.policy-content h2 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.policy-content h3 {
  margin-top: 28px;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.policy-content p,
.policy-content li {
  color: var(--ink-soft);
}

.policy-content a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.portal-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 0;
  background: var(--ink);
  color: var(--surface);
}

.portal-shell {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}

.portal-copy h1 {
  max-width: 9ch;
}

.portal-copy p {
  max-width: 56ch;
  color: oklch(0.8 0.03 270);
  font-size: 1.08rem;
}

.portal-panel {
  padding: clamp(26px, 5vw, 54px);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--ink);
}

.portal-panel h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.portal-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.portal-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.portal-list li span:last-child {
  color: var(--muted);
}

.site-footer {
  padding: 72px 0 26px;
  background: var(--ink);
  color: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr 1fr;
  gap: clamp(34px, 6vw, 78px);
  padding-bottom: 58px;
}

.footer-brand p {
  max-width: 42ch;
  margin-top: 22px;
  color: oklch(0.72 0.03 270);
}

.footer-column h2 {
  margin-bottom: 20px;
  color: oklch(0.72 0.03 270);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.footer-column a {
  display: block;
  width: fit-content;
  padding: 5px 0;
  color: oklch(0.88 0.025 270);
}

.footer-column a:hover {
  color: var(--signal);
}

.footer-contact a {
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in oklch, var(--surface) 18%, transparent);
  color: oklch(0.67 0.03 270);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  z-index: var(--z-toast);
  right: 18px;
  bottom: 18px;
  width: min(430px, calc(100% - 36px));
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--surface);
  box-shadow: 0 6px 8px color-mix(in oklch, var(--ink) 20%, transparent);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin-bottom: 16px;
  color: oklch(0.86 0.025 270);
  font-size: 0.88rem;
}

.cookie-banner a {
  color: var(--signal);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.cookie-accept {
  background: var(--signal);
  color: var(--ink);
}

.cookie-dismiss {
  background: color-mix(in oklch, var(--surface) 14%, transparent);
  color: var(--surface);
}

/* Voxenora visual direction v2 — research atelier */
.hero-campaign {
  min-height: calc(100svh - 78px);
  background: var(--ink);
  isolation: isolate;
}

.hero-campaign::before {
  display: none;
}

.hero-photograph {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-photograph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in oklch, var(--ink) 98%, transparent) 0 19%, color-mix(in oklch, var(--ink) 80%, transparent) 41%, color-mix(in oklch, var(--ink) 16%, transparent) 72% 100%);
}

.hero-photograph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: atelier-reveal 1.25s var(--ease) both;
}

.hero-campaign .hero-grid {
  min-height: calc(100svh - 78px);
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 1.02fr);
  align-items: end;
  padding-block: clamp(78px, 10vw, 126px) 42px;
}

.hero-campaign .hero-copy {
  max-width: 760px;
  align-self: center;
  animation: copy-rise 900ms 180ms var(--ease) both;
}

.hero-eyebrow {
  max-width: 590px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(30px, 5vw, 58px);
  padding-top: 12px;
  border-top: 1px solid color-mix(in oklch, var(--surface) 45%, transparent);
  color: oklch(0.84 0.025 88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-campaign h1 {
  max-width: 8.2ch;
  margin-bottom: 32px;
  font-size: clamp(4.25rem, 8.8vw, 8.2rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.hero-campaign h1 em {
  display: block;
  color: var(--signal);
  font-style: normal;
}

.hero-campaign .hero-copy > p {
  max-width: 47ch;
  color: oklch(0.88 0.025 88);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.hero-campaign .button-light {
  min-height: 56px;
  padding-inline: 24px;
  background: var(--signal);
}

.hero-campaign .hero-link {
  border-color: color-mix(in oklch, var(--surface) 45%, transparent);
}

.hero-readout {
  width: min(380px, 100%);
  justify-self: end;
  padding: 18px 0 0;
  border-top: 4px solid var(--signal);
  color: var(--surface);
  animation: copy-rise 900ms 380ms var(--ease) both;
}

.hero-readout > span,
.hero-readout small {
  display: block;
  color: oklch(0.78 0.025 88);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-readout strong {
  display: block;
  margin: 8px 0 14px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.trust-band {
  background: var(--ink);
  color: var(--surface);
  border-top: 1px solid color-mix(in oklch, var(--surface) 15%, transparent);
}

.trust-row > span:first-child {
  color: var(--signal);
}

.trust-list {
  color: oklch(0.75 0.025 88);
}

.trust-list span::before {
  color: var(--signal);
}

.evidence-canvas {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  background: var(--blue);
  color: var(--surface);
}

.evidence-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(color-mix(in oklch, var(--surface) 12%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in oklch, var(--surface) 12%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
}

.evidence-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid color-mix(in oklch, var(--surface) 42%, transparent);
  color: oklch(0.88 0.025 88);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-head strong {
  color: var(--signal);
}

.evidence-number {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2px 24px;
  margin-top: 46px;
}

.evidence-number > span {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.evidence-number strong {
  font-size: clamp(4.7rem, 9vw, 7.8rem);
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.evidence-number small {
  padding-bottom: 9px;
  color: var(--signal);
  font-weight: 800;
}

.evidence-plot {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 3vw, 26px);
  margin-top: 62px;
}

.evidence-plot i {
  aspect-ratio: 1;
  border: 1px solid color-mix(in oklch, var(--surface) 65%, transparent);
  border-radius: 50%;
  background: var(--surface);
}

.evidence-plot i:nth-child(3n),
.evidence-plot i:nth-child(7),
.evidence-plot i:nth-child(10) {
  background: var(--signal);
  border-color: var(--signal);
}

.evidence-plot i:nth-child(4),
.evidence-plot i:nth-child(8) {
  background: transparent;
}

.evidence-bars {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin-top: 38px;
}

.evidence-bars span {
  width: var(--bar);
  height: 6px;
  background: var(--signal);
}

.evidence-canvas .image-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(260px, 72%);
  padding: 18px;
  background: var(--signal);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.media-frame-generated {
  overflow: hidden;
  background: var(--ink);
}

.media-frame-generated img {
  min-height: 640px;
  border-radius: 0;
  object-position: 68% center;
  filter: saturate(0.88) contrast(1.08);
  transform: scale(1.02);
}

.case-visual.case-board {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--blue);
  color: var(--surface);
  border-radius: 0;
}

.case-board::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(color-mix(in oklch, var(--surface) 13%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in oklch, var(--surface) 13%, transparent) 1px, transparent 1px);
  background-size: 72px 72px;
}

.case-board-label,
.case-board-foot {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 5vw, 62px);
  top: clamp(24px, 5vw, 56px);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-board-foot {
  top: auto;
  bottom: clamp(24px, 5vw, 52px);
  color: oklch(0.86 0.025 88);
}

.case-clusters {
  position: absolute;
  z-index: 1;
  left: 10%;
  bottom: 20%;
  display: flex;
  align-items: end;
  gap: clamp(10px, 2vw, 24px);
}

.case-clusters span {
  display: grid;
  place-items: center;
  width: clamp(68px, 9vw, 126px);
  aspect-ratio: 1;
  border: 1px solid var(--surface);
  border-radius: 50%;
  font-weight: 800;
}

.case-clusters span:nth-child(2) {
  width: clamp(88px, 12vw, 166px);
  background: var(--signal);
  color: var(--ink);
  border-color: var(--signal);
}

.case-route {
  position: absolute;
  right: 14%;
  top: 22%;
  width: 26%;
  height: 58%;
  border-top: 10px solid var(--signal);
  border-right: 10px solid var(--signal);
}

.case-route::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -2px;
  width: 26px;
  height: 26px;
  background: var(--signal);
  transform: rotate(45deg);
}

.case-board-result {
  position: absolute;
  z-index: 2;
  right: clamp(26px, 7vw, 90px);
  bottom: clamp(28px, 9vw, 96px);
  font-size: clamp(2.3rem, 5vw, 5.8rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-align: right;
}

.case-board-wide {
  min-height: 660px !important;
}

.case-market-grid {
  position: absolute;
  top: 12%;
  right: 8%;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 8px;
}

.case-market-grid span {
  padding: 7px 10px;
  border: 1px solid color-mix(in oklch, var(--surface) 55%, transparent);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.monitor-orbit {
  position: relative;
  z-index: 1;
  width: min(330px, 70%);
  margin: 54px auto 42px;
  aspect-ratio: 1;
  border: 1px solid color-mix(in oklch, var(--surface) 65%, transparent);
  border-radius: 50%;
}

.monitor-orbit::before,
.monitor-orbit::after {
  content: '';
  position: absolute;
  inset: 16%;
  border: 1px solid color-mix(in oklch, var(--surface) 42%, transparent);
  border-radius: 50%;
}

.monitor-orbit::after {
  inset: 34%;
  background: var(--signal);
  border: 0;
}

.monitor-orbit span,
.monitor-orbit i,
.monitor-orbit b {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--surface);
}

.monitor-orbit span { left: 8%; top: 48%; }
.monitor-orbit i { right: 16%; top: 12%; background: var(--signal); }
.monitor-orbit b { right: 7%; bottom: 22%; }

.monitor-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin-bottom: 80px;
}

.monitor-list > span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid color-mix(in oklch, var(--surface) 35%, transparent);
  font-size: 0.78rem;
}

.monitor-list i {
  color: var(--signal);
  font-style: normal;
  font-weight: 800;
}

.evidence-canvas-decision {
  min-height: 480px;
  background: var(--ink);
}

.decision-word {
  position: relative;
  z-index: 1;
  margin-top: 70px;
  color: var(--signal);
  font-size: clamp(8rem, 19vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.decision-axis {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 4vw, 44px);
  right: clamp(24px, 4vw, 44px);
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid color-mix(in oklch, var(--surface) 45%, transparent);
  color: oklch(0.82 0.025 88);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.profile-card-art {
  position: sticky;
  top: 110px;
  min-height: 650px;
  overflow: hidden;
  padding: clamp(26px, 5vw, 52px);
  background: var(--blue);
  color: var(--surface);
}

.profile-card-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(color-mix(in oklch, var(--surface) 11%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in oklch, var(--surface) 11%, transparent) 1px, transparent 1px);
  background-size: 58px 58px;
}

.profile-card-index,
.profile-card-name {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.profile-card-art > strong {
  position: absolute;
  z-index: 2;
  left: -0.05em;
  top: 50%;
  color: var(--signal);
  font-size: clamp(10rem, 25vw, 19rem);
  letter-spacing: -0.12em;
  line-height: 0.7;
  transform: translateY(-50%);
}

.profile-card-orbit {
  position: absolute;
  z-index: 1;
  width: 78%;
  aspect-ratio: 1;
  right: -23%;
  top: 17%;
  border: 2px solid var(--surface);
  border-radius: 50%;
}

.profile-card-orbit::after {
  content: '';
  position: absolute;
  width: 36%;
  aspect-ratio: 1;
  right: 13%;
  bottom: 8%;
  border-radius: 50%;
  background: var(--signal);
}

.profile-card-name {
  position: absolute;
  left: clamp(26px, 5vw, 52px);
  bottom: clamp(26px, 5vw, 52px);
}

.page-hero {
  min-height: 590px;
  display: flex;
  align-items: end;
  background: var(--ink);
  padding-block: clamp(100px, 13vw, 170px) clamp(70px, 9vw, 104px);
}

.page-hero::before {
  content: 'VX';
  position: absolute;
  right: -0.06em;
  top: 50%;
  color: var(--blue);
  font-size: clamp(13rem, 31vw, 35rem);
  font-weight: 900;
  letter-spacing: -0.13em;
  line-height: 0.6;
  transform: translateY(-50%);
  opacity: 0.72;
}

.page-hero::after {
  width: 16px;
  height: 46%;
  min-width: 0;
  min-height: 0;
  right: 4vw;
  bottom: 0;
  border: 0;
  border-radius: 0;
  background: var(--signal);
}

.page-hero h1 {
  max-width: 10.5ch;
  font-size: clamp(4rem, 8.5vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.section-soft {
  background: oklch(0.925 0.03 88);
}

.value-panel,
.scoreboard,
.outcome-grid > div,
.contact-form,
.policy-nav,
.portal-panel {
  border-radius: 0;
}

.service-line .arrow {
  color: var(--blue);
}

.section-ink .service-line .arrow {
  color: var(--signal);
}

@keyframes atelier-reveal {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

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

@media (max-width: 1020px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    z-index: var(--z-menu);
    top: 78px;
    left: 0;
    right: 0;
    height: calc(100dvh - 78px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 28px 20px 50px;
    background: var(--ink);
    clip-path: inset(0 0 0 100%);
    visibility: hidden;
    pointer-events: none;
    transition: clip-path 260ms var(--ease), visibility 260ms;
  }

  .nav-links.is-open {
    clip-path: inset(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links > a:not(.nav-cta) {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.12rem;
  }

  .nav-links > a:not(.nav-cta)::after {
    display: none;
  }

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

  .hero-grid,
  .split-layout,
  .case-feature,
  .statement-grid,
  .method-map,
  .project-hero,
  .profile-layout,
  .contact-layout,
  .portal-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-campaign {
    min-height: 760px;
  }

  .hero-campaign .hero-grid {
    min-height: 760px;
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    padding-block: 90px 36px;
  }

  .hero-campaign .hero-copy {
    align-self: end;
    padding-bottom: 90px;
  }

  .hero-campaign h1 {
    max-width: 8.2ch;
  }

  .hero-readout {
    display: none;
  }

  .hero-photograph img {
    object-position: 58% center;
  }

  .hero-photograph::after {
    background: linear-gradient(90deg, color-mix(in oklch, var(--ink) 94%, transparent) 0 25%, color-mix(in oklch, var(--ink) 64%, transparent) 62%, color-mix(in oklch, var(--ink) 22%, transparent) 100%);
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .research-stage {
    min-height: 460px;
  }

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

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

  .proof-item:nth-child(2) {
    border-left: 1px solid var(--line);
  }

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

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

  .method-index,
  .profile-image,
  .policy-nav {
    position: static;
  }

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

  .outcome-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 18px;
  }

  .policy-nav strong {
    width: 100%;
  }

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

  .case-board-result {
    font-size: clamp(2.2rem, 7vw, 4.8rem);
  }
}

@media (max-width: 720px) {
  .shell,
  .narrow,
  .portal-shell {
    width: min(100% - 28px, 1240px);
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.4rem);
  }

  .site-header .wordmark {
    font-size: 1.06rem;
  }

  .section-intro,
  .cta-grid,
  .faq-layout {
    display: block;
  }

  .section-intro h2,
  .cta-grid h2,
  .faq-layout h2 {
    margin-bottom: 26px;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 22px;
  }

  .trust-list {
    justify-content: flex-start;
  }

  .research-stage {
    min-height: 430px;
    padding: 18px;
  }

  .hero-campaign {
    min-height: 720px;
  }

  .hero-campaign .hero-grid {
    min-height: 720px;
    padding-block: 64px 28px;
  }

  .hero-campaign .hero-copy {
    padding-bottom: 44px;
  }

  .hero-campaign h1 {
    font-size: clamp(3.85rem, 17vw, 6rem);
  }

  .hero-eyebrow span:last-child {
    display: none;
  }

  .hero-photograph img {
    object-position: 68% center;
  }

  .hero-photograph::after {
    background: linear-gradient(90deg, color-mix(in oklch, var(--ink) 94%, transparent) 0 16%, color-mix(in oklch, var(--ink) 60%, transparent) 100%);
  }

  .plot-field {
    height: 270px;
  }

  .media-frame img {
    min-height: 360px;
  }

  .media-frame .image-note {
    right: 12px;
  }

  .split-layout.reverse .media-frame {
    order: 0;
  }

  .service-line {
    grid-template-columns: 1fr auto;
    gap: 12px 20px;
  }

  .service-line p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .service-line .arrow {
    grid-column: 2;
    grid-row: 1;
  }

  .process-list,
  .proof-strip,
  .value-layout,
  .scoreboard,
  .outcome-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 260px;
  }

  .process-step .step-number {
    margin-bottom: 50px;
  }

  .proof-intro,
  .proof-item {
    min-height: 150px;
  }

  .proof-item,
  .proof-item:nth-child(2),
  .proof-item:nth-child(3),
  .proof-item:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .value-panel:first-child {
    grid-row: auto;
    min-height: 360px;
  }

  .scoreboard > div,
  .scoreboard > div:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scoreboard > div:last-child {
    border-bottom: 0;
  }

  .outcome-grid > div:first-child {
    grid-column: auto;
  }

  .story-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-grid {
    padding-block: 76px;
  }

  .cta-action {
    margin-top: 70px;
  }

  .cta-action::before {
    width: 240px;
    height: 240px;
  }

  .cta-action .button {
    min-width: 160px;
    min-height: 160px;
  }

  .page-hero::after {
    right: 18px;
    bottom: 0;
  }

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

  .page-hero::before {
    right: -0.2em;
    font-size: 17rem;
  }

  .evidence-canvas {
    min-height: 520px;
    padding: 22px;
  }

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

  .evidence-number small {
    padding-bottom: 0;
  }

  .evidence-plot {
    gap: 14px;
  }

  .case-board-wide {
    min-height: 560px !important;
  }

  .case-board-result {
    right: 24px;
    bottom: 94px;
    font-size: clamp(2.25rem, 12vw, 4rem);
  }

  .case-route {
    right: 12%;
    top: 28%;
    height: 32%;
  }

  .case-clusters {
    left: 24px;
    bottom: 28%;
  }

  .case-market-grid {
    display: none;
  }

  .profile-card-art {
    min-height: 560px;
  }

  .evidence-table,
  .evidence-table tbody,
  .evidence-table tr,
  .evidence-table td {
    display: block;
    width: 100%;
  }

  .evidence-table thead {
    display: none;
  }

  .evidence-table tr {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .evidence-table td {
    padding: 6px 0;
    border: 0;
  }

  .evidence-table td::before {
    content: attr(data-label);
    display: block;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
  }

  .field-full {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .cookie-banner,
  .cta-band,
  .policy-nav {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .policy-layout {
    display: block;
  }
}
