:root {
  --blue: #1738ea;
  --blue-deep: #0927c8;
  --navy: #08133b;
  --ink: #101523;
  --ice: #d9f4ff;
  --paper: #f5f7fb;
  --white: #fff;
  --line: rgba(16, 21, 35, 0.15);
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --mono: "SFMono-Regular", Consolas, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--paper);
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
.skip {
  position: fixed;
  left: 15px;
  top: -60px;
  z-index: 40;
  padding: 10px 14px;
  background: var(--ice);
}
.skip:focus {
  top: 15px;
}
.wrap {
  width: min(1380px, calc(100% - 72px));
  margin-inline: auto;
}
.page-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 56, 234, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 56, 234, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
}
header {
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.brand img {
  width: 42px;
  height: 42px;
}
header nav {
  display: flex;
  gap: 34px;
}
header nav a {
  color: #48506a;
  text-decoration: none;
  font-size: 0.75rem;
}
.talk {
  justify-self: end;
  padding: 10px 0;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 650;
}
.talk span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 830px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-block: 100px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 880px;
  height: 880px;
  right: -270px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 45% 45%,
    #5270ff 0,
    var(--blue) 45%,
    var(--blue-deep) 72%
  );
  box-shadow: 0 70px 170px rgba(23, 56, 234, 0.28);
}
.eyebrow {
  margin: 0 0 26px;
  color: var(--blue);
  font: 700 0.64rem/1 var(--mono);
  letter-spacing: 0.13em;
}
.hero h1,
.headline h2,
.supply h2 {
  margin: 0;
  font: 400 clamp(4.6rem, 8.2vw, 8.9rem)/0.84 var(--serif);
  letter-spacing: -0.07em;
}
.hero h1 em {
  color: var(--blue);
  font-weight: 400;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 35px 0 0;
  color: #555f78;
  font-size: 1.04rem;
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
}
.pill.light {
  background: var(--blue);
  color: white;
}
.pill.dark {
  background: var(--navy);
  color: white;
}
.text-link {
  font-size: 0.75rem;
  text-underline-offset: 5px;
}
.orbital {
  position: relative;
  justify-self: end;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  color: white;
}
.orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.o1 {
  width: 42%;
  height: 42%;
}
.o2 {
  width: 70%;
  height: 70%;
}
.o3 {
  width: 96%;
  height: 96%;
}
.sat {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 4px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12);
}
.s1 {
  top: 17%;
  left: 29%;
}
.s2 {
  right: 3%;
  top: 47%;
}
.s3 {
  bottom: 10%;
  left: 25%;
}
.orbital-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.orbital-core span,
.orbital-core small {
  display: block;
  font: 0.58rem/1 var(--mono);
  letter-spacing: 0.12em;
  opacity: 0.7;
}
.orbital-core strong {
  display: block;
  margin: 15px 0 11px;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
}
.hero-meta {
  position: absolute;
  right: 0;
  bottom: 55px;
  width: 50%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}
.hero-meta span {
  padding: 15px 12px;
  font: 0.62rem var(--mono);
  text-align: center;
}
.hero-meta span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.capacity {
  padding-block: 140px;
}
.headline {
  display: grid;
  grid-template-columns: 0.55fr 1.15fr 0.55fr;
  gap: 55px;
  align-items: end;
  margin-bottom: 65px;
}
.headline h2 {
  font-size: clamp(3.5rem, 6vw, 6.7rem);
}
.headline > p:last-child {
  margin: 0;
  color: #687087;
}
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.capacity-card {
  min-height: 600px;
  padding: clamp(30px, 4vw, 55px);
  border-radius: 34px;
}
.capacity-card.blue {
  background: var(--blue);
  color: white;
}
.capacity-card.ice {
  background: var(--ice);
}
.card-head {
  display: flex;
  justify-content: space-between;
  font: 700 0.58rem var(--mono);
  letter-spacing: 0.08em;
}
.capacity-card h3 {
  margin: 90px 0 45px;
}
.capacity-card h3 strong,
.capacity-card h3 small {
  display: block;
}
.capacity-card h3 strong {
  font: 400 clamp(5rem, 10vw, 9rem)/0.75 var(--serif);
  letter-spacing: -0.08em;
}
.capacity-card h3 small {
  margin-top: 18px;
  font-size: 1.15rem;
}
.capacity-card ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 45px;
  padding: 0;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}
.capacity-card li {
  padding: 13px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.capacity-card li span,
.capacity-card li b {
  display: block;
}
.capacity-card li span {
  opacity: 0.6;
  font: 0.58rem var(--mono);
  text-transform: uppercase;
}
.capacity-card li b {
  margin-top: 4px;
  font-size: 0.72rem;
}
.capacity-card > a {
  font-size: 0.72rem;
  font-weight: 700;
  text-underline-offset: 6px;
}
.platform {
  padding-block: 140px;
  background: var(--navy);
  color: white;
}
.headline.inverse .eyebrow {
  color: #8c9cff;
}
.headline.inverse > p:last-child {
  color: #9ba4bf;
}
.platform-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.stack-visual {
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  perspective: 900px;
}
.stack-visual span {
  display: block;
  margin: -8px auto 0;
  width: 80%;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(
    135deg,
    rgba(57, 85, 245, 0.45),
    rgba(255, 255, 255, 0.05)
  );
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: rotateX(57deg) rotateZ(-8deg);
  font: 0.65rem var(--mono);
  text-align: center;
}
.stack-visual span:nth-child(2) {
  width: 72%;
}
.stack-visual span:nth-child(3) {
  width: 64%;
}
.stack-visual span:nth-child(4) {
  width: 56%;
}
.features article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.features article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.features article > b {
  color: #8296ff;
  font: 0.65rem var(--mono);
}
.features h3 {
  margin: 0 0 9px;
  font: 400 1.7rem var(--serif);
}
.features p {
  max-width: 650px;
  margin: 0;
  color: #aeb6cc;
}
.billing {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 1fr 1fr;
  margin-top: 75px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.billing > div,
.billing code {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.billing span {
  color: #8d97b5;
  font: 0.58rem var(--mono);
}
.billing strong {
  margin-top: 9px;
  font: 400 1.8rem var(--serif);
}
.billing code {
  color: var(--ice);
  font: 0.7rem/1.5 var(--mono);
}
.billing-note {
  max-width: 760px;
  margin: 20px 0 0;
  color: #9ba4bf;
  font-size: 0.76rem;
}
.supply {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 90px;
  align-items: end;
  padding-block: 150px;
}
.supply h2 {
  font-size: clamp(4rem, 7vw, 7.4rem);
}
.supply h2 em {
  color: var(--blue);
  font-weight: 400;
}
.supply > div:last-child > p {
  color: #5e667a;
  font-size: 1.05rem;
}
.supply .pill {
  margin: 25px 20px 0 0;
}
footer {
  padding-block: 52px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
}
.footer-grid p {
  margin: 0;
  color: #747b8d;
  font-size: 0.7rem;
}
.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font: 0.62rem var(--mono);
}
.footer-grid nav a {
  text-underline-offset: 5px;
}
.footer-grid nav a[aria-current] {
  color: var(--blue);
}
@media (max-width: 1000px) {
  header {
    grid-template-columns: 1fr auto;
  }
  header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero::before {
    right: -380px;
    top: 330px;
  }
  .orbital {
    margin-top: 80px;
    justify-self: center;
    width: min(80vw, 620px);
  }
  .hero-meta {
    width: 100%;
  }
  .headline {
    grid-template-columns: 1fr;
  }
  .headline .eyebrow {
    margin-bottom: 0;
  }
  .platform-layout {
    grid-template-columns: 1fr;
  }
  .stack-visual {
    min-height: 440px;
  }
  .billing {
    grid-template-columns: 1fr 1fr;
  }
  .billing > div:nth-child(2),
  .billing code:nth-child(2) {
    border-right: 0;
  }
  .supply {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > p {
    display: none;
  }
}
@media (max-width: 650px) {
  .wrap {
    width: calc(100% - 34px);
  }
  header {
    height: 70px;
  }
  .hero {
    padding-block: 75px 120px;
  }
  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.8rem);
  }
  .hero::before {
    width: 620px;
    height: 620px;
    right: -370px;
    top: 430px;
  }
  .orbital {
    margin-top: 70px;
  }
  .hero-meta {
    grid-template-columns: 1fr;
  }
  .hero-meta span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .capacity,
  .platform {
    padding-block: 90px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .capacity-card {
    min-height: auto;
    border-radius: 24px;
  }
  .capacity-card h3 {
    margin-top: 65px;
  }
  .capacity-card ul {
    grid-template-columns: 1fr;
  }
  .platform-layout {
    gap: 20px;
  }
  .stack-visual {
    min-height: 360px;
  }
  .features article {
    grid-template-columns: 35px 1fr;
  }
  .billing {
    grid-template-columns: 1fr;
  }
  .billing > div,
  .billing code {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .supply {
    padding-block: 100px;
    gap: 45px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
