:root {
  --bg: #0a0a08;
  --bg-soft: #11110e;
  --card: #151510;
  --card-light: #1b1b15;
  --line: #303029;
  --line-soft: #23231e;
  --ink: #f2f0e7;
  --muted: #a09f94;
  --faint: #74746a;
  --acid: #d9ff43;
  --acid-dark: #b7da2e;
  --orange: #ff7a45;
  --red: #ff4d4d;
  --green: #5ce19a;
  --yellow: #ffd15c;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --max: 1180px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 7%, rgba(217, 255, 67, .06), transparent 24rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--acid); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--acid);
  color: #0b0b08;
  border-radius: 4px;
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.section-shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 720; letter-spacing: -.03em; }
.brand-mark {
  width: 29px;
  height: 29px;
  padding: 5px;
  display: flex;
  align-items: end;
  gap: 2px;
  border: 1px solid #4b4b3d;
  border-radius: 7px;
  transform: rotate(-2deg);
}
.brand-mark i { flex: 1; display: block; background: var(--acid); border-radius: 1px; }
.brand-mark i:nth-child(1) { height: 28%; }
.brand-mark i:nth-child(2) { height: 52%; }
.brand-mark i:nth-child(3) { height: 88%; }
.brand-mark i:nth-child(4) { height: 42%; }
.nav-links { display: flex; gap: 32px; color: var(--muted); font-size: 14px; }
.nav-links a:hover, .footer-links a:hover { color: var(--ink); }

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 720;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--acid); color: #111108; box-shadow: 0 8px 32px rgba(217, 255, 67, .10); }
.button-primary:hover { background: #e5ff78; }
.button-secondary { border-color: var(--line); background: #191914; color: var(--ink); }
.button-secondary:hover, .button-ghost:hover { border-color: #646451; background: #202019; }
.button-ghost { min-height: 40px; border-color: var(--line); background: transparent; }
.button-small { padding: 0 16px; font-size: 14px; }
.text-link { color: var(--muted); font-weight: 650; }
.text-link:hover { color: var(--acid); }

.hero { min-height: 690px; padding: 90px 0 82px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 70px; }
.eyebrow, .section-number, .card-kicker {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--acid); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(217, 255, 67, .09); animation: pulse-dot 2.4s infinite; }
@keyframes pulse-dot { 50% { box-shadow: 0 0 0 9px rgba(217, 255, 67, 0); } }
.hero h1 { max-width: 660px; margin: 22px 0 25px; font-size: clamp(47px, 6.5vw, 78px); line-height: .98; letter-spacing: -.065em; font-weight: 760; }
.hero h1 em { color: var(--acid); font-family: Georgia, serif; font-weight: 400; }
.hero-lede { max-width: 610px; margin: 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 26px; }
.promise-row { margin-top: 45px; padding-top: 22px; display: flex; gap: 29px; border-top: 1px solid var(--line-soft); color: var(--faint); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
.promise-row b { color: var(--ink); font-weight: 700; }

.pulse-card {
  position: relative;
  overflow: hidden;
  padding: 25px;
  border: 1px solid #3b3b30;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), transparent 38%), var(--card);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .30);
}
.pulse-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--level-color, var(--faint)); }
.pulse-card[data-level="calm"] { --level-color: var(--green); }
.pulse-card[data-level="elevated"] { --level-color: var(--yellow); }
.pulse-card[data-level="major"] { --level-color: var(--orange); }
.pulse-card[data-level="severe"], .pulse-card[data-level="critical"] { --level-color: var(--red); }
.pulse-card-top { display: flex; align-items: center; justify-content: space-between; }
.source-pill, .level-pill { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 100px; padding: 5px 9px; color: var(--muted); font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.source-pill span { width: 5px; height: 5px; border-radius: 50%; background: var(--level-color, var(--faint)); }
.gauge-wrap { padding: 28px 0 26px; display: grid; grid-template-columns: 158px 1fr; align-items: center; gap: 23px; }
.gauge { --score-angle: 0deg; width: 158px; height: 158px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--level-color, var(--faint)) var(--score-angle), #2a2a22 0); transform: rotate(-110deg); }
.gauge::before { content: ""; position: absolute; width: 146px; height: 146px; border-radius: 50%; background: var(--card); }
.gauge-inner { position: relative; z-index: 1; display: flex; align-items: baseline; transform: rotate(110deg); }
.gauge-score { font-size: 56px; font-weight: 760; letter-spacing: -.07em; line-height: 1; }
.gauge-total { margin-left: 4px; color: var(--faint); font-family: var(--mono); font-size: 11px; }
.gauge-copy h2 { margin: 10px 0 8px; font-size: 24px; line-height: 1.15; letter-spacing: -.035em; }
.gauge-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.level-pill { border-color: color-mix(in srgb, var(--level-color, var(--faint)) 45%, transparent); color: var(--level-color, var(--faint)); }
.pulse-stats { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-soft); border-radius: 8px; background: rgba(0, 0, 0, .12); }
.pulse-stats > div { padding: 13px 14px; display: flex; flex-direction: column; border-right: 1px solid var(--line-soft); }
.pulse-stats > div:last-child { border-right: 0; }
.stat-value { font-family: var(--mono); font-size: 15px; font-weight: 700; }
.stat-label { color: var(--faint); font-family: var(--mono); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.chart-head { margin: 23px 0 8px; display: flex; justify-content: space-between; color: var(--faint); font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
#history-chart { display: block; width: 100%; height: 74px; }
.card-footnote { margin-top: 10px; color: var(--faint); font-size: 10px; line-height: 1.5; }
.card-footnote a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.pulse-card.is-loading .gauge, .pulse-card.is-loading .pulse-stats, .pulse-card.is-loading canvas { opacity: .45; }

.ticker { border-block: 1px solid var(--line-soft); background: #0d0d0a; }
.ticker-inner { width: min(calc(100% - 40px), var(--max)); min-height: 54px; margin-inline: auto; display: flex; align-items: center; gap: 16px; font-family: var(--mono); font-size: 11px; }
.ticker-label { padding: 4px 7px; border: 1px solid var(--acid); border-radius: 3px; color: var(--acid); font-size: 9px; letter-spacing: .1em; }
.ticker-message { flex: 1; color: var(--muted); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.ticker-time { color: var(--faint); }

.content-section { padding-block: 116px; }
.section-heading { margin-bottom: 46px; }
.section-heading h2 { margin: 10px 0 0; font-size: clamp(36px, 4.4vw, 56px); line-height: 1.05; letter-spacing: -.055em; }
.split-heading { display: grid; grid-template-columns: 1fr minmax(300px, 430px); align-items: end; gap: 50px; }
.split-heading > p, .centered-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.centered-heading { max-width: 760px; margin-inline: auto; text-align: center; }
.centered-heading p { margin-top: 20px; }

.incident-list { display: grid; gap: 12px; }
.incident-item { padding: 21px 23px; display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 18px; align-items: start; border: 1px solid var(--line-soft); border-radius: 10px; background: var(--card); transition: border-color .2s, transform .2s; }
.incident-item:hover { border-color: #49493d; transform: translateY(-1px); }
.incident-severity { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255, 122, 69, .3); border-radius: 8px; background: rgba(255, 122, 69, .08); color: var(--orange); font-family: var(--mono); font-weight: 800; }
.incident-main h3 { margin: 1px 0 4px; font-size: 16px; letter-spacing: -.02em; }
.incident-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--faint); font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .05em; }
.incident-message { max-width: 820px; margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.incident-link { color: var(--acid); font-size: 12px; font-weight: 700; }
.empty-state { padding: 34px; border: 1px dashed var(--line); border-radius: 10px; color: var(--muted); text-align: center; }
.empty-state.good { border-color: rgba(92, 225, 154, .25); background: rgba(92, 225, 154, .035); }

.services-section { border-block: 1px solid var(--line-soft); background: var(--bg-soft); }
.legend { display: flex; gap: 20px; color: var(--faint); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.legend span { display: flex; align-items: center; gap: 7px; }
.legend-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--faint); }
.legend-dot.operational { background: var(--green); }
.legend-dot.degraded { background: var(--orange); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.service-card { min-height: 112px; padding: 17px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line-soft); border-radius: 9px; background: #141410; transition: border-color .2s, background .2s; }
.service-card:hover { border-color: #48483b; background: #181813; }
.service-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.service-name { display: flex; align-items: center; min-width: 0; gap: 10px; font-weight: 680; }
.service-monogram { width: 27px; height: 27px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 6px; background: #0f0f0c; color: var(--service-accent, var(--ink)); font-family: var(--mono); font-size: 10px; font-weight: 800; }
.status-dot { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--faint); }
.status-dot.none { background: var(--green); box-shadow: 0 0 0 4px rgba(92, 225, 154, .06); }
.status-dot.minor, .status-dot.major { background: var(--orange); box-shadow: 0 0 0 4px rgba(255, 122, 69, .06); }
.status-dot.critical { background: var(--red); box-shadow: 0 0 0 4px rgba(255, 77, 77, .07); }
.service-bottom { display: flex; justify-content: space-between; gap: 10px; color: var(--faint); font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .04em; }
.service-bottom .healthy { color: var(--green); }
.service-bottom .trouble { color: var(--orange); }
.service-skeleton, .skeleton-block { background: linear-gradient(90deg, #151510 25%, #1e1e18 50%, #151510 75%); background-size: 200% 100%; animation: shimmer 1.6s infinite; }
.service-skeleton { height: 112px; border-radius: 9px; }
@keyframes shimmer { to { background-position: -200% 0; } }

.explain-section { padding-block: 130px; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.principle-grid article { min-height: 245px; padding: 30px; border: 1px solid var(--line-soft); border-radius: 10px; background: linear-gradient(160deg, rgba(255,255,255,.02), transparent 50%); }
.principle-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid #4c4c3e; border-radius: 50%; color: var(--acid); font-family: var(--mono); font-size: 18px; }
.principle-grid h3 { margin: 56px 0 10px; font-size: 20px; letter-spacing: -.03em; }
.principle-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.pricing-section { border-block: 1px solid var(--line-soft); background: #0d0d0a; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: stretch; }
.price-card { position: relative; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line-soft); border-radius: 11px; background: var(--card); }
.price-card.featured { border-color: #667522; box-shadow: inset 0 0 0 1px rgba(217, 255, 67, .05), 0 20px 70px rgba(0, 0, 0, .22); }
.featured-label { position: absolute; top: -11px; left: 50%; padding: 4px 10px; transform: translateX(-50%); border-radius: 100px; background: var(--acid); color: #0d0d08; font-family: var(--mono); font-size: 8px; font-weight: 800; letter-spacing: .08em; white-space: nowrap; }
.price-card-head { display: flex; align-items: center; justify-content: space-between; font-weight: 720; }
.price-badge { padding: 4px 7px; border: 1px solid var(--line); border-radius: 100px; color: var(--faint); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.price-badge.bright { border-color: rgba(217, 255, 67, .35); color: var(--acid); }
.price { margin: 28px 0 14px; font-size: 48px; font-weight: 760; letter-spacing: -.06em; }
.price sup { margin-right: 3px; color: var(--muted); font-size: 16px; vertical-align: 1.5em; }
.price small { margin-left: 7px; color: var(--faint); font-size: 11px; letter-spacing: 0; }
.price-card > p { min-height: 68px; margin: 0 0 17px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.price-card ul { min-height: 152px; margin: 0 0 24px; padding: 0; list-style: none; color: var(--muted); font-size: 13px; }
.price-card li { position: relative; margin: 11px 0; padding-left: 19px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--acid); font-family: var(--mono); font-size: 10px; }
.price-card .button { margin-top: auto; width: 100%; font-size: 13px; }

.early-access { margin-block: 118px; padding: 55px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; border: 1px solid #626e28; border-radius: 14px; background: linear-gradient(120deg, rgba(217, 255, 67, .075), rgba(217, 255, 67, .015)); }
.access-copy h2 { margin: 10px 0 14px; font-size: 42px; line-height: 1.05; letter-spacing: -.05em; }
.access-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.stack-picker { grid-column: 1 / -1; margin: 0 0 18px; padding: 0; border: 0; }
.stack-picker-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.stack-picker-title { padding: 0; font-weight: 720; letter-spacing: -.02em; }
.stack-picker-head span { color: var(--acid); font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .05em; }
.stack-picker > p { margin: 4px 0 12px; color: var(--faint); font-size: 11px; }
.stack-options { display: flex; flex-wrap: wrap; gap: 7px; max-height: 128px; overflow-y: auto; padding-right: 5px; }
.stack-loading { color: var(--faint); font-family: var(--mono); font-size: 9px; }
.stack-option { position: relative; padding: 7px 10px 7px 22px; border: 1px solid #414136; border-radius: 100px; background: #10100d; color: var(--muted); cursor: pointer; font-family: var(--mono); font-size: 9px; }
.stack-option::before { content: ""; position: absolute; left: 9px; top: 50%; width: 6px; height: 6px; transform: translateY(-50%); border: 1px solid var(--service-accent, var(--faint)); border-radius: 50%; }
.stack-option.selected { border-color: color-mix(in srgb, var(--service-accent, var(--acid)) 55%, #414136); background: rgba(217, 255, 67, .055); color: var(--ink); }
.stack-option.selected::before { background: var(--service-accent, var(--acid)); box-shadow: 0 0 0 3px rgba(217,255,67,.07); }
.stack-option:disabled { cursor: default; opacity: .65; }
.form-row { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(150px, .8fr); gap: 9px; }
.form-row input, .form-row select { min-width: 0; height: 50px; padding: 0 15px; border: 1px solid #46463a; border-radius: 7px; background: #10100d; color: var(--ink); outline: none; }
.form-row input:focus, .form-row select:focus { border-color: var(--acid); }
.form-row .button { grid-column: 1 / -1; }
.form-note { margin: 10px 0 0; color: var(--faint); font-size: 10px; }
.form-note.success { color: var(--green); }
.form-note.error { color: var(--red); }
.honeypot { position: absolute !important; left: -9999px; opacity: 0; }

.faq { padding: 10px 0 130px; }
.faq-list { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary { position: relative; padding: 25px 45px 25px 0; cursor: pointer; list-style: none; font-weight: 680; letter-spacing: -.015em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 5px; color: var(--acid); font-family: var(--mono); font-size: 20px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: -8px 45px 25px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.site-footer { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; padding: 60px 0 26px; border-top: 1px solid var(--line-soft); }
.footer-main { display: flex; justify-content: space-between; gap: 30px; }
.footer-main p { margin: 0; color: var(--faint); font-size: 13px; }
.footer-links { margin-top: 45px; display: flex; gap: 25px; color: var(--muted); font-size: 12px; }
.footer-bottom { margin-top: 50px; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid var(--line-soft); color: var(--faint); font-family: var(--mono); font-size: 8px; text-transform: uppercase; letter-spacing: .05em; }
.noscript { position: fixed; inset: auto 0 0; z-index: 100; padding: 12px; background: var(--red); color: white; text-align: center; }

/* Long-form pages */
.page-main { width: min(calc(100% - 40px), 820px); min-height: 70vh; margin-inline: auto; padding: 100px 0 130px; }
.page-main h1 { margin: 13px 0 24px; font-size: clamp(47px, 7vw, 72px); line-height: 1; letter-spacing: -.06em; }
.page-intro { margin-bottom: 58px; color: var(--muted); font-size: 20px; line-height: 1.65; }
.page-main h2 { margin: 52px 0 13px; padding-top: 25px; border-top: 1px solid var(--line-soft); font-size: 28px; letter-spacing: -.035em; }
.page-main h3 { margin: 30px 0 8px; font-size: 18px; }
.page-main p, .page-main li { color: var(--muted); line-height: 1.75; }
.page-main li { margin: 8px 0; }
.page-main code { padding: 2px 5px; border: 1px solid var(--line); border-radius: 4px; background: var(--card); color: var(--acid); font-family: var(--mono); font-size: .88em; }
.formula { margin: 25px 0; padding: 23px; border: 1px solid #4e5920; border-radius: 8px; background: rgba(217, 255, 67, .035); color: var(--ink); font-family: var(--mono); font-size: 14px; line-height: 1.7; }
.source-table { width: 100%; margin: 24px 0; border-collapse: collapse; font-size: 13px; }
.source-table th, .source-table td { padding: 11px 8px; border-bottom: 1px solid var(--line-soft); text-align: left; }
.source-table th { color: var(--faint); font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.source-table a { color: var(--acid); }
.back-link { color: var(--acid); font-family: var(--mono); font-size: 11px; }

/* Individual service status pages */
.service-page { min-height: 70vh; }
.service-hero { min-height: 620px; padding: 80px 0; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 80px; }
.breadcrumb { margin-bottom: 26px; display: flex; flex-wrap: wrap; gap: 9px; color: var(--faint); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--acid); }
.service-hero h1 { margin: 21px 0 15px; font-size: clamp(52px, 7vw, 82px); line-height: .98; letter-spacing: -.065em; }
.service-answer { margin: 0 0 15px; color: var(--acid); font-size: 22px; font-weight: 700; letter-spacing: -.025em; }
.service-lede { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.service-live-card { --service-state: var(--faint); position: relative; overflow: hidden; padding: 29px; border: 1px solid var(--line); border-radius: 14px; background: var(--card); }
.service-live-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--service-state); }
.service-live-card[data-indicator="none"] { --service-state: var(--green); }
.service-live-card[data-indicator="minor"] { --service-state: var(--yellow); }
.service-live-card[data-indicator="major"] { --service-state: var(--orange); }
.service-live-card[data-indicator="critical"] { --service-state: var(--red); }
.service-live-head { display: flex; justify-content: space-between; align-items: center; }
.service-state-icon { width: 76px; height: 76px; margin: 38px 0 24px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--service-state) 45%, var(--line)); border-radius: 50%; background: color-mix(in srgb, var(--service-state) 8%, transparent); color: var(--service-state); font-family: var(--mono); font-size: 30px; font-weight: 800; }
.service-live-card h2 { margin: 0 0 7px; font-size: 29px; letter-spacing: -.04em; }
.service-live-card > p { min-height: 48px; margin: 0 0 28px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.service-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-soft); }
.service-facts > div { padding: 17px 12px 0 0; display: flex; flex-direction: column; }
.service-facts span { color: var(--faint); font-family: var(--mono); font-size: 8px; text-transform: uppercase; letter-spacing: .05em; }
.service-facts strong { margin-top: 5px; font-family: var(--mono); font-size: 11px; }
.service-strip { border-block: 1px solid var(--line-soft); background: var(--bg-soft); }
.service-strip-inner { min-height: 110px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.service-strip-inner > div { padding: 10px 30px; display: flex; flex-direction: column; border-right: 1px solid var(--line-soft); }
.service-strip-inner > div:first-child { padding-left: 0; }
.service-strip-inner > div:last-child { border-right: 0; }
.service-strip-inner strong { margin-top: 6px; font-family: var(--mono); font-size: 19px; }
.service-chart-card { padding: 25px; border: 1px solid var(--line-soft); border-radius: 11px; background: var(--card); }
#service-history-chart { width: 100%; height: 230px; display: block; }
.service-chart-card > p { margin: 12px 0 0; color: var(--faint); font-size: 10px; }
.service-explainer { padding-block: 130px; }
.service-cta { align-items: center; }
.service-cta-button { width: 100%; }

/* Private stack */
.stack-page { min-height: 70vh; }
.stack-hero { min-height: 570px; padding: 85px 0; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 80px; }
.stack-hero h1 { max-width: 800px; margin: 24px 0 20px; font-size: clamp(54px, 7vw, 86px); line-height: .96; letter-spacing: -.065em; }
.stack-hero h1 em { color: var(--acid); font-style: normal; }
.stack-hero > div:first-child > p { max-width: 660px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.stack-summary-card { padding: 31px; border: 1px solid #626e28; border-radius: 14px; background: linear-gradient(145deg, rgba(217,255,67,.07), var(--card)); }
.stack-summary-card[data-affected="true"] { border-color: var(--orange); }
.stack-summary-card > strong { margin: 42px 0 11px; display: block; font-size: 25px; line-height: 1.2; letter-spacing: -.035em; }
.stack-summary-card > p { min-height: 44px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.stack-summary-stats { margin-top: 28px; padding-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-soft); }
.stack-summary-stats span { display: flex; flex-direction: column; color: var(--faint); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.stack-summary-stats b { margin-bottom: 5px; color: var(--ink); font-size: 20px; }
.stack-editor-section { padding-block: 115px; border-block: 1px solid var(--line-soft); background: var(--bg-soft); }
.stack-editor-shell form { padding: 28px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); }
.private-stack-options { max-height: none; margin-top: 18px; }
.stack-editor-actions { margin-top: 25px; display: flex; align-items: center; gap: 18px; }
.stack-editor-actions .form-note { margin: 0; }
.stack-upgrade[hidden] { display: none; }

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; padding-top: 70px; gap: 55px; }
  .hero-copy { max-width: 720px; }
  .pulse-card { max-width: 660px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .principle-grid, .pricing-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 210px; }
  .principle-grid h3 { margin-top: 40px; }
  .price-card > p, .price-card ul { min-height: 0; }
  .early-access { grid-template-columns: 1fr; gap: 35px; }
  .service-hero { grid-template-columns: 1fr; gap: 45px; }
  .stack-hero { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 680px) {
  .section-shell, .site-header, .ticker-inner, .site-footer { width: min(calc(100% - 28px), var(--max)); }
  .site-header { height: 68px; }
  .nav-links { display: none; }
  .site-header .button { display: none; }
  .hero { min-height: 0; padding: 65px 0 58px; }
  .hero h1 { font-size: 49px; }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .promise-row { gap: 15px; justify-content: space-between; }
  .promise-row span { display: flex; flex-direction: column; }
  .pulse-card { padding: 20px; }
  .gauge-wrap { grid-template-columns: 126px 1fr; gap: 16px; }
  .gauge { width: 126px; height: 126px; }
  .gauge::before { width: 116px; height: 116px; }
  .gauge-score { font-size: 45px; }
  .gauge-copy h2 { font-size: 19px; }
  .source-pill { display: none; }
  .ticker-time { display: none; }
  .content-section { padding-block: 85px; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading h2 { font-size: 39px; }
  .incident-item { grid-template-columns: 36px minmax(0, 1fr); padding: 17px; }
  .incident-severity { width: 36px; height: 36px; }
  .incident-link { grid-column: 2; }
  .service-grid { grid-template-columns: 1fr; }
  .legend { gap: 12px; }
  .early-access { width: calc(100% - 28px); margin-block: 80px; padding: 32px 22px; }
  .access-copy h2 { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .form-row .button { grid-column: 1; }
  .footer-main, .footer-bottom { flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
  .service-hero { min-height: 0; padding: 65px 0; }
  .service-hero h1 { font-size: 49px; }
  .service-answer { font-size: 18px; }
  .service-facts { grid-template-columns: 1fr; }
  .service-facts > div { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .service-strip-inner { grid-template-columns: 1fr; padding-block: 14px; }
  .service-strip-inner > div, .service-strip-inner > div:first-child { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .service-strip-inner > div:last-child { border-bottom: 0; }
  .stack-hero { min-height: 0; padding: 65px 0; }
  .stack-hero h1 { font-size: 49px; }
  .stack-editor-actions { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
