:root {
  --orange: #fe6715;
  --orange-dark: #b84805;
  --ink: #151515;
  --charcoal: #202020;
  --gray: #404040;
  --muted: #686868;
  --paper: #f4f5f6;
  --panel: #ffffff;
  --line: #d8dadd;
  --soft-orange: #fff1eb;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Bahnschrift, Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--orange);
  color: #111111;
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: #111111;
  color: #ffffff;
  border-bottom: 4px solid var(--orange);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.95rem 1.25rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-link img {
  width: 286px;
  height: auto;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  color: #e7e7e7;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: #2a2a2a;
  color: #ffffff;
  outline: none;
}

.nav-list a[aria-current="page"] {
  background: #2a2a2a;
  box-shadow: inset 0 -3px 0 var(--orange);
  color: #ffffff;
}

main {
  min-height: 62vh;
}

.hero {
  background: #151515;
  color: #ffffff;
  border-bottom: 1px solid #2b2b2b;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(270px, 0.82fr);
  align-items: end;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.25rem 3.25rem;
}

.hero-logo {
  width: min(560px, 100%);
  height: auto;
  margin: 0 0 1.5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 1;
}

h2 {
  margin: 0 0 0.75rem;
  font-size: 1.85rem;
  line-height: 1.15;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.lede {
  max-width: 660px;
  margin: 1.2rem 0 0;
  color: #e8e8e8;
  font-size: 1.22rem;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--orange);
  color: #111111;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ff7d35;
}

.button.secondary {
  border-color: #777777;
  color: #ffffff;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: #ffffff;
  background: #262626;
}

.button.dark {
  background: #111111;
  color: #ffffff;
}

.button.dark:hover,
.button.dark:focus-visible {
  background: var(--gray);
}

.release-board {
  padding: 1.2rem 0 1.2rem 1.3rem;
  border-left: 4px solid var(--orange);
}

.release-board h2 {
  font-size: 1.45rem;
}

.release-board p,
.release-board li {
  color: #dbdbdb;
}

.status-list {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
}

.development-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.development-graphic {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  color: var(--ink);
}

.development-image {
  width: auto;
  height: 210px;
  max-width: 100%;
  object-fit: contain;
}

.dev-copy strong,
.dev-copy span {
  display: block;
}

.dev-copy strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.dev-copy span {
  color: var(--gray);
  font-size: 1rem;
}

.status-dot {
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: var(--orange);
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.25rem 1.25rem;
}

.section.split {
  display: grid;
  grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1.18fr);
  gap: 2.5rem;
  align-items: start;
}

.section-title {
  max-width: 700px;
}

.section-title p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.utility-band {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  min-width: 0;
  padding: 1.25rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card h3 + p {
  margin-top: 0.45rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.22rem 0.5rem;
  border: 1px solid #ffd6c4;
  border-radius: 4px;
  background: var(--soft-orange);
  color: #743000;
  font-size: 0.8rem;
  font-weight: 800;
}

.pipeline {
  display: grid;
  gap: 0;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: launch-step;
  border-top: 1px solid var(--line);
}

.pipeline li {
  counter-increment: launch-step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.pipeline li::before {
  content: counter(launch-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--orange);
  color: #111111;
  font-weight: 900;
}

.pipeline strong {
  display: block;
}

.pipeline span {
  color: var(--muted);
}

.page-hero {
  background: var(--charcoal);
  color: #ffffff;
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.4rem 1.25rem;
}

.page-hero h1 {
  font-size: 3.35rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 1rem 0 0;
  color: #e4e4e4;
  font-size: 1.16rem;
}

.callout {
  padding: 1.25rem;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
}

.callout p {
  margin: 0.55rem 0 0;
  color: #dedede;
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.detail-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.detail-list strong {
  color: var(--ink);
}

.detail-list span {
  color: var(--muted);
}

.notice {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  color: var(--gray);
}

.notice strong {
  color: var(--ink);
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 2rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: var(--gray);
}

.legal-copy ul {
  padding-left: 1.2rem;
}

.site-footer {
  background: #111111;
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr 0.65fr;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.6rem 1.25rem;
}

.footer-logo {
  width: 250px;
  height: auto;
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer a {
  color: #d7d7d7;
}

.site-footer p {
  margin: 0;
}

.footer-nav {
  display: grid;
  gap: 0.45rem;
}

.footer-nav h2 {
  margin: 0 0 0.35rem;
  color: #ffffff;
  font-size: 1rem;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem 1.4rem;
  border-top: 1px solid #333333;
  color: #bfbfbf;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-list {
    justify-content: flex-start;
  }

  .hero-inner,
  .section.split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 2.25rem;
    padding-top: 3.25rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .development-graphic {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  h1 {
    font-size: 3rem;
  }

  .page-hero h1 {
    font-size: 2.7rem;
  }
}

@media (max-width: 560px) {
  .brand-link img {
    width: 245px;
  }

  .header-inner,
  .section,
  .page-hero-inner,
  .hero-inner,
  .footer-inner,
  .footer-bottom {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-list a {
    min-height: 2.2rem;
    padding: 0.4rem 0.52rem;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .lede,
  .page-hero p:not(.eyebrow) {
    font-size: 1.04rem;
  }

  .hero-actions,
  .page-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .development-graphic {
    padding: 1.25rem 1rem;
  }

  .development-image {
    justify-self: start;
  }
}
