:root {
  --paper: #f8f5f8;
  --paper-2: #ece5ee;
  --ink: #19131b;
  --muted: #6f6571;
  --line: rgba(102, 8, 116, 0.18);
  --red: #660874;
  --red-deep: #3b0444;
  --signal: #d8c4de;
  --green: #3aaf85;
  --white: #fffaff;
  --serif: "Iowan Old Style", "Songti SC", "STSong", "Source Han Serif SC", Georgia, serif;
  --sans: "Aptos", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  --max: 1240px;
  --pad: clamp(22px, 5vw, 76px);
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
img, svg { max-width: 100%; }
::selection { color: var(--ink); background: var(--signal); }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -60px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.signal-bar {
  min-height: 34px;
  padding: 6px var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--paper);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: .08em;
}
.signal-bar span { color: var(--signal); font-family: var(--mono); font-weight: 700; }
.signal-bar p { margin: 0; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 84px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 248, .94);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; line-height: 1; }
.brand-logo { position: relative; width: 150px; height: 48px; display: block; overflow: hidden; flex: 0 0 auto; }
.brand-logo img { position: absolute; left: 50%; top: 50%; width: 430px; max-width: none; height: auto; transform: translate(-50%,-50%); mix-blend-mode: multiply; }
.site-nav { display: flex; justify-content: center; gap: clamp(18px, 2.4vw, 38px); }
.site-nav a { position: relative; font-size: 13px; font-weight: 650; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--red);
  transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-toggle {
  padding: 5px;
  display: flex;
  gap: 2px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
}
.language-toggle span { min-width: 28px; padding: 4px 6px; border-radius: 999px; font: 700 10px/1.2 var(--mono); }
.language-toggle .lang-active { color: var(--paper); background: var(--ink); }
.mini-cta { padding: 9px 15px; color: var(--white); background: var(--red); font-size: 12px; font-weight: 750; border: 1px solid var(--red); }
.mini-cta:hover { color: var(--ink); background: var(--signal); border-color: var(--ink); }
.menu-button { display: none; width: 42px; height: 42px; border: 0; background: transparent; }
.menu-button span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); }

.section-shell { width: min(var(--max), calc(100% - 2 * var(--pad))); margin-inline: auto; }
.hero {
  min-height: min(760px, calc(100vh - 118px));
  padding-block: clamp(70px, 9vw, 126px) clamp(78px, 10vw, 138px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: clamp(48px, 8vw, 116px);
}
.eyebrow { margin: 0 0 28px; display: flex; align-items: center; gap: 14px; font: 700 11px/1.2 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.eyebrow-index { min-width: 31px; height: 20px; display: inline-grid; place-items: center; color: var(--white); background: var(--red); border-radius: 99px; font-size: 9px; }
.eyebrow-light { color: rgba(255,255,255,.68); }
.eyebrow-light .eyebrow-index { color: var(--ink); background: var(--signal); }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 650; letter-spacing: -.045em; line-height: .98; }
h1 { max-width: 760px; font-size: clamp(56px, 7.5vw, 106px); }
h2 { font-size: clamp(42px, 5.4vw, 76px); }
h1 em, h2 em { color: var(--red); font-style: normal; }
.hero-lead { max-width: 670px; margin: 32px 0 0; color: #504653; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.75; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; }
.button {
  min-height: 50px;
  padding: 12px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 780;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--red); }
.button-primary:hover { color: var(--ink); background: var(--signal); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--signal); }
.button-signal { color: var(--ink); background: var(--signal); border-color: var(--signal); }
.button-signal:hover { color: var(--white); background: var(--red); border-color: var(--red); }
.text-link { display: inline-flex; align-items: center; gap: 13px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 750; }
.text-link b { color: var(--red); }
.hero-note { margin: 18px 0 0; color: var(--muted); font: 11px/1.4 var(--mono); }

.translation-board {
  position: relative;
  min-height: 530px;
  padding: 26px;
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink);
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 34px 34px;
  box-shadow: 22px 22px 0 var(--red);
}
.translation-board::before { content: "M"; position: absolute; right: -28px; top: 12px; color: rgba(255,255,255,.045); font: 330px/.8 var(--serif); }
.board-topline { position: relative; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.65); font: 10px/1.3 var(--mono); letter-spacing: .09em; }
.live-dot { display: inline-flex; align-items: center; gap: 8px; }
.live-dot i { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(58,175,133,.14); }
.board-statement { position: relative; max-width: 360px; margin-top: 54px; font: 600 clamp(28px, 3vw, 42px)/1.15 var(--serif); }
.translation-flow { position: relative; margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.22); border-left: 1px solid rgba(255,255,255,.22); }
.translation-flow li { min-height: 92px; padding: 14px; display: grid; grid-template-columns: 30px 1fr; align-content: center; border-right: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.translation-flow li > span { grid-row: span 2; color: var(--signal); font: 10px/1.2 var(--mono); }
.translation-flow strong { font-size: 13px; }
.translation-flow small { color: rgba(255,255,255,.58); font-size: 10px; }
.outcome-ticket { position: relative; margin-top: 24px; padding: 18px; display: grid; gap: 3px; color: var(--ink); background: var(--signal); transform: rotate(-1deg); }
.ticket-label { font: 10px/1.3 var(--mono); }
.outcome-ticket strong { font: 650 15px/1.45 var(--serif); }
.ticket-code { margin-top: 5px; font: 8px/1.3 var(--mono); letter-spacing: .08em; }

.trust-strip { border-block: 1px solid var(--line); display: grid; grid-template-columns: repeat(4,1fr); }
.trust-strip div { min-height: 118px; padding: 25px clamp(20px,4vw,60px); display: flex; align-items: baseline; gap: 15px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { font: 700 28px/1 var(--serif); }
.trust-strip span { color: var(--muted); font-size: 12px; }

.current-work, .services, .audience, .evidence { padding-block: clamp(92px, 11vw, 160px); }
.section-heading { max-width: 860px; }
.section-heading > p:last-child { max-width: 610px; margin: 28px 0 0; color: var(--muted); font-size: 17px; }
.work-grid { margin-top: 68px; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.work-card { min-height: 440px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); }
.work-card-dark { color: var(--white); background: var(--ink); }
.work-card-red { color: var(--white); background: var(--red); }
.work-card-paper { background: var(--white); }
.card-number { width: 40px; height: 24px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 99px; font: 10px/1 var(--mono); }
.card-kicker { margin: auto 0 12px; font: 10px/1.2 var(--mono); letter-spacing: .12em; opacity: .62; }
.work-card h3 { max-width: 270px; margin: 0; font: 600 clamp(27px,2.5vw,38px)/1.1 var(--serif); }
.work-card > p:not(.card-kicker) { min-height: 86px; margin: 19px 0 32px; opacity: .74; font-size: 14px; }
.card-output { padding-top: 18px; display: grid; gap: 5px; border-top: 1px solid currentColor; }
.card-output span { font: 9px/1.2 var(--mono); opacity: .58; }
.card-output strong { font-size: 11px; letter-spacing: .02em; }

.problem-band { padding-block: clamp(90px, 10vw, 150px); color: var(--white); background: #241829; }
.problem-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px,10vw,140px); }
.problem-intro { position: sticky; top: 140px; align-self: start; }
.problem-intro p:last-child { max-width: 440px; margin: 28px 0 0; color: rgba(255,255,255,.62); }
.gap-list { border-top: 1px solid rgba(255,255,255,.22); }
.gap-list article { padding: 30px 0; display: grid; grid-template-columns: 56px 1fr; border-bottom: 1px solid rgba(255,255,255,.22); }
.gap-list article > span { color: var(--signal); font: 11px/1.4 var(--mono); }
.gap-list h3 { margin: 0; font: 600 25px/1.2 var(--serif); }
.gap-list p { margin: 9px 0 0; color: rgba(255,255,255,.62); font-size: 14px; }

.split-heading { max-width: none; display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 70px; }
.split-heading > p:last-child { margin-bottom: 8px; }
.service-list { margin-top: 70px; border-top: 2px solid var(--ink); }
.service-row { padding: 33px 0; display: grid; grid-template-columns: 60px 1fr 1.2fr .8fr; gap: clamp(22px,4vw,64px); align-items: start; border-bottom: 1px solid var(--line); }
.service-index { width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: var(--red); border-radius: 50%; font: 10px/1 var(--mono); }
.service-row .card-kicker { margin: 0 0 8px; }
.service-row h3 { margin: 0; font: 600 26px/1.15 var(--serif); }
.service-row > p { margin: 0; color: var(--muted); font-size: 14px; }
.service-row ul { margin: 0; padding: 0; list-style: none; }
.service-row li { padding: 4px 0; font-size: 12px; font-weight: 700; border-bottom: 1px dotted var(--line); }

.audience { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px,9vw,130px); align-items: center; }
.audience-copy > p:last-child { max-width: 460px; margin: 28px 0 0; color: var(--muted); }
.audience-map { position: relative; min-height: 530px; display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.audience-map::before { content: ""; position: absolute; inset: 50%; width: 1px; height: 1px; box-shadow: -220px -135px 0 1px var(--line), 220px -135px 0 1px var(--line), 220px 135px 0 1px var(--line); }
.audience-map article { padding: 25px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); background: var(--white); }
.audience-map article:first-child { grid-row: span 2; background: var(--signal); }
.audience-map article > span { margin-bottom: auto; font: 10px/1 var(--mono); }
.audience-map h3 { margin: 0; font: 600 25px/1.18 var(--serif); }
.audience-map p { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.mozi-hub { position: absolute; z-index: 3; left: 50%; top: 50%; width: 130px; height: 130px; padding: 18px; display: grid; place-items: center; text-align: center; color: var(--white); background: var(--red); border: 8px solid var(--paper); border-radius: 50%; transform: translate(-50%,-50%); }
.mozi-hub strong { font: 700 20px/1 var(--serif); }
.mozi-hub span { font-size: 10px; line-height: 1.5; }

.pilot { padding-block: clamp(92px,11vw,160px); color: var(--white); background: var(--red-deep); }
.pilot-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; }
.pilot-heading h2 em { color: var(--signal); }
.pilot-heading > p { max-width: 460px; margin: 0 0 8px; color: rgba(255,255,255,.68); }
.pilot-timeline { margin: 70px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5,1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.35); border-left: 1px solid rgba(255,255,255,.35); }
.pilot-timeline li { min-height: 280px; padding: 22px; border-right: 1px solid rgba(255,255,255,.35); border-bottom: 1px solid rgba(255,255,255,.35); }
.pilot-timeline .week { color: var(--signal); font: 11px/1.2 var(--mono); }
.pilot-timeline li > span { width: 34px; height: 34px; margin: 55px 0 20px; display: grid; place-items: center; color: var(--red-deep); background: var(--signal); border-radius: 50%; font: 10px/1 var(--mono); }
.pilot-timeline h3 { margin: 0; font: 600 21px/1.2 var(--serif); }
.pilot-timeline p { margin: 12px 0 0; color: rgba(255,255,255,.65); font-size: 12px; }
.pilot-output { margin-top: 22px; padding: 20px 23px; display: flex; justify-content: space-between; gap: 30px; color: var(--ink); background: var(--signal); }
.pilot-output > span { font: 700 12px/1.4 var(--mono); }
.pilot-output ul { margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 24px; list-style: none; font-size: 11px; font-weight: 700; }

.evidence-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(60px,10vw,140px); }
.evidence-copy > p { max-width: 460px; margin: 28px 0 32px; color: var(--muted); }
.passport-card { padding: 32px; border: 1px solid var(--ink); background: var(--white); box-shadow: 18px 18px 0 var(--signal); }
.passport-head, .passport-person { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.passport-head { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.passport-head div { display: grid; gap: 5px; }
.passport-head small { font: 9px/1.2 var(--mono); letter-spacing: .12em; }
.passport-head strong { font: 650 20px/1 var(--serif); }
.passport-head > span { padding: 7px 10px; color: var(--white); background: var(--ink); font: 9px/1 var(--mono); }
.passport-person { justify-content: flex-start; padding-block: 25px; }
.avatar { width: 48px; height: 48px; display: grid; place-items: center; color: var(--white); background: var(--red); border-radius: 50%; font: 700 22px/1 var(--serif); }
.passport-person > div:nth-child(2) { display: grid; }
.passport-person small { color: var(--muted); font-size: 9px; }
.passport-person strong { font: 600 19px/1.3 var(--serif); }
.verified { margin-left: auto; padding: 8px 11px; display: flex; align-items: center; gap: 7px; border: 1px solid var(--line); font-size: 9px; }
.verified i { width: 18px; height: 18px; display: grid; place-items: center; color: var(--ink); background: var(--green); border-radius: 50%; font-style: normal; }
.passport-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.passport-grid div { padding: 15px 10px; display: grid; gap: 4px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.passport-grid span { color: var(--muted); font-size: 9px; }
.passport-grid strong { font: 700 18px/1.2 var(--serif); }
.passport-record { margin-top: 20px; padding: 17px; background: var(--paper); }
.passport-record span { font: 9px/1.2 var(--mono); }
.passport-record p { margin: 7px 0 0; font-size: 12px; }
.sample-disclaimer { margin: 18px 0 0; color: var(--muted); font-size: 9px; }
.evidence-rules { margin-top: 90px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 2px solid var(--ink); }
.evidence-rules article { min-height: 190px; padding: 23px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.evidence-rules article:first-child { border-left: 1px solid var(--line); }
.evidence-rules span { font: 10px/1 var(--mono); color: var(--red); }
.evidence-rules h3 { margin: 45px 0 7px; font: 600 22px/1.2 var(--serif); }
.evidence-rules p { margin: 0; color: var(--muted); font-size: 12px; }

.contact { padding-block: clamp(90px,11vw,150px); color: var(--white); background: var(--ink); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px,10vw,140px); }
.contact-copy h2 em { color: var(--signal); }
.contact-copy > p { max-width: 510px; margin: 28px 0 0; color: rgba(255,255,255,.62); }
.direct-contact { margin-top: 42px; display: grid; gap: 8px; }
.direct-contact a { width: fit-content; border-bottom: 1px solid rgba(255,255,255,.35); font: 14px/1.6 var(--mono); }
.contact-form { padding: clamp(24px,4vw,44px); color: var(--ink); background: var(--paper); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.contact-form label { margin-bottom: 16px; display: grid; gap: 7px; font-size: 11px; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(102,8,116,.13); }
.contact-form .button { width: 100%; margin-top: 4px; border: 0; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: 9px; }

.site-footer { padding: 42px var(--pad) 28px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; background: var(--paper); border-top: 1px solid var(--line); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand div { display: grid; gap: 4px; }
.footer-brand strong { font: 700 18px/1 var(--serif); }
.footer-brand small { font: 8px/1.2 var(--mono); }
.site-footer > p { margin: 0; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; gap: 20px; font-size: 11px; font-weight: 750; }
.footer-boundary { grid-column: 1/-1; padding-top: 18px; border-top: 1px solid var(--line); font-size: 9px !important; }

.summary-dialog { width: min(650px, calc(100% - 30px)); padding: 0; border: 0; color: var(--ink); background: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.summary-dialog::backdrop { background: rgba(25,19,27,.72); backdrop-filter: blur(5px); }
.dialog-head { padding: 22px 24px; display: flex; align-items: start; justify-content: space-between; color: var(--white); background: var(--ink); }
.dialog-head small { font: 8px/1.2 var(--mono); color: var(--signal); }
.dialog-head h2 { margin-top: 8px; font-size: 32px; }
.dialog-head button { width: 34px; height: 34px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.35); font-size: 22px; }
.summary-dialog > p { margin: 22px 24px 10px; color: var(--muted); font-size: 12px; }
.summary-dialog textarea { width: calc(100% - 48px); margin: 0 24px; padding: 15px; resize: vertical; border: 1px solid var(--line); background: var(--white); font: 12px/1.65 var(--mono); }
.dialog-actions { padding: 18px 24px 24px; display: flex; justify-content: flex-end; gap: 10px; }

.js .reveal { opacity: 1; transform: none; }
.js .reveal.is-visible { animation: reveal-in .62s cubic-bezier(.2,.8,.2,1) both; }
@keyframes reveal-in {
  from { opacity: .25; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .menu-button { display: block; justify-self: end; }
  .header-actions { justify-self: end; }
  .site-nav { position: absolute; left: 0; right: 0; top: 83px; padding: 24px var(--pad); display: none; flex-direction: column; align-items: flex-start; gap: 18px; background: var(--paper); border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .translation-board { min-height: 470px; }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 360px; }
  .problem-layout, .audience, .evidence-layout, .contact-layout { grid-template-columns: 1fr; }
  .problem-intro { position: static; }
  .service-row { grid-template-columns: 50px 1fr 1.2fr; }
  .service-row ul { grid-column: 2/-1; display: flex; gap: 20px; }
  .pilot-timeline { grid-template-columns: repeat(3,1fr); }
  .audience-map { min-height: 520px; }
}

@media (max-width: 720px) {
  :root { --pad: 20px; }
  .signal-bar { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .signal-bar p { overflow: hidden; text-overflow: ellipsis; }
  .site-header { height: 70px; gap: 8px; }
  .site-nav { top: 69px; }
  .brand-logo { width: 124px; height: 40px; }
  .brand-logo img { width: 370px; }
  .header-actions { gap: 6px; }
  .mini-cta { display: none; }
  .language-toggle span { min-width: 25px; }
  .hero { min-height: 0; padding-block: 65px 88px; gap: 50px; }
  h1 { font-size: clamp(49px,14vw,68px); }
  h2 { font-size: clamp(40px,12vw,58px); }
  .translation-board { min-height: 500px; padding: 20px; box-shadow: 10px 10px 0 var(--red); }
  .board-topline { flex-direction: column; }
  .board-statement { margin-top: 36px; }
  .translation-flow { grid-template-columns: 1fr; }
  .translation-flow li { min-height: 68px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { min-height: 82px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip div:last-child { border-bottom: 0; }
  .work-card { min-height: 390px; }
  .split-heading, .pilot-heading { grid-template-columns: 1fr; gap: 25px; }
  .service-row { grid-template-columns: 44px 1fr; gap: 18px; }
  .service-row > p, .service-row ul { grid-column: 2; }
  .service-row ul { display: grid; gap: 0; }
  .audience-map { min-height: 740px; grid-template-columns: 1fr; }
  .audience-map article:first-child { grid-row: auto; }
  .mozi-hub { position: static; width: 100%; height: auto; padding: 18px; display: flex; justify-content: space-between; border: 0; border-radius: 0; transform: none; }
  .pilot-timeline { grid-template-columns: 1fr; }
  .pilot-timeline li { min-height: 220px; }
  .pilot-timeline li > span { margin: 35px 0 18px; }
  .pilot-output { flex-direction: column; }
  .pilot-output ul { justify-content: flex-start; }
  .passport-card { padding: 19px; box-shadow: 9px 9px 0 var(--signal); }
  .passport-person { flex-wrap: wrap; }
  .verified { margin-left: 0; }
  .passport-grid { grid-template-columns: repeat(2,1fr); }
  .evidence-rules { grid-template-columns: 1fr; }
  .evidence-rules article { min-height: 150px; border-left: 1px solid var(--line); }
  .evidence-rules h3 { margin-top: 27px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 8px; }
  .dialog-actions { flex-direction: column; }
  .dialog-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
