:root {
  color-scheme: light;
  --ink: #101b35;
  --muted: #63718e;
  --line: #d8e2f2;
  --blue: #2865ee;
  --blue-soft: #eaf1ff;
  --green: #008b70;
  --green-soft: #e4f7f1;
  --amber: #9c6500;
  --amber-soft: #fff1cf;
  --surface: rgba(255, 255, 255, 0.92);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: radial-gradient(circle at 85% 0%, #dff8f2 0, transparent 29rem), radial-gradient(circle at 5% 12%, #dce8ff 0, transparent 34rem), #f5f8ff; line-height: 1.55; }
a { color: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 20; top: 8px; left: 8px; padding: 10px 14px; background: #fff; border-radius: 10px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: sticky; z-index: 10; top: 0; border-bottom: 1px solid rgba(216, 226, 242, 0.78); background: rgba(245, 248, 255, 0.82); backdrop-filter: blur(18px); }
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: 1.45rem; font-weight: 850; }
.brand img { width: 52px; height: 52px; border-radius: 14px; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-actions a { text-decoration: none; font-weight: 700; }
.button { padding: 12px 18px; border-radius: 999px; color: #fff; background: var(--blue); box-shadow: 0 10px 28px rgba(40, 101, 238, 0.22); }
.hero { padding: 92px 0 54px; }
.eyebrow, .release-date { margin: 0 0 10px; color: var(--green); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.16em; text-transform: uppercase; }
h1 { max-width: 800px; margin: 0; font-size: clamp(3rem, 8vw, 6.6rem); line-height: 0.95; letter-spacing: -0.065em; }
.hero-copy { max-width: 760px; margin: 28px 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.status-legend, .release-statuses { display: flex; flex-wrap: wrap; gap: 10px; }
.status { display: inline-flex; align-items: center; width: fit-content; padding: 7px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 800; }
.status.live { color: #006b58; background: var(--green-soft); }
.status.qa { color: #184eba; background: var(--blue-soft); }
.status.planned { color: var(--amber); background: var(--amber-soft); }
.timeline { display: grid; gap: 28px; padding-bottom: 90px; }
.release { border: 1px solid rgba(216, 226, 242, 0.96); border-radius: 36px; padding: clamp(24px, 5vw, 52px); background: var(--surface); box-shadow: 0 28px 90px rgba(35, 64, 110, 0.09); }
.release.featured { border-color: rgba(40, 101, 238, 0.22); }
.release-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
h2 { margin: 0; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -0.045em; }
.release-lead { margin: 12px 0 0; color: var(--muted); font-size: 1.08rem; }
.change-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-top: 28px; }
.change-card { min-width: 0; padding: 24px; border: 1px solid var(--line); border-radius: 25px; background: #fff; }
.change-card .icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 18px; border-radius: 15px; color: var(--blue); background: var(--blue-soft); font-size: 1.35rem; font-weight: 850; }
.change-card h3 { margin: 0 0 12px; font-size: 1.25rem; line-height: 1.25; }
.change-card ul { margin: 0; padding-left: 20px; color: var(--muted); }
.change-card li + li { margin-top: 7px; }
.change-card.wide { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 18px; }
.change-card.wide .icon { flex: 0 0 auto; margin: 0; color: #006b58; background: var(--green-soft); }
.payment-note p { margin: 0; color: var(--muted); }
.baseline-list { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 26px; }
.baseline-list span { padding: 10px 14px; border-radius: 13px; color: #40506e; background: #f0f4fb; font-weight: 700; }
.site-footer { border-top: 1px solid var(--line); background: rgba(255,255,255,0.7); }
.footer-inner { min-height: 120px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--muted); }
.footer-inner strong { color: var(--ink); }
.footer-inner div { display: flex; flex-wrap: wrap; gap: 20px; }

@media (max-width: 760px) {
  .shell { width: min(100% - 24px, 1160px); }
  .nav { min-height: 70px; }
  .brand img { width: 44px; height: 44px; }
  .nav-actions > a:first-child { display: none; }
  .hero { padding-top: 62px; }
  h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .release { border-radius: 26px; padding: 22px; }
  .release-header { display: grid; }
  .change-grid { grid-template-columns: 1fr; }
  .change-card.wide { grid-column: auto; }
  .footer-inner { align-items: flex-start; flex-direction: column; padding-block: 28px; }
}

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