:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-2: #0b1d33;
  --bg-3: #06101d;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(11, 29, 51, 0.92);
  --line: rgba(244, 248, 255, 0.11);
  --line-strong: rgba(56, 213, 255, 0.22);
  --text: #f4f8ff;
  --muted: #c1ccda;
  --muted-2: #9fb0c4;
  --cyan: #38d5ff;
  --cyan-soft: #8ce8ff;
  --emerald: #20d98a;
  --amber: #f7b84b;
  --red: #ef4d5d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --glow: 0 0 28px rgba(56, 213, 255, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 22% 4%, rgba(56, 213, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 84% 18%, rgba(32, 217, 138, 0.08), transparent 22rem),
    linear-gradient(180deg, var(--bg) 0%, #081421 48%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--cyan);
  color: #06101d;
  font-weight: 900;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(244, 248, 255, 0.08);
  background: rgba(7, 17, 31, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section-inner,
.footer-inner {
  width: min(1296px, calc(100% - 48px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: clamp(194px, 16vw, 246px);
  max-height: 68px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.button-primary {
  background: var(--cyan);
  color: #06101d;
  box-shadow: 0 12px 30px rgba(56, 213, 255, 0.14);
}

.button-secondary {
  border-color: rgba(244, 248, 255, 0.18);
  color: #d7e3f2;
  background: rgba(255, 255, 255, 0.025);
}

.button-subtle {
  border-color: var(--line);
  color: #d7e3f2;
  background: rgba(255, 255, 255, 0.035);
}

.hero {
  padding: clamp(4rem, 7vw, 5.8rem) 0 clamp(3.8rem, 6vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-page {
  padding-top: 4.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 1.35rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(56, 213, 255, 0.2);
  border-radius: 999px;
  background: rgba(56, 213, 255, 0.075);
  color: var(--cyan-soft);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 850;
}

h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 850;
}

h3 {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
}

.lead {
  max-width: 660px;
  margin: 1.35rem 0 0;
  color: #b9c7d9;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.85rem;
}

.trust-note {
  max-width: 600px;
  margin-top: 1.2rem;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.hero-proof div {
  min-width: 0;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(56, 213, 255, 0.42);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: #fff;
  font-size: 0.95rem;
}

.hero-proof span {
  color: var(--muted-2);
  font-size: 0.78rem;
}

.trust-bar {
  border-top: 1px solid rgba(244, 248, 255, 0.08);
  border-bottom: 1px solid rgba(244, 248, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-bar-inner div {
  min-width: 0;
  padding: 1.1rem;
  border-right: 1px solid rgba(244, 248, 255, 0.08);
  text-align: center;
}

.trust-bar-inner div:last-child {
  border-right: 0;
}

.trust-bar-inner strong,
.trust-bar-inner span {
  display: block;
}

.trust-bar-inner strong {
  color: #fff;
  font-size: 1rem;
}

.trust-bar-inner span {
  margin-top: 0.25rem;
  color: var(--muted-2);
  font-size: 0.78rem;
}

.product-visual {
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(14, 38, 64, 0.96), rgba(8, 22, 37, 0.97));
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.36), var(--glow);
  overflow: hidden;
}

.product-visual-large {
  min-height: 390px;
  max-width: 620px;
  justify-self: end;
}

.page-mockup {
  min-height: 420px;
}

.visual-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.35rem 0.9rem;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 850;
}

.signal,
.risk-signal {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: rgba(32, 217, 138, 0.14);
  color: var(--emerald);
}

.risk-signal {
  background: rgba(239, 77, 93, 0.12);
  color: #ff8b99;
}

.visual-body {
  display: grid;
  gap: 1rem;
  padding: 0.9rem 1.35rem 1.35rem;
}

.sample-note {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.76rem;
}

.visual-body > .sample-note,
.workflow-stack > .sample-note,
.feature-tile-grid > .sample-note {
  grid-column: 1 / -1;
  margin: 0;
}

.sample-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(56, 213, 255, 0.26);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: rgba(56, 213, 255, 0.1);
  color: var(--cyan-soft);
  font-size: 0.72rem;
  font-weight: 850;
}

.dashboard-preview .visual-body {
  gap: 0.9rem;
}

.hero-product-composite {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
}

.clean-app-frame {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(244, 248, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(13, 27, 45, 0.94), rgba(9, 21, 36, 0.94)),
    radial-gradient(circle at 20% 0%, rgba(56, 213, 255, 0.08), transparent 20rem);
}

.clean-app-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted-2);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.clean-match-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgba(244, 248, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.clean-match-row.active {
  border-color: rgba(56, 213, 255, 0.2);
  background: rgba(56, 213, 255, 0.055);
}

.clean-match-row span,
.clean-match-row small {
  display: block;
  color: var(--muted-2);
  font-size: 0.72rem;
}

.clean-match-row strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--text);
  font-size: 0.9rem;
}

.hero-decision-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.supporting-product-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.mini-product-card {
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid rgba(244, 248, 255, 0.1);
  border-radius: 16px;
  background: rgba(6, 16, 29, 0.42);
}

.mini-product-card span {
  display: block;
  color: var(--cyan-soft);
  font-size: 0.72rem;
  font-weight: 850;
}

.mini-product-card strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.35;
}

.product-shot-grid {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.hero-shot-grid {
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.36fr);
  align-items: stretch;
}

.screenshot-frame {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 248, 255, 0.14);
  border-radius: 22px;
  background: rgba(6, 16, 29, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top left;
  opacity: 0.92;
}

.screenshot-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0.8rem 0.8rem 0;
  min-height: 24px;
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(56, 213, 255, 0.18);
  border-radius: 999px;
  background: rgba(56, 213, 255, 0.08);
  color: var(--cyan-soft);
  font-size: 0.64rem;
  font-weight: 850;
}

.screenshot-frame figcaption {
  margin: 0;
  padding: 0.7rem 0.85rem 0.85rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.desktop-shot {
  aspect-ratio: 16 / 10;
}

.desktop-shot img {
  height: 280px;
}

.hero-dashboard-shot {
  min-height: 0;
}

.phone-shot {
  aspect-ratio: 9 / 16;
}

.phone-shot img {
  object-position: top center;
}

.decision-shot {
  aspect-ratio: 5 / 4;
}

.decision-shot img {
  height: 360px;
}

.embedded-shot {
  aspect-ratio: 16 / 10;
  margin-top: 0.9rem;
}

.embedded-shot img {
  height: 220px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.match-list-panel,
.decision-breakdown,
.analysis-card,
.mybets-frame {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.match-list-panel,
.decision-breakdown,
.analysis-card,
.mybets-frame {
  padding: 1rem;
}

.mock-section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--muted-2);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-match-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.72rem 0;
  border-top: 1px solid rgba(244, 248, 255, 0.07);
}

.mock-match-row:first-of-type {
  border-top: 0;
}

.mock-match-row span,
.mock-match-row small,
.mock-bet-row small {
  display: block;
  color: var(--muted-2);
  font-size: 0.72rem;
}

.mock-match-row strong,
.mock-bet-row strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
}

.mock-match-side {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.mock-match-side strong {
  font-size: 0.9rem;
}

.mock-signal,
.open-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 900;
}

.sig-bet,
.open-badge {
  border: 1px solid rgba(32, 217, 138, 0.28);
  background: rgba(32, 217, 138, 0.12);
  color: var(--emerald);
}

.sig-watch {
  border: 1px solid rgba(247, 184, 75, 0.26);
  background: rgba(247, 184, 75, 0.1);
  color: var(--amber);
}

.sig-pass {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.decision-breakdown .panel-head h3 {
  margin-top: 0.25rem;
  color: var(--emerald);
}

.decision-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.decision-metrics .mini-metric {
  padding: 0.8rem;
}

.reason-card {
  margin-top: 0.85rem;
  padding: 0.9rem;
  border: 1px solid rgba(32, 217, 138, 0.18);
  border-radius: 16px;
  background: rgba(32, 217, 138, 0.08);
  color: #bcefd8;
  font-size: 0.84rem;
}

.visual-lower-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.stat-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mock-bet-row {
  margin-top: 0.9rem;
  padding: 0.85rem;
  border: 1px solid rgba(244, 248, 255, 0.08);
  border-radius: 16px;
  background: rgba(6, 16, 29, 0.52);
}

.match-panel,
.metric-panel,
.answer-card,
.feature-card,
.step-card,
.faq-item,
.trust-card,
.my-bets-panel,
.betslip-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.match-panel,
.metric-panel,
.my-bets-panel {
  padding: 1.1rem;
}

.metric-hero-row,
.team-row,
.metric-row,
.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.metric-hero-row span,
.team-row span,
.metric-row span,
.panel-head span {
  color: var(--muted);
}

.metric-hero-row strong {
  color: #fff;
  font-size: 1.9rem;
}

.team-row,
.metric-row {
  padding: 0.36rem 0;
}

.team-row.small {
  font-size: 0.82rem;
}

.team-row strong,
.metric-row strong {
  color: var(--text);
}

.team-row.small strong {
  color: var(--emerald);
}

.meter {
  height: 10px;
  overflow: hidden;
  margin: 0.5rem 0;
  border-radius: 999px;
  background: #102a46;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--emerald);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d8e8f5;
  font-size: 0.78rem;
  font-weight: 850;
}

.pill-bet {
  border-color: transparent;
  background: var(--emerald);
  color: #062313;
}

.pill-watch {
  border-color: transparent;
  background: var(--amber);
  color: #211705;
}

.pill-pass {
  border-color: transparent;
  background: var(--red);
  color: #2b0909;
}

.pill-info {
  border-color: rgba(56, 213, 255, 0.22);
  background: rgba(56, 213, 255, 0.12);
  color: var(--cyan-soft);
}

.mini-metrics,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.mini-metric,
.stat-grid div {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.mini-metric span,
.stat-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.mini-metric strong,
.stat-grid strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--text);
  font-size: 1rem;
}

.mini-metric.emerald {
  border-color: rgba(32, 217, 138, 0.22);
  background: rgba(32, 217, 138, 0.1);
}

.mini-metric.emerald span {
  color: var(--emerald);
}

.mini-metric.cyan {
  border-color: rgba(56, 213, 255, 0.22);
  background: rgba(56, 213, 255, 0.08);
}

.mini-metric.cyan span {
  color: var(--cyan-soft);
}

.mini-metric.amber {
  border-color: rgba(247, 184, 75, 0.22);
  background: rgba(247, 184, 75, 0.09);
}

.mini-metric.amber span {
  color: var(--amber);
}

.panel-head h3 {
  font-size: 1rem;
}

.betslip-panel {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-style: dashed;
  border-color: rgba(56, 213, 255, 0.36);
  background: rgba(56, 213, 255, 0.07);
}

.betslip-panel p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.receipt-card {
  min-height: 160px;
  padding: 0.9rem;
  border-radius: 20px;
  background: #f4f8ff;
  color: #24364d;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.receipt-card > div,
.receipt-card dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem 0.8rem;
  margin: 0;
}

.receipt-card > div {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #d9e2ee;
  color: #06101d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.receipt-card > div span {
  color: #0b8e59;
}

.receipt-card dl {
  padding: 0.65rem 0;
  font-size: 0.76rem;
}

.receipt-card dd {
  margin: 0;
}

.receipt-card > span {
  display: block;
  padding: 0.5rem;
  border-radius: 999px;
  background: rgba(56, 213, 255, 0.16);
  color: #075e77;
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
}

.timeline-list,
.workflow-stack {
  display: grid;
  gap: 0.75rem;
}

.timeline-list div,
.workflow-stack div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.workflow-stack p {
  grid-column: 2;
  margin: -0.3rem 0 0;
  color: var(--muted);
}

.workflow-stack > .sample-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted-2);
}

.timeline-list span,
.workflow-stack span {
  color: var(--cyan);
  font-weight: 900;
}

.timeline-list p {
  margin: 0;
  color: var(--text);
  font-weight: 750;
}

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

.feature-tile {
  min-height: 126px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.feature-tile.highlight {
  border-color: rgba(56, 213, 255, 0.34);
  background: rgba(56, 213, 255, 0.09);
}

.feature-tile span {
  color: var(--cyan);
  font-weight: 900;
}

.feature-tile strong {
  display: block;
  margin-top: 0.75rem;
}

.warning-panel {
  border-color: rgba(239, 77, 93, 0.28);
  background: rgba(239, 77, 93, 0.08);
}

.warning-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.answer-card.compact {
  padding: 1rem;
}

.section {
  padding: clamp(4.5rem, 7vw, 5.4rem) 0;
}

.section-alt {
  background: var(--bg-2);
  border-top: 1px solid rgba(244, 248, 255, 0.08);
  border-bottom: 1px solid rgba(244, 248, 255, 0.08);
}

.section-header {
  max-width: 840px;
  margin-bottom: 2rem;
}

.split-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  max-width: none;
  gap: 2rem;
  align-items: end;
}

.section-header p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.feature-card,
.step-card,
.answer-card,
.faq-item,
.trust-card {
  padding: 1.45rem;
}

.feature-card p,
.step-card p,
.answer-card p,
.faq-item p,
.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.compare-card:first-child {
  border-color: rgba(239, 77, 93, 0.22);
  background: rgba(239, 77, 93, 0.08);
}

.compare-card:nth-child(2) {
  border-color: rgba(56, 213, 255, 0.24);
  background: rgba(56, 213, 255, 0.08);
}

.compare-card:nth-child(3) {
  border-color: rgba(32, 217, 138, 0.24);
  background: rgba(32, 217, 138, 0.08);
}

.kicker {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.compare-card:first-child .kicker {
  color: var(--red);
}

.compare-card:nth-child(3) .kicker {
  color: var(--emerald);
}

.loop-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 1rem;
}

.loop-copy {
  padding: 1.7rem;
  border: 1px solid rgba(56, 213, 255, 0.22);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(56, 213, 255, 0.12), rgba(32, 217, 138, 0.07));
}

.loop-copy p {
  color: var(--muted);
}

.product-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 1rem;
}

.analysis-card {
  padding: 1.6rem;
  background: linear-gradient(135deg, rgba(56, 213, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.analysis-card > p {
  color: var(--muted);
}

.analysis-steps {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.analysis-steps div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.1rem 0.8rem;
  align-items: start;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(244, 248, 255, 0.08);
}

.analysis-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(56, 213, 255, 0.12);
  color: var(--cyan);
  font-weight: 900;
}

.analysis-steps p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.decision-breakdown.standalone {
  padding: 1.4rem;
  background: rgba(6, 16, 29, 0.35);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(56, 213, 255, 0.1);
  color: var(--cyan);
  font-weight: 900;
}

.number {
  color: var(--cyan);
  font-weight: 900;
  font-size: 1.1rem;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.process-rail .step-card:nth-child(3) {
  border-color: rgba(32, 217, 138, 0.25);
  background: rgba(32, 217, 138, 0.09);
}

.decision-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.decision-card {
  min-height: 240px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 26px;
}

.decision-card h3 {
  margin-top: 1.1rem;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.decision-card p {
  color: var(--muted);
}

.decision-card.bet {
  border-color: rgba(32, 217, 138, 0.28);
  background: rgba(32, 217, 138, 0.1);
  box-shadow: 0 0 28px rgba(32, 217, 138, 0.1);
}

.decision-card.watch {
  border-color: rgba(247, 184, 75, 0.28);
  background: rgba(247, 184, 75, 0.1);
}

.decision-card.pass {
  background: rgba(255, 255, 255, 0.045);
}

.decision-strip-featured .decision-card {
  min-height: 270px;
}

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

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.feature-showcase .mybets-frame {
  position: sticky;
  top: 120px;
}

.beta-responsible-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.responsible-note,
.cta-band {
  border: 1px solid rgba(56, 213, 255, 0.25);
  border-radius: 28px;
  padding: clamp(1.6rem, 4vw, 2.1rem);
}

.responsible-note {
  border-color: rgba(247, 184, 75, 0.28);
  background: rgba(247, 184, 75, 0.08);
}

.responsible-note p:not(.eyebrow) {
  color: var(--muted);
}

.cta-band {
  background: linear-gradient(135deg, rgba(56, 213, 255, 0.13), rgba(32, 217, 138, 0.08));
  box-shadow: var(--glow);
}

.fine-print {
  color: var(--muted);
  font-size: 0.92rem;
}

.request-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.request-form-copy,
.beta-form,
.request-modal-card {
  border: 1px solid rgba(56, 213, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
}

.request-form-copy {
  padding: clamp(1.6rem, 4vw, 2.1rem);
}

.request-form-copy p:not(.eyebrow) {
  color: var(--muted);
}

.request-page-cta {
  align-items: stretch;
}

.request-modal-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(135deg, rgba(56, 213, 255, 0.1), rgba(32, 217, 138, 0.06));
  box-shadow: var(--glow);
}

.request-modal-card p {
  margin: 0.75rem 0 1.25rem;
  color: var(--muted);
}

.responsible-inline {
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(247, 184, 75, 0.24);
  border-radius: 18px;
  background: rgba(247, 184, 75, 0.08);
  color: #e2d3b6;
  font-weight: 750;
}

.beta-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 4vw, 1.6rem);
  box-shadow: var(--glow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.beta-form label {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.beta-form label span {
  color: #d9e7f6;
  font-size: 0.82rem;
  font-weight: 850;
}

.beta-form label em {
  color: var(--muted-2);
  font-style: normal;
  font-weight: 700;
}

.beta-form input,
.beta-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(244, 248, 255, 0.16);
  border-radius: 14px;
  background: rgba(6, 16, 29, 0.66);
  color: var(--text);
  font: inherit;
  padding: 0.78rem 0.9rem;
}

.beta-form input:focus,
.beta-form select:focus {
  outline: 2px solid rgba(56, 213, 255, 0.45);
  outline-offset: 2px;
  border-color: rgba(56, 213, 255, 0.42);
}

.beta-form button {
  width: fit-content;
}

.beta-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: #91f0c6;
}

.form-status[data-state="error"] {
  color: #ff9ba7;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(3, 10, 18, 0.78);
  backdrop-filter: blur(16px);
}

.modal-backdrop[hidden] {
  display: none;
}

.beta-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 1.25rem;
  width: min(940px, 100%);
  max-height: min(760px, calc(100vh - 2.5rem));
  overflow: auto;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(56, 213, 255, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 213, 255, 0.13), transparent 18rem),
    linear-gradient(145deg, rgba(14, 38, 64, 0.98), rgba(7, 17, 31, 0.99));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62), var(--glow);
}

.modal-copy {
  padding: clamp(1rem, 3vw, 1.35rem);
}

.modal-copy p:not(.eyebrow) {
  color: var(--muted);
}

.modal-copy h2 {
  font-size: clamp(1.85rem, 4vw, 2.45rem);
}

.modal-form {
  align-self: start;
  background: rgba(6, 16, 29, 0.58);
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 248, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: rgba(56, 213, 255, 0.42);
  background: rgba(56, 213, 255, 0.12);
}

.site-footer {
  border-top: 1px solid rgba(244, 248, 255, 0.1);
  background: var(--bg-3);
}

.footer-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  padding: 3rem 0 2rem;
}

.footer-inner > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links {
  display: grid;
  grid-template-columns: max-content max-content minmax(220px, 260px);
  gap: 3rem;
  justify-content: end;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.footer-links h2 {
  margin: 0 0 0.2rem;
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: #c9d5e4;
  text-decoration: none;
}

.footer-cta p,
.footer-note {
  margin: 0;
  color: #b6c4d6;
  font-size: 0.9rem;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.35rem;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(56, 213, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--cyan-soft);
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-icon-link:hover,
.social-icon-link:focus-visible {
  border-color: rgba(56, 213, 255, 0.48);
  background: rgba(56, 213, 255, 0.12);
  transform: translateY(-1px);
}

.social-svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-cta .button {
  width: fit-content;
  min-height: 40px;
  padding: 0.72rem 1rem;
  font-size: 0.82rem;
  color: #03111e;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(56, 213, 255, 0.16);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(244, 248, 255, 0.08);
  color: #9caec4;
  font-size: 0.82rem;
}

.prose {
  max-width: 900px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
}

.prose h2 + p {
  margin-top: 0.65rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose li + li {
  margin-top: 0.5rem;
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-header,
  .loop-layout,
  .product-story-grid,
  .feature-showcase,
  .beta-responsible-grid,
  .request-form-layout,
  .beta-modal,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .process-rail,
  .answer-grid,
  .trust-bar-inner,
  .dashboard-grid,
  .visual-lower-grid,
  .hero-shot-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-content: start;
  }

  .feature-showcase .mybets-frame {
    position: static;
  }

  .product-visual-large {
    justify-self: center;
    width: min(100%, 620px);
  }
}

@media (max-width: 900px) {
  .nav-shell {
    min-height: 84px;
  }

  .nav-links {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #07111f;
    box-shadow: var(--shadow);
  }

  .nav-links[data-open="true"] {
    display: flex;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .grid-2,
  .grid-3,
  .decision-strip {
    grid-template-columns: 1fr;
  }

  .product-visual-large,
  .page-mockup {
    min-height: 0;
  }

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

  .phone-shot {
    max-width: 360px;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1296px);
  }

  .brand img {
    width: 156px;
    max-height: 46px;
  }

  .hero {
    padding: 2.3rem 0 2.6rem;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 2.7rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .lead {
    font-size: 1rem;
  }

  .section-header {
    margin-bottom: 1.7rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .cta-row {
    align-items: stretch;
  }

  .mini-metrics,
  .stat-grid,
  .stat-grid-four,
  .process-rail,
  .answer-grid,
  .hero-proof,
  .trust-bar-inner,
  .dashboard-grid,
  .visual-lower-grid,
    .feature-tile-grid,
    .product-shot-grid,
    .hero-shot-grid,
    .footer-links {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.85rem 0;
  }

  .product-visual,
  .decision-card,
  .responsible-note,
  .cta-band,
  .request-form-copy,
  .beta-form,
  .request-modal-card,
  .prose {
    border-radius: 22px;
  }

  .modal-backdrop {
    align-items: start;
    overflow-y: auto;
    padding: max(0.7rem, env(safe-area-inset-top)) 0.7rem max(0.7rem, env(safe-area-inset-bottom));
  }

  .beta-modal {
    width: 100%;
    max-height: none;
    gap: 0.7rem;
    padding: 0.75rem;
    border-radius: 22px;
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.56), 0 0 30px rgba(56, 213, 255, 0.12);
  }

  .modal-copy {
    padding: 0.55rem 0.55rem 0;
  }

  .modal-copy h2 {
    max-width: 100%;
    margin: 0.65rem 0 0.5rem;
    font-size: clamp(1.85rem, 7.2vw, 2.2rem);
    line-height: 1.04;
  }

  .modal-copy p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .modal-copy .eyebrow {
    max-width: calc(100% - 3.6rem);
    padding: 0.52rem 0.75rem;
    font-size: 0.72rem;
  }

  .modal-copy .responsible-inline {
    margin-top: 0.7rem;
    padding: 0.75rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .modal-form {
    padding: 0.85rem;
    gap: 0.7rem;
    box-shadow: none;
  }

  .modal-close {
    top: 0.7rem;
    right: 0.7rem;
    width: 34px;
    height: 34px;
    background: rgba(12, 28, 48, 0.92);
    font-size: 1.25rem;
  }

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

  .beta-form label {
    gap: 0.28rem;
  }

  .beta-form label span {
    font-size: 0.78rem;
  }

  .beta-form input,
  .beta-form select {
    min-height: 42px;
    border-radius: 12px;
    padding: 0.64rem 0.78rem;
  }

  .beta-form button {
    width: 100%;
  }

  .visual-topbar,
  .visual-body {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .hero-dashboard-shot,
  .desktop-shot,
  .decision-shot,
  .embedded-shot {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .desktop-shot img,
  .decision-shot img,
  .embedded-shot img {
    height: 205px;
  }

  .screenshot-label {
    margin: 0.65rem 0.65rem 0;
  }

  .screenshot-frame figcaption {
    padding: 0.55rem 0.7rem 0.7rem;
  }

  .phone-shot {
    width: min(100%, 330px);
  }

  .decision-card {
    min-height: 0;
  }

  .trust-bar-inner div {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 248, 255, 0.08);
  }

  .trust-bar-inner div:last-child {
    border-bottom: 0;
  }

  .mock-match-row,
  .panel-head {
    align-items: start;
  }

  .mock-match-side {
    flex-direction: column;
    align-items: flex-end;
  }

  .betslip-panel {
    grid-template-columns: 1fr;
  }

  .receipt-card {
    width: min(100%, 220px);
  }

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