:root {
  color-scheme: dark;
  --ink: #07131f;
  --ink-soft: #0d1d2c;
  --paper: #f4f7fb;
  --muted: #aab8c7;
  --line: rgba(214, 228, 242, 0.17);
  --blue: #2f8cff;
  --blue-light: #8bc2ff;
  --orange: #ff7a2f;
  --orange-light: #ffc09c;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 90% 6%, rgba(47, 140, 255, 0.12), transparent 28rem),
    var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 19, 31, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--paper);
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139, 194, 255, 0.5);
  border-radius: 9px;
  color: var(--blue-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82rem;
  transform: rotate(-2deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
}

.site-nav .nav-cta {
  margin-left: 0.35rem;
  background: var(--paper);
  color: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--blue-light);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--paper);
  font: inherit;
}

main { overflow: clip; }

.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.hero {
  min-height: calc(100vh - 76px);
  padding: clamp(4rem, 9vw, 8rem) 0 5rem;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  align-items: center;
  gap: clamp(2.25rem, 6vw, 6rem);
}

.eyebrow {
  margin: 0 0 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--blue-light);
  font: 700 0.76rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

h1, h2, h3, p { text-wrap: pretty; }

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3.2rem, 8.2vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: -0.068em;
  font-weight: 790;
}

.hero h1 .accent { color: var(--orange); }

.lede {
  max-width: 41rem;
  margin: 2rem 0 0;
  color: #c8d2de;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.button-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  min-height: 50px;
  padding: 0.8rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper);
  text-decoration: none;
  font-weight: 720;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(139, 194, 255, 0.7);
}

.button.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #04101b;
}

.button.primary:hover,
.button.primary:focus-visible { background: var(--blue-light); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% -7% -8% 12%;
  border: 1px solid rgba(47, 140, 255, 0.35);
  border-radius: var(--radius);
  transform: rotate(3deg);
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-note {
  position: absolute;
  left: -1.5rem;
  bottom: 2.5rem;
  max-width: 16rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--orange);
  background: rgba(8, 21, 34, 0.93);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  color: #dce6f0;
  font-size: 0.88rem;
}

.visual-note strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--orange-light);
  font: 700 0.72rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-bar {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.signal-grid {
  min-height: 108px;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  align-items: center;
  gap: 2rem;
}

.signal-label {
  color: var(--orange-light);
  font: 700 0.72rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-copy {
  margin: 0;
  color: #d7e0ea;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.section { padding: clamp(5rem, 9vw, 8rem) 0; }
.section.compact { padding-block: clamp(3.5rem, 6vw, 5rem); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-head h2,
.page-intro h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-head p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.work-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.work-card,
.service-card,
.principle-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
}

.work-card::after {
  content: attr(data-index);
  position: absolute;
  right: 0.8rem;
  bottom: -2.2rem;
  color: rgba(139, 194, 255, 0.08);
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
}

.card-kicker {
  margin: 0 0 auto;
  color: var(--blue-light);
  font: 700 0.72rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-card h3,
.service-card h2,
.principle-card h3 {
  position: relative;
  z-index: 1;
  margin: 3rem 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.work-card p,
.service-card p,
.principle-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.service-card { min-height: 420px; }

.service-card ul,
.plain-list {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.plain-list li {
  padding: 0.72rem 0;
  border-top: 1px solid var(--line);
  color: #d8e1eb;
}

.band {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--paper);
  color: var(--ink);
}

.band-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.band .eyebrow { color: #1258a7; }

.band h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.band-copy {
  max-width: 43rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.band-copy p:first-child { margin-top: 0; }
.band-copy p:last-child { margin-bottom: 0; }

.quote {
  margin: 2.25rem 0 0;
  padding: 1.4rem 0 0 1.5rem;
  border-top: 1px solid rgba(7, 19, 31, 0.18);
  border-left: 3px solid var(--orange);
  font-weight: 730;
  letter-spacing: -0.015em;
}

.proof {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2rem;
  align-items: start;
}

.proof-number {
  margin: 0;
  color: var(--orange);
  font-size: clamp(4.2rem, 9vw, 8rem);
  line-height: 0.85;
  letter-spacing: -0.07em;
  font-weight: 820;
}

.proof-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.proof-copy p { color: var(--muted); }
.proof-copy a { color: var(--blue-light); }

.cta-panel {
  padding: clamp(2.2rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 2rem;
  border: 1px solid rgba(47, 140, 255, 0.4);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 122, 47, 0.16), transparent 19rem),
    linear-gradient(135deg, rgba(47, 140, 255, 0.13), rgba(255,255,255,0.025));
}

.cta-panel h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.cta-panel p { max-width: 38rem; color: #bdcad7; }
.cta-actions { justify-self: end; }

.page-intro {
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.page-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
}

.page-intro h1 { max-width: 11ch; }
.page-intro .lede { margin: 0; }

.process-list { counter-reset: process; }

.process-step {
  counter-increment: process;
  display: grid;
  grid-template-columns: 0.38fr 1.62fr;
  gap: 2rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
}

.process-step:first-child { border-top-color: rgba(47, 140, 255, 0.55); }
.process-step::before {
  content: "0" counter(process);
  color: var(--blue-light);
  font: 700 0.8rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.12em;
}

.process-step h3 { margin: 0 0 0.55rem; font-size: 1.5rem; }
.process-step p { margin: 0; max-width: 48rem; color: var(--muted); }

.two-col {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.sticky-label { position: sticky; top: 118px; }

.prose {
  max-width: 46rem;
  color: #cad5df;
  font-size: 1.09rem;
}

.prose h2 {
  margin: 3.2rem 0 1rem;
  color: var(--paper);
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.prose h2:first-child { margin-top: 0; }

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.principle-card { min-height: 280px; }
.principle-card h3 { margin-top: auto; }

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.assessment-main {
  min-height: calc(100vh - 76px);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 15% 8%, rgba(47, 140, 255, 0.12), transparent 25rem),
    radial-gradient(circle at 88% 72%, rgba(255, 122, 47, 0.08), transparent 28rem);
}

.assessment-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
  margin-bottom: 2.5rem;
}

.assessment-intro h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.assessment-intro .lede { margin: 0; }

.assessment-shell { max-width: 970px; }

.assessment-card {
  min-height: 580px;
  padding: clamp(1.4rem, 4vw, 3.5rem);
  border: 1px solid rgba(47, 140, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(10, 27, 43, 0.9);
  box-shadow: var(--shadow);
}

.assessment-progress {
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.25rem;
  color: var(--blue-light);
  font: 700 0.75rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.progress-track {
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-track span {
  display: block;
  width: 16.666%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transition: width 220ms ease;
}

.assessment-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.assessment-step legend,
.assessment-result h2,
.assessment-lead-gate h2 {
  max-width: 18ch;
  margin: 0;
  padding: 0;
  color: var(--paper);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 780;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.question-help {
  margin: 0.8rem 0 1.8rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.assessment-option {
  position: relative;
  min-height: 78px;
  padding: 1.1rem 1.1rem 1.1rem 3.2rem;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.assessment-option:hover {
  transform: translateY(-1px);
  border-color: rgba(139, 194, 255, 0.55);
  background: rgba(47, 140, 255, 0.07);
}

.assessment-option:has(input:checked) {
  border-color: var(--blue);
  background: rgba(47, 140, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(47, 140, 255, 0.3);
}

.assessment-option input {
  position: absolute;
  left: 1.15rem;
  top: 1.3rem;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  accent-color: var(--blue);
}

.assessment-option strong {
  display: block;
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.3;
}

.assessment-option small {
  display: block;
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.assessment-error {
  margin: 1rem 0 0;
  color: var(--orange-light);
  font-weight: 680;
}

.assessment-controls {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.assessment-back { margin-right: auto; }
.assessment-back[hidden],
.assessment-step[hidden],
.assessment-lead-gate[hidden],
.assessment-result[hidden] { display: none !important; }

.assessment-controls button,
.assessment-result button { font: inherit; }

.assessment-result .card-kicker,
.assessment-lead-gate .card-kicker { margin-bottom: 1rem; }
.assessment-result,
.assessment-lead-gate { scroll-margin-top: 108px; }
.assessment-result h2,
.assessment-lead-gate h2 { max-width: 19ch; }

.result-summary {
  max-width: 46rem;
  margin: 1rem 0 2rem;
  color: #cad5df;
  font-size: 1.08rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.result-grid div {
  min-height: 112px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.result-grid span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--blue-light);
  font: 700 0.7rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-grid strong {
  display: block;
  color: var(--paper);
  line-height: 1.35;
}

.result-plan {
  margin-top: 2rem;
  padding: 1.4rem;
  border-left: 3px solid var(--orange);
  background: rgba(255, 122, 47, 0.055);
}

.result-plan h3 { margin: 0 0 0.75rem; }
.result-plan ol { margin: 0; padding-left: 1.35rem; color: #d6e0e9; }
.result-plan li + li { margin-top: 0.45rem; }

.assessment-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.assessment-lead-gate .assessment-contact {
  max-width: 42rem;
  margin-top: 1rem;
  padding-top: 0;
  border-top: 0;
}

.contact-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.contact-heading .card-kicker { margin: 0 0 0.55rem; }
.contact-heading h3 { margin: 0; color: var(--paper); font-size: clamp(1.5rem, 3vw, 2.2rem); }
.contact-heading > p { margin: 0; color: var(--muted); line-height: 1.6; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-grid label { display: grid; gap: 0.45rem; }
.contact-grid label > span {
  color: var(--blue-light);
  font: 700 0.7rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-grid em { color: var(--muted); font-style: normal; font-weight: 500; text-transform: lowercase; }
.contact-grid input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--paper);
  font: inherit;
}
.contact-grid input:focus { outline: 2px solid var(--blue); outline-offset: 2px; }
.contact-grid input:disabled { opacity: 0.68; }
.assessment-honeypot { display: none; }
.assessment-submit-status { min-height: 1.4em; margin: 1rem 0 0; font-weight: 680; }
.assessment-submit-status.is-success { color: #8ff0be; }
.assessment-submit-status.is-error { color: var(--orange-light); }
.assessment-contact .button-row { margin-top: 1rem; }
.result-actions { margin-top: 1.4rem; }

.text-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.22em;
  cursor: pointer;
}

.privacy-note {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid a { color: var(--paper); }

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

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

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-grid,
  .page-intro-grid,
  .section-head,
  .band-grid,
  .proof,
  .two-col { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16 / 11; }
  .work-grid,
  .service-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 260px; }
  .service-card { min-height: auto; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-actions { justify-self: start; }
  .sticky-label { position: static; }
  .assessment-intro { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .menu-button { display: grid; place-items: center; }
  .site-nav {
    position: absolute;
    inset: calc(100% + 1px) 0 auto;
    padding: 1rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    background: rgba(7, 19, 31, 0.98);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }
  h1 { font-size: clamp(3rem, 15vw, 5.5rem); }
  .hero-visual { aspect-ratio: 4 / 5; }
  .visual-note { left: 0.8rem; right: 0.8rem; bottom: 0.8rem; max-width: none; }
  .signal-grid { grid-template-columns: 1fr; gap: 0.4rem; padding-block: 1.4rem; }
  .process-step { grid-template-columns: 1fr; gap: 0.75rem; }
  .principle-grid { grid-template-columns: 1fr; }
  .footer-grid { align-items: flex-start; flex-direction: column; gap: 0.7rem; }
  .assessment-card { min-height: 0; }
  .assessment-progress { grid-template-columns: 1fr; gap: 0.65rem; }
  .option-grid,
  .result-grid,
  .contact-heading,
  .contact-grid { grid-template-columns: 1fr; }
  .assessment-option { min-height: 72px; }
  .assessment-controls { align-items: stretch; }
  .assessment-controls .button { flex: 1; }
}

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