:root {
  color-scheme: light;
  --background: #fbfcf7;
  --foreground: #182633;
  --surface: #eef5ef;
  --panel: #ffffff;
  --border: #d9e4dd;
  --muted: #65727e;
  --accent: #0b806f;
  --accent-strong: #075f52;
  --accent-soft: #def5ed;
  --mint: #bff3df;
  --hero: #073c3b;
  --hero-muted: #c8ded8;
  --hero-rule: #2a5c59;
  --shadow-section: 0 1rem 2.5rem -1.75rem rgba(5, 43, 42, 0.28);
  --shadow-stage: 0 1.5rem 4rem -2rem rgba(5, 43, 42, 0.34);
  --shadow-table: 0 1.25rem 3rem -1rem rgba(5, 43, 42, 0.24);
  --unavailable: #9a6568;
  --error: #a5272f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  margin: 0;
  min-width: 18rem;
}

::selection {
  background: color-mix(in srgb, var(--accent) 22%, white);
  color: var(--foreground);
}

button,
input {
  font: inherit;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 36%, transparent);
  outline-offset: 3px;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-shell {
  min-height: 100vh;
  min-height: 100svh;
}

main,
.footer {
  margin-inline: auto;
  max-width: 94rem;
  width: 100%;
}

.masthead {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    var(--panel);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, white);
  box-shadow: 0 0.75rem 1.75rem rgba(24, 38, 51, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.masthead::before {
  background: var(--accent);
  content: "";
  display: block;
  height: 0.18rem;
  width: 100%;
}

.masthead-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 94rem;
  min-height: 3.65rem;
  padding: 0.35rem clamp(1rem, 3vw, 2.5rem);
  width: 100%;
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  gap: 0.4375rem;
  min-height: 2.65rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  flex: none;
  height: 1.5625rem;
  max-width: 2.64rem;
  object-fit: contain;
  width: auto;
}

.brand-text {
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand-match {
  color: #054050;
}

.brand-analysts {
  color: #108264;
}

.launch-status {
  align-items: center;
  color: var(--accent-strong);
  display: flex;
  font-size: 0.78rem;
  font-weight: 750;
  gap: 0.55rem;
  margin: 0;
}

.status-dot {
  background: var(--accent);
  border: 0.22rem solid var(--accent-soft);
  border-radius: 50%;
  height: 0.78rem;
  width: 0.78rem;
  margin-top: 0.14rem;
}

main {
  padding: clamp(1.25rem, 2.5vw, 2.25rem) clamp(0.75rem, 2vw, 2.25rem) clamp(4rem, 8vw, 7rem);
}

.hero-frame {
  align-items: center;
  display: flex;
  min-height: calc(100dvh - 7.8rem - clamp(2.5rem, 5vw, 4.5rem));
}

.hero {
  border: 1px solid color-mix(in srgb, var(--border) 88%, var(--accent-strong));
  border-radius: 0.75rem;
  box-shadow: var(--shadow-stage);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(23rem, 0.85fr);
  overflow: hidden;
  width: 100%;
}

.hero-story {
  background: var(--hero);
  color: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.75rem);
  position: relative;
}

.hero-watermark {
  bottom: -5rem;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.04;
  pointer-events: none;
  position: absolute;
  right: -11rem;
  transform: rotate(-7deg);
  width: min(48rem, 82%);
}

.hero-copy,
.briefing {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 1.6rem;
  max-width: 16ch;
  text-wrap: balance;
}

h1 span {
  color: var(--mint);
  display: block;
}

.hero-intro {
  color: var(--hero-muted);
  font-size: 1rem;
  line-height: 1.62;
  margin-bottom: 0;
  max-width: 40rem;
  text-wrap: balance;
}

.analyst-promise {
  border-top: 1px solid var(--hero-rule);
  color: var(--hero-muted);
  line-height: 1.55;
  margin: 1.2rem 0 0;
  max-width: 40rem;
  padding-top: 1.2rem;
}

.analyst-promise strong {
  color: var(--mint);
}

.founding-analyst-invite {
  color: var(--hero-muted);
  line-height: 1.55;
  margin: 0.7rem 0 0;
  max-width: 40rem;
}

.founding-analyst-invite strong,
.founding-analyst-invite a {
  color: var(--mint);
}

.founding-analyst-invite a:hover {
  color: var(--panel);
}

.founding-analyst-invite a:focus-visible {
  outline-color: color-mix(in srgb, var(--mint) 55%, transparent);
}

.briefing {
  margin-top: 0;
  max-width: 46rem;
  padding-top: clamp(3.5rem, 7vw, 5rem);
}

.briefing-carousel {
  --swiper-pagination-bullet-horizontal-gap: 0;
  background: var(--hero);
  border: 1px solid var(--hero-rule);
  border-radius: 0.75rem;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.briefing-carousel::after {
  background: linear-gradient(90deg, rgba(5, 47, 47, 0.94) 0%, rgba(5, 47, 47, 0.72) 54%, rgba(5, 47, 47, 0.2) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.parallax-bg {
  background-image: url("../assets/briefing-orbits.svg");
  background-position: center 62%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 130%;
  z-index: 0;
}

.briefing-carousel .swiper-wrapper {
  align-items: stretch;
  height: auto;
  position: relative;
  z-index: 2;
}

.briefing-carousel .swiper-slide {
  height: auto;
}

.briefing-slide {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 3vw, 2rem) 0.75rem;
}

.briefing-slide h3 {
  color: var(--panel);
  font-size: clamp(1.5rem, 2.9vw, 2rem);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 0.8rem;
  white-space: nowrap;
}

.briefing-slide p {
  color: var(--hero-muted);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 35rem;
  text-wrap: balance;
}

.briefing-controls {
  --briefing-control-inset: clamp(1rem, 2.5vw, 1.5rem);
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  padding: 0 var(--briefing-control-inset) var(--briefing-control-inset);
  position: relative;
  z-index: 4;
}

.briefing-pagination {
  align-items: center;
  display: flex;
  position: static;
  width: auto !important;
}

.briefing-pagination .swiper-pagination-bullet {
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  height: 2.75rem;
  margin: 0 !important;
  opacity: 1;
  padding: 0 0.22rem;
  position: relative;
  width: 2.4rem;
}

.briefing-pagination .swiper-pagination-bullet::after {
  background: color-mix(in srgb, var(--hero-muted) 44%, transparent);
  border-radius: 999px;
  content: "";
  height: 0.16rem;
  inset-inline: 0.22rem;
  position: absolute;
  bottom: 10%;
  transform: translateY(-50%);
  transition: background-color 180ms ease-out, transform 180ms ease-out;
}

.briefing-pagination .swiper-pagination-bullet-active::after {
  background: var(--mint);
  transform: translateY(-50%) scaleY(1.625);
}

.briefing-pagination .swiper-pagination-bullet:focus-visible {
  outline: none;
}

.briefing-pagination .swiper-pagination-bullet:focus-visible::after {
  background: var(--panel);
  transform: translateY(-50%) scaleY(2.5);
}

.briefing-autoplay {
  align-items: center;
  background: color-mix(in srgb, var(--hero) 76%, transparent);
  border: 1px solid color-mix(in srgb, var(--hero-muted) 36%, transparent);
  border-radius: 999px;
  color: var(--panel);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  min-height: 2.75rem;
  min-width: 2.75rem;
  padding: 0;
  transition: background-color 160ms ease-out, border-color 160ms ease-out;
}

.briefing-autoplay:hover {
  background: color-mix(in srgb, var(--accent-strong) 78%, transparent);
  border-color: color-mix(in srgb, var(--mint) 56%, transparent);
}

.briefing-autoplay svg {
  fill: currentColor;
  height: 1rem;
  width: 1rem;
}

.briefing-autoplay svg[hidden] {
  display: none;
}

.briefing-carousel:not(.swiper-initialized) .swiper-slide:not(:first-child),
.briefing-carousel:not(.swiper-initialized) .briefing-controls {
  display: none;
}

.briefing-carousel:not(.swiper-initialized) .swiper-wrapper {
  transform: none !important;
}

.signup-panel {
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(2rem, 4.2vw, 4rem);
  scroll-margin-top: 5.5rem;
}

.signup-heading {
  margin-bottom: 2rem;
}

.signup-heading h2,
.section-heading h2,
.privacy-intro h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-wrap: balance;
}

.signup-heading h2 {
  color: #054050;
  margin-bottom: 0.9rem;
}

.signup-heading p,
.section-heading > p,
.privacy-intro p {
  color: var(--muted);
  line-height: 1.65;
}

.signup-heading p {
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 33rem;
}

.signup-form {
  display: grid;
  gap: 1.05rem;
}

.role-selector {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.role-options {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.role-option {
  cursor: pointer;
  min-width: 0;
  position: relative;
}

.role-option input {
  cursor: pointer;
  height: 100%;
  inset: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.role-option-card {
  align-items: center;
  background: var(--surface);
  border-radius: 0.5rem;
  color: var(--accent-strong);
  display: flex;
  font-size: 1rem;
  font-weight: 850;
  justify-content: center;
  letter-spacing: -0.01em;
  line-height: 1.1;
  min-height: 5rem;
  overflow: hidden;
  padding: 0.75rem 0.65rem;
  pointer-events: none;
  position: relative;
  text-align: center;
  transition: background-color 180ms ease-out, box-shadow 180ms ease-out, color 180ms ease-out, transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.role-option-icon {
  fill: none;
  height: 2rem;
  left: 50%;
  opacity: 0;
  position: absolute;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  top: 0.75rem;
  transform: translate(-50%, -3rem);
  transition: opacity 220ms ease-out, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 2rem;
}

.role-option-label {
  transform: translateY(0);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .role-option:hover .role-option-card {
    background: var(--accent-soft);
  }
}

.role-option input:checked + .role-option-card {
  background: var(--accent);
  box-shadow: 0 4px 10px rgba(1, 38, 36, 0.1);
  color: var(--panel);
}

.role-option input:checked + .role-option-card .role-option-icon {
  opacity: 1;
  transform: translate(-50%, 0);
}

.role-option input:checked + .role-option-card .role-option-label {
  transform: translateY(1.125rem);
}

.role-option input:focus-visible {
  outline: 0;
}

.role-option input:focus-visible + .role-option-card {
  outline: 3px solid color-mix(in srgb, var(--accent) 36%, transparent);
  outline-offset: 3px;
}

.role-option input:active + .role-option-card {
  transform: translateY(0.2rem);
}

.role-option input:disabled {
  cursor: wait;
}

.role-option input:disabled + .role-option-card {
  cursor: wait;
  opacity: 0.55;
  transform: none;
}

.field {
  display: grid;
  gap: 0.48rem;
}

.field-control {
  position: relative;
}

.field-control label {
  background: transparent;
  color: var(--muted);
  cursor: text;
  font-size: 0.78rem;
  font-weight: 750;
  inset-inline-start: 0.55rem;
  line-height: 1;
  padding-inline: 0.35rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1);
  transform-origin: left center;
  transition: background-color 160ms ease-out, color 160ms ease-out, transform 160ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.field-control input {
  background: color-mix(in srgb, var(--surface) 46%, var(--panel));
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  min-height: 3.25rem;
  padding: 0.78rem 0.9rem;
  transition: background-color 160ms ease-out, border-color 160ms ease-out, padding 160ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.field-control input:not(:placeholder-shown),
.field-control input:focus {
  padding-bottom: 0.38rem;
  padding-top: 1.18rem;
}

.field-control input::placeholder {
  color: var(--muted);
  opacity: 0;
  transition: opacity 120ms ease-out;
}

.field-control input:hover {
  border-color: color-mix(in srgb, var(--accent) 48%, var(--border));
}

.field-control input:disabled {
  background: color-mix(in srgb, var(--surface) 76%, var(--panel));
  border-color: var(--border);
  color: var(--muted);
  cursor: wait;
}

.field-control input:disabled + label {
  color: var(--muted);
  cursor: wait;
}

.field-control input:focus {
  background: var(--panel);
  border-color: var(--accent);
}

.field-control input[aria-invalid="true"] {
  border-color: var(--error);
}

.field-control input:focus::placeholder {
  opacity: 1;
  transition-delay: 60ms;
}

.field-control input:not(:placeholder-shown) + label,
.field-control input:focus + label {
  color: var(--muted);
  transform: translateY(-1.35rem) scale(0.82);
}

.field-control input:focus + label {
  color: var(--accent-strong);
}

.field-message {
  color: var(--error);
  font-size: 0.78rem;
  margin-bottom: 0;
}

.consent-field {
  align-items: start;
  display: grid;
  gap: 0.72rem;
  grid-template-columns: 1.2rem minmax(0, 1fr);
  margin: 0.3rem 0 0.15rem;
}

.consent-field input {
  accent-color: var(--accent);
  height: 1.15rem;
  margin: 0.18rem 0 0;
  width: 1.15rem;
}

.consent-field input:disabled,
.consent-field input:disabled + label {
  cursor: wait;
}

.consent-field label {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.consent-field strong {
  color: var(--foreground);
}

.consent-field input[aria-invalid="true"] {
  outline: 2px solid color-mix(in srgb, var(--error) 42%, transparent);
  outline-offset: 2px;
}

.consent-message {
  grid-column: 2;
}

.turnstile-shell {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.turnstile-shell:empty,
.turnstile-message[hidden] {
  display: none;
}

.turnstile-message {
  text-align: center;
}

.signup-form button {
  background: var(--accent);
  border: 0;
  border-radius: 0.5rem;
  color: var(--panel);
  cursor: pointer;
  font-weight: 800;
  min-height: 3.25rem;
  padding: 0.82rem 1rem;
  transition: background-color 160ms ease-out, box-shadow 160ms ease-out, transform 160ms ease-out;
  width: 100%;
}

.signup-form button:hover {
  background: var(--accent-strong);
  box-shadow: 0 0.65rem 1.5rem rgba(7, 95, 82, 0.2);
  transform: translateY(-1px);
}

.signup-form button:active {
  box-shadow: none;
  transform: translateY(0);
}

.signup-form button:disabled {
  background: color-mix(in srgb, var(--accent) 68%, var(--muted));
  box-shadow: none;
  cursor: wait;
  transform: none;
}

.signup-promise {
  color: var(--accent-strong);
  font-size: 1rem;
  margin: 0.2rem 0 0;
  text-align: center;
}

.privacy-shortcut {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.analyst-signup-note {
  background: var(--surface);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0.25rem 0 0;
  padding: 0.8rem 0.9rem;
  text-align: center;
  text-wrap: balance;
}

.privacy-shortcut a {
  overflow-wrap: anywhere;
}

.form-result {
  background: var(--accent-soft);
  border-radius: 0.5rem;
  color: var(--accent-strong);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  padding: 0.9rem;
  white-space: pre-line;
}

.form-result-error {
  background: color-mix(in srgb, var(--error) 9%, var(--panel));
  color: var(--error);
}

html:has(.signup-success-dialog[open]) {
  overflow: hidden;
}

.signup-success-dialog {
  background: transparent;
  border: 0;
  color: var(--foreground);
  height: 100vh;
  height: 100dvh;
  inset: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  overflow: hidden;
  padding: clamp(1rem, 4vw, 2.5rem);
  width: 100vw;
}

.signup-success-dialog[open] {
  display: grid;
  place-items: center;
}

.signup-success-dialog::backdrop {
  -webkit-backdrop-filter: blur(0.45rem);
  backdrop-filter: blur(0.45rem);
  background: rgba(238, 245, 239, 0.72);
}

.signup-success-dialog[open]::backdrop {
  animation: signup-success-backdrop-in 240ms ease-out both;
}

.signup-success-panel {
  align-items: center;
  animation: signup-success-panel-in 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
  background: var(--panel);
  border-radius: 0.75rem;
  box-shadow: 0 2rem 5rem -1.5rem rgba(1, 38, 36, 0.52);
  display: grid;
  gap: 1rem;
  justify-items: center;
  max-width: 31rem;
  padding: clamp(2rem, 7vw, 3.25rem);
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.signup-success-mark {
  align-items: center;
  background: var(--accent-soft);
  border-radius: 50%;
  color: var(--accent-strong);
  display: flex;
  height: 4rem;
  justify-content: center;
  width: 4rem;
}

.signup-success-mark svg {
  fill: none;
  height: 2.25rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
  width: 2.25rem;
}

.signup-success-panel h2 {
  color: #054050;
  font-size: clamp(1.9rem, 5vw, 2.4rem);
  line-height: 1.05;
  margin: 0.3rem 0 0;
}

.signup-success-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  margin: 0;
  max-width: 28rem;
  text-wrap: balance;
}

.signup-success-close {
  background: var(--accent);
  border: 0;
  border-radius: 0.5rem;
  color: var(--panel);
  cursor: pointer;
  font-weight: 800;
  margin-top: 0.65rem;
  min-height: 3.25rem;
  padding: 0.82rem 1.5rem;
  transition: background-color 160ms ease-out, box-shadow 160ms ease-out, transform 160ms ease-out;
  width: min(100%, 18rem);
}

.signup-success-close:hover {
  background: var(--accent-strong);
  box-shadow: 0 0.65rem 1.5rem rgba(7, 95, 82, 0.2);
  transform: translateY(-1px);
}

.signup-success-close:active {
  box-shadow: none;
  transform: translateY(0);
}

.signup-success-confetti {
  height: 100%;
  inset: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 2;
}

@keyframes signup-success-backdrop-in {
  from {
    background: rgba(238, 245, 239, 0);
  }
}

@keyframes signup-success-panel-in {
  from {
    filter: blur(0.2rem);
    opacity: 0;
    transform: translateY(1.25rem) scale(0.96);
  }
}

.community-promise {
  margin-inline: auto;
  max-width: 74rem;
  padding: clamp(5rem, 10vw, 9rem) clamp(0.25rem, 2vw, 1.5rem);
}

.section-heading {
  border-bottom: 1px solid var(--border);
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.section-heading h2 {
  color: #054050;
  margin-bottom: 1.25rem;
}

.section-heading > p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 90ch;
}

.capability-table-wrap {
  box-shadow: var(--shadow-table);
  overflow-x: auto;
}

.capability-table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.capability-table th,
.capability-table td {
  border-bottom: 1px solid var(--border);
  padding: 0.9rem clamp(0.65rem, 1.5vw, 1.25rem);
}

.capability-table th:first-child {
  text-align: left;
  width: 64%;
}

.capability-table th:not(:first-child),
.capability-table td {
  text-align: center;
  width: 18%;
}

.capability-table thead th {
  background: var(--accent);
  border-bottom-color: var(--accent);
  color: var(--panel);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.capability-table thead th:first-child {
  padding-left: clamp(0.65rem, 1.5vw, 1.25rem);
}

.capability-table tbody th {
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.4;
}

.capability-table tbody tr {
  --capability-row-background: var(--background);
  --capability-yes-background: var(--accent-soft);
}

.capability-table tbody tr:nth-child(even) {
  --capability-row-background: color-mix(in srgb, var(--surface) 68%, var(--panel));
  --capability-yes-background: color-mix(in srgb, var(--accent-soft) 78%, var(--surface));
}

.capability-table tbody tr:nth-child(even) > * {
  background: var(--capability-row-background);
}

.capability-table td:has(.capability-yes) {
  background: var(--capability-yes-background);
}

.capability-table tbody tr:nth-child(even) > td:has(.capability-yes) {
  background: var(--capability-yes-background);
}

.capability-table tbody tr:has(> td:first-of-type .capability-yes) > th {
  background: linear-gradient(
    to right,
    var(--capability-row-background) 0%,
    var(--capability-row-background) 96.625%,
    var(--capability-yes-background) 100%
  );
}

.capability-table tbody tr:not(:has(> td:first-of-type .capability-yes)):has(> td:last-of-type .capability-yes) > td:first-of-type {
  background: linear-gradient(
    to right,
    var(--capability-row-background) 0%,
    var(--capability-row-background) 88%,
    var(--capability-yes-background) 100%
  );
}

@media (hover: hover) {
  .capability-table tbody tr:hover > * {
    box-shadow:
      inset 0 1px color-mix(in srgb, var(--accent) 30%, var(--border)),
      inset 0 -1px color-mix(in srgb, var(--accent) 30%, var(--border));
  }
}

.capability-icon {
  fill: none;
  height: 1.25rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vertical-align: middle;
  width: 1.25rem;
}

.capability-yes {
  color: var(--accent);
}

.capability-no {
  color: var(--unavailable);
}

.capability-text {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.coverage {
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(12rem, 0.32fr) minmax(0, 1.68fr);
  padding-inline: clamp(0.25rem, 3vw, 3rem);
}

.coverage > p {
  align-self: center;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0;
  padding-right: clamp(1.25rem, 2.5vw, 2.5rem);
}

.coverage ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.coverage li {
  align-items: center;
  background-color: transparent;
  border-left: 1px solid var(--border);
  color: var(--foreground);
  display: grid;
  font-size: 1rem;
  font-weight: 650;
  gap: 0.85rem;
  grid-template-columns: 3.75rem minmax(0, 1fr);
  min-height: 6.4rem;
  padding: 1rem 1.1rem;
  transition: background-color 180ms ease-out;
}

.coverage li:nth-child(n + 5) {
  border-top: 1px solid var(--border);
}

.coverage-media {
  align-items: center;
  display: grid;
  height: 3.75rem;
  justify-items: center;
  width: 3.75rem;
}

.coverage-image {
  display: block;
  object-fit: contain;
}

.coverage-ball {
  height: 3.3rem;
  width: 3.3rem;
}

.coverage-game-logo {
  max-height: 2.7rem;
  max-width: 2.7rem;
}

.coverage-cs2-logo {
  border-radius: 0.35rem;
  height: 3.15rem;
  max-height: none;
  max-width: none;
  width: 3.15rem;
}

.coverage-more-mark {
  align-items: center;
  background: color-mix(in srgb, var(--accent-soft) 72%, var(--panel));
  border: 1px solid color-mix(in srgb, var(--accent) 14%, var(--border));
  border-radius: 50%;
  color: var(--accent-strong);
  display: flex;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  height: 3.3rem;
  justify-content: center;
  letter-spacing: -0.03em;
  line-height: 1;
  padding-left: 4px;
  text-align: center;
  transition: background-color 180ms ease-out, border-color 180ms ease-out;
  width: 3.3rem;
}

.coverage-label {
  line-height: 1.3;
  position: relative;
  transition: color 180ms ease-out;
  width: fit-content;
}

.coverage-label::after {
  background: color-mix(in srgb, var(--accent) 58%, transparent);
  border-radius: 999px;
  bottom: -0.16rem;
  content: "";
  height: 0.0625rem;
  inset-inline: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.coverage li:hover {
  background-color: color-mix(in srgb, var(--accent-soft) 46%, var(--background));
}

.coverage li:hover .coverage-label {
  color: #054050;
}

.coverage li:hover .coverage-more-mark {
  background-color: color-mix(in srgb, var(--mint) 36%, var(--accent-soft));
  border-color: color-mix(in srgb, var(--accent) 24%, var(--border));
}

.coverage li:hover .coverage-label::after {
  transform: scaleX(1);
}

.coverage li .coverage-media {
  transform: scale(0.85);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.coverage li:hover .coverage-media {
  transform: scale(1);
}

.privacy {
  align-items: center;
  background: var(--hero);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-section);
  color: var(--panel);
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: minmax(16rem, 0.62fr) minmax(0, 1.38fr);
  margin-top: clamp(5rem, 10vw, 9rem);
  padding: clamp(2.25rem, 4vw, 3.75rem);
  scroll-margin-top: 5.5rem;
}

.privacy-intro h2 {
  color: var(--panel);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.5rem;
  max-width: 12ch;
}

.privacy-intro p {
  color: var(--hero-muted);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 25rem;
}

.privacy-details {
  align-content: start;
  display: grid;
  gap: 0 clamp(2rem, 4vw, 4rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
  width: 100%;
}

.privacy-details > div {
  border-top: 1px solid var(--hero-rule);
  padding: 1rem 0 1.35rem;
}

.privacy-details > div:nth-last-child(-n + 2) {
  padding-bottom: 0;
}

.privacy-details dt {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.privacy-keyword {
  text-decoration-color: color-mix(in srgb, var(--mint) 52%, transparent);
  text-decoration-line: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

.privacy-details dd {
  color: var(--hero-muted);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0;
  margin-inline-start: 0;
}

.privacy-details a {
  color: var(--mint);
  overflow-wrap: anywhere;
}

.privacy-details a:hover {
  color: var(--panel);
}

.closing-invite {
  align-items: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 3vw, 2.5rem);
}

.closing-invite h2 {
  color: #054050;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.closing-invite p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.closing-invite > a {
  align-items: center;
  background: var(--accent);
  border-radius: 0.5rem;
  color: var(--panel);
  display: inline-flex;
  flex: none;
  gap: 0.5rem;
  font-weight: 750;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  text-decoration: none;
  transition: background-color 160ms ease-out;
}

.closing-invite > a svg {
  fill: none;
  height: 1rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  width: 1rem;
}

.closing-invite > a:hover {
  background: var(--accent-strong);
  color: var(--panel);
}

.back-to-top-button {
  align-items: center;
  background: var(--panel);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--panel));
  border-radius: 999px;
  bottom: max(1rem, env(safe-area-inset-bottom));
  box-shadow: 0 0.75rem 1.75rem rgba(24, 38, 51, 0.12);
  color: var(--accent-strong);
  cursor: pointer;
  display: inline-flex;
  height: 2.5rem;
  justify-content: center;
  opacity: 0.8;
  padding: 0;
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  transition: background-color 160ms ease-out, opacity 160ms ease-out, transform 160ms ease-out;
  width: 2.5rem;
  z-index: 30;
}

.back-to-top-button[hidden] {
  display: none;
}

.back-to-top-button svg {
  fill: none;
  height: 1.125rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  width: 1.125rem;
}

.back-to-top-button:focus-visible,
.back-to-top-button:hover {
  background: color-mix(in srgb, var(--accent-soft) 72%, var(--panel));
  opacity: 1;
  transform: translateY(-1px);
}

.footer {
  --footer-inline-padding: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 1.25rem 2rem;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  padding: 1.5rem var(--footer-inline-padding);
  position: relative;
}

.footer p {
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 0;
}

.footer-copyright {
  justify-self: center;
  text-align: center;
}

.footer-tagline {
  justify-self: end;
  text-align: right;
}

.footer-legal {
  border-bottom: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  display: grid;
  gap: 0.75rem;
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
  justify-items: center;
  padding-bottom: 1.5rem;
  text-align: center;
  width: 100%;
}

.footer-legal p {
  font-size: 0.68rem;
  line-height: 1.55;
  max-width: 96ch;
  text-wrap: balance;
}

.footer-legal p:last-child {
  justify-self: center;
}

@media (min-width: 90rem) {
  .footer {
    border-top: 0;
  }

  .footer::before {
    border-top: 1px solid var(--border);
    content: "";
    inset-inline: var(--footer-inline-padding);
    position: absolute;
    top: 0;
  }
}

@media (max-width: 89.9375rem) {
  .coverage > p {
    padding-right: 0;
    text-align: center;
  }
}

@media (min-width: 48rem) and (max-width: 89.9375rem) {
  .coverage {
    gap: 0;
    grid-template-columns: 1fr;
    padding-block: 0;
  }

  .coverage > p {
    padding-block: 1.5rem;
  }

  .coverage ul {
    width: 100%;
  }

  .coverage li {
    border-top: 1px solid var(--border);
    border-left: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 8.4rem;
    padding: 1rem;
    text-align: center;
  }

  .coverage li:not(:nth-child(4n + 1)) {
    border-left: 1px solid var(--border);
  }
}

@media (max-width: 47.9375rem) {
  .coverage {
    gap: 0;
    grid-template-columns: 1fr;
    padding: 0 0.25rem;
  }

  .coverage > p {
    padding-block: 1.25rem;
  }

  .coverage ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .coverage li {
    border-top: 1px solid var(--border);
    border-left: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 8rem;
    padding: 0.9rem 0.65rem;
    text-align: center;
  }

  .coverage li:nth-child(odd) {
    padding-right: 0.65rem;
  }

  .coverage li:nth-child(even) {
    border-left: 1px solid var(--border);
    padding-left: 0.65rem;
  }
}

@media (max-width: 64rem) {
  .hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(21rem, 0.98fr);
  }

  .hero-story,
  .signup-panel {
    padding: 2.5rem;
  }

  .privacy-details > div {
    grid-template-columns: 1fr;
    gap: 0.42rem;
  }
}

@media (max-width: 50rem) {
  .hero {
    grid-template-columns: 1fr;
  }

  .briefing {
    margin-top: 0;
  }

  .signup-panel {
    border-bottom: 1px solid var(--border);
  }

  .privacy {
    grid-template-columns: 1fr;
  }

  .privacy-intro h2 {
    max-width: 16ch;
  }
}

@media (max-width: 36rem) {
  .masthead-inner {
    align-items: center;
    gap: 0.8rem;
    min-height: 3.65rem;
    padding-block: 0.35rem;
  }

  .brand-lockup {
    gap: 0.35rem;
  }

  .brand-logo {
    height: 1.25rem;
    max-width: 2.11rem;
  }

  .brand-text {
    font-size: 1.125rem;
  }

  .launch-status {
    align-items: flex-start;
    font-size: 0.76rem;
    line-height: 1.35;
    max-width: 12rem;
    text-align: right;
    gap: 0.32rem;
  }

  .status-dot {
    flex: 0 0 auto;
  }

  :root {
    --mobile-section-inline-padding: 1.2rem;
  }

  main {
    padding: 1rem 0.75rem clamp(4rem, 8vw, 7rem);
  }

  .hero-frame {
    min-height: calc(100dvh - 9.8rem);
  }

  .hero-story {
    padding: 1.5rem var(--mobile-section-inline-padding);
  }

  .signup-panel {
    padding: 2rem var(--mobile-section-inline-padding) 1.5rem;
  }

  .signup-success-panel {
    padding-inline: var(--mobile-section-inline-padding);
  }

  h1 {
    line-height: 1;
    margin-bottom: 1.3rem;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-copy h1,
  .hero-intro {
    text-wrap: wrap;
  }

  .briefing {
    padding-top: 2.5rem;
  }

  .briefing-slide h3 {
    font-size: clamp(1.25rem, 6vw, 1.5rem);
  }

  .briefing-pagination .swiper-pagination-bullet {
    width: 1.6rem;
  }

  .signup-heading {
    margin-bottom: 1.5rem;
  }

  .signup-heading h2,
  .section-heading h2,
  .privacy-intro h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    text-wrap: inherit;
  }

  .consent-field label {
    font-size: 1rem;
  }

  .community-promise {
    padding: 5.5rem 0.25rem;
  }

  .capability-table th,
  .capability-table td {
    padding: 0.85rem 0.35rem;
  }

  .capability-table th:first-child {
    padding-left: 0;
    padding-right: 0.75rem;
  }

  .coverage-more-mark {
    padding-left: 2px;
  }

  .privacy {
    font-size: 0.9375rem;
    gap: 2.25rem;
    grid-template-columns: 1fr;
    margin-top: 5.5rem;
    padding: 2.25rem var(--mobile-section-inline-padding);
  }

  .privacy-intro h2 {
    font-size: clamp(2em, 9.375vw, 2.75em);
  }

  .privacy-intro p,
  .privacy-details dd {
    font-size: 1em;
  }

  .privacy-details dt {
    font-size: 0.78em;
  }

  .privacy-details {
    grid-template-columns: 1fr;
  }

  .privacy-details > div:nth-last-child(2) {
    padding-bottom: 1.35rem;
  }

  .closing-invite {
    align-items: stretch;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 4rem;
    padding-inline: var(--mobile-section-inline-padding);
  }

  .closing-invite > a {
    width: 100%;
  }

  .footer {
    align-items: center;
    gap: 0.8rem;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-copyright,
  .footer-tagline {
    justify-self: center;
    text-align: center;
  }

  .footer-legal {
    gap: 0.75rem;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-legal p,
  .footer-legal p:last-child {
    justify-self: center;
  }
}
