@charset "UTF-8";
:root {
  --ink: #102d3a;
  --ink-strong: #072431;
  --muted: #58707a;
  --paper: #f3f6f5;
  --surface: #ffffff;
  --surface-blue: #e8f7fb;
  --surface-green: #e9f8ef;
  --surface-yellow: #fff6cf;
  --surface-coral: #fff0ec;
  --line: #bfd0d5;
  --line-strong: #7fa2ac;
  --navy: #06384a;
  --teal: #087f78;
  --teal-dark: #05645f;
  --cyan: #34b5d1;
  --mint: #47c993;
  --yellow: #f1c94b;
  --coral: #f2685b;
  --radius: 7px;
  --shadow: 0 10px 26px rgba(7, 45, 58, 0.09);
  --content: 1180px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -70px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--ink-strong);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 10px max(18px, calc((100vw - var(--content)) / 2));
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  color: white;
  background: var(--navy);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.tabs a {
  min-height: 38px;
  padding: 9px 10px;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.tabs a:hover {
  color: var(--ink);
  background: var(--paper);
}

.tabs a[aria-current="page"] {
  color: var(--ink-strong);
  border-color: var(--teal);
}

.page-shell {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 22px 18px 54px;
}

.showcase-hero,
.page-intro {
  position: relative;
  overflow: hidden;
  color: white;
  background-color: var(--navy);
  border: 1px solid #18566a;
  border-radius: var(--radius);
}

.showcase-hero {
  display: grid;
  min-height: 560px;
  align-content: end;
  padding: 0;
  background-image: url("/assets/earthpulse-preview.webp");
  background-position: center top;
  background-size: cover;
}

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

.showcase-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas:
    "eyebrow actions"
    "title actions"
    "lead actions";
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 28px;
  align-items: end;
  width: 100%;
  max-width: none;
  padding: 24px 28px;
  background: #062f3d;
}

.showcase-copy .eyebrow { grid-area: eyebrow; }
.showcase-copy h1 { grid-area: title; }
.showcase-copy .lead { grid-area: lead; }
.showcase-copy .actions { grid-area: actions; }

.eyebrow,
.section-kicker,
.status-label {
  margin: 0;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.showcase-hero .eyebrow,
.page-intro .eyebrow {
  color: #ffdf79;
}

.showcase-hero h1,
.page-intro h1 {
  margin: 10px 0 0;
  color: white;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0;
}

.showcase-hero h1 {
  margin-top: 2px;
  font-size: 44px;
}

.showcase-hero .lead,
.page-intro .lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: #eaf5f6;
  font-size: 20px;
}

.showcase-hero .lead {
  margin-top: 3px;
  font-size: 16px;
}

.showcase-copy .actions {
  margin-top: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  color: white;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.button.secondary:hover {
  background: var(--paper);
}

.button.ghost {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button.danger {
  color: #8a1934;
  background: white;
  border-color: #d9a7b4;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 42px;
  align-items: end;
  padding: 42px;
}

.page-intro h1 {
  font-size: 52px;
}

.intro-facts {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.26);
  list-style: none;
}

.intro-facts li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 12px;
  background: rgba(4, 36, 49, 0.88);
}

.intro-facts b {
  color: #ffdf79;
}

.intro-facts span {
  color: #d9eaed;
  font-size: 13px;
}

.quick-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.quick-path a,
.quick-path article {
  position: relative;
  min-height: 118px;
  padding: 18px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.quick-path > :last-child {
  border-right: 0;
}

.quick-path b {
  display: block;
  color: var(--teal-dark);
  font-size: 12px;
}

.quick-path strong {
  display: block;
  margin-top: 7px;
  font-size: 17px;
}

.quick-path span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.quick-path a::after,
.quick-path article::after {
  position: absolute;
  right: -7px;
  top: 50%;
  z-index: 2;
  width: 12px;
  height: 12px;
  background: white;
  border-right: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.quick-path > :last-child::after {
  display: none;
}

.section {
  margin-top: 34px;
  padding-top: 6px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink-strong);
}

.section-head h2,
.section h2 {
  margin: 5px 0 0;
  color: var(--ink-strong);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-copy {
  max-width: 700px;
  margin: 8px 0 0;
  color: var(--muted);
}

.text-link {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-underline-offset: 3px;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
  background: var(--ink-strong);
  border-radius: var(--radius);
}

.metric {
  min-height: 106px;
  padding: 18px;
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.metric:last-child {
  border-right: 0;
}

.metric b {
  display: block;
  color: #ffdf79;
  font-size: 25px;
}

.metric span {
  display: block;
  margin-top: 5px;
  color: #d7e8eb;
  font-size: 13px;
}

.view-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.view-link {
  min-height: 128px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--cyan);
  border-radius: var(--radius);
  text-decoration: none;
}

.view-link.primary {
  color: white;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  border-top-color: var(--yellow);
}

.view-link:nth-child(3) {
  border-top-color: var(--mint);
}

.view-link:nth-child(4) {
  border-top-color: var(--yellow);
}

.view-link:nth-child(5) {
  border-top-color: #f26a5b;
}

.view-link b,
.view-link span {
  display: block;
}

.view-link b {
  font-size: 18px;
}

.view-link span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.view-link.primary span {
  color: #d8eeec;
}

.blueprint {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
  padding: 28px 20px;
  background: #e7f6fa;
  border: 1px solid #76b8c8;
  border-radius: var(--radius);
}

.sensor-blueprint {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.blueprint::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: #2d8ca2;
  content: "";
}

.blueprint-step {
  position: relative;
  z-index: 1;
  min-height: 152px;
  padding: 15px;
  background: white;
  border: 2px solid #2d8ca2;
  border-radius: 6px;
}

.blueprint-step::after {
  position: absolute;
  right: -14px;
  top: 50%;
  width: 9px;
  height: 9px;
  background: #e7f6fa;
  border-right: 2px solid #2d8ca2;
  border-top: 2px solid #2d8ca2;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.blueprint-step:last-child::after {
  display: none;
}

.blueprint-step b,
.blueprint-step strong,
.blueprint-step span {
  display: block;
}

.blueprint-step b {
  color: #147187;
  font-size: 11px;
}

.blueprint-step strong {
  margin-top: 11px;
  font-size: 16px;
}

.blueprint-step span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.pilot-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  margin-top: 16px;
  padding: 26px;
  background: var(--ink-strong);
  color: white;
  border-radius: var(--radius);
}

.pilot-band h3 {
  margin: 7px 0 0;
  font-size: 28px;
  line-height: 1.08;
}

.pilot-band p {
  margin: 10px 0 0;
  color: #d9e9ec;
}

.compact-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compact-list li {
  position: relative;
  padding-left: 18px;
}

.compact-list li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  background: var(--mint);
  content: "";
}

.pilot-band .compact-list {
  align-content: center;
}

.pilot-band .compact-list li {
  color: #eaf4f5;
  font-size: 14px;
}

.hardware-table,
.decision-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  background: white;
  border: 1px solid var(--line);
}

.hardware-table th,
.hardware-table td,
.decision-table th,
.decision-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.hardware-table th,
.decision-table th {
  color: var(--ink-strong);
  background: #e8f1f3;
  font-size: 12px;
  text-transform: uppercase;
}

.hardware-table td,
.decision-table td {
  font-size: 13px;
}

.hardware-table tr:last-child td,
.decision-table tr:last-child td {
  border-bottom: 0;
}

.hardware-table a {
  color: var(--teal-dark);
  font-weight: 800;
}

.option-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.option-card {
  min-height: 130px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--coral);
  border-radius: var(--radius);
}

.option-card.base {
  border-left-color: var(--teal);
}

.option-card b,
.option-card span {
  display: block;
}

.option-card b {
  font-size: 17px;
}

.option-card span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.option-card small {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 6px;
  color: var(--ink-strong);
  background: var(--surface-yellow);
  font-weight: 900;
}

.details-panel {
  margin-top: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.details-panel summary {
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 900;
}

.details-panel > div {
  padding: 0 16px 16px;
}

.details-panel p,
.details-panel li {
  color: var(--muted);
  font-size: 14px;
}

.proposal-summary {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  background: var(--line);
  border: 1px solid var(--line);
}

.proposal-summary > div {
  min-height: 122px;
  padding: 17px;
  background: white;
}

.proposal-summary > div:first-child {
  background: var(--surface-green);
}

.proposal-summary b,
.proposal-summary strong,
.proposal-summary span {
  display: block;
}

.proposal-summary b {
  color: var(--teal-dark);
  font-size: 11px;
  text-transform: uppercase;
}

.proposal-summary strong {
  margin-top: 8px;
  font-size: 22px;
}

.proposal-summary span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.logic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.logic-card {
  min-height: 172px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--cyan);
  border-radius: var(--radius);
}

.logic-card:nth-child(2n) {
  border-top-color: var(--mint);
}

.logic-card:nth-child(3n) {
  border-top-color: var(--yellow);
}

.logic-card b {
  display: block;
  font-size: 17px;
}

.logic-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.logic-card strong {
  color: var(--ink-strong);
}

.budget-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
  margin-top: 16px;
}

.budget-bars {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.budget-bars li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 76px;
  gap: 10px;
  align-items: center;
  font-size: 12px;
}

.budget-bars i {
  display: block;
  height: 12px;
  background: var(--teal);
  border-radius: 2px;
}

.budget-bars li:nth-child(1) i { width: 64.7%; }
.budget-bars li:nth-child(2) i { width: 52.9%; }
.budget-bars li:nth-child(3) i { width: 88.2%; }
.budget-bars li:nth-child(4) i { width: 100%; }
.budget-bars li:nth-child(5) i { width: 52.9%; }
.budget-bars li:nth-child(6) i { width: 94.4%; }
.budget-bars li:nth-child(7) i { width: 41.2%; }
.budget-bars li:nth-child(8) i { width: 35.3%; }
.budget-bars li:nth-child(9) i { width: 19.1%; }
.budget-bars li:nth-child(10) i { width: 70.6%; }

.budget-bars li:nth-child(3n + 2) i {
  background: var(--cyan);
}

.budget-bars li:nth-child(3n) i {
  background: var(--mint);
}

.boundary-box {
  padding: 20px;
  background: var(--surface-yellow);
  border: 1px solid #d7b948;
  border-radius: var(--radius);
}

.boundary-box h3 {
  margin: 0;
  font-size: 20px;
}

.boundary-box ul {
  margin: 12px 0 0;
  padding-left: 19px;
}

.boundary-box li {
  margin-top: 7px;
  font-size: 13px;
}

.readiness-alert {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 12px;
  padding: 14px 18px;
  background: #fff2ee;
  border-left: 5px solid var(--coral);
}

.readiness-alert b {
  font-size: 14px;
}

.readiness-alert span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.scorecard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.scorecard-grid article {
  min-height: 150px;
  padding: 17px;
  background: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: var(--radius);
}

.scorecard-grid article.needs-input {
  background: #fff8f5;
  border-top-color: var(--coral);
}

.scorecard-grid b,
.scorecard-grid strong,
.scorecard-grid span {
  display: block;
}

.scorecard-grid b {
  color: var(--teal-dark);
  font-size: 25px;
}

.scorecard-grid .needs-input b {
  color: #a43e32;
}

.scorecard-grid strong {
  margin-top: 5px;
  font-size: 16px;
}

.scorecard-grid span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.delivery-grid article {
  min-height: 176px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--mint);
  border-radius: var(--radius);
}

.delivery-grid b,
.delivery-grid strong,
.delivery-grid span {
  display: block;
}

.delivery-grid b {
  color: var(--teal-dark);
  font-size: 23px;
}

.delivery-grid strong {
  margin-top: 7px;
  font-size: 15px;
}

.delivery-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.task-stack {
  margin-top: 14px;
  border-top: 1px solid var(--ink-strong);
}

.task-stack article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) minmax(230px, 0.65fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.task-stack article > b {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 18px;
}

.task-stack strong {
  display: block;
  font-size: 17px;
}

.task-stack ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.task-stack li {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.task-stack article > span {
  padding-left: 12px;
  color: #315849;
  border-left: 3px solid var(--mint);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.layer-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 14px 0 0;
  padding: 1px;
  background: var(--line);
  list-style: none;
}

.layer-list li {
  min-height: 104px;
  padding: 14px;
  background: white;
}

.layer-list b,
.layer-list span {
  display: block;
}

.layer-list b {
  color: var(--teal-dark);
  font-size: 14px;
}

.layer-list span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.phase-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  background: var(--line);
  border: 1px solid var(--line);
}

.phase-timeline article {
  min-height: 142px;
  padding: 14px 12px;
  background: white;
}

.phase-timeline article:nth-child(2n) {
  background: var(--surface-green);
}

.phase-timeline b,
.phase-timeline strong,
.phase-timeline span {
  display: block;
}

.phase-timeline b {
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: 10px;
}

.phase-timeline strong {
  margin-top: 8px;
  font-size: 15px;
}

.phase-timeline span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.compact-metrics {
  margin-top: 12px;
}

.budget-table td:last-child,
.budget-table th:last-child {
  width: 130px;
  text-align: right;
  white-space: nowrap;
}

.budget-table .total-row td {
  background: var(--surface-yellow);
  border-top: 2px solid var(--ink-strong);
}

.question-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.question-item {
  margin: 0;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: var(--radius);
}

.question-item:nth-child(2) {
  border-top-color: var(--cyan);
}

.question-item:nth-child(3) {
  border-top-color: var(--mint);
}

.question-item:nth-child(4) {
  border-top-color: var(--coral);
}

.question-item legend {
  padding: 0 5px;
  color: var(--ink-strong);
  font-size: 18px;
  font-weight: 900;
}

.question-item label {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

select,
textarea {
  width: 100%;
  margin-top: 5px;
  color: var(--ink);
  background: #fbfdfd;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
}

select {
  min-height: 42px;
  padding: 8px 10px;
}

textarea {
  min-height: 92px;
  padding: 10px;
  resize: vertical;
}

.question-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 14px;
}

.save-status {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}

.callout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
  padding: 22px;
  color: white;
  background: var(--ink-strong);
  border-left: 7px solid var(--yellow);
}

.callout h2 {
  margin: 0;
  color: white;
  font-size: 23px;
}

.callout p {
  margin: 0;
  color: #dcebed;
}

footer {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 0 18px 34px;
  color: var(--muted);
  font-size: 12px;
}

@media print {
  .topbar,
  .question-actions,
  .actions,
  footer {
    display: none !important;
  }

  body {
    background: white;
  }

  .page-shell {
    max-width: none;
    padding: 0;
  }

  .page-intro {
    color: var(--ink);
    background: white;
    border-color: var(--line);
  }

  .page-intro h1,
  .page-intro .lead {
    color: var(--ink);
  }
}
