:root {
  color-scheme: dark;
  --navy-950: #050c13;
  --navy-900: #07131d;
  --navy-850: #0a1925;
  --navy-800: #0d2130;
  --forest-900: #062d1e;
  --forest-700: #0d5a39;
  --forest-500: #1d8a54;
  --lime: #d4ff3f;
  --lime-soft: #ecff9a;
  --white: #f7fbf5;
  --muted: #aebcb8;
  --muted-strong: #cad4d1;
  --line: rgba(216, 255, 111, 0.18);
  --line-strong: rgba(216, 255, 111, 0.35);
  --surface: rgba(13, 33, 48, 0.78);
  --surface-solid: #0d2130;
  --success: #68d391;
  --content: 1180px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy-950);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  min-width: 0;
}

body::before {
  background-image:
    linear-gradient(rgba(216, 255, 111, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 255, 111, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 850;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

p {
  color: var(--muted);
}

.skip-link {
  background: var(--lime);
  color: var(--navy-950);
  font-weight: 800;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.container {
  margin-inline: auto;
  max-width: var(--content);
  padding-inline: 1.5rem;
  width: 100%;
}

.site-header {
  background: rgba(5, 12, 19, 0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.brand-link {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-icon {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
  height: 42px;
  width: 42px;
}

.brand-name {
  font-size: 1.06rem;
  font-weight: 850;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 1.6rem;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  color: var(--lime);
}

.mobile-menu {
  display: none;
  position: relative;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 800;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  background: rgba(212, 255, 63, 0.08);
  border-color: var(--lime);
}

.menu-toggle-icon {
  border-bottom: 2px solid currentColor;
  border-top: 2px solid currentColor;
  display: block;
  height: 12px;
  position: relative;
  width: 16px;
}

.menu-toggle-icon::after {
  background: currentColor;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 3px;
  width: 16px;
}

.mobile-nav {
  background: var(--navy-850);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.2rem;
  min-width: 230px;
  padding: 0.6rem;
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  border-radius: 4px;
  padding: 0.75rem;
}

.mobile-nav a:hover {
  background: rgba(212, 255, 63, 0.08);
}

.hero {
  border-bottom: 1px solid var(--line);
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  border: 1px solid rgba(212, 255, 63, 0.14);
  border-radius: 50%;
  content: "";
  height: 620px;
  position: absolute;
  right: -210px;
  top: -200px;
  width: 620px;
  z-index: -1;
}

.hero-art {
  bottom: -12%;
  filter: saturate(0.92) contrast(1.04);
  max-width: 720px;
  opacity: 0.58;
  position: absolute;
  right: max(-6vw, -70px);
  width: 52vw;
  z-index: -1;
}

.hero-inner {
  align-items: center;
  display: flex;
  min-height: 720px;
  padding-block: 4rem 4.5rem;
}

.hero-copy {
  max-width: 800px;
}

.eyebrow-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.badge {
  align-items: center;
  background: var(--lime);
  border-radius: 999px;
  color: var(--navy-950);
  display: inline-flex;
  font-size: 0.73rem;
  font-weight: 900;
  padding: 0.42rem 0.7rem;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--lime-soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-brand {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-brand img {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  height: 68px;
  width: 68px;
}

.hero-brand span {
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 850;
}

.accent {
  color: var(--lime);
}

.hero-lead {
  color: var(--white);
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  font-weight: 650;
  line-height: 1.45;
  max-width: 660px;
}

.hero-support {
  font-size: 1rem;
  max-width: 630px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.status-button,
.text-link {
  align-items: center;
  border-radius: var(--radius-sm);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  min-height: 48px;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.status-button {
  background: var(--lime);
  color: var(--navy-950);
}

.status-button:hover {
  background: var(--lime-soft);
}

.text-link {
  border: 1px solid var(--line-strong);
  color: var(--white);
}

.text-link:hover {
  background: rgba(212, 255, 63, 0.08);
  border-color: var(--lime);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section-bordered {
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-heading {
  max-width: 850px;
}

.section-intro {
  font-size: 1.08rem;
  max-width: 700px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3.5rem;
}

.step {
  border-top: 2px solid var(--line-strong);
  counter-increment: step;
  padding: 2rem 2rem 0 0;
  position: relative;
}

.step::before {
  align-items: center;
  background: var(--lime);
  border-radius: 50%;
  color: var(--navy-950);
  content: counter(step, decimal-leading-zero);
  display: flex;
  font-size: 0.75rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: -18px;
  width: 34px;
}

.step:not(:last-child) {
  padding-right: 2.5rem;
}

.step h3 {
  margin-top: 0.6rem;
}

.step p {
  font-size: 0.94rem;
}

.features-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3.5rem;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  min-height: 210px;
  padding: 1.6rem;
  position: relative;
}

.feature-number {
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 900;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.feature h3 {
  font-size: 1.45rem;
}

.feature p {
  margin-bottom: 0;
  max-width: 520px;
}

.library-feature {
  background: var(--forest-900);
  grid-column: 1 / -1;
  min-height: auto;
}

.library-stats {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.5rem;
}

.library-stat {
  border-left: 1px solid var(--line-strong);
  padding: 0.7rem 1.5rem;
}

.library-stat strong {
  color: var(--lime);
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
}

.library-stat span {
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 750;
}

.point-layout {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.point-copy blockquote {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 850;
  line-height: 1.08;
  margin: 0 0 2rem;
  max-width: 760px;
}

.point-copy p {
  max-width: 640px;
}

.court-visual {
  background: var(--navy-900);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.court-visual img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  opacity: 0.82;
  width: 100%;
}

.court-label {
  background: var(--navy-950);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
  left: 1rem;
  padding: 0.4rem 0.65rem;
  position: absolute;
  text-transform: uppercase;
  top: 1rem;
}

.court-target {
  border: 2px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(212, 255, 63, 0.09);
  height: 32px;
  position: absolute;
  right: 27%;
  top: 26%;
  width: 32px;
}

.court-target::after {
  background: var(--lime);
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 10px;
  position: absolute;
  top: 10px;
  width: 8px;
}

.beta-band {
  background: var(--forest-900);
  border-bottom: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
}

.beta-grid {
  align-items: start;
  display: grid;
  gap: 3rem;
  grid-template-columns: 0.72fr 1.28fr;
}

.beta-status {
  align-items: center;
  display: inline-flex;
  gap: 0.6rem;
}

.status-dot {
  background: var(--lime);
  border: 4px solid rgba(212, 255, 63, 0.17);
  background-clip: padding-box;
  border-radius: 50%;
  height: 16px;
  width: 16px;
}

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

.beta-list li {
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  padding: 0 0 1rem 1.6rem;
  position: relative;
}

.beta-list li::before {
  color: var(--lime);
  content: "+";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.site-footer {
  padding-block: 4rem 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.4fr 0.6fr;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  border-radius: var(--radius-sm);
  height: 44px;
  width: 44px;
}

.footer-brand strong {
  font-size: 1.2rem;
}

.footer-tagline {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 750;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a,
.footer-contact a {
  color: var(--muted-strong);
  text-decoration-color: var(--line-strong);
  text-underline-offset: 4px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  margin: 0;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.page-hero-inner {
  max-width: 880px;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.5rem);
}

.page-hero p {
  color: var(--muted-strong);
  font-size: 1.12rem;
  max-width: 700px;
}

.page-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  margin-top: 1.6rem;
}

.page-meta span {
  color: var(--lime-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.document-layout {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: 240px minmax(0, 760px);
}

.document-nav {
  align-self: start;
  position: sticky;
  top: 110px;
}

.document-nav p {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.document-nav ol {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.document-nav a {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
}

.document-nav a:hover {
  color: var(--lime);
}

.document-content section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 2.7rem;
  scroll-margin-top: 110px;
}

.document-content section + section {
  padding-top: 2.7rem;
}

.document-content h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.document-content h3 {
  color: var(--white);
  margin-top: 2rem;
}

.document-content li {
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.document-content a,
.support-email {
  color: var(--lime-soft);
  font-weight: 700;
  text-underline-offset: 4px;
}

.notice {
  background: var(--forest-900);
  border-left: 4px solid var(--lime);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--muted-strong);
  margin-block: 1.5rem;
  padding: 1rem 1.2rem;
}

.contact-panel {
  background: var(--forest-900);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  margin-bottom: 3rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-panel p:last-child {
  margin-bottom: 0;
}

.support-email {
  display: inline-block;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  overflow-wrap: anywhere;
}

.issue-list {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.issue-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted-strong);
  margin: 0;
  padding: 1rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}

.faq-list summary {
  color: var(--white);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
  padding-right: 2rem;
  position: relative;
}

.faq-list summary::after {
  color: var(--lime);
  content: "+";
  font-size: 1.4rem;
  position: absolute;
  right: 0;
  top: -0.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0.8rem 2rem 0 0;
}

.error-page {
  align-items: center;
  display: flex;
  min-height: calc(100vh - 76px);
  padding-block: 4rem;
}

.error-code {
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.error-page h1 {
  font-size: clamp(3rem, 10vw, 7rem);
}

.error-page p {
  font-size: 1.1rem;
  max-width: 580px;
}

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

  .mobile-menu {
    display: block;
  }

  .hero-art {
    bottom: -2%;
    opacity: 0.28;
    right: -18%;
    width: 78vw;
  }

  .steps {
    gap: 3.2rem 1.75rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .point-layout,
  .beta-grid,
  .document-layout {
    grid-template-columns: 1fr;
  }

  .point-layout {
    gap: 3.5rem;
  }

  .beta-grid {
    gap: 2.25rem;
  }

  .document-nav {
    position: static;
  }

  .document-nav ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    align-items: stretch;
    flex-direction: column;
    padding-block: 3.5rem 4rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-art {
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    bottom: auto;
    box-shadow: var(--shadow);
    margin: 2.75rem auto 0;
    max-width: 620px;
    opacity: 1;
    position: relative;
    right: auto;
    width: 100%;
    z-index: 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: 1.1rem;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-icon {
    height: 38px;
    width: 38px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .hero-inner {
    padding-block: 3rem 3.5rem;
  }

  .hero-brand img {
    height: 56px;
    width: 56px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.35rem;
  }

  .status-button,
  .text-link {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-support {
    font-size: 1rem;
    line-height: 1.7;
  }

  .steps,
  .features-grid,
  .library-stats,
  .issue-list {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
    padding-right: 0;
  }

  .step p,
  .feature p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .feature {
    min-height: auto;
    padding: 1.8rem 1.5rem;
  }

  .library-feature {
    grid-column: auto;
  }

  .library-stat {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
    padding: 1rem 0;
  }

  .court-visual {
    margin-inline: auto;
    max-width: 440px;
  }

  .point-copy blockquote {
    margin-bottom: 2.5rem;
  }

  .point-copy p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .beta-list li {
    font-size: 1rem;
    line-height: 1.7;
  }

  .document-nav ol {
    grid-template-columns: 1fr;
  }

  .document-nav a {
    font-size: 0.95rem;
  }

  .footer-tagline,
  .footer-contact,
  .footer-links a {
    font-size: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom p {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Premium landing page */

.landing-page {
  background: #030b12;
  color: #f7fbf5;
}

.landing-page::before {
  background-image:
    linear-gradient(rgba(216, 255, 111, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 255, 111, 0.018) 1px, transparent 1px);
  background-size: 88px 88px;
}

.landing-page .container {
  max-width: 1240px;
}

.landing-header {
  background: rgba(3, 11, 18, 0.94);
  border-bottom-color: rgba(216, 255, 111, 0.09);
}

.landing-header .nav-shell {
  min-height: 72px;
}

.landing-header .brand-icon {
  border-color: rgba(212, 255, 63, 0.42);
  height: 40px;
  width: 40px;
}

.landing-header .brand-name {
  font-size: 1.25rem;
  letter-spacing: 0;
}

.landing-nav {
  gap: 2.3rem;
}

.landing-nav a {
  color: #f1f5f2;
  font-size: 0.88rem;
  padding-block: 1.55rem 1.35rem;
  position: relative;
}

.landing-nav a::after {
  background: #d4ff3f;
  bottom: 0.9rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.landing-nav a:hover::after,
.landing-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-beta-button {
  align-items: center;
  background: #d4ff3f;
  border: 1px solid #d4ff3f;
  border-radius: 6px;
  color: #07131d;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  text-decoration: none;
}

.nav-beta-button:hover {
  background: #ecff9a;
  border-color: #ecff9a;
}

.landing-hero {
  border-bottom: 1px solid rgba(212, 255, 63, 0.12);
  min-height: 760px;
  overflow: hidden;
  padding-top: 3rem;
  position: relative;
}

.hero-court-backdrop {
  filter: saturate(0.85) brightness(0.72);
  height: 560px;
  object-fit: cover;
  opacity: 0.24;
  position: absolute;
  right: -5%;
  top: 75px;
  transform: perspective(900px) rotateX(58deg) rotateZ(-5deg);
  transform-origin: center;
  width: 68%;
}

.hero-radar {
  height: 470px;
  pointer-events: none;
  position: absolute;
  right: -20px;
  top: 44px;
  width: 470px;
}

.radar-ring,
.radar-line {
  border-color: rgba(212, 255, 63, 0.24);
  position: absolute;
}

.radar-ring {
  border: 1px solid rgba(212, 255, 63, 0.24);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring-one {
  height: 160px;
  width: 160px;
}

.radar-ring-two {
  height: 260px;
  width: 260px;
}

.radar-ring-three {
  height: 390px;
  width: 390px;
}

.radar-line-horizontal {
  border-top: 1px solid rgba(212, 255, 63, 0.2);
  height: 1px;
  left: 0;
  top: 50%;
  width: 100%;
}

.radar-line-vertical {
  border-left: 1px solid rgba(212, 255, 63, 0.2);
  height: 100%;
  left: 50%;
  top: 0;
  width: 1px;
}

.hero-ball {
  background: #dfff3f;
  border: 2px solid #f8ffbe;
  border-radius: 50%;
  box-shadow:
    0 0 12px rgba(212, 255, 63, 0.95),
    0 0 44px rgba(212, 255, 63, 0.58);
  height: 74px;
  left: calc(50% - 37px);
  position: absolute;
  top: calc(50% - 37px);
  width: 74px;
}

.hero-ball::before,
.hero-ball::after {
  border: 2px solid rgba(11, 52, 31, 0.58);
  border-radius: 50%;
  content: "";
  height: 62px;
  position: absolute;
  top: 4px;
  width: 34px;
}

.hero-ball::before {
  border-left-color: transparent;
  left: -9px;
}

.hero-ball::after {
  border-right-color: transparent;
  right: -9px;
}

.ball-trail {
  border-right: 4px solid #d4ff3f;
  border-radius: 50%;
  box-shadow: 7px 0 16px rgba(212, 255, 63, 0.54);
  height: 250px;
  left: 57%;
  position: absolute;
  top: 51%;
  transform: rotate(-44deg);
  transform-origin: top;
  width: 280px;
}

.landing-hero-grid {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 560px;
  position: relative;
  z-index: 2;
}

.landing-hero-copy {
  max-width: 660px;
  padding-block: 2rem 4rem;
}

.landing-tagline {
  color: #d4ff3f;
  font-size: 0.98rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.landing-hero h1 {
  font-size: clamp(3.15rem, 4.2vw, 4.6rem);
  letter-spacing: 0;
  line-height: 0.99;
  margin-bottom: 1.35rem;
  max-width: 720px;
}

.landing-hero h1 .hero-question-line {
  color: #f7fbf5;
  white-space: nowrap;
}

.landing-hero h1 .hero-question-line strong {
  color: #d4ff3f;
  font: inherit;
}

.landing-hero-lead {
  color: #e4ebe7;
  font-size: 1.08rem;
  line-height: 1.62;
  max-width: 570px;
}

.landing-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.primary-action,
.secondary-action {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 900;
  gap: 0.7rem;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
}

.primary-action {
  background: #d4ff3f;
  border: 1px solid #d4ff3f;
  color: #07131d;
  min-width: 220px;
}

.primary-action:hover {
  background: #ecff9a;
  border-color: #ecff9a;
}

.primary-action > span {
  font-size: 1.25rem;
  line-height: 1;
}

.secondary-action {
  border: 1px solid rgba(247, 251, 245, 0.48);
  color: #f7fbf5;
  min-width: 158px;
}

.secondary-action:hover {
  background: rgba(212, 255, 63, 0.08);
  border-color: #d4ff3f;
}

.play-mark {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  font-size: 1.05rem;
  height: 22px;
  justify-content: center;
  padding-left: 2px;
  width: 22px;
}

.beta-facts {
  color: #bcc9c4;
  font-size: 0.82rem;
  margin: 1.25rem 0 0;
}

.beta-facts span,
.beta-cta-action p span {
  color: #d4ff3f;
  margin-inline: 0.35rem;
}

.hero-device-stage {
  align-items: flex-start;
  display: flex;
  height: 580px;
  justify-content: center;
  padding-top: 10px;
  position: relative;
}

.phone-shell {
  background: #c9cbc6;
  border: 4px solid #a8aaa7;
  border-radius: 44px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.5),
    inset 0 0 0 3px #282b2d;
  overflow: hidden;
  padding: 9px;
  position: relative;
}

.phone-shell-hero {
  height: 690px;
  transform: rotate(5deg);
  width: 342px;
}

.phone-speaker {
  background: #020609;
  border-radius: 20px;
  height: 18px;
  left: 50%;
  position: absolute;
  top: 14px;
  transform: translateX(-50%);
  width: 92px;
  z-index: 5;
}

.phone-screen {
  background: #052719;
  border: 3px solid #05090b;
  border-radius: 34px;
  height: 100%;
  overflow: hidden;
  padding: 26px 12px 12px;
  width: 100%;
}

.phone-screen-capture {
  padding: 0;
}

.hero-gameplay-screen {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.mini-app-header,
.home-mini-header {
  align-items: center;
  display: flex;
  gap: 7px;
}

.mini-app-header img,
.home-mini-header img {
  border-radius: 5px;
  height: 25px;
  width: 25px;
}

.mini-app-header div {
  display: grid;
  flex: 1;
}

.mini-app-header strong,
.home-mini-header strong {
  color: #fff;
  font-size: 9px;
  line-height: 1.1;
}

.mini-app-header small {
  color: #9db9a8;
  font-size: 5px;
  font-weight: 800;
}

.mini-app-header > span {
  background: #6b871e;
  border: 1px solid #a6c837;
  border-radius: 99px;
  color: #eaff62;
  font-size: 5px;
  font-weight: 900;
  padding: 3px 6px;
}

.mini-play-copy {
  padding: 14px 2px 8px;
}

.mini-play-copy small,
.mini-decision small {
  color: #d4ff3f;
  display: block;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.mini-play-copy strong {
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 1.08;
}

.mini-court {
  background: #07131d;
  border: 1px solid rgba(212, 255, 63, 0.3);
  border-radius: 8px;
  height: 270px;
  overflow: hidden;
  position: relative;
}

.mini-court img {
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  width: 100%;
}

.mini-marker {
  align-items: center;
  border-radius: 50%;
  display: flex;
  font-size: 5px;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  position: absolute;
  width: 22px;
  z-index: 2;
}

.mini-marker-opponent {
  background: #8e9992;
  color: #07131d;
  left: 47%;
  top: 14%;
}

.mini-marker-player {
  background: #d4ff3f;
  bottom: 8%;
  color: #07131d;
  left: 24%;
}

.mini-trajectory {
  border-left: 2px dotted #d4ff3f;
  height: 150px;
  left: 38%;
  position: absolute;
  top: 23%;
  transform: rotate(13deg);
  transform-origin: top;
  width: 1px;
}

.mini-stats {
  background: #082f20;
  border: 1px solid rgba(212, 255, 63, 0.18);
  border-radius: 7px;
  display: grid;
  gap: 3px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 8px;
  padding: 7px;
}

.mini-stats span {
  color: #fff;
  display: grid;
  font-size: 7px;
  font-weight: 900;
}

.mini-stats small {
  color: #94ab9d;
  font-size: 4px;
}

.mini-decision {
  background: #082f20;
  border: 1px solid rgba(212, 255, 63, 0.18);
  border-radius: 7px;
  margin-top: 8px;
  padding: 8px;
}

.mini-decision p {
  color: #d9e4de;
  font-size: 7px;
  line-height: 1.4;
  margin: 0;
}

.hero-proof-grid {
  background: rgba(4, 18, 22, 0.94);
  border: 1px solid rgba(212, 255, 63, 0.3);
  border-radius: 8px;
  bottom: -1px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  min-height: 106px;
  position: relative;
  z-index: 4;
}

.hero-proof {
  align-items: center;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: auto 1fr;
  padding: 1.2rem 1.4rem;
}

.hero-proof + .hero-proof {
  border-left: 1px solid rgba(212, 255, 63, 0.25);
}

.proof-symbol {
  color: #d4ff3f;
  font-size: 3.3rem;
  line-height: 1;
}

.proof-number {
  color: #d4ff3f;
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-proof p {
  color: #d6dfda;
  font-size: 0.82rem;
  line-height: 1.42;
  margin: 0;
}

.hero-proof-lead p {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
}

.hero-proof strong {
  color: #d4ff3f;
}

.product-showcase,
.process-section,
.feature-section,
.home-faq {
  background: #030b12;
  padding-block: 2.6rem;
}

.product-showcase {
  padding-bottom: 1.3rem;
}

.section-title-row {
  align-items: center;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr auto 1fr;
  margin-bottom: 1.1rem;
}

.section-title-row > span {
  background: rgba(212, 255, 63, 0.3);
  height: 1px;
}

.section-title-row h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  margin: 0;
  text-align: center;
}

.phone-gallery {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.phone-gallery-product {
  align-items: start;
  gap: 1.6rem;
  padding-block: 0.4rem;
}

.product-beta-action {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.showcase-phone {
  aspect-ratio: 390 / 844;
  background: #111915;
  border: 7px solid #e3e7df;
  border-radius: 38px;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(212, 255, 63, 0.18);
  margin-inline: auto;
  max-width: 226px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.showcase-phone::before {
  background: #111915;
  border-radius: 0 0 12px 12px;
  content: "";
  height: 15px;
  left: 50%;
  position: absolute;
  top: -1px;
  transform: translateX(-50%);
  width: 78px;
  z-index: 1;
}

.showcase-phone img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.showcase-card {
  min-width: 0;
  text-align: center;
}

.phone-shell-gallery {
  height: 446px;
  margin: 0 auto 1rem;
  padding: 7px;
  width: min(100%, 226px);
}

.phone-shell-gallery .phone-screen {
  border-radius: 34px;
  padding: 22px 9px 9px;
}

.phone-shell-gallery .mini-play-copy {
  padding-top: 10px;
}

.phone-shell-gallery .mini-play-copy strong {
  font-size: 9px;
}

.phone-shell-gallery .mini-court {
  height: 194px;
}

.phone-shell-gallery .mini-trajectory {
  height: 100px;
}

.phone-shell-gallery .mini-stats {
  margin-top: 5px;
  padding: 5px;
}

.phone-shell-gallery .mini-decision {
  margin-top: 5px;
  padding: 6px;
}

.showcase-card h3 {
  color: #f7fbf5;
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
}

.showcase-card > p {
  color: #9dafaa;
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 240px;
}

.phone-screen-light {
  background: #eef3e8;
  color: #111a20;
  padding-top: 29px;
}

.result-heading,
.summary-heading {
  text-align: center;
}

.result-heading small,
.result-heading strong {
  display: block;
}

.result-heading small {
  font-size: 9px;
  font-weight: 900;
}

.result-heading strong {
  font-size: 5px;
  margin-top: 3px;
}

.score-pair {
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr 1fr;
  margin-top: 8px;
}

.score-pair > span {
  background: #083324;
  border-radius: 5px;
  color: #fff;
  display: grid;
  min-height: 62px;
  padding: 8px 4px;
  place-items: center;
}

.score-pair .loss-score {
  background: #ae3437;
}

.score-pair small {
  font-size: 5px;
}

.score-pair strong {
  font-size: 22px;
  line-height: 1;
}

.loss-score strong {
  font-size: 11px;
}

.result-bars {
  display: grid;
  gap: 5px;
  margin-top: 9px;
}

.result-bars span {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(8, 30, 20, 0.12);
  color: #18211f;
  font-size: 5px;
  font-weight: 800;
  overflow: hidden;
  padding: 6px;
  position: relative;
  text-align: left;
}

.result-bars b {
  background: #8eb73d;
  bottom: 0;
  height: 2px;
  left: 0;
  position: absolute;
}

.coach-box {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(8, 30, 20, 0.12);
  margin-top: 9px;
  padding: 8px;
  text-align: left;
}

.coach-box small {
  font-size: 6px;
  font-weight: 900;
}

.coach-box p {
  color: #41504c;
  font-size: 5px;
  line-height: 1.4;
  margin: 3px 0 0;
}

.summary-heading {
  display: grid;
  justify-items: center;
}

.summary-cup {
  align-items: center;
  background: #f3e97f;
  border-radius: 50%;
  color: #625300;
  display: flex;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.summary-heading small {
  color: #74823a;
  font-size: 5px;
  font-weight: 900;
  margin-top: 5px;
}

.summary-heading strong {
  font-size: 14px;
}

.summary-heading p {
  color: #52605b;
  font-size: 5px;
  line-height: 1.35;
  margin: 3px 0 0;
  max-width: 140px;
}

.summary-score {
  background: #073524;
  border-radius: 5px;
  color: #fff;
  margin-top: 9px;
  padding: 12px 7px;
  text-align: center;
}

.summary-score small {
  display: block;
  font-size: 5px;
}

.summary-score strong {
  display: block;
  font-size: 31px;
  line-height: 1;
  margin-top: 4px;
}

.summary-score p {
  color: #d9e7dd;
  font-size: 5px;
  margin: 5px 0 0;
}

.summary-stats {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 7px;
}

.summary-stats span {
  background: #fff;
  border-radius: 4px;
  color: #5d6966;
  display: grid;
  font-size: 5px;
  padding: 5px 2px;
  text-align: center;
}

.summary-stats strong {
  color: #111a20;
  font-size: 14px;
}

.record-line,
.decision-total {
  background: #fff;
  border-radius: 4px;
  display: grid;
  font-size: 6px;
  gap: 4px;
  grid-template-columns: 1fr auto;
  margin-top: 7px;
  padding: 7px;
  text-align: left;
}

.record-line b {
  background: #bd343b;
  grid-column: 1 / -1;
  height: 3px;
}

.decision-total strong {
  color: #25734b;
}

.home-mini-header {
  padding-bottom: 9px;
}

.home-training {
  background: #0b4c31;
  border: 1px solid rgba(212, 255, 63, 0.22);
  border-radius: 6px;
  padding: 9px;
}

.home-training small,
.home-training strong {
  display: block;
}

.home-training small {
  color: #d4ff3f;
  font-size: 5px;
  font-weight: 900;
}

.home-training strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.05;
  margin-top: 4px;
}

.home-training p {
  color: #d8e4dc;
  font-size: 5px;
  line-height: 1.4;
  margin: 5px 0 0;
}

.home-rating {
  align-items: center;
  background: #f7faf4;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  padding: 7px;
}

.home-rating span {
  color: #13201c;
  display: grid;
}

.home-rating small {
  color: #5a6963;
  font-size: 4px;
  font-weight: 900;
}

.home-rating strong {
  font-size: 18px;
  line-height: 1;
}

.home-rating b {
  background: #e1efc6;
  border-radius: 99px;
  color: #476521;
  font-size: 5px;
  padding: 4px 7px;
}

.home-stat-row {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 7px;
}

.home-stat-row span {
  background: #f7faf4;
  border-radius: 4px;
  color: #13201c;
  display: grid;
  font-size: 14px;
  font-weight: 900;
  padding: 5px;
  text-align: center;
}

.home-stat-row small {
  color: #68756f;
  font-size: 5px;
}

.home-record,
.home-daily {
  background: #f7faf4;
  border-radius: 5px;
  color: #15211d;
  margin-top: 7px;
  padding: 7px;
}

.home-record {
  display: grid;
  font-size: 6px;
  grid-template-columns: 1fr auto;
}

.home-record span {
  color: #237547;
  font-weight: 900;
}

.home-record b {
  background: #b8313a;
  grid-column: 1 / -1;
  height: 3px;
  margin-top: 6px;
}

.home-start {
  background: #d4ff3f;
  border-radius: 5px;
  color: #092016;
  font-size: 7px;
  font-weight: 900;
  margin-top: 7px;
  padding: 7px;
  text-align: center;
}

.home-daily {
  align-items: center;
  display: flex;
  font-size: 7px;
  font-weight: 900;
  justify-content: space-between;
}

.home-daily span {
  display: grid;
}

.home-daily small {
  color: #6b7772;
  font-size: 4px;
}

.home-daily b {
  background: #d4ff3f;
  border-radius: 99px;
  font-size: 5px;
  padding: 3px 6px;
}

.compact-title-row {
  margin-bottom: 1.4rem;
}

.showcase-process {
  margin-top: 2.5rem;
}

.process-section {
  padding-block: 1.2rem 1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  align-items: center;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: auto 1fr;
  min-height: 74px;
  padding: 0.8rem 1.2rem;
}

.process-grid article + article {
  border-left: 1px solid rgba(212, 255, 63, 0.26);
}

.process-icon {
  align-items: center;
  border: 1px solid rgba(212, 255, 63, 0.6);
  border-radius: 50%;
  color: #d4ff3f;
  display: flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.process-grid strong {
  color: #d4ff3f;
  font-size: 0.86rem;
}

.process-grid p {
  color: #c3cfca;
  font-size: 0.7rem;
  line-height: 1.4;
  margin: 0.18rem 0 0;
}

.feature-section {
  padding-block: 0;
}

.feature-ribbon,
.library-ribbon {
  background: #062019;
  border: 1px solid rgba(212, 255, 63, 0.3);
  border-radius: 8px;
  display: grid;
}

.feature-ribbon {
  grid-template-columns: repeat(4, 1fr);
}

.feature-ribbon article {
  align-items: center;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: auto 1fr;
  min-height: 88px;
  padding: 1rem 1.2rem;
}

.feature-ribbon article + article,
.library-ribbon article + article {
  border-left: 1px solid rgba(212, 255, 63, 0.28);
}

.feature-symbol {
  color: #d4ff3f;
  font-size: 2rem;
  line-height: 1;
}

.feature-ribbon strong {
  color: #d4ff3f;
  font-size: 0.84rem;
}

.feature-ribbon p {
  color: #bdcac5;
  font-size: 0.67rem;
  line-height: 1.4;
  margin: 0.18rem 0 0;
}

.library-ribbon {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6px;
}

.library-ribbon article {
  align-items: center;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: auto auto 1fr;
  min-height: 86px;
  padding: 0.8rem 2rem;
}

.stat-mark {
  color: #d4ff3f;
  font-size: 2rem;
}

.library-ribbon > article > strong {
  color: #d4ff3f;
  font-size: 2.4rem;
  line-height: 1;
}

.library-ribbon div {
  display: grid;
}

.library-ribbon b {
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.05;
}

.library-ribbon small {
  color: #aebcb8;
  font-size: 0.63rem;
  margin-top: 0.25rem;
}

.home-faq {
  padding-block: 1.3rem 0;
}

.home-faq-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.home-faq details {
  background: #0a1720;
  border: 1px solid rgba(183, 209, 199, 0.28);
  border-radius: 6px;
  overflow: hidden;
}

.home-faq summary {
  color: #eef5f1;
  cursor: pointer;
  font-size: 0.78rem;
  min-height: 44px;
  padding: 0.65rem 2rem 0.65rem 0.85rem;
  position: relative;
}

.home-faq summary::after {
  color: #d4ff3f;
  content: "+";
  font-size: 1rem;
  position: absolute;
  right: 0.8rem;
  top: 0.56rem;
}

.home-faq details[open] summary::after {
  content: "−";
}

.home-faq details p {
  border-top: 1px solid rgba(183, 209, 199, 0.2);
  color: #c1cdc8;
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 0;
  padding: 0.8rem;
}

.home-faq details a {
  color: #d4ff3f;
}

.beta-cta-band {
  align-items: center;
  background: #062019;
  border: 1px solid rgba(212, 255, 63, 0.35);
  border-radius: 8px;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: auto minmax(0, 1fr) minmax(300px, 0.8fr);
  margin-top: 0.9rem;
  min-height: 90px;
  padding: 1rem 1.5rem;
}

.beta-community-mark {
  align-items: center;
  border: 1px solid rgba(212, 255, 63, 0.65);
  border-radius: 50%;
  color: #d4ff3f;
  display: flex;
  font-size: 2rem;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.beta-cta-copy h2 {
  color: #d4ff3f;
  font-size: 1.3rem;
  margin: 0;
}

.beta-cta-copy p {
  color: #c4d0cb;
  font-size: 0.72rem;
  line-height: 1.45;
  margin: 0.25rem 0 0;
  max-width: 610px;
}

.beta-cta-action {
  text-align: center;
}

.beta-cta-action .primary-action {
  width: 100%;
}

.beta-cta-action p {
  color: #bdc8c4;
  font-size: 0.68rem;
  margin: 0.45rem 0 0;
}

.landing-footer {
  border-top: 1px solid rgba(212, 255, 63, 0.2);
  padding-block: 1.1rem 1.4rem;
}

.landing-footer-row {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1.2fr 0.8fr auto;
}

.footer-brand-link {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  text-decoration: none;
}

.footer-brand-link img {
  border: 1px solid rgba(212, 255, 63, 0.4);
  border-radius: 6px;
  height: 36px;
  width: 36px;
}

.footer-brand-link strong {
  font-size: 1rem;
}

.footer-email,
.landing-footer-links a {
  color: #aebcb8;
  font-size: 0.76rem;
  text-decoration-color: rgba(212, 255, 63, 0.25);
  text-underline-offset: 4px;
}

.footer-email:hover,
.landing-footer-links a:hover {
  color: #d4ff3f;
}

.footer-email::before {
  color: #d4ff3f;
  content: "✉";
  margin-right: 0.55rem;
}

.landing-footer-links {
  display: flex;
  gap: 2rem;
}

.landing-footer-row > p {
  color: #8fa19b;
  font-size: 0.7rem;
  line-height: 1.4;
  margin: 0;
  text-align: right;
}

@media (max-width: 1100px) {
  .landing-nav {
    gap: 1.25rem;
  }

  .landing-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
  }

  .hero-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proof:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(212, 255, 63, 0.25);
  }

  .hero-proof:nth-child(4) {
    border-top: 1px solid rgba(212, 255, 63, 0.25);
  }

  .phone-gallery {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
  }

  .feature-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-ribbon article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(212, 255, 63, 0.28);
  }

  .feature-ribbon article:nth-child(4) {
    border-top: 1px solid rgba(212, 255, 63, 0.28);
  }

  .home-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1040px) {
  .landing-header .desktop-nav,
  .landing-header .nav-beta-button {
    display: none;
  }

  .landing-header .mobile-menu {
    display: block;
  }
}

@media (max-width: 900px) {
  .landing-hero {
    padding-top: 2rem;
  }

  .hero-court-backdrop {
    height: 520px;
    opacity: 0.18;
    right: -12%;
    top: 580px;
    width: 110%;
  }

  .hero-radar {
    right: -130px;
    top: 620px;
  }

  .landing-hero-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero-copy {
    max-width: 740px;
    padding-bottom: 0;
  }

  .hero-device-stage {
    height: 640px;
  }

  .phone-shell-hero {
    height: 630px;
    transform: rotate(2deg);
    width: 315px;
  }

  .hero-proof-grid {
    margin-top: 2rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(212, 255, 63, 0.26);
  }

  .process-grid article:nth-child(4) {
    border-top: 1px solid rgba(212, 255, 63, 0.26);
  }

  .library-ribbon {
    grid-template-columns: 1fr;
  }

  .library-ribbon article + article {
    border-left: 0;
    border-top: 1px solid rgba(212, 255, 63, 0.28);
  }

  .beta-cta-band {
    grid-template-columns: auto 1fr;
  }

  .beta-cta-action {
    grid-column: 1 / -1;
  }

  .landing-footer-row {
    grid-template-columns: 1fr 1fr;
  }

  .landing-footer-row > p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .landing-page .container {
    padding-inline: 1rem;
  }

  .landing-header .brand-name {
    font-size: 1rem;
  }

  .landing-hero {
    padding-top: 1rem;
  }

  .landing-hero-copy {
    padding-top: 1.7rem;
  }

  .landing-tagline {
    font-size: 0.88rem;
  }

  .landing-hero h1 {
    font-size: clamp(2.55rem, 13.2vw, 3.5rem);
    line-height: 1.02;
  }

  .landing-hero h1 .hero-question-line {
    white-space: normal;
  }

  .landing-hero-lead {
    font-size: 1rem;
  }

  .landing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    min-height: 50px;
    width: 100%;
  }

  .beta-facts {
    line-height: 1.7;
  }

  .hero-device-stage {
    height: 565px;
    padding-top: 0;
  }

  .phone-shell-hero {
    height: 555px;
    transform: none;
    width: min(100%, 282px);
  }

  .phone-shell-hero .mini-court {
    height: 200px;
  }

  .hero-radar {
    height: 330px;
    right: -135px;
    top: 740px;
    width: 330px;
  }

  .radar-ring-one {
    height: 110px;
    width: 110px;
  }

  .radar-ring-two {
    height: 190px;
    width: 190px;
  }

  .radar-ring-three {
    height: 300px;
    width: 300px;
  }

  .hero-ball {
    height: 54px;
    left: calc(50% - 27px);
    top: calc(50% - 27px);
    width: 54px;
  }

  .hero-ball::before,
  .hero-ball::after {
    height: 44px;
    width: 26px;
  }

  .ball-trail {
    height: 170px;
    width: 180px;
  }

  .hero-proof-grid,
  .phone-gallery,
  .process-grid,
  .feature-ribbon,
  .home-faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof + .hero-proof,
  .hero-proof:nth-child(3),
  .hero-proof:nth-child(4),
  .process-grid article + article,
  .process-grid article:nth-child(3),
  .process-grid article:nth-child(4),
  .feature-ribbon article + article,
  .feature-ribbon article:nth-child(3),
  .feature-ribbon article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(212, 255, 63, 0.25);
  }

  .hero-proof {
    padding: 1.2rem;
  }

  .section-title-row {
    gap: 0.8rem;
  }

  .section-title-row h2 {
    font-size: 1.2rem;
  }

  .product-showcase {
    padding-top: 2.2rem;
  }

  .phone-gallery {
    row-gap: 2.7rem;
  }

  .phone-shell-gallery {
    height: 470px;
    width: 238px;
  }

  .process-grid article,
  .feature-ribbon article {
    min-height: 88px;
    padding: 1rem;
  }

  .library-ribbon article {
    gap: 0.65rem;
    padding: 1rem;
  }

  .library-ribbon > article > strong {
    font-size: 2.05rem;
  }

  .home-faq summary,
  .home-faq details p {
    font-size: 0.95rem;
  }

  .beta-cta-band {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    text-align: center;
  }

  .beta-community-mark {
    margin-inline: auto;
  }

  .beta-cta-action {
    grid-column: auto;
  }

  .landing-footer-row {
    gap: 1rem;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand-link,
  .landing-footer-links {
    justify-content: center;
  }

  .landing-footer-row > p {
    text-align: center;
  }
}
