:root {
  --paper: #f2f4f8;
  --paper-deep: #e6edff;
  --ink: #0b132b;
  --ink-soft: #46516d;
  --line: #c5cee3;
  --red: #2563ff;
  --red-dark: #101d42;
  --blue: #0b132b;
  --violet: #7c3aed;
  --green: #176b45;
  --green-pale: #dff3e9;
  --amber: #895b08;
  --amber-pale: #f6ebc8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 19, 43, .13);
  --serif: Sora, "Avenir Next", "Segoe UI", ui-sans-serif, sans-serif;
  --sans: Inter, "Avenir Next", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --page: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(37, 99, 255, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 32px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-underline-offset: .2em; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
[aria-disabled="true"] { cursor: not-allowed; }
.skip-link {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.announcement {
  color: var(--white);
  background: var(--blue);
  border-bottom: 1px solid #050b1d;
  font-size: 13px;
  letter-spacing: .01em;
}
.announcement-inner {
  width: var(--page);
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.announcement strong {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.announcement a { font-weight: 700; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(242, 244, 248, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: var(--page);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 0;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark-image {
  display: block;
  flex: 0 0 174px;
  width: 174px;
  height: 42px;
  overflow: hidden;
  background: var(--white);
}
.wordmark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.desktop-nav { display: flex; flex: 0 0 auto; align-items: center; gap: 22px; }
.nav-link, .desktop-nav > a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.desktop-nav > a:hover, .nav-link:hover { text-decoration: underline; }
.desktop-nav span[aria-disabled="true"] { color: #77736a; font-size: 13px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}
.nav-cta:hover { color: var(--ink); background: transparent; text-decoration: none !important; }
.mobile-nav { display: none; }

main { overflow: hidden; }
.section { padding: 104px 0; border-bottom: 1px solid var(--line); }
.section-inner { width: var(--page); margin: 0 auto; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); text-wrap: balance; }
h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(52px, 7.8vw, 104px);
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: .93;
}
h2 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: .98;
}
h3 { font-size: 25px; line-height: 1.12; }
.lede {
  max-width: 720px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.38;
}
.section-copy { max-width: 720px; color: var(--ink-soft); font-size: 18px; }

.hero {
  position: relative;
  padding-top: 92px;
  background:
    radial-gradient(circle at 88% 24%, rgba(124, 58, 237, .1), transparent 26%),
    var(--paper);
}
.hero::after {
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(37, 99, 255, .16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 304px;
  gap: 70px;
  align-items: end;
}
.hero-aside {
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
  padding: 0 0 4px 24px;
  border-left: 3px solid var(--violet);
}
.hero-lockup {
  width: 100%;
  height: 92px;
  overflow: hidden;
  margin: 0 0 24px -24px;
  background: var(--white);
  border: 1px solid var(--line);
}
.hero-lockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-aside-label {
  display: block;
  margin-bottom: 13px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-aside p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: transparent; }
.button-light { color: var(--ink); background: transparent; }
.button-light:hover { color: var(--white); background: var(--ink); }
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.trust-line span:not(:last-child)::after { content: "·"; margin-left: 18px; color: var(--violet); }

.problem-band { color: var(--white); background: var(--ink); }
.problem-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: start;
}
.problem-band .eyebrow { color: #8fb2ff; }
.problem-band h2 { margin-bottom: 0; }
.problem-copy { max-width: 630px; }
.problem-copy > p { color: #cbc7bd; font-size: 18px; }
.contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.contrast-card { min-height: 166px; padding: 22px; border: 1px solid #514f48; }
.contrast-card:last-child { border-color: #6d8dff; background: #111c3d; }
.contrast-label {
  display: block;
  margin-bottom: 30px;
  color: #aaa69d;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contrast-card strong { display: block; font-family: var(--serif); font-size: 22px; }
.contrast-card p { margin: 8px 0 0; color: #c9c5bc; font-size: 14px; }

.steps-header { display: flex; justify-content: space-between; gap: 60px; align-items: end; }
.steps-header .section-copy { max-width: 420px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.step { position: relative; min-height: 288px; padding: 28px 30px 30px 0; }
.step + .step { padding-left: 30px; border-left: 1px solid var(--line); }
.step-number {
  display: block;
  margin-bottom: 78px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}
.step p { max-width: 290px; margin-bottom: 0; color: var(--ink-soft); }
.boundary-note {
  display: flex;
  gap: 14px;
  max-width: 800px;
  margin: 30px 0 0 auto;
  color: var(--ink-soft);
  font-size: 13px;
}
.boundary-note::before { content: "i"; flex: 0 0 auto; font-family: var(--serif); font-style: italic; font-weight: 800; color: var(--red); }

.connections-section { background: var(--white); }
.connections-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 72px;
  align-items: end;
}
.connections-heading h2 { margin-bottom: 0; }
.connection-flow {
  display: grid;
  grid-template-columns: repeat(7, auto);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 58px 0 18px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.connection-flow i { color: #8fb2ff; font-style: normal; }
.connection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.connection-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.connection-card.active-profile { border-top: 4px solid var(--red); }
.connection-card.planned-profile { border-top: 4px solid var(--violet); }
.connection-state {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.connection-card h3 { margin: 54px 0 10px; }
.connection-card p { min-height: 86px; color: var(--ink-soft); font-size: 14px; }
.connection-card code {
  display: inline-block;
  padding: 6px 8px;
  color: var(--blue);
  background: var(--paper-deep);
  font-family: var(--mono);
  font-size: 12px;
}

.mail-section { background: var(--white); }
.mail-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 70px;
  align-items: end;
}
.mail-heading h2 { margin-bottom: 0; }
.mail-intro { color: var(--ink-soft); font-family: var(--serif); font-size: 21px; }
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  border: 1px solid var(--line);
  background: var(--line);
}
.benefit { min-height: 170px; padding: 24px; background: var(--white); }
.benefit-index { color: var(--red); font-family: var(--mono); font-size: 12px; }
.benefit h3 { margin: 38px 0 8px; }
.benefit p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }

.mail-demo {
  margin-top: 38px;
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
  background: var(--paper);
}
.demo-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.demo-live { display: inline-flex; align-items: center; gap: 8px; }
.demo-live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #c9c5bc; }
.demo-live.verified::before { background: #6bea9d; box-shadow: 0 0 0 3px rgba(107, 234, 157, .14); }
.demo-content { display: grid; grid-template-columns: .9fr 1.1fr; }
.mail-story { padding: 34px; border-right: 1px solid var(--line); }
.mail-story h3 { max-width: 410px; margin-bottom: 16px; font-size: 34px; }
.mail-story > p { color: var(--ink-soft); }
.route {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.route-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}
.route strong { display: block; font-size: 14px; }
.route p { margin: 3px 0 0; color: var(--ink-soft); font-size: 13px; }
.verification-panel { padding: 34px; background: #eef2ff; }
.verification-panel h3 { margin-bottom: 6px; }
.verification-intro { margin-bottom: 22px; color: var(--ink-soft); font-size: 14px; }
.stage-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.stage-item {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 11px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.stage-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid #7e89a6;
  border-radius: 50%;
  color: transparent;
  font-size: 12px;
  line-height: 1;
}
.stage-item.verified .stage-icon { color: var(--white); border-color: var(--green); background: var(--green); }
.stage-label { font-size: 14px; font-weight: 750; }
.stage-detail { display: block; margin-top: 2px; color: var(--ink-soft); font-size: 12px; }
.stage-state { color: #78746a; font-family: var(--mono); font-size: 12px; text-transform: uppercase; }
.stage-item.verified .stage-state { color: var(--green); }
.proof-row {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 15px 16px;
  color: var(--white);
  background: var(--ink);
}
.proof-row.visible { display: flex; }
.proof-meta { min-width: 0; }
.proof-meta small { display: block; color: #bbb7ae; font-family: var(--mono); font-size: 12px; text-transform: uppercase; }
.proof-root { display: block; overflow: hidden; margin-top: 2px; font-family: var(--mono); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.proof-download { flex: 0 0 auto; color: var(--white); font-size: 13px; font-weight: 800; }
.demo-boundary {
  margin: 0;
  padding: 17px 34px;
  color: var(--ink-soft);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.evidence-section { background: var(--paper-deep); }
.evidence-heading { display: flex; justify-content: space-between; gap: 48px; align-items: end; }
.evidence-heading .section-copy { max-width: 430px; }
.status-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 52px; }
.status-card { min-height: 224px; padding: 24px; border: 1px solid var(--line); background: var(--paper); }
.status-kicker { display: block; color: var(--ink-soft); font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.status-value { display: block; margin: 50px 0 8px; font-family: var(--serif); font-size: 29px; line-height: 1; }
.status-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 13px; }
.status-card.verified { border-top: 4px solid var(--green); }
.status-card.pending { border-top: 4px solid var(--amber); }
.status-card.outside { border-top: 4px solid var(--ink-soft); }
.status-card.verified .status-value { color: var(--green); }
.status-card.pending .status-value { color: var(--amber); }
.evidence-actions { margin-top: 32px; }

.brand-section { background: var(--white); }
.brand-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: center;
}
.brand-copy h2 { font-size: clamp(38px, 4.4vw, 62px); }
.publication-paths { margin: 38px 0 0; border-top: 1px solid var(--line); }
.publication-paths div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.publication-paths dt {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.publication-paths dd { margin: 0; color: var(--ink-soft); font-size: 14px; }
.brand-board {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.brand-board img { width: 100%; height: auto; }
.brand-board figcaption {
  padding: 11px 3px 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.open-section { color: var(--white); background: var(--red-dark); }
.open-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: start; }
.open-section .eyebrow { color: #9db8ff; }
.open-section h2 { margin-bottom: 28px; }
.open-section .section-copy { color: #cbd6f2; }
.resource-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.38); }
.resource-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 62px;
  border-bottom: 1px solid rgba(255,255,255,.38);
}
.resource-list a, .resource-list .text-link { font-weight: 750; }
.resource-list span[aria-disabled="true"] { color: #9ba9cb; font-size: 13px; }
.resource-type { color: #9ba9cb; font-family: var(--mono); font-size: 12px; text-transform: uppercase; }
.open-section .button-dark { color: var(--ink); background: var(--white); border-color: var(--white); }
.open-section .button-dark:hover { color: var(--white); background: transparent; }
.open-section .button-dark[aria-disabled="true"] { color: #cbd6f2; background: transparent; border-color: #6477a8; }

.faq-list { max-width: 900px; margin: 48px 0 0 auto; border-top: 1px solid var(--ink); }
details { border-bottom: 1px solid var(--line); }
summary {
  position: relative;
  padding: 23px 52px 23px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 8px; top: 19px; color: var(--red); font-family: var(--sans); font-size: 24px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 720px; padding: 0 48px 24px 0; color: var(--ink-soft); }

footer { color: #cbc7bd; background: var(--ink); }
.footer-inner { width: var(--page); margin: 0 auto; padding: 55px 0 28px; }
.footer-top { display: flex; justify-content: space-between; gap: 50px; align-items: flex-start; }
.footer-mark {
  width: 214px;
  height: 52px;
  overflow: hidden;
  background: var(--white);
}
.footer-mark img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.footer-note { max-width: 520px; margin: 10px 0 0; font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 24px; font-size: 13px; }
.footer-links a { color: var(--white); }
.footer-links span[aria-disabled="true"] { color: #8d8980; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #4c4a45;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  :root { --page: min(100% - 36px, 760px); }
  .desktop-nav { display: none; }
  .mobile-nav {
    position: relative;
    display: block;
    flex: 0 0 auto;
    border: 0;
  }
  .mobile-nav > summary {
    min-width: 78px;
    padding: 9px 30px 9px 12px;
    border: 1px solid var(--ink);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.4;
    text-transform: uppercase;
  }
  .mobile-nav > summary::after { right: 10px; top: 5px; color: var(--red); font-size: 19px; }
  .mobile-nav[open] > summary { color: var(--white); background: var(--ink); }
  .mobile-nav > nav {
    position: absolute;
    z-index: 30;
    top: calc(100% + 8px);
    right: 0;
    width: min(280px, calc(100vw - 28px));
    padding: 8px;
    border: 1px solid var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .mobile-nav nav a {
    display: block;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
  }
  .mobile-nav nav a:last-child { color: var(--white); background: var(--ink); border-bottom: 0; }
  .hero-grid, .problem-grid, .mail-heading, .connections-heading, .brand-grid, .open-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-aside { max-width: 540px; }
  .steps-header, .evidence-heading { display: block; }
  .steps-header .section-copy, .evidence-heading .section-copy { margin-top: 20px; }
  .demo-content { grid-template-columns: 1fr; }
  .mail-story { border-right: 0; border-bottom: 1px solid var(--line); }
  .status-grid { grid-template-columns: 1fr 1fr; }
  .status-card:last-child { grid-column: 1 / -1; }
  .connection-flow { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
  .connection-flow span { text-align: center; }
}

@media (max-width: 700px) {
  :root { --page: calc(100% - 28px); }
  body { font-size: 15px; }
  html { scroll-padding-top: 68px; }
  .announcement-inner { min-height: 46px; padding: 7px 0; display: block; }
  .announcement strong { display: block; }
  .site-header { position: relative; }
  .header-inner { min-height: 62px; }
  .wordmark-image { flex-basis: 132px; width: 132px; height: 34px; }
  .section { padding: 72px 0; }
  .hero { padding-top: 62px; }
  h1 { font-size: clamp(48px, 15vw, 68px); }
  h2 { font-size: clamp(37px, 11vw, 52px); }
  .lede { font-size: 20px; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .trust-line { display: block; }
  .trust-line span { display: block; margin-top: 8px; }
  .trust-line span:not(:last-child)::after { content: none; }
  .contrast, .steps, .benefits, .connection-grid, .status-grid { grid-template-columns: 1fr; }
  .connection-flow { display: flex; overflow-x: auto; justify-content: flex-start; white-space: nowrap; }
  .connection-card { min-height: 0; }
  .connection-card h3 { margin-top: 34px; }
  .connection-card p { min-height: 0; }
  .steps { border-bottom: 0; }
  .step, .step + .step { min-height: 0; padding: 26px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .step-number { margin-bottom: 34px; }
  .boundary-note { margin-left: 0; }
  .benefit { min-height: 140px; }
  .mail-story, .verification-panel { padding: 24px 20px; }
  .mail-story h3 { font-size: 29px; }
  .stage-item { grid-template-columns: 20px 1fr; }
  .stage-state { grid-column: 2; }
  .proof-row { align-items: flex-start; flex-direction: column; }
  .demo-boundary { padding: 15px 20px; }
  .status-card, .status-card:last-child { grid-column: auto; min-height: 190px; }
  .status-value { margin-top: 36px; }
  .publication-paths div { grid-template-columns: 1fr; gap: 4px; }
  .footer-top, .footer-bottom { display: block; }
  .footer-links { justify-content: flex-start; margin-top: 30px; }
  .footer-bottom span { display: block; margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

@media (prefers-contrast: more) {
  :root { --line: #5a564f; --ink-soft: #32312d; }
  .announcement, .problem-band, footer { background: #000; }
}
