@font-face {
  font-family: "Uncut Sans";
  src: url("assets/fonts/UncutSans-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  --ink: #0d0d0f;
  --ink-soft: #242329;
  --paper: #f4f2ed;
  --paper-deep: #e9e6df;
  --white: #fff;
  --muted: #66636b;
  --muted-light: #b9b5bf;
  --line: rgba(13, 13, 15, 0.16);
  --line-dark: rgba(255, 255, 255, 0.2);
  --purple: #7843ea;
  --purple-bright: #a879ff;
  --purple-pale: #e6dcff;
  --critical: #ff6b5e;
  --content: min(100% - 48px, 1280px);
  --section: clamp(88px, 11vw, 168px);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 16px/1.6 "Uncut Sans", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.page-shell { width: var(--content); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 14px; background: var(--ink); color: white; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: relative; z-index: 100; border-bottom: 1px solid var(--line); background: rgba(244,242,237,.94); }
.header-inner { display: grid; width: var(--content); min-height: 82px; align-items: center; margin-inline: auto; grid-template-columns: 168px 1fr auto; }
.brand { display: inline-flex; width: 118px; align-items: center; }
.brand img, .footer-brand img { width: 118px; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(16px, 2.6vw, 38px); }
.desktop-nav a { position: relative; padding-block: 28px; font-size: .95rem; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 20px; height: 2px; background: var(--purple); transform: scaleX(0); transform-origin: left; transition: transform .18s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.language-switch { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.language-option { min-width: 42px; padding: 8px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: .75rem; font-weight: 700; }
.language-option[aria-pressed="true"] { background: var(--ink); color: white; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 14px; padding: 13px 20px; border: 1px solid transparent; border-radius: var(--radius); font-weight: 700; line-height: 1.2; transition: color .18s, background .18s, border-color .18s, transform .18s; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--purple); }
.button-primary { background: var(--purple); color: white; }
.button-primary:hover { background: var(--ink); }
.button-light { background: white; color: var(--ink); }
.button-light:hover { background: var(--ink); color: white; }
.header-cta { font-size: .9rem; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); background: transparent; padding: 0; cursor: pointer; }
.menu-toggle-lines { display: block; width: 20px; height: 1px; background: currentColor; transition: background .18s ease; }
.menu-toggle-lines::before, .menu-toggle-lines::after { display: block; width: 20px; height: 1px; background: currentColor; content: ""; transition: transform .18s ease; }
.menu-toggle-lines::before { transform: translateY(-6px); }
.menu-toggle-lines::after { transform: translateY(5px); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { transform: translateY(0) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { transform: translateY(-1px) rotate(-45deg); }
.mobile-menu { display: none; }
.mobile-language { display: flex; width: fit-content; margin-top: 28px; border: 1px solid var(--line); }

.hero { position: relative; min-height: calc(100svh - 82px); overflow: hidden; border-bottom: 1px solid var(--line); }
.grid-lines { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(to right, var(--line) 1px, transparent 1px), linear-gradient(to bottom, var(--line) 1px, transparent 1px); background-size: 11.11vw 11.11vw; mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 88%); }
.hero-inner { position: relative; display: grid; min-height: calc(100svh - 82px); grid-template-columns: minmax(0, 1fr) minmax(340px, .42fr); gap: clamp(48px, 8vw, 120px); align-items: center; padding-block: clamp(72px, 9vw, 130px); }
.eyebrow { margin: 0; color: var(--purple); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 { max-width: 9ch; margin: 26px 0 32px; font-size: clamp(72px, 9vw, 128px); font-weight: 500; letter-spacing: -.045em; line-height: .98; }
.hero h1 span { display: block; }
.hero h1 .accent { color: var(--purple); }
.lede { max-width: 40ch; margin: 0; font-size: clamp(1.2rem, 2vw, 1.75rem); line-height: 1.4; color: var(--ink-soft); }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 42px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; padding-block: 4px; border-bottom: 1px solid currentColor; font-weight: 700; }
.decision-console { align-self: center; position: relative; background: var(--ink); color: white; border-top: 4px solid var(--purple); padding: 24px; min-height: 474px; box-shadow: 24px 24px 0 rgba(120,67,234,.13); }
.console-head, .console-foot { display: flex; justify-content: space-between; align-items: center; font-size: 10px; letter-spacing: .14em; color: var(--muted-light); }
.live-dot { width: 8px; height: 8px; background: var(--purple-bright); border-radius: 50%; box-shadow: 0 0 0 7px rgba(168,121,255,.12); animation: pulse 2.4s infinite; }
.console-question { margin: 58px 0 42px; }
.console-label { display: block; margin-bottom: 10px; color: var(--purple-bright); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.console-question p { max-width: 310px; margin: 0; font-size: 25px; line-height: 1.24; letter-spacing: -.02em; }
.signal-stack { display: grid; gap: 15px; margin-bottom: 48px; }
.signal-row { display: grid; grid-template-columns: 46px 1fr 20px; align-items: center; gap: 12px; font-size: 9px; letter-spacing: .12em; color: var(--muted-light); }
.signal-row i { position: relative; height: 2px; background: rgba(255,255,255,.14); }
.signal-row i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--signal); background: var(--purple-bright); transform-origin: left; animation: signal-in 1.2s var(--ease) both; }
.signal-row b { color: white; font-weight: 500; }
.console-foot { padding-top: 18px; border-top: 1px solid var(--line-dark); }
.console-foot strong { color: var(--purple-bright); font-weight: 700; }
.audience-strip { position: relative; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(244,242,237,.74); }
.audience-inner { min-height: 94px; display: grid; grid-template-columns: repeat(6, 1fr); align-items: stretch; }
.audience-inner span { display: flex; align-items: center; justify-content: center; min-width: 0; padding: 20px 10px; border-right: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.audience-inner span:first-child { border-left: 1px solid var(--line); }

.section { padding-block: var(--section); }
.section-index { display: flex; gap: 8px; margin-bottom: clamp(48px, 7vw, 100px); color: var(--purple); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.section-heading h2 { max-width: 880px; margin-bottom: 0; font-size: clamp(50px, 6.1vw, 86px); font-weight: 500; letter-spacing: -.047em; line-height: .98; }
.thesis-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(70px, 10vw, 150px); align-items: end; }
.thesis-copy { padding-bottom: 6px; color: var(--muted); font-size: 17px; }
.thesis-copy p:last-child { margin-bottom: 0; }
.thesis-copy .lead-paragraph { color: var(--ink); font-size: 22px; line-height: 1.4; }
.question-ledger { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(80px, 10vw, 150px); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.question-ledger article { min-height: 235px; padding: 22px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.question-ledger article:last-child { border-right: 0; }
.question-ledger span { color: var(--purple); font-size: 11px; font-weight: 800; }
.question-ledger h3 { max-width: 245px; margin: 35px 0 0; font-size: 22px; line-height: 1.2; font-weight: 500; }

.section-dark { background: var(--ink); color: white; }
.section-dark .section-index { color: var(--purple-bright); }
.dark-intro { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(70px, 10vw, 150px); align-items: end; }
.section-lede { max-width: 450px; margin-bottom: 5px; color: var(--muted-light); font-size: 18px; }
.scope-matrix { margin-top: clamp(80px, 10vw, 140px); border-top: 1px solid var(--line-dark); }
.scope-item { min-height: 155px; display: grid; grid-template-columns: 70px 1fr 80px; gap: 24px; align-items: center; border-bottom: 1px solid var(--line-dark); }
.scope-item > span { color: var(--purple-bright); font-size: 11px; font-weight: 800; }
.scope-item h3 { margin: 0 0 5px; font-size: clamp(25px, 2.2vw, 34px); font-weight: 500; letter-spacing: -.025em; }
.scope-item p { max-width: 620px; margin: 0; color: var(--muted-light); }
.scope-item > b { justify-self: end; color: rgba(255,255,255,.28); font-size: 11px; letter-spacing: .14em; }

.process .section-heading { margin-bottom: clamp(90px, 10vw, 140px); }
.process-track { list-style: none; margin: 0; padding: 0; }
.process-step { display: grid; grid-template-columns: minmax(200px, .7fr) 1.3fr; min-height: 260px; padding-top: 35px; border-top: 1px solid var(--line); }
.step-marker { position: relative; display: flex; align-items: flex-start; }
.step-marker span { position: relative; z-index: 1; display: grid; width: 46px; height: 46px; place-items: center; background: var(--purple); color: white; font-size: 11px; font-weight: 800; }
.step-marker i { position: absolute; top: 23px; right: 38px; left: 46px; height: 1px; background: var(--line); }
.process-step > div:last-child { max-width: 620px; padding-bottom: 60px; }
.step-meta { margin-bottom: 16px; color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.process-step h3 { margin-bottom: 14px; font-size: clamp(30px, 3vw, 42px); line-height: 1.1; font-weight: 500; letter-spacing: -.03em; }
.process-step > div:last-child > p:last-child { max-width: 570px; margin: 0; color: var(--muted); font-size: 17px; }
.confidentiality-note { display: grid; grid-template-columns: 80px 1fr; gap: 28px; align-items: center; padding: 30px 34px; border: 1px solid var(--line); background: var(--paper-deep); }
.lock-mark { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid var(--purple); color: var(--purple); font-size: 30px; }
.confidentiality-note p { max-width: 850px; margin: 0; color: var(--muted); }
.confidentiality-note strong { color: var(--ink); }

.deliverable { background: var(--purple); color: white; }
.deliverable .section-index { color: var(--ink); }
.deliverable-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(70px, 10vw, 150px); align-items: center; }
.deliverable-copy h2 { margin-bottom: 28px; font-size: clamp(50px, 6vw, 85px); font-weight: 500; letter-spacing: -.047em; line-height: .98; }
.deliverable-copy > p { font-size: 20px; }
.verdict-legend { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 50px; }
.verdict-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.verdict-legend i { display: block; width: 8px; height: 8px; border-radius: 50%; background: white; }
.verdict-legend .critical { background: var(--critical); }
.verdict-legend .material { background: var(--ink); }
.verdict-legend .monitor { background: var(--purple-pale); }
.report-object { position: relative; min-height: 650px; padding: 32px; background: var(--paper); color: var(--ink); box-shadow: 26px 26px 0 rgba(13,13,15,.18); transform: rotate(1deg); }
.report-top { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.report-title { margin: 70px 0 55px; }
.report-title small { display: block; margin-bottom: 15px; color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.report-title strong { display: block; max-width: 450px; font-size: clamp(42px, 5vw, 68px); line-height: .94; letter-spacing: -.04em; font-weight: 500; }
.report-status { display: grid; grid-template-columns: .55fr 1fr; gap: 30px; padding-block: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.report-status span { display: block; color: var(--muted); font-size: 9px; letter-spacing: .14em; }
.report-status b { display: block; margin-top: 5px; font-size: 14px; }
.status-gauge { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; align-items: center; }
.status-gauge i { height: 20px; background: var(--ink); }
.status-gauge i:nth-child(n+4) { background: var(--paper-deep); }
.report-lines { margin-top: 30px; }
.report-lines span { display: grid; grid-template-columns: 40px 1fr; align-items: center; min-height: 49px; border-bottom: 1px solid var(--line); }
.report-lines b { color: var(--purple); font-size: 10px; }
.report-lines em { font-size: 12px; font-style: normal; font-weight: 600; }
.report-page { position: absolute; right: 32px; bottom: 26px; color: var(--muted); font-size: 9px; letter-spacing: .14em; }
.deliverable-list { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: clamp(90px, 11vw, 160px); border-top: 1px solid rgba(255,255,255,.42); border-bottom: 1px solid rgba(255,255,255,.42); }
.deliverable-list article { min-height: 230px; padding: 24px 20px; border-right: 1px solid rgba(255,255,255,.3); }
.deliverable-list article:last-child { border-right: 0; }
.deliverable-list span { font-size: 10px; font-weight: 800; }
.deliverable-list h3 { margin: 50px 0 10px; font-size: 19px; line-height: 1.2; font-weight: 600; }
.deliverable-list p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.45; }

.moments .section-heading { margin-bottom: clamp(85px, 10vw, 145px); }
.deal-timeline { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.deal-timeline::before { content: ""; position: absolute; top: 22px; right: 12%; left: 12%; height: 1px; background: var(--ink); }
.deal-timeline article { position: relative; min-height: 270px; padding: 0 26px 30px; border-right: 1px solid var(--line); }
.deal-timeline article:last-child { border-right: 0; }
.phase { position: relative; z-index: 1; display: grid; width: 45px; height: 45px; margin-bottom: 54px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--paper); font-size: 10px; font-weight: 800; }
.deal-timeline article:nth-child(2) .phase { background: var(--purple); border-color: var(--purple); color: white; }
.deal-timeline h3 { margin-bottom: 15px; font-size: 25px; line-height: 1.2; font-weight: 500; }
.deal-timeline p { margin: 0; color: var(--muted); font-size: 15px; }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(80px, 12vw, 180px); }
.faq .section-heading h2 { font-size: clamp(48px, 5.5vw, 76px); }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq details { border-bottom: 1px solid var(--line-dark); }
.faq summary { min-height: 98px; display: grid; grid-template-columns: 1fr 30px; gap: 24px; align-items: center; cursor: pointer; list-style: none; font-size: 20px; font-weight: 500; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { position: relative; width: 22px; height: 22px; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; top: 10px; left: 0; width: 22px; height: 1px; background: white; transition: transform .25s var(--ease); }
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i::after { transform: rotate(0); }
.faq details p { max-width: 650px; padding: 0 52px 32px 0; color: var(--muted-light); }

.cta-band { padding-block: clamp(90px, 10vw, 150px); background: var(--purple); color: white; }
.cta-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(65px, 9vw, 130px); align-items: start; }
.dark-eyebrow { color: var(--ink); }
.cta-band h2 { max-width: 720px; margin: 0 0 38px; font-size: clamp(54px, 6.2vw, 88px); font-weight: 500; letter-spacing: -.05em; line-height: .95; }
.cta-copy > p:not(.eyebrow) { max-width: 570px; margin-bottom: 0; font-size: 18px; }
.cta-note { display: block; margin-top: 32px; color: rgba(255,255,255,.68); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.contact-form-card { padding: clamp(28px, 4vw, 52px); background: var(--paper); color: var(--ink); box-shadow: 20px 20px 0 rgba(13,13,15,.17); }
.form-heading { padding-bottom: 35px; border-bottom: 1px solid var(--line); }
.form-heading > span { display: block; margin-bottom: 35px; color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.form-heading h3 { margin-bottom: 12px; font-size: clamp(34px, 3.4vw, 48px); font-weight: 500; letter-spacing: -.035em; line-height: 1; }
.form-heading p { max-width: 530px; margin: 0; color: var(--muted); font-size: 14px; }
.contact-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 27px 22px; padding-top: 38px; }
.contact-form-grid label { display: flex; min-width: 0; flex-direction: column; gap: 8px; }
.contact-form-grid label > span { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-form-grid .field-full { grid-column: 1 / -1; }
.contact-form-grid input, .contact-form-grid select, .contact-form-grid textarea { width: 100%; min-height: 52px; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(13,13,15,.42); border-radius: 0; outline: none; background: transparent; color: var(--ink); font: 400 16px/1.4 "Uncut Sans", Arial, sans-serif; transition: border-color .18s, background .18s; }
.contact-form-grid select { cursor: pointer; }
.contact-form-grid textarea { min-height: 120px; resize: vertical; }
.contact-form-grid input:focus, .contact-form-grid select:focus, .contact-form-grid textarea:focus { border-color: var(--purple); background: rgba(120,67,234,.035); }
.contact-form-grid input:user-invalid, .contact-form-grid select:user-invalid, .contact-form-grid textarea:user-invalid { border-color: var(--critical); }
.form-privacy { margin: 22px 0 0; color: var(--muted); font-size: 11px; }
.form-submit-row { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; margin-top: 30px; }
.form-submit-row .button { min-width: 180px; }
.form-submit-row .button:disabled { cursor: wait; opacity: .6; transform: none; }
.form-status { min-height: 22px; margin: 0; font-size: 12px; line-height: 1.45; }
.form-status.success { color: #1f6f4a; }
.form-status.error { color: #a33b35; }

.site-footer { padding: 80px 0 24px; background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; padding-bottom: 85px; }
.footer-brand p { max-width: 390px; margin: 28px 0 0; color: var(--muted); }
.footer-column { display: flex; flex-direction: column; gap: 9px; }
.footer-column h2 { margin-bottom: 18px; font-size: 10px; letter-spacing: .14em; }
.footer-column a { width: fit-content; color: var(--muted); font-size: 14px; }
.footer-column a:hover { color: var(--purple); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 23px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.floating-contact { position: fixed; z-index: 70; right: 18px; bottom: 18px; display: flex; min-width: 230px; justify-content: space-between; align-items: center; gap: 20px; padding: 14px 18px; background: var(--ink); color: white; font-size: 13px; font-weight: 700; box-shadow: 0 12px 40px rgba(13,13,15,.18); transition: background .18s, transform .18s, opacity .25s; }
.floating-contact:hover { background: var(--purple); transform: translateY(-2px); }
.floating-contact.is-hidden { opacity: 0; pointer-events: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .42; } }
@keyframes signal-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (max-width: 1050px) {
  .header-inner { grid-template-columns: 140px 1fr auto; }
  .desktop-nav { gap: 14px; }
  .desktop-nav a { font-size: .86rem; }
  .header-cta { display: none; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr); gap: 44px; }
  .hero h1 { max-width: 9ch; }
  .decision-console { min-height: 430px; }
  .audience-inner { grid-template-columns: repeat(3, 1fr); }
  .audience-inner span:nth-child(3) { border-right: 0; }
  .audience-inner span:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .thesis-grid, .dark-intro, .deliverable-grid, .faq-layout, .cta-layout { grid-template-columns: 1fr; }
  .thesis-copy, .section-lede { max-width: 700px; }
  .question-ledger { grid-template-columns: repeat(2, 1fr); }
  .question-ledger article:nth-child(2) { border-right: 0; }
  .question-ledger article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .report-object { width: min(100%, 680px); justify-self: end; }
  .deliverable-list { grid-template-columns: repeat(3, 1fr); }
  .deliverable-list article:nth-child(3) { border-right: 0; }
  .deliverable-list article:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.3); }
  .deal-timeline { grid-template-columns: repeat(2, 1fr); row-gap: 60px; }
  .deal-timeline::before { display: none; }
  .faq-layout { gap: 70px; }
  .contact-form-card { max-width: 760px; justify-self: end; }
}

@media (max-width: 780px) {
  :root { --content: min(100% - 32px, 1280px); --section: 92px; }
  .header-inner { width: var(--content); min-height: 74px; grid-template-columns: 1fr auto; }
  .header-cta, .language-switch { display: none; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-menu { position: fixed; inset: 74px 0 0; z-index: 99; padding: 34px 16px; background: var(--paper); flex-direction: column; }
  .mobile-menu.is-open { display: flex; }
  .mobile-menu a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 25px; line-height: 1.2; }
  .mobile-menu a:last-child { margin-top: auto; padding: 18px; background: var(--ink); color: white; border: 0; font-size: 16px; }
  .mobile-language .language-option { display: block; }
  .hero { min-height: 0; }
  .grid-lines { inset: 0; background-size: 25vw 25vw; }
  .hero-inner { min-height: auto; padding-block: 82px 68px; grid-template-columns: 1fr; gap: 68px; }
  .hero h1 { max-width: 8ch; font-size: clamp(64px, 18vw, 112px); }
  .lede { font-size: 1.2rem; }
  .decision-console { width: calc(100% - 12px); min-height: 420px; justify-self: end; box-shadow: 12px 12px 0 rgba(120,67,234,.13); }
  .audience-inner { grid-template-columns: repeat(2, 1fr); }
  .audience-inner span { min-height: 62px; border-bottom: 1px solid var(--line); }
  .audience-inner span:nth-child(3) { border-right: 1px solid var(--line); }
  .audience-inner span:nth-child(even) { border-right: 0; }
  .audience-inner span:nth-last-child(-n+2) { border-bottom: 0; }
  .section-index { margin-bottom: 55px; }
  .section-heading h2, .deliverable-copy h2, .cta-band h2 { font-size: clamp(46px, 13vw, 72px); }
  .thesis-grid, .dark-intro, .deliverable-grid, .cta-layout { gap: 55px; }
  .question-ledger { grid-template-columns: 1fr; }
  .question-ledger article { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--line); }
  .question-ledger article:last-child { border-bottom: 0; }
  .scope-item { grid-template-columns: 45px 1fr; padding-block: 27px; }
  .scope-item > b { display: none; }
  .scope-item h3 { font-size: 25px; }
  .scope-item p { font-size: 14px; }
  .process-step { grid-template-columns: 80px 1fr; }
  .step-marker i { display: none; }
  .confidentiality-note { grid-template-columns: 1fr; padding: 26px; }
  .report-object { min-height: 570px; padding: 24px; box-shadow: 12px 12px 0 rgba(13,13,15,.18); }
  .report-title { margin: 55px 0 40px; }
  .report-status { grid-template-columns: 1fr; }
  .report-page { right: 24px; }
  .deliverable-list { grid-template-columns: 1fr; }
  .deliverable-list article { min-height: 170px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.3); }
  .deliverable-list h3 { margin-top: 32px; }
  .deal-timeline { grid-template-columns: 1fr; row-gap: 0; }
  .deal-timeline article { min-height: 235px; padding: 0 0 45px 74px; border-right: 0; }
  .deal-timeline article::before { content: ""; position: absolute; top: 45px; bottom: 0; left: 22px; width: 1px; background: var(--line); }
  .deal-timeline article:last-child::before { display: none; }
  .phase { position: absolute; left: 0; top: 0; margin: 0; }
  .faq summary { min-height: 90px; font-size: 17px; }
  .contact-form-card { width: calc(100% - 10px); padding: 28px 22px; box-shadow: 10px 10px 0 rgba(13,13,15,.17); }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form-grid .field-full { grid-column: auto; }
  .form-submit-row { grid-template-columns: 1fr; }
  .form-submit-row .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 60px 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { gap: 20px; flex-direction: column; }
  .floating-contact { right: 12px; bottom: 12px; min-width: auto; }
  .floating-contact span { display: none; }
}

@media (max-width: 520px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .console-question p { font-size: 22px; }
  .process-step { grid-template-columns: 56px 1fr; }
  .step-marker span { width: 38px; height: 38px; }
  .process-step h3 { font-size: 28px; }
  .report-object { min-height: 540px; }
  .report-title strong { font-size: 40px; }
  .verdict-legend { gap: 15px; }
}

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