@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/ibm-plex-sans-latin.woff2") format("woff2");
}
:root {
  color-scheme: dark;
  --canvas: #181818;
  --surface: #1f1f1f;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.16);
  --green: #34c98b;
  --core: #34c98b;
  --tint: rgba(31, 157, 107, 0.15);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--canvas);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-width: 280px;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
.page-shell {
  max-width: 1600px;
  min-height: 100svh;
  margin: auto;
  padding: 0 6%;
  display: flex;
  flex-direction: column;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-block: 24px;
  min-height: 128px;
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  max-width: 100%;
}
.brand img {
  display: block;
}
.wordmark {
  font-size: 24.8px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: normal;
}
.wordmark strong {
  font-weight: 700;
}
.launch-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--green);
  border: 1px solid rgba(52, 201, 139, 0.32);
  border-radius: 6px;
  padding: 9px 13px;
  background: var(--tint);
  white-space: nowrap;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  outline: none;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 7%;
  padding: 84px 0 76px;
  align-items: center;
  flex: 1;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-copy > .eyebrow {
  margin-bottom: 25px;
  color: var(--muted);
}
h1 {
  font-size: clamp(48px, 5.2vw, 80px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.057em;
  text-wrap: balance;
}
h1 span {
  color: var(--green);
}
.intro {
  font-size: clamp(21px, 1.85vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-top: 32px;
}
.description {
  max-width: 420px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  text-wrap: pretty;
}
.coming-note {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
}
.note-line {
  width: 32px;
  height: 1px;
  background: var(--green);
  flex: none;
}
.coming-note p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.coming-note strong {
  font-weight: 600;
  color: var(--text);
}
.outlook {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 32px 0;
  background: var(--surface);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.outlook-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 35px;
}
.outlook-top .eyebrow {
  max-width: 170px;
  color: var(--muted);
}
.outlook-top img {
  flex-shrink: 0;
}
h2 {
  font-size: clamp(25px, 2.35vw, 34px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.outlook-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.outlook-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}
.list-number {
  font-size: 11px;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  align-self: flex-start;
  margin-top: 5px;
  font-weight: 600;
}
h3 {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.outlook-list p {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 3px;
  color: var(--muted);
}

.outlook-bottom {
  margin: 7px -32px 0;
  padding: 24px 32px;
  background: var(--tint);
  border-top: 1px solid rgba(52, 201, 139, 0.2);
  font-size: 14px;
  line-height: 1.6;
  color: var(--green);
}
.outlook-bottom strong {
  font-weight: 600;
}
.closing-note {
  padding: 27px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.closing-note > p {
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}
.closing-label {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0 30px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}
.mobile-break {
  display: none;
}
.skip-link {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--text);
  color: var(--canvas);
  border-radius: 6px;
  transform: translateY(-200%);
  font-size: 16px;
  text-decoration: none;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
@media (min-width: 1600px) {
  .hero {
    gap: 100px;
  }
  .page-shell {
    padding: 0 96px;
  }
}
@media (max-width: 1100px) {
  .page-shell {
    padding: 0 5%;
  }
  .hero {
    gap: 5%;
    padding: 65px 0;
  }
  .outlook {
    padding: 24px 24px 0;
  }
  .outlook-bottom {
    margin: 7px -24px 0;
    padding: 22px 24px;
  }
  .outlook-top {
    gap: 10px;
    margin-bottom: 28px;
  }
  .outlook-top .eyebrow {
    font-size: 10px;
  }
  .outlook-list li {
    gap: 12px;
  }
  h3 {
    font-size: 16px;
  }
}
@media (max-width: 760px) {
  .page-shell {
    padding: 0 24px;
  }
  .site-header {
    min-height: 96px;
    gap: 14px;
  }
  .brand {
    gap: 10px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .wordmark {
    font-size: 19.84px;
  }
  .launch-status {
    font-size: 11px;
    padding: 7px 9px;
    gap: 7px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 55px 0 42px;
  }
  .hero-copy > .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
  }
  h1 {
    font-size: clamp(44px, 8.5vw, 64px);
    letter-spacing: -0.055em;
    line-height: 1.07;
  }
  .intro {
    font-size: 22px;
    margin-top: 25px;
  }
  .description {
    font-size: 16px;
    margin-top: 16px;
    max-width: 470px;
  }
  .coming-note {
    margin-top: 26px;
  }
  .outlook {
    padding: 25px 26px 0;
    max-width: 560px;
    width: 100%;
    justify-self: center;
  }
  .outlook-top .eyebrow {
    font-size: 11px;
    max-width: none;
  }
  .outlook-top {
    margin-bottom: 26px;
  }
  h2 {
    font-size: 30px;
  }
  .outlook-list li {
    padding: 18px 0;
    gap: 17px;
  }
  h3 {
    font-size: 17px;
  }
  .outlook-bottom {
    margin: 7px -26px 0;
    padding: 20px 26px;
  }
  .closing-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 24px 0;
  }
  .closing-note > p {
    font-size: 17px;
  }
  .mobile-break {
    display: block;
  }
  .site-footer {
    padding: 23px 0 26px;
    font-size: 11px;
    gap: 14px;
  }
}
@media (max-width: 370px) {
  .page-shell {
    padding: 0 18px;
  }
  .brand {
    gap: 7px;
  }
  .brand img {
    width: 28px;
    height: 28px;
  }
  .wordmark {
    font-size: 17.36px;
  }
  .launch-status {
    font-size: 10px;
    padding: 6px 7px;
    gap: 5px;
  }
  h1 {
    font-size: 43px;
  }
  .hero {
    padding-top: 43px;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
  }
  .intro {
    font-size: 20px;
  }
  .description {
    font-size: 15px;
  }
  .outlook {
    padding: 22px 20px 0;
  }
  .outlook-top .eyebrow {
    font-size: 10px;
  }
  .outlook-bottom {
    margin: 7px -20px 0;
    padding: 20px;
  }
  h2 {
    font-size: 27px;
  }
  .site-footer {
    flex-direction: column;
    gap: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
