:root {
  --ink: #171a18;
  --ink-soft: #343a36;
  --paper: #f4f2eb;
  --paper-deep: #e8e5dc;
  --white: #fffefa;
  --charcoal: #111513;
  --charcoal-2: #1a201d;
  --line: #c9c8c0;
  --line-dark: #353c38;
  --muted: #626963;
  --muted-dark: #a9b1ab;
  --accent: #c8f16b;
  --accent-dark: #6e8d27;
  --private: #9dbbff;
  --danger: #b84136;
  --success: #287147;
  --radius: 6px;
  --shadow: 0 24px 70px rgba(12, 16, 14, .12);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #426a1e; outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--accent); color: var(--charcoal); padding: .75rem 1rem; font-weight: 750; text-decoration: none; }
.skip-link:focus { top: 1rem; }

.site-header, .simple-header, .operator-header { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 0 max(24px, calc((100vw - var(--max)) / 2)); border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: .72rem; color: var(--ink); font-weight: 780; letter-spacing: -.025em; text-decoration: none; font-size: 1.08rem; }
.brand-mark { width: 34px; height: 34px; display: inline-grid; place-items: center; border-radius: 4px; background: var(--charcoal); color: var(--accent); font-size: .92rem; font-weight: 850; letter-spacing: -.04em; }
.site-nav { display: flex; align-items: center; gap: 1.65rem; margin-left: auto; }
.site-nav a, .text-link, .site-footer a, .health-link, .back-link { color: var(--ink-soft); text-decoration: none; font-size: .9rem; font-weight: 650; }
.site-nav a:hover, .text-link:hover, .site-footer a:hover, .health-link:hover, .back-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: .7rem; min-height: 48px; padding: .75rem 1.2rem; border: 1px solid var(--charcoal); border-radius: var(--radius); background: var(--charcoal); color: var(--white); font-weight: 720; text-decoration: none; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(17, 21, 19, .16); }
.button-small { min-height: 40px; padding: .55rem .9rem; font-size: .86rem; }
.button-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.button-light { background: var(--accent); border-color: var(--accent); color: var(--charcoal); }
.button-private { background: #1b3154; border-color: #1b3154; }
.button-full { width: 100%; margin-top: .45rem; }

.hero { max-width: var(--max); min-height: 680px; margin: 0 auto; padding: 7rem 0 6rem; display: grid; grid-template-columns: 1.08fr .8fr; align-items: center; gap: 7vw; }
.eyebrow { margin: 0 0 1rem; color: var(--accent-dark); font-size: .74rem; font-weight: 820; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { max-width: 820px; margin: 0; font-size: clamp(3.1rem, 6.4vw, 6.25rem); line-height: .95; letter-spacing: -.065em; font-weight: 780; }
.hero-lede { max-width: 735px; margin: 2rem 0 0; color: var(--ink-soft); font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.1rem; }
.hero-note { margin: 1.4rem 0 0; color: var(--muted); font-size: .86rem; }
.signal-panel { position: relative; background: var(--charcoal); color: var(--white); border: 1px solid var(--line-dark); border-radius: 10px; box-shadow: var(--shadow); overflow: hidden; }
.signal-panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, transparent 50%, rgba(200, 241, 107, .06)); pointer-events: none; }
.signal-header { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--line-dark); color: var(--muted-dark); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.live-dot::before { content: ""; width: 7px; height: 7px; margin-right: .5rem; display: inline-block; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(200, 241, 107, .1); }
.signal-row { position: relative; display: grid; grid-template-columns: 45px 1fr; gap: 1rem; padding: 1.5rem 1.25rem; border-bottom: 1px solid var(--line-dark); }
.signal-row:last-child { border-bottom: 0; }
.signal-number { color: #6f7a73; font: 700 .72rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.signal-row strong { display: block; margin-bottom: .3rem; font-size: .95rem; }
.signal-row p { margin: 0; color: var(--muted-dark); font-size: .86rem; }
.signal-row-accent { background: rgba(200, 241, 107, .07); }
.signal-row-accent .signal-number, .signal-row-accent strong { color: var(--accent); }

.section { padding: 7rem max(24px, calc((100vw - var(--max)) / 2)); }
.section-intro { display: grid; grid-template-columns: .8fr 1.3fr; align-items: start; column-gap: 4rem; margin-bottom: 3.5rem; }
.section-intro .eyebrow { grid-row: 1 / 3; }
.section-intro h2, .principles-copy h2, .cta-section h2 { margin: 0; font-size: clamp(2.2rem, 4.2vw, 4.1rem); line-height: 1.02; letter-spacing: -.05em; }
.section-intro > p:last-child { grid-column: 2; max-width: 680px; margin: 1.25rem 0 0; color: var(--muted); font-size: 1.05rem; }
.split-section { background: var(--white); border-block: 1px solid var(--line); }
.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.mode-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mode-card { min-height: 545px; display: flex; flex-direction: column; padding: clamp(1.7rem, 4vw, 3.25rem); border: 1px solid var(--line); border-radius: 9px; background: var(--paper); }
.mode-label { display: flex; align-items: center; gap: .7rem; color: var(--ink-soft); font-size: .78rem; font-weight: 790; letter-spacing: .08em; text-transform: uppercase; }
.mode-icon { min-width: 34px; height: 34px; padding: 0 .45rem; display: inline-grid; place-items: center; background: var(--charcoal); color: var(--accent); border-radius: 4px; font-size: .68rem; }
.private-card { background: #eef1f6; }
.private-card .mode-icon { background: #1b3154; color: var(--private); }
.mode-card h3 { max-width: 530px; margin: 2.5rem 0 1rem; font-size: clamp(1.7rem, 3vw, 2.75rem); line-height: 1.05; letter-spacing: -.04em; }
.mode-card > p { max-width: 560px; margin: 0; color: var(--muted); }
.check-list { margin: auto 0 0; padding: 2.2rem 0 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { position: relative; padding: .66rem 0 .66rem 1.8rem; font-weight: 640; }
.check-list li::before { content: "↳"; position: absolute; left: 0; color: var(--accent-dark); }
.private-card .check-list li::before { color: #315d99; }
.property-card { background: #edf4ef; }
.property-card .mode-icon { background: #2f7359; color: #d9f3b0; }
.property-card .check-list li::before { color: #2f7359; }

.process-section { background: var(--charcoal); color: var(--white); }
.process-section .eyebrow { color: var(--accent); }
.section-intro.narrow { grid-template-columns: .8fr 1.3fr; }
.process-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 4.5rem 0 0; padding: 0; border: 1px solid var(--line-dark); list-style: none; }
.process-list li { min-height: 270px; padding: 1.5rem; border-right: 1px solid var(--line-dark); display: flex; flex-direction: column; }
.process-list li:last-child { border-right: 0; }
.process-list span { color: #747e78; font: 700 .72rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.process-list strong { margin-top: auto; font-size: 1.25rem; }
.process-list p { min-height: 3.9em; margin: .65rem 0 0; color: var(--muted-dark); font-size: .87rem; }
.process-list .operator-step { background: var(--accent); color: var(--charcoal); }
.process-list .operator-step span, .process-list .operator-step p { color: #46552c; }

.principles-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 7vw; align-items: start; }
.principles-copy p:last-child { max-width: 560px; color: var(--muted); font-size: 1.05rem; }
.principle-grid { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.principle-grid li { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 1rem; padding: 1.25rem .25rem; border-bottom: 1px solid var(--line); font-size: clamp(1rem, 1.8vw, 1.28rem); font-weight: 680; }
.principle-grid span { color: var(--muted); font: 700 .7rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.cta-section { max-width: var(--max); margin: 0 auto 4rem; padding: clamp(2.2rem, 5vw, 4.5rem); display: flex; justify-content: space-between; align-items: end; gap: 3rem; background: var(--charcoal-2); color: var(--white); border-radius: 10px; }
.cta-section h2 { max-width: 800px; }
.cta-section .eyebrow { color: var(--accent); }
.cta-section .button { flex: 0 0 auto; }

.site-footer { min-height: 170px; max-width: var(--max); margin: 0 auto; padding: 2.5rem 0; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; border-top: 1px solid var(--line); }
.site-footer nav { display: flex; gap: 1.5rem; }
.site-footer > p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .82rem; }

.auth-body { min-height: 100vh; background: var(--charcoal); color: var(--white); }
.auth-body .simple-header { border-color: var(--line-dark); }
.auth-body .brand, .auth-body .text-link { color: var(--white); }
.auth-body .brand-mark { background: var(--accent); color: var(--charcoal); }
.auth-main { width: min(1180px, calc(100% - 48px)); min-height: calc(100vh - 76px); margin: 0 auto; padding: 6rem 0; display: grid; grid-template-columns: 1fr minmax(360px, 480px); gap: 9vw; align-items: center; }
.auth-context h1 { max-width: 650px; margin: 0; font-size: clamp(3rem, 6vw, 5.8rem); line-height: .96; letter-spacing: -.06em; }
.auth-context > p:not(.eyebrow) { max-width: 610px; margin: 1.5rem 0 0; color: var(--muted-dark); font-size: 1.05rem; }
.auth-body .eyebrow { color: var(--accent); }
.context-list { margin: 2rem 0 0; padding: 0; list-style: none; color: #d9dedb; }
.context-list li { padding: .55rem 0 .55rem 1.7rem; position: relative; }
.context-list li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.form-card { padding: clamp(1.5rem, 4vw, 2.6rem); background: var(--white); color: var(--ink); border-radius: 9px; box-shadow: 0 30px 90px rgba(0, 0, 0, .25); }
.form-heading { margin-bottom: 1.5rem; }
.form-heading .eyebrow { color: var(--accent-dark); }
.form-heading h2 { margin: 0; font-size: 2rem; letter-spacing: -.035em; }
.form-heading > p:last-child { margin: .4rem 0 0; color: var(--muted); font-size: .9rem; }
.form-card form { display: grid; }
.form-card label { margin: .9rem 0 .38rem; font-size: .82rem; font-weight: 720; }
.form-card input, .form-card select, .form-card textarea { width: 100%; min-height: 48px; padding: .72rem .8rem; border: 1px solid #aaa9a2; border-radius: 5px; background: #fbfaf6; color: var(--ink); }
.form-card textarea { min-height: 120px; resize: vertical; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--accent-dark); outline: 3px solid rgba(110, 141, 39, .18); }
.form-footnote { margin: 1.3rem 0 0; color: var(--muted); font-size: .82rem; text-align: center; }
.form-footnote a { font-weight: 700; }
.form-alert, .form-success { padding: .8rem 1rem; border-radius: 5px; font-size: .86rem; }
.form-alert { background: #f9e6e3; border: 1px solid #d99a92; color: #70251f; }
.form-success { background: #e2f3e9; border: 1px solid #83bd99; color: #174f31; }
.request-main { padding-block: 3rem; }
.request-modes { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 2rem; }
.request-modes div { padding: 1rem; border: 1px solid var(--line-dark); border-radius: 5px; }
.request-modes strong, .request-modes span { display: block; }
.request-modes span { margin-top: .2rem; color: var(--muted-dark); font-size: .8rem; }

.operator-body { min-height: 100vh; background: #ecebe5; }
.operator-header { background: var(--charcoal); border-color: var(--line-dark); color: var(--white); }
.operator-header .brand { color: var(--white); }
.operator-header .brand-mark { background: var(--accent); color: var(--charcoal); }
.operator-header .health-link { color: var(--muted-dark); }
.operator-account { display: flex; align-items: center; gap: 1rem; color: var(--muted-dark); font-size: .82rem; }
.text-button { padding: 0; border: 0; background: none; color: var(--white); font-weight: 680; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.operator-main { max-width: var(--max); margin: 0 auto; padding: 5.5rem 0; }
.operator-intro { max-width: 800px; margin-bottom: 3rem; }
.operator-intro h1, .launch-card h1 { margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); line-height: .98; letter-spacing: -.055em; }
.operator-intro > p:last-child { max-width: 680px; color: var(--muted); font-size: 1.05rem; }
.operator-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.operator-card { min-height: 370px; display: flex; flex-direction: column; padding: clamp(1.7rem, 4vw, 3rem); border-radius: 8px; background: var(--white); border: 1px solid var(--line); }
.card-heading-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .7rem 1rem; }
.card-heading-row .pipeline-status { margin: 0; flex: 0 0 auto; }
.private-operator { background: #e8edf6; }
.tenx-operator { grid-column: 1 / -1; background: #15191e; border-color: #303842; color: #f5f2e9; }
.property-operator { grid-column: 1 / -1; background: #eef4f1; border-color: #b8cec4; color: #1c2b25; }
.property-operator .card-kicker { color: #2f7359; }
.property-operator > p { color: #4f645a; }
.property-operator .health-link { color: #275f4a; }
.card-kicker { margin: 0; color: var(--accent-dark); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.private-operator .card-kicker { color: #315d99; }
.tenx-operator .card-kicker { color: #ff6b35; }
.tenx-operator > p { color: #aeb7c1; }
.tenx-operator .health-link { color: #f5f2e9; }
.button-tenx { background: #ff6b35; color: #17191c; }
.button-tenx:hover { background: #ff8257; }
.tenx-launch-card .eyebrow { color: #c64a1e; }
.operator-card h2 { max-width: 490px; margin: 1.3rem 0 .8rem; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.05; letter-spacing: -.04em; }
.operator-card > p { max-width: 550px; color: var(--muted); }
.operator-actions { margin-top: auto; display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem; }
.local-note { margin-top: 1.25rem; padding: 1.2rem 1.35rem; border: 1px solid var(--line); border-radius: 6px; background: transparent; }
.local-note strong { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.local-note p { margin: .25rem 0 0; color: var(--muted); font-size: .88rem; }
.center-main { min-height: calc(100vh - 76px); display: grid; place-items: center; padding: 2rem; }
.launch-card { width: min(760px, 100%); padding: clamp(1.8rem, 6vw, 4.5rem); background: var(--white); border: 1px solid var(--line); border-radius: 9px; box-shadow: var(--shadow); }
.launch-card > p { color: var(--muted); font-size: 1.02rem; }
.launch-card .eyebrow { color: var(--accent-dark); font-size: .74rem; }
.launch-warning { margin: 2.5rem 0 1.5rem; padding: 1rem 1.2rem; background: #efede4; border-left: 3px solid var(--accent-dark); }
.launch-warning strong { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.launch-warning p, .health-explainer { margin: .3rem 0 0; color: var(--muted); font-size: .85rem; }
.pipeline-status { display: inline-flex; align-items: center; gap: .6rem; margin: 2rem 0 .5rem; padding: .55rem .8rem; border-radius: 999px; font-size: .86rem; }
.pipeline-status span { width: 8px; height: 8px; border-radius: 50%; }
.status-ok { background: #e0efe6; color: #174f31; }
.status-ok span { background: var(--success); }
.status-down { background: #f5e5e2; color: #70251f; }
.status-down span { background: var(--danger); }

.status-nav { display: flex; align-items: center; gap: 1.25rem; }
.status-nav a { color: var(--muted-dark); text-decoration: none; font-size: .84rem; font-weight: 680; }
.status-nav a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.status-main { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 5rem 0; }
.status-heading { display: flex; justify-content: space-between; align-items: end; gap: 3rem; margin-bottom: 2.4rem; }
.status-heading h1 { max-width: 760px; margin: 0; font-size: clamp(2.7rem, 5vw, 5.2rem); line-height: .98; letter-spacing: -.06em; }
.status-heading p:not(.eyebrow) { max-width: 720px; margin: 1.35rem 0 0; color: var(--muted); font-size: 1.02rem; }
.status-actions { display: flex; align-items: center; flex-direction: column; gap: .75rem; flex: 0 0 auto; }
.status-refreshed { color: var(--muted); font: 700 .72rem ui-monospace, SFMono-Regular, Menlo, monospace; white-space: nowrap; }
.status-summary-card, .status-table-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.status-summary-card { padding: 1.7rem 2rem; margin-bottom: 1.25rem; }
.status-summary-card strong { display: block; font-size: clamp(1.25rem, 2.5vw, 2rem); letter-spacing: -.035em; }
.status-summary-card p:last-child { max-width: 760px; margin: .55rem 0 0; color: var(--muted); }
.status-table-heading { display: flex; justify-content: space-between; gap: 1rem; align-items: end; padding: 1.7rem 2rem; border-bottom: 1px solid var(--line); }
.status-table-heading h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.35rem); letter-spacing: -.045em; }
.status-table-heading > span { color: var(--muted); font-size: .78rem; }
.status-table-wrap { overflow-x: auto; }
.status-table-wrap table { width: 100%; border-collapse: collapse; text-align: left; }
.status-table-wrap th { padding: .85rem 2rem; color: var(--muted); background: #f2f0e9; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.status-table-wrap td { padding: 1.1rem 2rem; border-top: 1px solid var(--line); vertical-align: top; color: var(--muted); font-size: .9rem; }
.status-table-wrap td:first-child { min-width: 300px; color: var(--ink); }
.status-table-wrap td:last-child { min-width: 360px; }
.status-kicker { display: block; margin-bottom: .22rem; color: var(--accent-dark); font: 800 .68rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .1em; text-transform: uppercase; }
.status-table-wrap td strong { display: block; font-size: 1rem; }
.status-pill { display: inline-flex; align-items: center; min-width: 92px; justify-content: center; padding: .38rem .65rem; border-radius: 999px; font-size: .72rem; font-weight: 800; }
.status-built { background: #e5edf7; color: #315d99; }
.status-partial { background: #f6eed8; color: #795914; }
.status-planned { background: #ecebe5; color: var(--muted); }
.status-note { margin-top: 1.25rem; padding: 1.1rem 1.35rem; border-left: 3px solid var(--accent-dark); background: #e2e8dd; }
.status-note strong { font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.status-note p { margin: .3rem 0 0; color: var(--muted); font-size: .9rem; }

@media (max-width: 1100px) {
  .site-header, .simple-header, .operator-header { padding-inline: 24px; }
  .site-nav { display: none; }
  .hero, .site-footer, .operator-main { width: calc(100% - 48px); }
  .hero { grid-template-columns: 1fr .72fr; gap: 3rem; }
  .mode-grid.three { grid-template-columns: 1fr 1fr; }
  .mode-grid.three .property-card { grid-column: 1 / -1; }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .process-list li { border-bottom: 1px solid var(--line-dark); }
  .process-list li:nth-child(3) { border-right: 0; }
  .process-list li:nth-child(4), .process-list li:nth-child(5) { border-bottom: 0; }
}

@media (max-width: 800px) {
  .site-header { min-height: 68px; gap: 1rem; }
  .header-actions .text-link { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 5rem 0; }
  .hero h1 { font-size: clamp(3.2rem, 13vw, 5rem); }
  .signal-panel { max-width: 620px; }
  .section { padding-block: 5rem; }
  .section-intro, .section-intro.narrow { display: block; }
  .section-intro h2 { margin-top: 1rem; }
  .section-intro > p:last-child { margin-top: 1rem; }
  .mode-grid, .principles-section, .operator-grid { grid-template-columns: 1fr; }
  .mode-grid.three .property-card { grid-column: auto; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line-dark) !important; }
  .process-list li:last-child { border-bottom: 0 !important; }
  .cta-section { width: calc(100% - 48px); margin-bottom: 3rem; align-items: start; flex-direction: column; }
  .site-footer { display: flex; flex-direction: column; }
  .site-footer nav { flex-wrap: wrap; }
  .auth-main { grid-template-columns: 1fr; gap: 3.5rem; padding: 4rem 0; }
  .auth-context h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .operator-main { padding-block: 4rem; }
  .status-heading { display: block; }
  .status-actions { align-items: start; margin-top: 1.5rem; }
  .status-table-heading { display: block; }
  .status-table-heading > span { display: block; margin-top: .6rem; }
}

@media (max-width: 520px) {
  .site-header, .simple-header, .operator-header { padding-inline: 16px; }
  .button-small { padding-inline: .7rem; }
  .hero, .site-footer, .operator-main { width: calc(100% - 32px); }
  .section { padding-inline: 16px; }
  .hero { padding-block: 4rem; }
  .hero h1 { font-size: 3.2rem; }
  .mode-card { min-height: 500px; }
  .cta-section { width: calc(100% - 32px); }
  .auth-main { width: calc(100% - 32px); }
  .request-modes { grid-template-columns: 1fr; }
  .operator-account > span { display: none; }
  .operator-card { min-height: 420px; }
  .status-main { width: calc(100% - 32px); padding-block: 3rem; }
  .status-nav a { display: none; }
  .status-table-wrap th, .status-table-wrap td { padding-inline: 1rem; }
  .status-table-wrap td:first-child { min-width: 230px; }
  .status-table-wrap td:last-child { min-width: 280px; }
  .center-main { padding: 1rem; }
  .launch-card { padding: 1.5rem; }
}

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