:root {
  --bg: #0d1117;
  --surface: #0f1113;
  --surface-deep: #010409;
  --surface-raised: #161b22;
  --surface-soft: #21262d;
  --line: #30363d;
  --line-strong: #484f58;
  --text: #f0f6fc;
  --muted: #8b949e;
  --accent: #1cad75;
  --accent-hover: #2ea043;
  --accent-soft: rgba(28, 173, 117, 0.1);
  --accent-line: rgba(28, 173, 117, 0.5);
  --accent-ink: #ffffff;
  --accent-copy: #0b3a22;
  --accent-button-hover: #163627;
  --map-edge-glow: rgba(28, 173, 117, 0.78);
  --map-depth-shadow: rgba(3, 77, 54, 0.92);
  --danger: #ffb5ad;
  --danger-surface: #351714;
  --danger-line: rgba(255, 181, 173, 0.5);
  --danger-glow: rgba(255, 92, 78, 0.58);
  --focus: #47d59d;
  --gold: #d8aa3e;
  --gold-line: rgba(216, 170, 62, 0.58);
  --shell: 1280px;
  --radius: 12px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  --section-shadow: rgba(0, 0, 0, 0.78);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 68px;
  user-select: text;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  border-radius: 6px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(15, 17, 19, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  flex: 0 0 auto;
  min-height: 44px;
  column-gap: 10px;
  row-gap: 1px;
  text-decoration: none;
  user-select: none;
}

.brand img {
  display: block;
}

.brand-logo {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 38px;
  height: auto;
}

.brand-wordmark {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  width: 158px;
  height: auto;
}

.brand-market {
  display: inline-flex;
  grid-column: 2;
  grid-row: 2;
  align-items: center;
  align-self: start;
  gap: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.brand-market-flag {
  display: block;
  width: 18px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
}

.site-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  margin-left: auto;
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.country-switcher {
  position: relative;
  flex: 0 0 auto;
}

.country-switcher__trigger {
  display: inline-flex;
  min-width: 58px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px 7px 4px 5px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.country-switcher__trigger:hover,
.country-switcher__trigger[aria-expanded="true"] {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  color: var(--text);
}

.country-switcher__trigger > i {
  font-size: 10px;
  transition: rotate 120ms ease;
}

.country-switcher__trigger[aria-expanded="true"] > i {
  rotate: 180deg;
}

.country-switcher__flag,
.country-switcher__option-flag {
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface-soft);
}

.country-switcher__flag {
  width: 32px;
  height: 32px;
}

.country-switcher__option-flag {
  width: 30px;
  height: 30px;
}

.country-switcher__flag img,
.country-switcher__option-flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 240px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.country-switcher__link {
  display: grid;
  min-height: 48px;
  grid-template-columns: 30px 1fr 16px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.country-switcher__link:hover,
.country-switcher__link:focus-visible {
  background: var(--surface-soft);
}

.country-switcher__link.is-current {
  color: var(--accent);
}

.country-switcher__link > i {
  color: var(--accent);
  font-size: 12px;
  text-align: center;
}

.site-nav form {
  margin: 0;
}

.header-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(28, 173, 117, 0.55);
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 120ms ease, border-color 120ms ease;
}

.header-outline {
  background: transparent;
}

.header-outline:hover {
  background: rgba(28, 173, 117, 0.12);
}

.header-primary {
  border-color: var(--accent);
  background: var(--accent);
}

.header-primary:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  cursor: pointer;
  font-weight: 780;
  line-height: 1.25;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(28, 173, 117, 0.35);
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 0 34px rgba(28, 173, 117, 0.45);
}

.hero-primary-cta {
  min-width: 176px;
  gap: 10px;
}

.button-small {
  min-height: 44px;
  padding: 8px 15px;
  font-size: 14px;
}

.button-full {
  width: 100%;
  margin-top: 8px;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--surface-soft);
  border-color: var(--accent);
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 12%, rgba(28, 173, 117, 0.22), transparent 32%),
    radial-gradient(circle at 18% 88%, rgba(51, 47, 120, 0.2), transparent 36%),
    var(--bg);
}

.hero--with-sportsbook-marquee {
  border-bottom: 0;
}

.hero--with-sportsbook-marquee .hero-grid {
  padding-bottom: 0;
}

.hero--with-sportsbook-marquee .hero-mockup {
  height: auto;
  margin-bottom: 0;
  overflow: visible;
}

.hero--with-sportsbook-marquee .hero-mockup-inner {
  height: auto;
  overflow: visible;
}

.hero--with-sportsbook-marquee .hero-mockup-image {
  width: 112%;
  max-width: none;
  transform: translateX(-5.35%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 92%);
  content: "";
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-block: 64px;
  text-align: center;
}

.hero-grid h1,
.auth-intro h1,
.account-shell h1,
.error-section h1 {
  width: 100%;
  max-width: 1040px;
  margin: 24px 0;
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-grid h1 {
  font-size: clamp(54px, 6.5vw, 84px);
}

.hero-grid h1 > span {
  display: block;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 750;
}

.hero-eyebrow {
  display: inline-flex;
  order: 1;
  min-height: 36px;
  align-items: center;
  gap: 9px;
  padding: 6px 14px;
  border: 1px solid rgba(28, 173, 117, 0.4);
  border-radius: 999px;
  background: rgba(28, 173, 117, 0.1);
  box-shadow: 0 0 20px rgba(28, 173, 117, 0.15);
}

.hero-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.lead {
  order: 3;
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.55;
}

.button-row {
  display: flex;
  order: 4;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 26px;
}

.status-line {
  display: flex;
  order: 5;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.status-line span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(28, 173, 117, 0.1);
}

.sportsbook-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 64px;
  padding-block: 20px;
  background: transparent;
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.25) 5%, #000 14%, #000 86%, rgba(0, 0, 0, 0.25) 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.25) 5%, #000 14%, #000 86%, rgba(0, 0, 0, 0.25) 95%, transparent 100%);
}

.sportsbook-marquee__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  text-align: center;
}

.sportsbook-marquee__heading h2 {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.sportsbook-marquee__heading h2 span {
  display: inline;
}

.sportsbook-marquee__caret {
  width: 20px;
  height: 12px;
  flex: 0 0 auto;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sportsbook-marquee__track {
  display: flex;
  width: max-content;
  animation: sportsbook-marquee-scroll 38s linear infinite;
  will-change: transform;
}

.sportsbook-marquee__group {
  display: flex;
  flex: none;
  align-items: center;
}

.sportsbook-marquee__item {
  display: flex;
  width: 190px;
  height: 72px;
  flex: 0 0 190px;
  align-items: center;
  gap: 12px;
  padding-inline: 22px;
}

.sportsbook-marquee__item img {
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sportsbook-marquee__item span {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

@keyframes sportsbook-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.offer-playbook {
  padding-block: 176px 72px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface-deep);
}

.offer-playbook__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 64px;
}

.offer-playbook__intro.offer-playbook__intro--single {
  grid-template-columns: minmax(0, 760px);
}

.offer-playbook__intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 5.3vw, 72px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.offer-playbook__tagline {
  margin: 24px 0 0;
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.offer-playbook__copy {
  max-width: 520px;
}

.offer-playbook__copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.offer-playbook__cta {
  min-width: 168px;
  gap: 12px;
  margin-top: 24px;
}

.offer-playbook__path {
  position: relative;
  height: 480px;
  margin-top: 8px;
}

.offer-playbook__track {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.offer-playbook__track-bed,
.offer-playbook__track-line {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.offer-playbook__track-bed {
  stroke: var(--accent-soft);
  stroke-linecap: round;
  stroke-width: 12;
}

.offer-playbook__track-line {
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-width: 2;
}

.offer-playbook__milestones {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-playbook__milestone {
  position: absolute;
  display: grid;
  width: 190px;
  min-height: 64px;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-rows: 22px auto;
  column-gap: 12px;
  transform: translate(-28px, -28px);
}

.offer-playbook__milestone--1 { top: 78%; left: 5%; }
.offer-playbook__milestone--2 { top: 61%; left: 26%; }
.offer-playbook__milestone--3 { top: 73%; left: 50%; }
.offer-playbook__milestone--4 { top: 52%; left: 66%; }
.offer-playbook__milestone--5 { top: 29%; left: 78%; }
.offer-playbook__milestone--6 { top: 8%; left: 85%; }

.offer-playbook__marker {
  display: grid;
  width: 56px;
  height: 56px;
  grid-row: 1 / span 2;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface-deep);
  color: var(--accent);
  font-size: 18px;
}

.offer-playbook__number {
  align-self: end;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.offer-playbook__label {
  align-self: start;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.offer-playbook__milestone--gold .offer-playbook__marker,
.offer-playbook__milestone--gold .offer-playbook__number {
  color: var(--gold);
}

.offer-playbook__milestone--gold .offer-playbook__marker {
  border-color: var(--gold-line);
}

@media (max-width: 980px) {
  .offer-playbook__intro {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 40px;
  }

  .offer-playbook__intro h2 {
    font-size: clamp(44px, 6.2vw, 58px);
  }

  .offer-playbook__tagline {
    font-size: 21px;
  }

  .offer-playbook__path {
    height: 430px;
  }

  .offer-playbook__milestone {
    width: 144px;
    grid-template-columns: 50px minmax(0, 1fr);
    column-gap: 10px;
    transform: translate(-25px, -25px);
  }

  .offer-playbook__marker {
    width: 50px;
    height: 50px;
  }

  .offer-playbook__label {
    font-size: 12px;
  }

}

@media (max-width: 760px) {
  .offer-playbook {
    padding-block: 120px 64px;
  }

  .offer-playbook__intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .offer-playbook__intro h2 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .offer-playbook__tagline {
    margin-top: 16px;
    font-size: 20px;
  }

  .offer-playbook__copy > p {
    font-size: 16px;
  }

  .offer-playbook__cta {
    width: 100%;
  }

  .offer-playbook__path {
    height: auto;
    margin-top: 32px;
  }

  .offer-playbook__track {
    display: none;
  }

  .offer-playbook__milestones {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
  }

  .offer-playbook__milestone {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    min-height: 92px;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: 20px auto;
    align-content: center;
    column-gap: 10px;
    border-top: 1px solid var(--line);
    transform: none;
  }

  .offer-playbook__marker {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .offer-playbook__label {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .offer-playbook__intro h2 {
    font-size: 40px;
  }

  .offer-playbook__milestones {
    column-gap: 12px;
  }
}

.arb-price-process {
  width: 100%;
  padding-block: 96px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.arb-price-process__intro {
  display: grid;
  justify-items: center;
  margin: 0 auto 40px;
  text-align: center;
}

.arb-price-process__intro h2 {
  max-width: 900px;
  margin: 0;
  color: var(--text);
  font-size: clamp(52px, 5.5vw, 76px);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.arb-price-process__intro h2 span {
  color: var(--accent);
}

.arb-price-process__intro p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.45;
}

.arb-price-process__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.arb-price-step {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.arb-price-step__title {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 16px;
  padding-left: clamp(6px, 2vw, 48px);
}

.arb-price-step__title > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--text);
  font-size: 21px;
  font-weight: 800;
}

.arb-price-step__title h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.arb-price-step__title > i {
  position: absolute;
  top: 50%;
  right: -23px;
  width: 84px;
  height: 1px;
  background: var(--muted);
}

.arb-price-step__title > i::after {
  position: absolute;
  top: -5px;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--muted);
  border-right: 2px solid var(--muted);
  content: "";
  transform: rotate(45deg);
}

.arb-price-step__card {
  display: grid;
  min-height: 514px;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 26px 24px 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(6, 13, 19, 0.88);
}

.arb-radar {
  position: relative;
  width: min(100%, 400px);
  min-height: 360px;
  justify-self: center;
}

.arb-radar__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.arb-radar__rings circle {
  fill: rgba(28, 173, 117, 0.02);
  stroke: rgba(28, 173, 117, 0.3);
  stroke-width: 1;
}

.arb-radar__rings .arb-radar__core {
  fill: var(--accent-soft);
  stroke: var(--accent);
  stroke-width: 2;
}

.arb-radar__spokes path {
  fill: none;
  stroke: rgba(28, 173, 117, 0.25);
  stroke-width: 1;
}

.arb-radar__connectors path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 3 5;
  stroke-linecap: round;
}

.arb-radar__bookmaker {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 104px;
  min-height: 76px;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #0c131a;
}

.arb-radar__bookmaker .arb-bookmaker-logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 7px;
}

.arb-radar__bookmaker strong {
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.arb-radar__bookmaker--top-left { top: 0; left: 0; }
.arb-radar__bookmaker--top-right { top: 0; right: 0; }
.arb-radar__bookmaker--middle-left { top: 116px; left: -10px; }
.arb-radar__bookmaker--middle-right { top: 116px; right: -10px; }
.arb-radar__bookmaker--bottom-left { bottom: 12px; left: 0; }
.arb-radar__bookmaker--bottom-right { right: 0; bottom: 12px; }

.arb-sport-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: -5px;
}

.arb-sport-list span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #091119;
  color: var(--text);
  font-size: 18px;
}

.arb-odds-table-wrap {
  align-self: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.arb-odds-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
}

.arb-odds-table th,
.arb-odds-table td {
  height: 49px;
  padding: 8px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.arb-odds-table tr:last-child th,
.arb-odds-table tr:last-child td { border-bottom: 0; }

.arb-odds-table th:last-child,
.arb-odds-table td:last-child { border-right: 0; }

.arb-odds-table thead th {
  height: 60px;
  background: #0a1118;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.18;
}

.arb-odds-table thead th:first-child,
.arb-odds-table tbody th { width: 32%; }

.arb-odds-table thead small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.arb-odds-table tbody th { background: rgba(7, 14, 20, 0.8); }

.arb-odds-table tbody th .arb-bookmaker-logo {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 6px;
}

.arb-odds-table tbody td {
  position: relative;
  background: rgba(8, 16, 22, 0.64);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.arb-odds-table tbody td.is-best {
  color: var(--text);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 2px var(--accent);
}

.arb-result-card {
  align-self: center;
  padding: 28px 22px 18px;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  background: rgba(8, 30, 22, 0.55);
}

.arb-result-card__status {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 10px 24px;
  border-bottom: 1px solid var(--line-strong);
}

.arb-result-card__status span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-copy);
  font-size: 20px;
}

.arb-result-card__status strong {
  color: var(--accent);
  font-size: clamp(19px, 1.65vw, 24px);
  font-weight: 800;
}

.arb-result-card__metrics {
  display: grid;
  padding: 28px 0 24px;
}

.arb-result-card__metrics > div {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.arb-result-card__metrics span,
.arb-result-card__stake > span { color: var(--muted); font-size: 13px; }

.arb-result-card__metrics strong {
  color: var(--accent);
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 760;
  line-height: 1;
}

.arb-result-card__stake {
  padding: 16px 16px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 16, 20, 0.75);
  text-align: center;
}

.arb-result-card__stake > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.arb-result-card__stake strong {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.arb-result-card__stake strong + strong { border-left: 1px solid var(--line); }
.arb-result-card__stake strong:nth-child(2) i { color: var(--muted); }

.arb-result-card__stake em {
  grid-column: 1 / -1;
  color: var(--accent);
  font-size: 30px;
  font-style: normal;
  font-weight: 760;
  line-height: 1;
}

@media (max-width: 1050px) {
  .arb-price-process { padding-block: 72px; }
  .arb-price-process__steps { grid-template-columns: minmax(0, 720px); justify-content: center; gap: 42px; }
  .arb-price-step__title { padding-left: 0; }
  .arb-price-step__title > i { top: auto; right: auto; bottom: -32px; left: 23px; width: 1px; height: 25px; }
  .arb-price-step__title > i::after { top: auto; right: -5px; bottom: 0; transform: rotate(135deg); }
  .arb-price-step__card { min-height: 500px; }
}

.hero-grid h1 {
  order: 2;
}

.hero-mockup {
  position: relative;
  order: 6;
  width: min(100%, 1152px);
  margin-top: 24px;
  margin-bottom: -72px;
  overflow: hidden;
}

.hero-mockup-inner {
  position: relative;
  z-index: 2;
  user-select: none;
}

.hero-mockup-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateY(-12%);
}

@media (min-width: 881px) {
  .hero-mockup {
    margin-bottom: -96px;
  }

  .hero-mockup-image {
    width: 125%;
    max-width: none;
    transform: translate(-10%, -15%);
  }
}

.market-panel {
  display: grid;
  width: min(100%, 980px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(15, 17, 19, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-heading,
.metric-row {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.panel-heading {
  background: var(--surface-raised);
  font-size: 14px;
  font-weight: 800;
}

.metric-row:nth-child(4) {
  border-right: 0;
}

.live-dot {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.metric-row span {
  color: var(--muted);
  font-size: 13px;
}

.metric-row strong {
  max-width: 100%;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.panel-note {
  grid-column: 1 / -1;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

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

.section-surface {
  background: var(--surface);
}

.product-suite {
  background: var(--surface);
}

.product-suite__heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.product-suite__heading h2 {
  margin: 0 0 20px;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.product-suite__heading h2 span {
  color: var(--accent);
}

.product-suite__heading p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
}

.product-suite__layout {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(0, 2fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 64px;
}

.product-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-tab {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
  text-align: left;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.product-tab > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
  font-size: 17px;
}

.product-tab > span > i {
  width: 24px;
  flex: 0 0 24px;
  color: var(--line-strong);
  text-align: center;
}

.product-tab:hover {
  border-color: var(--line);
  background: var(--surface-raised);
  color: var(--text);
}

.product-tab[aria-selected="true"] {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  color: var(--text);
}

.product-tab[aria-selected="true"] > span > i,
.product-tab[aria-selected="true"] .product-tab__chevron {
  color: var(--accent);
}

.product-tab__chevron {
  flex: 0 0 auto;
  color: var(--line-strong);
  font-size: 13px;
}

.product-panels {
  min-width: 0;
}

.product-panel {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 24px;
  align-items: stretch;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.product-panel[hidden] {
  display: none;
}

.product-panel__copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.product-panel__copy h3 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.product-panel__copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.product-panel__copy ul {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.product-panel__copy li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-weight: 650;
}

.product-panel__copy li > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid var(--accent-line);
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14px;
}

.product-panel__cta {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 32px;
}

.product-panel__cta-button {
  gap: 10px;
  min-width: 160px;
}

.product-panel__media {
  display: flex;
  min-width: 0;
  align-items: flex-end;
  align-self: stretch;
  justify-content: center;
  overflow: hidden;
}

.product-panel__media img {
  display: block;
  width: 112%;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.home-prediction-markets {
  padding-block: 80px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.home-prediction-markets__inner {
  display: grid;
  width: min(100%, 1160px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 64px;
}

.home-prediction-markets__heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.home-prediction-markets__heading p {
  max-width: 580px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.home-prediction-markets__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line-strong);
  list-style: none;
}

.home-prediction-markets__list li {
  display: flex;
  min-width: 0;
  min-height: 96px;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

.home-prediction-markets__list li + li {
  border-left: 1px solid var(--line);
}

.home-prediction-markets__list img {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 8px;
  object-fit: contain;
}

.home-prediction-markets__list strong {
  overflow-wrap: anywhere;
  font-size: 18px;
}

.state-coverage {
  --state-panel-height: 650px;
  --state-result-height: 540px;
  overflow: hidden;
  padding-block: 108px;
  background:
    radial-gradient(ellipse 62% 52% at 28% 62%, var(--accent-soft), transparent 72%),
    linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
  box-shadow:
    inset 0 32px 44px -34px var(--section-shadow),
    inset 0 -32px 44px -34px var(--section-shadow),
    inset 0 1px 0 var(--line),
    inset 0 -1px 0 var(--line),
    0 12px 24px -16px var(--section-shadow),
    0 -12px 24px -16px var(--section-shadow);
}

.state-coverage__heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.state-coverage__heading h2 {
  margin: 12px 0 20px;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.state-coverage__heading > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  text-wrap: pretty;
}

.state-coverage__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(350px, 0.7fr);
  gap: 48px;
  align-items: flex-start;
  min-height: var(--state-panel-height);
  margin-top: 52px;
}

.state-coverage__visual {
  min-width: 0;
  padding-block: 24px;
}

.state-coverage-map {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.state-coverage-map__depth {
  fill: var(--surface);
  pointer-events: none;
  filter:
    drop-shadow(14px 16px 5px var(--map-depth-shadow))
    drop-shadow(0 0 7px var(--map-edge-glow));
}

.state-coverage-map__state {
  fill: transparent;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  cursor: pointer;
  transition: fill 160ms ease, stroke 160ms ease;
}

.state-coverage-map__state:hover,
.state-coverage-map__state:focus-visible,
.state-coverage-map__state.is-active {
  fill: var(--accent);
  stroke: var(--text);
  stroke-width: 2;
  outline: none;
}

.state-coverage__panel {
  height: var(--state-panel-height);
  min-height: var(--state-panel-height);
  padding-left: 38px;
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.state-coverage__select-label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.state-coverage__select-wrap {
  position: relative;
}

.state-coverage__select-wrap select {
  width: 100%;
  min-height: 48px;
  appearance: none;
  padding: 0 44px 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface-raised);
  color: var(--text);
  font: inherit;
  font-weight: 700;
}

.state-coverage__select-wrap select:focus-visible {
  border-color: var(--accent);
  outline: 3px solid rgba(28, 173, 117, 0.2);
  outline-offset: 2px;
}

.state-coverage__select-wrap > i {
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--accent);
  pointer-events: none;
  transform: translateY(-50%);
}

.state-coverage__result {
  height: var(--state-result-height);
  min-height: var(--state-result-height);
  padding-top: 32px;
  padding-right: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.state-coverage__availability {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.state-coverage__availability.is-available {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  box-shadow: 0 0 24px -8px var(--map-edge-glow);
  color: var(--accent);
}

.state-coverage__availability.is-unavailable {
  border-color: var(--danger-line);
  background: var(--danger-surface);
  box-shadow: 0 0 24px -8px var(--danger-glow);
  color: var(--danger);
}

.state-coverage__availability-orb {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px 2px currentColor;
}

.state-coverage__result h3 {
  margin: 12px 0 14px;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.state-coverage__count {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.state-coverage__count strong {
  color: var(--accent);
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.state-coverage__sportsbooks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 16px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.state-coverage__sportsbooks li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 52px;
  padding: 9px 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-raised);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.state-coverage__sportsbooks li span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.state-coverage__sportsbook-logo {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  padding: 2px;
  border-radius: 8px;
  background: var(--accent-ink);
  object-fit: contain;
}

.state-coverage__footer {
  display: flex;
  max-width: 980px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.state-coverage__footer p {
  max-width: 700px;
  margin: 0;
}

.state-coverage__footer span {
  flex: 0 0 auto;
  margin-left: auto;
  font-weight: 750;
}

.state-coverage__footer > div {
  display: grid;
  gap: 12px;
}

.state-coverage__page-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.state-coverage__page-link:hover {
  color: var(--accent);
}

.coverage-page-hero {
  padding-block: 88px 96px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.coverage-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 88px);
}

.coverage-page-hero__copy {
  max-width: 740px;
}

.coverage-page-hero__eyebrow,
.coverage-section-heading__eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coverage-page-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 5.7vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.coverage-page-hero h1 span {
  display: block;
  color: var(--accent);
}

.coverage-page-hero__copy > p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.coverage-page-hero .button-row {
  margin-top: 32px;
}

.coverage-page-hero .button,
.coverage-final-cta .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.coverage-page-hero__proof {
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--bg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.coverage-page-hero__stat {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.coverage-page-hero__stat strong {
  color: var(--text);
  font-size: clamp(58px, 6vw, 76px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.coverage-page-hero__stat span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.coverage-page-hero__proof ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.coverage-page-hero__proof li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.coverage-page-hero__proof li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.coverage-page-hero__proof li img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 7px;
  background: var(--accent-ink);
  object-fit: contain;
}

.coverage-page-hero__proof > p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.coverage-page-hero__proof > p > span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--map-edge-glow);
}

.coverage-content-shell {
  width: min(calc(100% - 40px), 1120px);
}

.coverage-operators,
.coverage-prediction-markets,
.coverage-directory {
  padding-block: 96px;
}

.coverage-operators {
  background: var(--bg);
}

.coverage-directory {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.coverage-prediction-markets {
  border-top: 1px solid var(--line);
  background: #070a0c;
}

.coverage-prediction-markets__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(48px, 8vw, 96px);
}

.coverage-prediction-markets .coverage-section-heading {
  margin-bottom: 0;
}

.coverage-section-heading__eyebrow {
  margin-bottom: 14px;
}

.coverage-prediction-markets__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.coverage-prediction-markets__list > li {
  display: grid;
  grid-template-columns: 144px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 132px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.coverage-prediction-markets__logo {
  display: flex;
  height: 56px;
  align-items: center;
}

.coverage-prediction-markets__logo img {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
}

.coverage-prediction-markets__list h3 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.coverage-prediction-markets__list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.coverage-prediction-markets__list > li > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.coverage-section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.coverage-section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.coverage-operator-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.coverage-operator-list > li {
  display: grid;
  grid-template-columns: 44px 184px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 88px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.coverage-operator-list > li > img,
.coverage-state-list__body li img {
  display: block;
  border-radius: 8px;
  background: var(--accent-ink);
  object-fit: contain;
}

.coverage-operator-list__name {
  display: grid;
  gap: 2px;
}

.coverage-operator-list__name strong {
  font-size: 16px;
}

.coverage-operator-list__name span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
}

.coverage-operator-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.coverage-state-list details {
  border-bottom: 1px solid var(--line);
}

.coverage-state-list summary {
  display: grid;
  grid-template-columns: 52px minmax(160px, 1fr) 220px 20px;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  cursor: pointer;
  list-style: none;
}

.coverage-state-list summary::-webkit-details-marker {
  display: none;
}

.coverage-state-list summary:hover strong,
.coverage-state-list summary:focus-visible strong {
  color: var(--accent);
}

.coverage-state-list summary > i {
  color: var(--muted);
  transition: transform 160ms ease;
}

.coverage-state-list details[open] summary > i {
  transform: rotate(180deg);
}

.coverage-state-list__code {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-weight: 750;
}

.coverage-state-list__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.coverage-state-list__status > span {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: currentColor;
}

.coverage-state-list__status.is-available {
  color: var(--accent);
}

.coverage-state-list__status.is-available > span {
  box-shadow: 0 0 12px var(--map-edge-glow);
}

.coverage-state-list__status.is-unavailable {
  color: var(--danger);
}

.coverage-state-list__status.is-unavailable > span {
  box-shadow: 0 0 12px var(--danger-glow);
}

.coverage-state-list__body {
  padding: 0 0 28px 68px;
}

.coverage-state-list__body > p {
  margin: 0;
  color: var(--muted);
}

.coverage-state-list__body ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.coverage-state-list__body li {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-raised);
  font-size: 14px;
  font-weight: 700;
}

.coverage-final-cta {
  padding-block: 80px;
  background: var(--bg);
}

.coverage-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.coverage-final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.coverage-final-cta p {
  margin: 14px 0 0;
  color: var(--muted);
}

@media (max-width: 880px) {
  .coverage-page-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coverage-page-hero__proof {
    width: min(100%, 680px);
  }

  .coverage-prediction-markets__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coverage-operator-list > li {
    grid-template-columns: 44px 160px minmax(0, 1fr);
  }

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

@media (max-width: 640px) {
  .coverage-page-hero,
  .coverage-operators,
  .coverage-prediction-markets,
  .coverage-directory,
  .coverage-final-cta {
    padding-block: 64px;
  }

  .coverage-page-hero h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .coverage-page-hero__copy > p {
    font-size: 17px;
  }

  .coverage-page-hero__proof {
    padding: 20px;
  }

  .coverage-page-hero__proof li {
    padding-inline: 6px;
    font-size: 12px;
  }

  .coverage-prediction-markets__list > li {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 28px;
  }

  .coverage-prediction-markets__logo {
    height: 44px;
  }

  .coverage-operator-list > li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .coverage-operator-list p {
    grid-column: 1 / -1;
  }

  .coverage-state-list summary {
    grid-template-columns: 40px minmax(0, 1fr) 20px;
    gap: 12px;
    padding-block: 14px;
  }

  .coverage-state-list__status {
    grid-column: 2;
  }

  .coverage-state-list summary > i {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .coverage-state-list__body {
    padding: 0 0 24px;
  }

  .coverage-state-list__body ul {
    grid-template-columns: 1fr;
  }

  .coverage-final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .coverage-final-cta .button {
    width: 100%;
  }
}

.profit-proof {
  padding-block: 96px;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.profit-proof__heading,
.profit-proof__card {
  width: min(100%, 1160px);
  margin-inline: auto;
}

.profit-proof__heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 64px);
  margin-bottom: 32px;
}

.profit-proof__heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.profit-proof__heading-copy p {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.profit-proof__total {
  min-width: 210px;
  padding-left: 32px;
  border-left: 1px solid var(--line-strong);
}

.profit-proof__total strong,
.profit-proof__total span {
  display: block;
}

.profit-proof__total strong {
  color: var(--accent);
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.profit-proof__total span {
  margin-top: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.profit-proof__card {
  min-width: 0;
  overflow: hidden;
  padding: 24px 28px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.profit-proof__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.profit-proof__live,
.profit-proof__range {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--accent-line);
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.profit-proof__live {
  gap: 8px;
}

.profit-proof__live > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.profit-proof__trend {
  margin-right: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.profit-proof__range {
  border-color: var(--line-strong);
  background: var(--surface-raised);
  color: var(--muted);
}

.profit-proof__chart {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 8px;
  aspect-ratio: 2 / 1;
}

.profit-proof__grid line {
  stroke: var(--line);
  stroke-width: 1;
}

.profit-proof__axis text {
  fill: var(--muted);
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
}

.profit-proof__axis text:nth-child(2),
.profit-proof__axis text:nth-child(n + 3) {
  text-anchor: end;
}

.profit-proof__line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profit-proof__area {
  fill: var(--accent);
  opacity: 0.08;
}

.profit-proof__end-dot {
  fill: var(--accent);
  stroke: var(--bg);
  stroke-width: 5;
}

.pricing-section {
  padding-block: 96px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.pricing-section__heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 64px;
  width: min(100%, 1160px);
  margin-inline: auto;
}

.pricing-section__heading h1,
.pricing-section__heading h2,
.faq-section__heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(40px, 4.8vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.pricing-section__heading p,
.faq-section__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1160px);
  margin: 48px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.pricing-plan {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 32px;
  background: var(--surface);
}

.pricing-plan + .pricing-plan {
  border-left: 1px solid var(--line);
}

.pricing-plan--featured {
  background: var(--surface-raised);
  box-shadow: inset 0 3px 0 var(--accent);
}

.pricing-plan__top {
  display: flex;
  min-height: 44px;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.pricing-plan__top h3,
.pricing-plan__top p {
  margin: 0;
}

.pricing-plan__top h3 {
  color: var(--text);
  font-size: 23px;
  line-height: 1.2;
}

.pricing-plan__top p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.pricing-plan--featured .pricing-plan__top p {
  color: var(--accent);
}

.pricing-plan__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 28px;
}

.pricing-plan__price strong {
  color: var(--text);
  font-size: clamp(44px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.pricing-plan__price span,
.pricing-plan__billing span,
.pricing-plan__trial {
  color: var(--muted);
}

.pricing-plan__price span {
  font-size: 14px;
  font-weight: 700;
}

.pricing-plan__billing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.pricing-plan__billing strong {
  color: var(--text);
}

.pricing-plan__features {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-plan__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
}

.pricing-plan__features i {
  width: 18px;
  color: var(--accent);
  font-size: 14px;
  text-align: center;
}

.pricing-plan__trial {
  min-height: 42px;
  margin: 28px 0 16px;
  font-size: 13px;
  line-height: 1.55;
}

.pricing-plan .button {
  margin-top: auto;
}

.faq-section {
  padding-block: 96px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.faq-section__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 80px;
  width: min(100%, 1160px);
}

.faq-section__heading p {
  max-width: 420px;
  margin-top: 20px;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list__toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 24px;
  font-weight: 500;
}

.faq-list__toggle::before {
  content: "+";
}

.faq-list details[open] .faq-list__toggle::before {
  content: "−";
}

.faq-list details > p {
  max-width: 720px;
  margin: -2px 68px 24px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 60px;
}

.split-intro h2,
.section-heading h2,
.responsible-card h2 {
  max-width: 820px;
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.split-intro p:last-child,
.section-heading > p:last-child,
.responsible-card > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature-card {
  min-height: 290px;
  padding: 30px;
  background: var(--surface-raised);
}

.feature-index {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.feature-card h3 {
  margin: 64px 0 12px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 9vw, 130px);
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.step-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 800;
}

.step-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.responsible-section {
  border-bottom: 0;
}

.responsible-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 48px;
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.responsible-card .eyebrow {
  margin-bottom: 14px;
}

.responsible-card h2 {
  margin-bottom: 0;
}

.final-cta-section {
  padding-block: 96px;
  background: var(--bg);
  color: var(--text);
  border-top: 1px solid var(--line);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.final-cta-grid h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.final-cta-grid > div > p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.final-cta-action {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.final-cta-action .button {
  min-width: 230px;
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.final-cta-action .button:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

.contact-section {
  padding-block: 104px;
  border-top: 1px solid var(--line);
  background: #010409;
}

.contact-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(56px, 8vw, 112px);
}

.contact-section__intro {
  padding-top: 12px;
}

.contact-section__intro .eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
}

.contact-section__intro h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.contact-section__intro > p {
  max-width: 440px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-section__assurance {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.contact-section__assurance i {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form__field label {
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  outline: 0;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.contact-form__field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form__field input:hover,
.contact-form__field textarea:hover {
  border-color: #5b636e;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.contact-form__field [aria-invalid="true"] {
  border-color: var(--danger);
}

.contact-form__error {
  min-height: 0;
  color: var(--danger);
  font-size: 12px;
}

.contact-form__error:empty {
  display: none;
}

.contact-form__submit {
  justify-self: start;
  min-width: 190px;
  gap: 12px;
}

.contact-form__submit:disabled {
  opacity: 0.62;
  cursor: wait;
}

.contact-form__status {
  min-height: 24px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-form__status.is-success {
  color: var(--accent);
}

.contact-form__status.is-error {
  color: var(--danger);
}

.contact-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding-block: 64px;
  background: #010409;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer-australia {
  display: grid;
  grid-template-columns: minmax(0, 390px) minmax(320px, auto);
  justify-content: space-between;
  align-items: start;
  gap: 64px;
}

.footer-brand-column {
  max-width: 390px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #ffffff;
  text-decoration: none;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  filter: grayscale(1);
  opacity: 0.72;
}

.footer-brand span {
  font-size: 20px;
  font-weight: 800;
}

.footer-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, auto));
  justify-content: end;
  gap: 32px 48px;
}

.footer-link-group {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 10px;
  min-width: 140px;
}

.footer-link-group h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.footer-link-group a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 120ms ease;
}

.footer-link-group a:hover,
.footer-link-group a[aria-current="page"] {
  color: var(--text);
}

.footer-coverage-column {
  min-width: 210px;
}

.footer-disclaimer {
  margin: 0 0 24px;
  color: var(--muted);
}

.footer-disclaimer a {
  color: var(--brand);
  font-weight: 650;
  text-decoration: none;
  transition: color 120ms ease;
}

.footer-disclaimer a:hover {
  color: #47d59d;
  text-decoration: underline;
}

.footer-copyright {
  margin: 0;
  color: var(--muted);
}

.legal-page {
  padding-block: 80px 104px;
  background: var(--bg);
}

.legal-shell {
  max-width: 920px;
}

.legal-header {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.legal-header h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.legal-header p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.legal-header p + p {
  margin-top: 2px;
}

.legal-introduction {
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}

.legal-introduction p,
.legal-sections p,
.legal-sections li,
.legal-acceptance p {
  color: #c9d1d9;
  font-size: 16px;
  line-height: 1.75;
}

.legal-introduction p,
.legal-sections p,
.legal-acceptance p {
  margin: 0;
}

.legal-introduction p + p,
.legal-sections p + p,
.legal-acceptance p + p {
  margin-top: 14px;
}

.legal-contents {
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}

.legal-contents h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.legal-contents ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 36px;
  margin: 0;
  padding-left: 22px;
}

.legal-contents li {
  padding-left: 4px;
  color: var(--muted);
  font-size: 14px;
}

.legal-page a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.legal-sections > section {
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 92px;
}

.legal-sections h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.legal-sections ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 24px;
}

.legal-acceptance {
  padding-top: 34px;
}

.legal-acceptance strong,
.legal-introduction strong {
  color: var(--text);
}

.notice-stack {
  position: relative;
  z-index: 10;
  padding-top: 18px;
}

.notice {
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface-raised);
}

.notice-error {
  border-color: #7c352e;
  background: var(--danger-surface);
  color: var(--danger);
}

.auth-section,
.account-section,
.error-section {
  min-height: calc(100vh - 72px);
  padding-block: 90px 110px;
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  align-items: start;
  gap: clamp(54px, 9vw, 130px);
}

.auth-intro {
  position: sticky;
  top: 120px;
  padding-top: 34px;
}

.auth-intro h1,
.account-shell h1,
.error-section h1 {
  font-size: clamp(40px, 5vw, 66px);
}

.auth-intro > p:last-of-type,
.account-shell .section-heading > p,
.error-section .narrow-shell > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.shared-account-callout {
  display: grid;
  gap: 4px;
  max-width: 580px;
  margin-top: 34px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: var(--surface-raised);
}

.shared-account-callout span {
  color: var(--muted);
  font-size: 14px;
}

.auth-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label {
  font-size: 14px;
  font-weight: 720;
}

.field input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #08140e;
  color: var(--text);
}

.field input:hover {
  border-color: #57816b;
}

.field input:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(21, 212, 122, 0.2);
  outline-offset: 1px;
}

.field-help {
  color: var(--muted);
  font-size: 12px;
}

.check-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  margin: 14px 0 20px;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
}

.check-row input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.form-switch {
  margin: 24px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.form-switch a {
  color: var(--accent);
  font-weight: 750;
}

.account-shell {
  max-width: 820px;
}

.account-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 48px 0 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.account-details div {
  padding: 22px;
}

.account-details div + div {
  border-left: 1px solid var(--line);
}

.account-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-details dd {
  margin: 7px 0 0;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.account-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-raised);
}

.account-note p {
  margin: 0;
  color: var(--muted);
}

.status-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 900;
}

.narrow-shell {
  max-width: 760px;
}

.error-section .button {
  margin-top: 30px;
}

@media (max-width: 880px) {
  .market-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-heading,
  .metric-row {
    border-bottom: 1px solid var(--line);
  }

  .market-panel > :nth-child(even):not(.panel-note) {
    border-right: 0;
  }

  .hero-grid,
  .auth-grid,
  .process-grid,
  .responsible-card,
  .final-cta-grid,
  .contact-section__layout {
    grid-template-columns: 1fr;
  }

  .contact-section__layout {
    gap: 40px;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 78px 56px;
  }

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

  .feature-card {
    min-height: 230px;
  }

  .feature-card h3 {
    margin-top: 40px;
  }

  .product-suite__layout {
    grid-template-columns: 1fr;
  }

  .home-prediction-markets__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .state-coverage__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .state-coverage__panel {
    width: min(100%, 560px);
    margin-inline: auto;
    padding: 32px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .product-panel {
    min-height: 520px;
  }

  .pricing-section__heading,
  .faq-section__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pricing-plan {
    padding: 24px;
  }

  .pricing-plan__price {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .faq-section__heading p {
    margin-top: 16px;
  }

  .auth-intro {
    position: static;
    padding-top: 0;
  }

  .final-cta-action {
    justify-items: start;
  }

  .final-cta-grid {
    padding: 40px;
  }

}

@media (max-width: 640px) {
  .legal-page {
    padding-block: 56px 72px;
  }

  .legal-header h1 {
    font-size: 42px;
  }

  .legal-contents ol {
    grid-template-columns: 1fr;
  }

  .legal-sections > section {
    padding-block: 28px;
  }

  .legal-sections h2 {
    font-size: 22px;
  }

  .pricing-section,
  .faq-section,
  .contact-section {
    padding-block: 56px;
  }

  .contact-section__intro h2 {
    font-size: 42px;
  }

  .contact-form {
    gap: 20px;
    padding: 26px 20px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form__submit {
    width: 100%;
  }

.pricing-section__heading h1,
.pricing-section__heading h2,
.faq-section__heading h2 {
    font-size: 40px;
  }

  .pricing-section__heading p,
  .faq-section__heading p {
    font-size: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .pricing-plan + .pricing-plan {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pricing-plan__price {
    align-items: baseline;
    flex-direction: row;
    gap: 10px;
  }

  .pricing-plan__trial {
    min-height: 0;
  }

  .faq-list summary {
    min-height: 68px;
    gap: 16px;
    font-size: 17px;
  }

  .faq-list details > p {
    margin-right: 52px;
  }

  .arb-price-process {
    padding-block: 56px 60px;
  }

  .arb-price-process__intro {
    margin-bottom: 32px;
  }

  .arb-price-process__intro h2 {
    font-size: clamp(38px, 11vw, 48px);
    letter-spacing: -0.055em;
  }

  .arb-price-process__intro p {
    max-width: 340px;
    margin-top: 16px;
    font-size: 15px;
  }

  .arb-price-step__title {
    gap: 12px;
  }

  .arb-price-step__title > span {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .arb-price-step__title h3 {
    font-size: 20px;
  }

  .arb-price-step__title > i {
    left: 20px;
  }

  .arb-price-step__card {
    min-height: 0;
    padding: 18px 14px 24px;
  }

  .arb-radar {
    min-height: 300px;
  }

  .arb-radar__bookmaker {
    width: 88px;
    min-height: 62px;
    gap: 4px;
    padding: 6px;
  }

  .arb-radar__bookmaker .arb-bookmaker-logo {
    width: 34px;
    height: 34px;
  }

  .arb-radar__bookmaker strong {
    font-size: 14px;
  }

  .arb-radar__bookmaker--middle-left,
  .arb-radar__bookmaker--middle-right {
    top: 100px;
  }

  .arb-sport-list {
    gap: 7px;
  }

  .arb-sport-list span {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .arb-odds-table th,
  .arb-odds-table td {
    height: 46px;
    padding: 7px 8px;
  }

  .arb-odds-table thead th {
    font-size: 12px;
  }

  .arb-odds-table tbody th .arb-bookmaker-logo {
    width: 30px;
    height: 30px;
  }

  .arb-odds-table tbody td {
    font-size: 15px;
  }

  .arb-result-card {
    padding: 22px 14px 14px;
  }

  .arb-result-card__status {
    gap: 10px;
    padding: 0 4px 18px;
  }

  .arb-result-card__status span {
    width: 40px;
    height: 40px;
  }

  .arb-result-card__metrics {
    padding: 22px 0 20px;
  }

  .arb-result-card__stake {
    padding: 14px 8px 12px;
  }

  .arb-result-card__stake strong {
    font-size: 13px;
  }

  .arb-result-card__stake em {
    font-size: 26px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 64px;
    gap: 8px;
  }

  body {
    padding-top: 64px;
  }

  .brand {
    column-gap: 8px;
    row-gap: 1px;
  }

  .brand-logo {
    width: 34px;
  }

  .brand-wordmark {
    width: 118px;
  }

  .brand-market {
    gap: 4px;
    font-size: 10px;
  }

  .brand-market-flag {
    width: 16px;
    height: 11px;
  }

  .site-nav {
    flex: 0 0 auto;
    margin-left: 0;
  }

  .nav-actions {
    gap: 6px;
  }

  .country-switcher__trigger {
    min-width: 54px;
  }

  .country-switcher__menu {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    width: auto;
  }

  .header-action {
    padding-inline: 10px;
    font-size: 12px;
  }

  .header-login {
    width: 44px;
    padding-inline: 0;
  }

  .header-login .action-label {
    display: none;
  }

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

  .panel-heading,
  .metric-row {
    border-right: 0;
  }

  .panel-note {
    border-top: 0;
  }

  .hero-grid {
    padding-block: 60px 0;
  }

  .hero-grid h1,
  .auth-intro h1,
  .account-shell h1,
  .error-section h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .hero-grid h1 {
    font-size: clamp(40px, 14vw, 60px);
  }

  .hero-grid .lead {
    order: 4;
  }

  .hero-grid .button-row {
    order: 5;
  }

  .sportsbook-marquee {
    margin-top: 40px;
    padding-block: 16px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.25) 6%, #000 17%, #000 83%, rgba(0, 0, 0, 0.25) 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.25) 6%, #000 17%, #000 83%, rgba(0, 0, 0, 0.25) 94%, transparent 100%);
  }

  .sportsbook-marquee__heading {
    gap: 8px;
    margin-bottom: 16px;
  }

  .sportsbook-marquee__caret {
    width: 18px;
    height: 11px;
  }

  .sportsbook-marquee__track {
    animation-duration: 32s;
  }

  .sportsbook-marquee__item {
    width: 164px;
    height: 64px;
    flex-basis: 164px;
    gap: 10px;
    padding-inline: 16px;
  }

  .sportsbook-marquee__item img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .sportsbook-marquee__item span {
    font-size: 13px;
  }

  .hero-grid .status-line {
    order: 6;
    margin-bottom: 48px;
  }

  .hero-mockup {
    order: 3;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    height: clamp(240px, 76vw, 296px);
    margin-top: -18px;
    margin-bottom: 4px;
    overflow: hidden;
  }

  .hero-mockup-inner {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
  }

  .hero-mockup-image {
    width: 100%;
    max-width: 100%;
    transform: translateY(-10%);
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .button-row .button,
  .button-row .text-link {
    justify-content: center;
  }

  .section,
  .auth-section,
  .account-section,
  .error-section {
    padding-block: 72px;
  }

  .split-intro,
  .field-grid,
  .account-details {
    grid-template-columns: 1fr;
  }

  .footer-link-group a {
    min-height: 44px;
  }

  .footer-australia {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
    gap: 32px 24px;
  }

  .footer-link-group,
  .footer-coverage-column {
    min-width: 0;
  }

  .split-intro {
    gap: 24px;
  }

  .product-suite__heading {
    text-align: left;
  }

  .product-suite__heading p {
    margin-left: 0;
    font-size: 17px;
  }

  .home-prediction-markets {
    padding-block: 56px;
  }

  .home-prediction-markets__heading h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .home-prediction-markets__heading p {
    font-size: 16px;
  }

  .home-prediction-markets__list {
    grid-template-columns: 1fr;
  }

  .home-prediction-markets__list li {
    min-height: 80px;
    padding: 16px 0;
  }

  .home-prediction-markets__list li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .state-coverage {
    padding-block: 72px;
  }

  .state-coverage__heading {
    text-align: left;
  }

  .state-coverage__heading h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .state-coverage__heading > p:last-child {
    margin-left: 0;
    font-size: 16px;
  }

  .state-coverage__layout {
    margin-top: 32px;
  }

  .state-coverage__visual {
    margin-inline: -12px;
    padding-block: 8px;
  }

  .state-coverage__panel {
    padding-top: 26px;
  }

  .state-coverage__result {
    padding-top: 26px;
  }

  .state-coverage__count strong {
    font-size: 50px;
  }

  .state-coverage__footer {
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
  }

  .profit-proof {
    padding-block: 56px;
  }

  .profit-proof__heading {
    display: block;
    margin-bottom: 24px;
  }

  .profit-proof__heading h2 {
    font-size: 40px;
  }

  .profit-proof__heading-copy p {
    margin-top: 14px;
    font-size: 16px;
  }

  .profit-proof__total {
    min-width: 0;
    margin-top: 24px;
    padding: 20px 0 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .profit-proof__total strong {
    font-size: 52px;
  }

  .profit-proof__card {
    padding: 16px;
  }

  .profit-proof__meta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .profit-proof__trend {
    order: 3;
    flex-basis: 100%;
    padding-top: 4px;
  }

  .profit-proof__live,
  .profit-proof__range,
  .profit-proof__trend {
    font-size: 11px;
  }

  .profit-proof__chart {
    aspect-ratio: 10 / 6;
  }

  .product-suite__layout {
    gap: 24px;
    margin-top: 40px;
  }

  .product-tabs {
    gap: 8px;
  }

  .product-tab {
    min-height: 64px;
    padding: 12px 14px;
  }

  .product-tab > span {
    gap: 10px;
    font-size: 15px;
  }

  .product-tab__chevron {
    display: none;
  }

  .product-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px 0;
  }

  .product-panel__copy > p {
    font-size: 16px;
  }

  .product-panel__copy ul {
    gap: 12px;
    margin-top: 24px;
  }

  .product-panel__media img {
    width: min(112%, 460px);
  }

  .responsible-card {
    gap: 24px;
    padding: 28px 24px;
  }

  .final-cta-grid {
    padding: 30px 24px;
  }

  .auth-card {
    padding: 24px 18px;
  }

  .account-details div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .nav-actions .header-action {
    width: 44px;
    padding-inline: 0;
  }

  .nav-actions .action-label {
    display: none;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 32px;
  }

  .brand-wordmark {
    width: 104px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .sportsbook-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .sportsbook-marquee__track {
    animation: none;
    transform: none;
  }

  .sportsbook-marquee__group[aria-hidden="true"] {
    display: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.tool-layout {
  display: grid;
  min-height: calc(100vh - 68px);
  grid-template-columns: 248px minmax(0, 1fr);
  background: var(--bg);
}

.tool-rail {
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  padding: 24px 16px;
  border-right: 1px solid var(--line);
  background: var(--surface);
}

.tool-rail__home {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.tool-rail__links {
  display: grid;
  gap: 4px;
  margin-top: 16px;
}

.tool-rail__link {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.tool-rail__link i {
  width: 18px;
  color: inherit;
  text-align: center;
}

.tool-rail__link:hover,
.tool-rail__link.is-active {
  border-color: var(--line);
  background: var(--surface-raised);
  color: var(--text);
}

.tool-rail__link.is-active {
  border-left-color: var(--accent);
  color: var(--accent);
}

.tool-workspace {
  min-width: 0;
  padding: 32px clamp(24px, 4vw, 56px) 64px;
}

.tool-workspace__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.tool-workspace__title {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 16px;
}

.tool-workspace__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--accent-line);
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 20px;
}

.tool-workspace__title h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.tool-workspace__title p {
  max-width: 760px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.membership-state {
  display: inline-flex;
  min-height: 32px;
  flex: 0 0 auto;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.membership-state.is-member {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent);
}

.tool-access-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--accent-line);
  border-radius: 8px;
  background: var(--accent-soft);
}

.tool-access-note > i {
  color: var(--accent);
  font-size: 20px;
}

.tool-access-note strong {
  display: block;
  color: var(--text);
  font-size: 14px;
}

.tool-access-note p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.tool-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.tool-filters label {
  display: grid;
  min-width: 190px;
  gap: 6px;
}

.tool-filters label > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.tool-filters select,
.tracker-result-select {
  min-height: 44px;
  padding: 8px 38px 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--surface-raised);
  color: var(--text);
  font: inherit;
  font-size: 14px;
}

.tool-refresh {
  gap: 8px;
  margin-left: auto;
}

.tool-feed-status {
  min-height: 24px;
  margin: 20px 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.opportunity-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.opportunity-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  text-align: left;
}

.opportunity-table th,
.opportunity-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.opportunity-table thead th {
  background: var(--surface-raised);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.opportunity-table tbody tr:last-child td {
  border-bottom: 0;
}

.opportunity-table tbody tr:hover {
  background: var(--surface-raised);
}

.opportunity-event,
.opportunity-table td > strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.opportunity-meta {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.opportunity-edge {
  color: var(--accent) !important;
  white-space: nowrap;
}

.opportunity-prices {
  display: grid;
  min-width: 250px;
  gap: 8px;
}

.opportunity-price {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
}

.opportunity-price__logo {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  object-fit: cover;
}

.opportunity-price__copy strong,
.opportunity-price__copy span {
  display: block;
}

.opportunity-price__copy strong {
  color: var(--text);
  font-size: 12px;
}

.opportunity-price__copy span {
  color: var(--muted);
  font-size: 11px;
}

.opportunity-price__copy .opportunity-price__stake {
  color: var(--accent);
}

.opportunity-price__link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--muted);
  text-decoration: none;
}

.opportunity-price__link:hover {
  color: var(--accent);
}

.opportunity-track {
  min-width: 104px;
  white-space: nowrap;
}

.opportunity-track:disabled {
  border-color: var(--line-strong);
  background: var(--surface-soft);
  color: var(--muted);
  box-shadow: none;
  cursor: not-allowed;
}

.opportunity-track.is-tracked {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent);
}

.tool-empty {
  padding: 64px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-align: center;
}

.tool-empty > i {
  color: var(--accent);
  font-size: 28px;
}

.tool-empty h2 {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 22px;
}

.tool-empty p {
  max-width: 560px;
  margin: 10px auto 22px;
  color: var(--muted);
  font-size: 14px;
}

.tracker-tabs {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  margin-top: 28px;
  border-bottom: 1px solid var(--line);
}

.tracker-tabs a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.tracker-tabs a:hover,
.tracker-tabs a.is-active {
  border-bottom-color: var(--accent);
  color: var(--text);
}

.tracker-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.tracker-summary > div {
  padding: 20px;
}

.tracker-summary > div + div {
  border-left: 1px solid var(--line);
}

.tracker-summary span,
.tracker-summary strong {
  display: block;
}

.tracker-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.tracker-summary strong {
  margin-top: 6px;
  color: var(--text);
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.035em;
}

.tracker-summary strong.is-positive {
  color: var(--accent);
}

.tracker-summary strong.is-negative {
  color: var(--danger);
}

.tracker-table {
  min-width: 920px;
}

.tracker-strategy {
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
}

.tracker-result-select {
  min-width: 150px;
}

.tracker-delete {
  min-height: 44px;
  padding: 8px 10px;
  border: 0;
  background: transparent;
  color: var(--danger);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.tracker-delete:hover {
  text-decoration: underline;
}

.account-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 20px;
  margin-top: 28px;
}

.account-panel,
.account-software {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.account-panel h2,
.account-software h2 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
}

.account-profile-list {
  margin: 20px 0 0;
}

.account-profile-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.account-profile-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.account-profile-list dd {
  min-width: 0;
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.account-membership {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}

.account-membership > i {
  color: var(--accent);
  font-size: 20px;
}

.account-membership strong {
  display: block;
  color: var(--text);
}

.account-membership p,
.account-software__heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.account-software {
  margin-top: 20px;
}

.account-software__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.account-software-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.account-software-grid a {
  display: grid;
  min-height: 56px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.account-software-grid a:hover {
  border-color: var(--accent-line);
  background: var(--accent-soft);
}

.account-software-grid a > i:first-child {
  color: var(--accent);
}

.account-software-grid a > i:last-child {
  color: var(--muted);
  font-size: 12px;
}

.account-shared-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: var(--surface-raised);
}

.account-shared-note i {
  margin-top: 3px;
  color: var(--accent);
}

.account-shared-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.account-logout {
  margin-top: 24px;
}

.account-logout .button {
  gap: 9px;
}

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

  .tool-rail {
    position: sticky;
    z-index: 20;
    top: 68px;
    height: auto;
    overflow-x: auto;
    padding: 10px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
  }

  .tool-rail::-webkit-scrollbar {
    display: none;
  }

  .tool-rail__home {
    display: none;
  }

  .tool-rail__links {
    display: flex;
    width: max-content;
    margin: 0;
  }

  .tool-rail__link {
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .tool-workspace {
    padding: 24px 18px 48px;
  }

  .tool-workspace__header,
  .account-software__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .tool-access-note {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .tool-access-note .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .tool-filters label {
    min-width: min(100%, 210px);
    flex: 1 1 180px;
  }

  .tool-refresh {
    width: 100%;
    margin-left: 0;
  }

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

  .tracker-summary > div + div {
    border-left: 0;
  }

  .tracker-summary > :nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .tracker-summary > :nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .account-dashboard-grid,
  .account-software-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .tool-workspace__title {
    gap: 12px;
  }

  .tool-workspace__icon {
    width: 44px;
    height: 44px;
  }

  .tool-workspace__title h1 {
    font-size: 28px;
  }

  .account-profile-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
