:root {
  color-scheme: dark;
  --background: #111315;
  --surface: #191c1f;
  --text: #f0f1f2;
  --muted: #b5babf;
  --line: #34393f;
  --red: #ee756e;
  --green: #9bc9aa;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}
* { box-sizing: border-box; }
html { background: var(--background); }
body { margin: 0; color: var(--text); line-height: 1.7; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--red); outline-offset: 6px; }
.page { width: min(1080px, 100% - 96px); margin-inline: auto; }
.skip-link { position: absolute; top: -100px; left: 24px; padding: 10px 16px; background: var(--surface); z-index: 1; }
.skip-link:focus { top: 12px; }
.masthead { display: flex; justify-content: space-between; align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line); gap: 20px; }
.wordmark { display: inline-flex; align-items: center; gap: 14px; font-size: 11px; line-height: 1.4; font-weight: 700; letter-spacing: .17em; }
.mark { position: relative; font-size: 36px; line-height: 1; letter-spacing: -.1em; font-weight: 800; padding-right: 8px; }
.mark span { position: absolute; width: 5px; height: 5px; background: var(--red); right: 0; bottom: 2px; }
.edition { color: var(--muted); font-size: 12px; }
.hero { padding-top: 76px; }
.eyebrow { margin: 0 0 24px; color: var(--red); font-size: 12px; font-weight: 600; letter-spacing: .09em; }
h1 { margin: 0; font-size: clamp(36px, 5.3vw, 66px); line-height: 1.1; font-weight: 600; letter-spacing: -.045em; }
h1 span { color: var(--muted); }
.intro { max-width: 660px; margin: 30px 0 0; font-size: 18px; color: var(--muted); line-height: 1.8; }
.hero-rule { height: 1px; background: var(--line); margin-top: 62px; }
.hero-rule span { display: block; height: 2px; width: 64px; background: var(--red); }
.integration { display: grid; grid-template-columns: 180px 1fr; gap: 32px; padding: 42px 0 44px; border-bottom: 1px solid var(--line); }
.section-label { display: flex; gap: 12px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.section-number { color: var(--red); }
.status { display: flex; align-items: center; gap: 8px; margin: 0 0 12px; color: var(--green); font-size: 12px; }
.status span { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
h2 { font-size: 23px; font-weight: 550; line-height: 1.35; letter-spacing: -.025em; margin: 0 0 15px; }
p { margin: 0 0 16px; }
.integration p:not(.status), .details p { color: var(--muted); max-width: 660px; }
.integration .purpose { font-size: 14px; margin: 20px 0 0; }
.details { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 42px 0 52px; }
.details .section-label { margin-bottom: 24px; }
.details h2 { font-size: 21px; }
.details p { font-size: 14px; }
.contact-card { border-left: 2px solid var(--red); padding: 12px 16px; background: var(--surface); }
.contact-value { font-family: ui-monospace, Consolas, monospace; font-size: 12px !important; overflow-wrap: anywhere; margin: 0 0 10px; }
footer { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); padding: 23px 0 30px; color: var(--muted); font-size: 11px; }
@media (max-width: 700px) {
  .page { width: calc(100% - 40px); }
  .masthead { padding: 24px 0; }
  .edition { font-size: 10px; }
  .hero { padding-top: 48px; }
  .eyebrow { font-size: 10px; letter-spacing: .06em; }
  .intro { font-size: 16px; margin-top: 24px; }
  .hero-rule { margin-top: 40px; }
  .integration { grid-template-columns: 1fr; gap: 24px; padding: 30px 0; }
  .details { grid-template-columns: 1fr; gap: 32px; padding: 30px 0 36px; }
  .details .section-label { margin-bottom: 16px; }
  h2 { font-size: 22px; }
  footer { flex-wrap: wrap; }
}
