:root {
  --ink: #0B1220;
  --stage: #070B14;
  --ground: #F7F9FC;
  --panel: #FFFFFF;
  --text: #12192B;
  --muted: #5C6B85;
  --line: #E4EAF4;
  --blue: #3B6FF6;
  --blue-ink: #2A50C8;
  --green: #2FBF88;
  --amber: #FFC65A;
  --wrap: 1120px;
  --r: 14px;
  --sans: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  --shadow: 0 24px 60px -28px rgba(16,30,70,.35);
}

@media (prefers-color-scheme: dark) {
  :root {
  --ground: #0C1220;
  --panel: #121A2B;
  --text: #EAF0FB;
  --muted: #93A2C0;
  --line: #22304C;
  }
}

:root[data-theme="light"] {
  --ground: #F7F9FC;
  --panel: #FFFFFF;
  --text: #12192B;
  --muted: #5C6B85;
  --line: #E4EAF4;
}

:root[data-theme="dark"] {
  --ground: #0C1220;
  --panel: #121A2B;
  --text: #EAF0FB;
  --muted: #93A2C0;
  --line: #22304C;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  font-family: var(--sans);
  background: var(--ground);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--wrap);
  margin: 0px auto;
  padding: 0px 24px;
}

a {
  color: inherit;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

h1, h2, h3 {
  text-wrap-mode: initial;
  text-wrap-style: balance;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0px;
}

p {
  margin: 0px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  font-weight: 650;
  font-size: 15px;
  padding: 13px 22px;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
  border-bottom-right-radius: 11px;
  border-bottom-left-radius: 11px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  cursor: pointer;
  transition-behavior: normal, normal;
  transition-duration: 0.12s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: transform, box-shadow;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: rgb(255, 255, 255);
  box-shadow: rgba(59, 111, 246, 0.7) 0px 12px 24px -10px;
}

.btn-ghost {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  border-color: color-mix(in srgb,var(--text) 20%,transparent);
  color: var(--text);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
}

a.btn:focus-visible, button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  padding: 8px 14px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  z-index: 99;
}

header.site {
  position: sticky;
  top: 0px;
  z-index: 40;
  background: color-mix(in srgb,var(--ground) 86%,transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 19px;
}

.brand .dot {
  width: 22px;
  height: 22px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
  background: linear-gradient(150deg,var(--blue),var(--green));
  position: relative;
  box-shadow: 0 0 0 4px color-mix(in srgb,var(--blue) 18%,transparent);
}

.brand .dot::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  left: 7px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}

.nav-links {
  display: flex;
  row-gap: 28px;
  column-gap: 28px;
  font-size: 15px;
  color: var(--muted);
  font-weight: 550;
}

@media (max-width: 860px) {
  .nav-links {
  display: none;
  }
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  align-items: center;
}

@media (max-width: 860px) {
  .nav-cta .btn-ghost {
  display: none;
  }
}

.hero {
  position: relative;
  background: radial-gradient(120% 90% at 50% -10%,#16233f 0%,var(--stage) 55%);
  color: rgb(234, 240, 251);
  overflow-x: hidden;
  overflow-y: hidden;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(14, 23, 48);
}

.spot {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 620px;
  background-image: radial-gradient(closest-side, rgba(59, 111, 246, 0.35), transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(6px);
  pointer-events: none;
}

.spot.g {
  left: 78%;
  top: 60px;
  width: 520px;
  height: 520px;
  background-image: radial-gradient(closest-side, rgba(47, 191, 136, 0.28), transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.hero .wrap {
  position: relative;
  padding: 74px 24px 90px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgb(205, 216, 240);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.06);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.14);
  border-right-color: rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  border-left-color: rgba(255, 255, 255, 0.14);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding: 7px 14px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
}

.live {
  display: inline-flex;
  align-items: center;
  row-gap: 7px;
  column-gap: 7px;
  font-weight: 700;
  color: rgb(255, 255, 255);
}

.live .pulse {
  width: 9px;
  height: 9px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 77, 94);
  box-shadow: rgba(255, 77, 94, 0.7) 0px 0px 0px 0px;
  animation-duration: 1.8s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: pulse;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

@media (prefers-reduced-motion: reduce) {
  .live .pulse {
  animation-duration: auto;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: none;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  }
}

@keyframes pulse {
  0% {
    box-shadow: rgba(255, 77, 94, 0.6) 0px 0px 0px 0px;
  }
  70% {
    box-shadow: rgba(255, 77, 94, 0) 0px 0px 0px 10px;
  }
  100% {
    box-shadow: rgba(255, 77, 94, 0) 0px 0px 0px 0px;
  }
}

h1.hero-h {
  font-size: clamp(38px, 6.4vw, 68px);
  font-weight: 820;
  margin: 22px auto 0px;
  max-width: 15ch;
}

h1.hero-h .grad {
  background-image: linear-gradient(100deg, rgb(122, 160, 255), rgb(95, 224, 176));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-color: initial;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 60ch;
  margin: 20px auto 0px;
  font-size: clamp(17px, 2.1vw, 20px);
  color: rgb(183, 196, 224);
}

.hero-cta {
  display: flex;
  row-gap: 14px;
  column-gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-cta .btn-ghost {
  color: rgb(234, 240, 251);
  border-top-color: rgba(255, 255, 255, 0.26);
  border-right-color: rgba(255, 255, 255, 0.26);
  border-bottom-color: rgba(255, 255, 255, 0.26);
  border-left-color: rgba(255, 255, 255, 0.26);
}

.trust {
  margin-top: 22px;
  font-size: 13.5px;
  color: rgb(142, 160, 196);
  display: flex;
  row-gap: 8px;
  column-gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.trust b {
  color: rgb(223, 231, 247);
}

.player {
  max-width: 860px;
  margin: 44px auto 0px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(13, 24, 48);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  box-shadow: rgba(0, 0, 0, 0.8) 0px 50px 90px -40px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.player .bar {
  display: flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  padding: 12px 16px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgb(159, 176, 212);
}

.player .bar .tl {
  margin-left: auto;
  display: flex;
  align-items: center;
  row-gap: 14px;
  column-gap: 14px;
}

.player .stage-area {
  aspect-ratio: 16 / 8;
  position: relative;
  background-image: radial-gradient(80% 120% at 50% 0px, rgb(32, 51, 92), rgb(10, 20, 40));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player .play {
  width: 74px;
  height: 74px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.14);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.3);
  border-right-color: rgba(255, 255, 255, 0.3);
  border-bottom-color: rgba(255, 255, 255, 0.3);
  border-left-color: rgba(255, 255, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  display: grid;
  align-items: center;
  justify-items: center;
  backdrop-filter: blur(4px);
}

.player .play::after {
  content: "";
  border-left-width: 22px;
  border-left-style: solid;
  border-left-color: rgb(255, 255, 255);
  border-top-width: 14px;
  border-top-style: solid;
  border-top-color: transparent;
  border-bottom-width: 14px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  margin-left: 6px;
}

.player .caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(7, 11, 20, 0.66);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.12);
  border-right-color: rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  border-left-color: rgba(255, 255, 255, 0.12);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding: 8px 12px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  font-size: 13px;
  color: rgb(219, 228, 247);
}

.player .chip {
  position: absolute;
  right: 18px;
  bottom: 16px;
  background: var(--green);
  color: rgb(5, 38, 26);
  font-weight: 750;
  font-size: 12.5px;
  padding: 7px 12px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.logos {
  padding: 34px 0px;
  border-bottom: 1px solid var(--line);
}

.logos .wrap {
  display: flex;
  align-items: center;
  row-gap: 14px;
  column-gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.logos small {
  width: 100%;
  text-align: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11.5px;
  font-weight: 700;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: var(--muted);
  opacity: 0.8;
}

section {
  padding: 84px 0px;
}

.sec-head {
  max-width: 60ch;
}

.sec-head.center {
  margin: 0px auto;
  text-align: center;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 780;
  margin-top: 12px;
}

.lede {
  color: var(--muted);
  font-size: 18px;
  margin-top: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 16px;
  column-gap: 16px;
  margin-top: 44px;
}

@media (max-width: 840px) {
  .grid {
  grid-template-columns: 1fr;
  }
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
}

.card .ic {
  width: 42px;
  height: 42px;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
  border-bottom-right-radius: 11px;
  border-bottom-left-radius: 11px;
  display: grid;
  align-items: center;
  justify-items: center;
  background: color-mix(in srgb,var(--blue) 12%,transparent);
  color: var(--blue);
  margin-bottom: 16px;
}

.card h3 {
  font-size: 19px;
  font-weight: 700;
}

.card p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 15px;
}

.card svg {
  width: 22px;
  height: 22px;
}

.types {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.types .grid {
  grid-template-columns: repeat(3, 1fr);
}

.type {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
  background: var(--ground);
}

.type .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  color: var(--blue);
  background: color-mix(in srgb,var(--blue) 12%,transparent);
}

.type.live .tag {
  color: rgb(192, 36, 58);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: color-mix(in srgb, rgb(226, 59, 82) 14%, transparent);
}

.type.demand .tag {
  color: var(--blue-ink);
  background: color-mix(in srgb,var(--green) 16%,transparent);
}

.type h3 {
  margin-top: 14px;
  font-size: 22px;
}

.type p {
  color: var(--muted);
  margin-top: 10px;
}

.type ul {
  margin: 16px 0px 0px;
  padding: 0px;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  display: grid;
  row-gap: 8px;
  column-gap: 8px;
  font-size: 14.5px;
}

.type li {
  display: flex;
  row-gap: 9px;
  column-gap: 9px;
  color: var(--text);
}

.type li::before {
  content: "";
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 18px;
  height: 18px;
  margin-top: 3px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: color-mix(in srgb,var(--green) 22%,transparent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232FBF88' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 18px;
  column-gap: 18px;
  margin-top: 44px;
  counter-reset: step 0;
}

@media (max-width: 840px) {
  .steps {
  grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--panel);
}

.step .n {
  counter-increment: step 1;
  font-variant-numeric: tabular-nums;
  font-weight: 820;
  font-size: 15px;
  color: rgb(255, 255, 255);
  width: 34px;
  height: 34px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  display: grid;
  align-items: center;
  justify-items: center;
  background: linear-gradient(150deg,var(--blue),var(--blue-ink));
}

.step .n::before {
  content: "0" counter(step);
}

.step h3 {
  font-size: 18px;
  margin-top: 16px;
}

.step p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 15px;
}

.stats {
  background: linear-gradient(120% 130% at 20% 0,#12233f,var(--stage));
  color: rgb(234, 240, 251);
}

.stats .grid {
  grid-template-columns: repeat(4, 1fr);
  row-gap: 24px;
  column-gap: 24px;
  margin-top: 0px;
}

@media (max-width: 840px) {
  .stats .grid {
  grid-template-columns: repeat(2, 1fr);
  }
}

.stat .big {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 820;
  letter-spacing: -0.03em;
  background-image: linear-gradient(100deg, rgb(143, 176, 255), rgb(99, 227, 179));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-color: initial;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}

.stat p {
  color: rgb(169, 184, 216);
  margin-top: 6px;
  font-size: 15px;
}

.stat cite {
  display: block;
  color: rgb(111, 129, 168);
  font-size: 12.5px;
  margin-top: 8px;
  font-style: normal;
}

.tblwrap {
  overflow-x: auto;
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--panel);
}

th, td {
  padding: 15px 18px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}

thead th {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}

thead th.us {
  color: var(--blue);
}

tbody td:first-child {
  color: var(--muted);
}

td.y {
  color: var(--green);
  font-weight: 650;
}

td.n {
  color: var(--muted);
}

tr:last-child td {
  border-bottom-width: 0px;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
}

.us-col {
  background: color-mix(in srgb,var(--blue) 6%,transparent);
}

.quote {
  max-width: 840px;
  margin: 0px auto;
  text-align: center;
}

blockquote {
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 20px 0px 0px;
  text-wrap-mode: initial;
  text-wrap-style: balance;
}

.who {
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
}

.who b {
  color: var(--text);
}

.faq {
  display: grid;
  row-gap: 14px;
  column-gap: 14px;
  margin-top: 40px;
  max-width: 820px;
}

details {
  border: 1px solid var(--line);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background: var(--panel);
  padding: 4px 20px;
}

summary {
  cursor: pointer;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  font-weight: 650;
  font-size: 17px;
  padding: 16px 0px;
  display: flex;
  justify-content: space-between;
  row-gap: 16px;
  column-gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--blue);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "–";
}

details p {
  color: var(--muted);
  padding: 0px 0px 18px;
  font-size: 15.5px;
  max-width: 66ch;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 44px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .plans {
  grid-template-columns: 1fr;
  }
}

.plan {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  padding: 30px;
}

.plan.feature {
  border-color: color-mix(in srgb,var(--blue) 45%,transparent);
  box-shadow: var(--shadow);
}

.plan .kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan .flag {
  position: absolute;
  top: -12px;
  right: 22px;
  background: linear-gradient(150deg,var(--blue),var(--green));
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  letter-spacing: 0.02em;
}

.price {
  display: flex;
  align-items: baseline;
  row-gap: 6px;
  column-gap: 6px;
  margin: 14px 0px 4px;
}

.price .amt {
  font-size: 52px;
  font-weight: 820;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.price .per {
  color: var(--muted);
  font-weight: 600;
  font-size: 16px;
}

.plan .note {
  color: var(--muted);
  font-size: 14.5px;
}

.plan ul {
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  margin: 22px 0px;
  padding: 18px 0px 0px;
  border-top: 1px solid var(--line);
  display: grid;
  row-gap: 11px;
  column-gap: 11px;
  font-size: 15px;
}

.plan li {
  display: flex;
  row-gap: 10px;
  column-gap: 10px;
}

.plan li::before {
  content: "";
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 20px;
  height: 20px;
  margin-top: 2px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: color-mix(in srgb,var(--green) 20%,transparent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232FBF88' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

.plan .btn {
  width: 100%;
  justify-content: center;
}

.plans-note {
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 22px;
}

.final {
  background: radial-gradient(120% 120% at 50% 0,#16233f,var(--stage));
  color: rgb(234, 240, 251);
  text-align: center;
}

.final h2 {
  color: rgb(255, 255, 255);
}

.final p {
  color: rgb(183, 196, 224);
  max-width: 52ch;
  margin: 16px auto 0px;
  font-size: 18px;
}

.final .hero-cta {
  margin-top: 28px;
}

.final small {
  display: block;
  margin-top: 16px;
  color: rgb(127, 146, 184);
  font-size: 13.5px;
}

footer {
  background: var(--panel);
  border-top: 1px solid var(--line);
  padding: 50px 0px 40px;
  color: var(--muted);
  font-size: 14.5px;
}

.foot {
  display: flex;
  justify-content: space-between;
  row-gap: 30px;
  column-gap: 30px;
  flex-wrap: wrap;
}

.foot .cols {
  display: flex;
  row-gap: 56px;
  column-gap: 56px;
  flex-wrap: wrap;
}

.foot h4 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin: 0px 0px 12px;
}

.foot a {
  display: block;
  color: var(--muted);
  padding: 4px 0px;
}

.foot a:hover {
  color: var(--text);
}

.foot .fine {
  width: 100%;
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  row-gap: 16px;
  column-gap: 16px;
  flex-wrap: wrap;
}