@font-face { font-family: 'Commuters Sans'; src: url('assets/fonts/CommutersSans-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Commuters Sans'; src: url('assets/fonts/CommutersSans-SemiBold.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Commuters Sans'; src: url('assets/fonts/CommutersSans-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Commuters Sans'; src: url('assets/fonts/CommutersSans-ExtraBold.otf') format('opentype'); font-weight: 800; font-style: normal; font-display: swap; }

:root {
  --bg: #0F1921;
  --panel: #131F28;
  --ink: #FFFFFF;
  --body-text: #BBC5CD;
  --meta: #8B9299;
  --meta-dim: #58646D;
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-soft: rgba(255, 255, 255, 0.06);
  --hairline-strong: rgba(255, 255, 255, 0.12);
  --hairline-tab: rgba(255, 255, 255, 0.14);
  --hairline-tab-hover: rgba(255, 255, 255, 0.34);
  --connector: rgba(255, 255, 255, 0.16);
  --green: #00AC69;
  --green-bright: #00D084;
  --amber: #FFCA4D;
}

html, body { margin: 0; padding: 0; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* { box-sizing: border-box; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--ink); text-decoration: underline; }
button { font-family: inherit; }

::selection { background: var(--green); color: #001C11; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 2px;
  border-radius: 3px;
}

.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 16px;
  top: 12px;
  z-index: 60;
  padding: 10px 14px;
  border-radius: 4px;
  background: #FFFFFF;
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 25, 33, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--hairline);
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  column-gap: 40px;
  min-height: 56px;
  border-bottom: 1px solid var(--hairline-soft);
}

.logo-link { display: flex; align-items: center; }
.logo { height: 18px; display: block; }
.nav-spacer { flex: 1; min-width: 8px; }

.help-link {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  color: var(--meta);
  white-space: nowrap;
  transition: color 120ms ease;
}
.help-link:hover { color: var(--ink); text-decoration: none; }

/* Page */

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px 122px;
}

/* Hero */

.hero {
  padding-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
  row-gap: 10px;
}

.eyebrow {
  font-family: 'Commuters Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-bright);
}

.heading {
  margin: 0;
  max-width: 640px;
  font-family: 'Commuters Sans', sans-serif;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.026em;
  color: var(--ink);
  text-wrap: balance;
}

.standfirst {
  margin: 0;
  max-width: 580px;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  color: var(--body-text);
  text-wrap: pretty;
}

.meta-line {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: var(--meta);
}

.notice {
  margin-top: 8px;
  max-width: 600px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 179, 0, 0.34);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.notice[hidden] { display: none; }
.notice-text { font-size: 13px; font-weight: 600; line-height: 20px; color: var(--amber); }
.notice-detail { font-size: 12px; font-weight: 600; line-height: 18px; color: var(--meta); }

/* Stage tabs (pipeline) */

.stage-tabs {
  margin: 36px 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--hairline-strong);
}

.stage-connector {
  width: 12px;
  height: 1px;
  background: var(--connector);
  display: block;
}

.stage-btn {
  height: 36px;
  padding: 0 14px;
  border: 1px solid var(--hairline-tab);
  border-radius: 6px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 120ms ease;
}
.stage-btn:hover { border-color: var(--hairline-tab-hover); }

.stage-btn .dot { width: 7px; height: 7px; border-radius: 9999px; background: #3A4750; display: block; }
.stage-btn .label {
  font-family: 'Commuters Sans', sans-serif;
  color: var(--meta);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.stage-btn .count {
  font-family: 'Commuters Sans', sans-serif;
  color: var(--meta-dim);
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
}

.stage-btn[aria-selected="true"] { background: #1B2A34; }
.stage-btn[aria-selected="true"] .label { color: var(--ink); }

.stage-btn[data-stage="now"][aria-selected="true"] { border-color: #00AC69; }
.stage-btn[data-stage="now"][aria-selected="true"]:hover { border-color: #00AC69; }
.stage-btn[data-stage="now"][aria-selected="true"] .dot { background: #00AC69; }
.stage-btn[data-stage="now"][aria-selected="true"] .count { color: #00D084; }

.stage-btn[data-stage="next"][aria-selected="true"] { border-color: #146EEB; }
.stage-btn[data-stage="next"][aria-selected="true"]:hover { border-color: #146EEB; }
.stage-btn[data-stage="next"][aria-selected="true"] .dot { background: #146EEB; }
.stage-btn[data-stage="next"][aria-selected="true"] .count { color: #D7E7FB; }

.stage-btn[data-stage="later"][aria-selected="true"] { border-color: #BBC5CD; }
.stage-btn[data-stage="later"][aria-selected="true"]:hover { border-color: #BBC5CD; }
.stage-btn[data-stage="later"][aria-selected="true"] .dot { background: #BBC5CD; }
.stage-btn[data-stage="later"][aria-selected="true"] .count { color: #BBC5CD; }

.stage-btn[data-stage="launched"][aria-selected="true"] { border-color: #008853; }
.stage-btn[data-stage="launched"][aria-selected="true"]:hover { border-color: #008853; }
.stage-btn[data-stage="launched"][aria-selected="true"] .dot { background: #008853; }
.stage-btn[data-stage="launched"][aria-selected="true"] .count { color: #5FE0A9; }

/* Stage panel */

.stage-panel { margin: 20px 0 0; }

.panel {
  padding: 21px 22px 20px;
  border: 1px solid var(--hairline-tab);
  border-radius: 6px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.panel[data-stage="now"] { border-color: rgba(0, 172, 105, 0.30); }
.panel[data-stage="next"] { border-color: rgba(20, 110, 235, 0.30); }
.panel[data-stage="later"] { border-color: rgba(187, 197, 205, 0.16); }
.panel[data-stage="launched"] { border-color: rgba(0, 136, 83, 0.28); }

.group-label {
  display: block;
  padding: 14px 0 6px;
  font-family: 'Commuters Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--meta);
}

.item-list, .panel-footer-list { margin: 0; padding: 0; list-style: none; }

.item {
  border-bottom: 1px solid var(--hairline-soft);
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 14px;
}

.item-rail { display: flex; flex-direction: column; align-items: center; }
.item-rail .tick { width: 1px; height: 23px; display: block; }
.item-rail .tick-bottom { flex: 1; width: 1px; min-height: 8px; display: block; }
.item-rail .dot { width: 7px; height: 7px; border-radius: 9999px; display: block; }

.panel[data-stage="now"] .item-rail .tick,
.panel[data-stage="now"] .item-rail .tick-bottom { background: rgba(0, 172, 105, 0.30); }
.panel[data-stage="now"] .item-rail .dot { background: #00AC69; }

.panel[data-stage="next"] .item-rail .tick,
.panel[data-stage="next"] .item-rail .tick-bottom { background: rgba(20, 110, 235, 0.30); }
.panel[data-stage="next"] .item-rail .dot { background: #146EEB; }

.panel[data-stage="later"] .item-rail .tick,
.panel[data-stage="later"] .item-rail .tick-bottom { background: rgba(187, 197, 205, 0.16); }
.panel[data-stage="later"] .item-rail .dot { background: #BBC5CD; }

.panel[data-stage="launched"] .item-rail .tick,
.panel[data-stage="launched"] .item-rail .tick-bottom { background: rgba(0, 136, 83, 0.28); }
.panel[data-stage="launched"] .item-rail .dot { background: #008853; }

.item-body { padding: 16px 0; display: flex; flex-direction: column; gap: 4px; }

.item-title {
  font-family: 'Commuters Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: pretty;
}

.item-desc {
  font-size: 12px;
  font-weight: 500;
  color: var(--body-text);
  text-wrap: pretty;
  line-height: 1.5;
  opacity: 0.74;
}

.item-help {
  margin-top: 2px;
  align-self: flex-start;
  font-family: 'Commuters Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  color: #46D17E;
  text-decoration-line: none;
  display: inline-block;
  transition: color 120ms ease;
}
.item-help:hover { color: #5FE0A9; text-decoration: underline; }

.item-empty {
  padding: 20px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--meta);
  list-style: none;
}

.item-more { padding: 14px 0 0; list-style: none; }
.item-more-btn {
  padding: 0;
  border: none;
  background: transparent;
  font-family: 'Commuters Sans', sans-serif;
  color: var(--meta);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
  transition: color 120ms ease;
}
.item-more-btn:hover { color: var(--ink); }

/* Footer */

.site-footer { margin-top: 64px; }

.footer-card {
  border: 1px solid var(--hairline-strong);
  border-radius: 14px;
  padding: 32px 40px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline-soft);
}

.footer-brand { display: flex; align-items: center; }
.footer-mark { height: 26px; display: block; }

.footer-actions { display: flex; align-items: center; gap: 10px; }

.footer-btn {
  height: 44px;
  padding: 0 20px;
  border: 1px solid var(--hairline-tab);
  border-radius: 10px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--body-text);
  transition: border-color 120ms ease, color 120ms ease;
}
.footer-btn:hover { border-color: var(--hairline-tab-hover); color: var(--ink); text-decoration: none; }

.footer-icon-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline-tab);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body-text);
  transition: border-color 120ms ease, color 120ms ease;
}
.footer-icon-btn svg { width: 18px; height: 18px; display: block; }
.footer-icon-btn:hover { border-color: var(--hairline-tab-hover); color: var(--ink); }

.footer-columns {
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline-soft);
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 24px;
}

.footer-col { display: flex; flex-direction: column; align-items: flex-start; }

.footer-col-label {
  margin-bottom: 20px;
  font-family: 'Commuters Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--meta);
}

.footer-col a {
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 400;
  color: var(--body-text);
  transition: color 120ms ease;
}
.footer-col a:last-child { margin-bottom: 0; }
.footer-col a:hover { color: var(--ink); text-decoration: none; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 24px;
  row-gap: 8px;
}
.footer-bottom .num { font-size: 13px; font-weight: 600; line-height: 18px; color: var(--meta); }
.copyright { font-size: 13px; font-weight: 500; line-height: 18px; color: var(--meta); }

@media (max-width: 560px) {
  .footer-card { padding: 24px; }
  .footer-columns { grid-template-columns: 1fr 1fr; row-gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .help-link, .stage-btn, .item-help, .item-more-btn, .footer-btn, .footer-icon-btn, .footer-col a { transition: none; }
}
