:root {
  color-scheme: dark;
  --bg: #282828;
  --bg-deep: #1C1C1C;
  --panel: #2F2F2F;
  --panel-light: #3A3A3A;
  --text: #FAFAFA;
  --muted: #DADAD9;
  --soft: #989898;
  --accent: #FAFAFA;
  --accent-line: rgba(250, 250, 250, .38);
  --secondary: #626262;
  --secondary-line: rgba(98, 98, 98, .45);
  --line: rgba(250, 250, 250, .14);
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, textarea, input, select { font: inherit; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 18px;
  top: -60px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 3px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 800;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.nav-bar { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); font-weight: 900; text-decoration: none; letter-spacing: -.02em; }
.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: var(--text);
  font-family: var(--mono);
  font-size: .9rem;
  letter-spacing: -.04em;
}
.brand-mark img { display: block; width: 100%; height: 100%; }
nav { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: .92rem; font-weight: 700; }
nav a { text-decoration: none; }
nav a:hover, nav a:focus { color: var(--text); }
.learning-link { padding-left: 22px; border-left: 1px solid var(--line); color: var(--text); }

section { border-bottom: 1px solid var(--line); }
.hero { overflow: hidden; }
.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(40px, 6vw, 82px);
  padding-block: 88px 100px;
}
.eyebrow, .section-label {
  margin: 0 0 18px;
  color: var(--soft);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 5.8vw, 6rem);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.045em;
}
h1 span { color: var(--accent); }
h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 4vw, 3.9rem); font-weight: 800; line-height: 1.02; letter-spacing: -.03em; }
h3 { margin-bottom: 12px; font-size: 1.4rem; font-weight: 700; line-height: 1.2; letter-spacing: -.015em; }
.lead, .section-lead { color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.2rem); }
.lead { max-width: 680px; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 32px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}
.button:hover, .button:focus { border-color: var(--text); }
.button.primary { border-color: var(--accent); background: var(--accent); color: var(--bg); }
.button.primary:hover, .button.primary:focus { border-color: var(--accent); background: #E7E6E4; }
.button.secondary { background: transparent; }
.micro { margin-top: 18px; color: var(--soft); font-size: .88rem; font-weight: 600; }

.signal-map { position: relative; min-height: 500px; isolation: isolate; }
.signal-map::before {
  content: "";
  position: absolute;
  inset: 14%;
  z-index: -2;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.signal-center {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  width: 160px;
  aspect-ratio: 1;
  translate: -50% -50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  background: var(--bg);
  color: var(--text);
}
.signal-center strong { font-family: var(--mono); font-size: 3.4rem; line-height: 1; color: var(--accent); }
.signal-center span { font-size: .72rem; font-weight: 700; letter-spacing: .07em; line-height: 1.25; text-transform: uppercase; color: var(--muted); text-align: center; }
.signal {
  position: absolute;
  display: flex;
  min-width: 145px;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
}
.signal b { color: var(--soft); font-family: var(--mono); font-size: .7rem; }
.signal span { font-size: .83rem; font-weight: 700; line-height: 1.2; }
.signal-one { left: 2%; top: 17%; }
.signal-two { right: 0; top: 20%; }
.signal-three { left: 0; bottom: 18%; }
.signal-four { right: 3%; bottom: 14%; }

.thesis { background: var(--panel); color: var(--text); }
.thesis-grid { display: grid; grid-template-columns: .4fr 1.6fr; gap: 50px; padding-block: 64px; }
.thesis .section-label { color: var(--soft); }
.statement { max-width: 920px; margin: 0; font-size: clamp(1.5rem, 2.8vw, 2.5rem); font-weight: 700; line-height: 1.28; letter-spacing: -.02em; }
.statement em { color: var(--accent); font-style: normal; }

.lenses-section { padding-block: 104px; }
.section-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 48px; }
.section-intro h2, .section-intro p { margin-bottom: 0; }
.lens-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.lens-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.lens-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--secondary); }
.lens-card.cut::before { background: var(--accent); }
.lens-number { position: absolute; right: 26px; top: 22px; color: var(--soft); font-family: var(--mono); font-size: 1rem; font-weight: 700; line-height: 1; }
.lens-type { position: relative; margin-bottom: 42px; color: var(--soft); font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.lens-card.cut .lens-type { color: var(--accent); }
.lens-card > p:not(.lens-type) { max-width: 560px; color: var(--muted); }
.lens-question, .lens-action { position: relative; padding-top: 15px; border-top: 1px solid var(--line); }
.lens-question { margin-top: auto; color: var(--text); font-weight: 700; }
.lens-action { margin-top: 15px; color: var(--muted); font-size: .93rem; }
.lens-question span, .lens-action span { display: block; margin-bottom: 4px; color: var(--soft); font-family: var(--mono); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.lens-equation { display: flex; align-items: center; justify-content: center; gap: 34px; margin-top: 30px; padding: 25px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); text-align: center; }
.lens-equation b { color: var(--text); }
.equation-mark { color: var(--accent); font-size: 1.5rem; }

.process-section { padding-block: 104px; background: var(--panel); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(54px, 9vw, 120px); }
.process-copy { position: sticky; top: 40px; align-self: start; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 58px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.process-list li:first-child { padding-top: 0; }
.process-list li:last-child { border-bottom: 0; }
.step { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--soft); font-family: var(--mono); font-size: .72rem; font-weight: 700; }
.process-list h3 { margin-bottom: 7px; }
.process-list p { margin: 0; color: var(--muted); }

.fit-section { padding-block: 88px; }
.fit-panel { padding: clamp(34px, 6vw, 68px); border: 1px solid var(--line); border-radius: 6px; background: var(--panel); }
.fit-panel h2 { max-width: 850px; }
.fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 42px; }
.fit-grid p { margin: 0; padding: 17px 18px; border: 1px solid var(--line); border-radius: 4px; background: var(--bg); color: var(--muted); font-weight: 600; }
.fit-grid p::before { content: "↳"; margin-right: 9px; color: var(--accent); }

.diagnostic-section { padding-block: 104px; background: var(--panel); }
.diagnostic-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 100px); align-items: start; }
.diagnostic-card { padding: clamp(25px, 4vw, 40px); border: 1px solid var(--line); border-radius: 6px; background: var(--bg); }
.diagnostic-card label { display: block; margin-bottom: 13px; color: var(--text); font-weight: 700; }
textarea {
  width: 100%;
  min-height: 190px;
  resize: vertical;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.5;
}
textarea::placeholder { color: var(--soft); }
textarea:focus { border-color: var(--text); }
.diagnostic-controls { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 12px; }
#input-count { color: var(--soft); font-family: var(--mono); font-size: .76rem; }
button {
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: var(--accent);
  color: var(--bg);
  cursor: pointer;
  font-weight: 700;
}
button:hover, button:focus { background: #E7E6E4; }
button:disabled { cursor: wait; filter: grayscale(.4); opacity: .6; }
#result { margin-top: 0; }
#result.has-content { margin-top: 24px; }
.result-status { padding: 17px; border: 1px solid var(--line); border-radius: 4px; background: var(--bg-deep); color: var(--muted); }
.result-status.success { border-color: rgba(250, 250, 250, .45); color: var(--text); }
.result-status.error { border-color: rgba(249, 248, 247, .55); color: var(--text); }
.result-grid { display: grid; gap: 10px; }
.result-item { padding: 17px; border-left: 3px solid var(--secondary); background: var(--bg-deep); }
.result-item:nth-child(n+3) { border-left-color: var(--accent); }
.result-item h3 { margin-bottom: 7px; color: var(--text); font-family: var(--mono); font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; }
.result-item p { margin: 0; color: var(--muted); white-space: pre-line; }

.contact-section { padding-block: 104px; text-align: center; }
.contact-panel { max-width: 920px; }
.contact-panel h2 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
.contact-panel > p:not(.eyebrow) { max-width: 680px; margin-inline: auto; color: var(--muted); font-size: 1.1rem; }
.centered { justify-content: center; }
.text-link { color: var(--muted); font-weight: 700; text-decoration: none; }
.text-link:hover { color: var(--text); }

footer { padding-block: 42px 24px; color: var(--soft); font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; }
.footer-grid p { margin: 0; text-align: center; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-brand { color: var(--text); }
.footer-brand .brand-mark { width: 38px; height: 38px; }
.copyright { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); }

@media (max-width: 920px) {
  nav a:not(.learning-link) { display: none; }
  .learning-link { padding-left: 0; border-left: 0; }
  .hero-grid, .section-intro, .process-grid, .diagnostic-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 64px; }
  .signal-map { min-height: 450px; }
  .section-intro { gap: 20px; }
  .process-copy { position: static; }
  .fit-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid p { text-align: left; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav-bar { min-height: 70px; }
  .brand-mark { width: 40px; height: 40px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.05rem, 11vw, 3.1rem); }
  .hero-grid { min-height: auto; padding-block: 54px 70px; }
  .button { width: 100%; }
  .signal-map { min-height: 390px; margin-inline: -10px; }
  .signal-center { width: 130px; }
  .signal-center strong { font-size: 2.8rem; }
  .signal { min-width: 122px; padding: 10px; }
  .signal span { font-size: .75rem; }
  .signal-one { left: 0; }
  .signal-two { right: 0; }
  .thesis-grid { grid-template-columns: 1fr; gap: 15px; padding-block: 48px; }
  .lenses-section, .process-section, .diagnostic-section, .contact-section { padding-block: 76px; }
  .lens-grid, .fit-grid { grid-template-columns: 1fr; }
  .lens-card { min-height: 380px; }
  .lens-equation { flex-direction: column; gap: 8px; }
  .equation-mark { rotate: 90deg; }
  .fit-section { padding-block: 58px; }
  .diagnostic-controls { align-items: stretch; flex-direction: column; }
  .diagnostic-controls button { width: 100%; }
  .footer-links { align-items: flex-start; flex-direction: column; gap: 9px; }
}

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

.lead-bar {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.lead-bar-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding-block: 12px;
}
.lead-bar-text { margin: 0; font-weight: 700; font-size: .95rem; }
.lead-bar-fields { display: flex; flex-wrap: wrap; gap: 10px; }
.lead-bar-fields input {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  color: var(--text);
  min-width: 220px;
}
.lead-bar-fields button {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  cursor: pointer;
}
.lead-bar-fields button:hover, .lead-bar-fields button:focus { background: #E7E6E4; }
@media (max-width: 640px) {
  .lead-bar-form { flex-direction: column; align-items: stretch; text-align: center; }
  .lead-bar-fields { flex-direction: column; }
  .lead-bar-fields input, .lead-bar-fields button { width: 100%; }
}

.thanks-section { padding-block: 104px; text-align: center; }
.thanks-panel { max-width: 640px; }
.thanks-panel h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.thanks-panel p { color: var(--muted); font-size: 1.05rem; }
.phone-followup {
  margin-top: 40px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.phone-followup-lead { margin: 0 0 14px; color: var(--text); font-weight: 700; }
.phone-followup-form { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.phone-followup-form input {
  min-height: 46px;
  min-width: 220px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  color: var(--text);
}
.phone-followup-form button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  cursor: pointer;
}
.phone-followup-form button:hover, .phone-followup-form button:focus { background: #E7E6E4; }

.trial-hero { background: var(--bg-deep); }
.trial-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
  padding-block: 86px;
}
.trial-hero h1, .report-cover h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
.trial-promise {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.trial-promise p { margin-bottom: 16px; }
.trial-promise ul, .report-lens-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.trial-promise li, .report-lens-card li { margin-bottom: 9px; }
.trial-section, .report-section, .schedule-section { padding-block: 96px; }
.trial-grid, .next-step-grid, .schedule-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}
.trial-form, .schedule-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.form-row.two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.trial-form label, .schedule-card label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}
.trial-form input, .trial-form select, .schedule-card input, .schedule-card select {
  min-height: 48px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  background: var(--bg-deep);
  color: var(--text);
}
.trial-form input:focus, .trial-form select:focus, .schedule-card input:focus, .schedule-card select:focus {
  border-color: var(--text);
}
.trial-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.trial-actions p {
  margin: 0;
  color: var(--soft);
  font-family: var(--mono);
  font-size: .76rem;
}
.diagnostic-note {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
}
.diagnostic-note h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.diagnostic-note p { color: var(--muted); }
.mini-offer {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.mini-offer span { color: var(--muted); }

.report-cover {
  padding-block: 88px;
  background: var(--bg-deep);
}
.report-cover-grid {
  display: grid;
  grid-template-columns: 1.2fr .55fr;
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}
.quality-card {
  display: grid;
  gap: 8px;
  min-height: 310px;
  align-content: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  text-align: center;
}
.quality-card span {
  color: var(--soft);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.quality-card strong {
  font-size: clamp(6rem, 14vw, 9rem);
  line-height: .9;
}
.quality-card p { margin: 0; color: var(--text); font-size: 1.2rem; font-weight: 800; }
.quality-card small { color: var(--muted); font-size: .95rem; }
.chart-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
}
.chart-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.chart-panel h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.pie-chart {
  display: grid;
  width: min(310px, 74vw);
  aspect-ratio: 1;
  place-items: center;
  margin: 24px auto;
  border-radius: 50%;
}
.pie-chart span {
  display: grid;
  width: 44%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--panel);
  color: var(--text);
  font-family: var(--mono);
  font-weight: 800;
}
.chart-legend {
  display: grid;
  gap: 9px;
}
.chart-legend p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: var(--muted);
}
.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
  background: #008C95;
}
.legend-dot.keystone_function { background: #F2A900; }
.legend-dot.echo_drag { background: #D95D39; }
.legend-dot.dust_layer { background: #4F7CAC; }
.bar-chart { display: grid; gap: 22px; margin-top: 26px; }
.bar-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 700;
}
.bar-label b { color: var(--text); font-family: var(--mono); }
.bar-track {
  overflow: hidden;
  height: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-deep);
}
.bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #008C95;
}
.bar-track span.keystone_function { background: #F2A900; }
.bar-track span.echo_drag { background: #D95D39; }
.bar-track span.dust_layer { background: #4F7CAC; }
.report-lenses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.report-lens-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.report-lens-card h2 { font-size: clamp(1.6rem, 3vw, 2.45rem); }
.report-lens-card p { color: var(--muted); }
.first-move {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
}
.first-move span {
  display: block;
  margin-bottom: 6px;
  color: var(--soft);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.next-steps {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1.05rem;
}
.next-steps li { margin-bottom: 13px; }
.schedule-section { background: var(--panel); }
.schedule-card #schedule-status { margin-top: 0; }

@media (max-width: 920px) {
  .trial-hero-grid, .trial-grid, .report-cover-grid, .chart-grid, .next-step-grid, .schedule-grid { grid-template-columns: 1fr; }
  .report-lenses { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .trial-hero-grid, .trial-section, .report-cover, .report-section, .schedule-section { padding-block: 64px; }
  .form-row.two, .trial-actions { grid-template-columns: 1fr; flex-direction: column; align-items: stretch; }
  .trial-actions button { width: 100%; }
  .quality-card { min-height: 240px; }
}
