:root {
  --ink: #10202a;
  --muted: #65737d;
  --line: #dbe3e7;
  --paper: #f5f8f7;
  --white: #ffffff;
  --navy: #07151f;
  --teal: #0aa7a5;
  --lime: #b8ef45;
  --amber: #f3b43f;
  --coral: #ef6d52;
  --blue: #2477ff;
  --shadow: 0 24px 70px rgba(9, 28, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: #f8fbfc;
  background: rgba(7, 21, 31, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #061116;
  background: linear-gradient(135deg, var(--lime), var(--teal));
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 2px;
  color: rgba(248, 251, 252, 0.68);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(248, 251, 252, 0.78);
  font-size: 14px;
  font-weight: 750;
}

nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
}

nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.language-switcher button {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  padding: 0 10px;
  color: rgba(248, 251, 252, 0.72);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  color: #ffffff;
}

.language-switcher button.is-active {
  color: #07151f;
  background: var(--lime);
}

.nav-cta {
  color: #07151f;
  background: var(--lime);
}

.nav-cta:hover {
  color: #07151f;
  background: #d4ff70;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #f8fbfc;
  background: var(--navy);
  padding: 120px clamp(18px, 5vw, 72px) 48px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 21, 31, 0.96) 0%, rgba(7, 21, 31, 0.78) 35%, rgba(7, 21, 31, 0.28) 68%, rgba(7, 21, 31, 0.1) 100%),
    linear-gradient(180deg, rgba(7, 21, 31, 0.2) 0%, rgba(7, 21, 31, 0.64) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker,
.plan-tag,
.book-badge {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 12px 0 18px;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 0;
  color: rgba(248, 251, 252, 0.78);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trial-cta-primary {
  max-width: 520px;
  min-height: 54px;
  line-height: 1.25;
  text-align: center;
}

.primary-button,
.secondary-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  box-shadow: none;
}

button.primary-button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.demo-button {
  color: #ffffff;
  background: var(--teal);
}

.demo-button:hover {
  background: #14bcba;
}

.primary-button {
  color: #061116;
  background: var(--lime);
}

.primary-button:hover {
  background: #d4ff70;
}

.secondary-button {
  color: #f8fbfc;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin: 34px 0 0;
}

.hero-stats div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(5, 17, 24, 0.56);
}

.hero-stats dt {
  color: var(--lime);
  font-size: 22px;
  font-weight: 950;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(248, 251, 252, 0.72);
  font-size: 13px;
}

.intro-band,
.section,
.book-band,
.workflow-band,
.final-cta {
  padding: clamp(52px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.intro-band h2,
.section-heading h2,
.final-cta h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro-band p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.trust-band {
  padding: clamp(52px, 7vw, 88px) clamp(18px, 5vw, 72px);
  color: #f8fbfc;
  background: #102a34;
}

.trust-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 28px 64px;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 30px;
}

.trust-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -18px;
  color: var(--lime);
}

.trust-heading h2 {
  margin: 0;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

.trust-heading p {
  margin: 0;
  color: rgba(248, 251, 252, 0.7);
  font-size: 17px;
  line-height: 1.6;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid article {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.trust-value,
.trust-grid strong,
.trust-grid p {
  display: block;
}

.trust-value {
  margin-bottom: 24px;
  color: var(--lime);
  font-size: 24px;
  font-weight: 950;
}

.trust-grid strong {
  color: #ffffff;
  font-size: 18px;
}

.trust-grid p {
  margin: 8px 0 0;
  color: rgba(248, 251, 252, 0.64);
  line-height: 1.5;
}

.developer-trial {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: stretch;
  gap: 0;
  color: #f8fbfc;
  background: #0b1c25;
}

.developer-trial-copy {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.developer-trial h2 {
  max-width: 680px;
  margin: 10px 0 18px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.developer-trial p {
  max-width: 670px;
  margin: 0;
  color: rgba(248, 251, 252, 0.74);
  font-size: 18px;
  line-height: 1.65;
}

.developer-trial-actions,
.final-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.demo-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  margin: auto;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(4, 18, 28, 0.34);
}

.demo-dialog::backdrop {
  background: rgba(4, 16, 24, 0.76);
  backdrop-filter: blur(5px);
}

.demo-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--line);
  background: #f5f8f7;
}

.demo-dialog-header h2 {
  margin: 6px 0 8px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.demo-dialog-header p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.dialog-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
}

.demo-form {
  padding: 26px 28px 28px;
}

.demo-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

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

.demo-form label,
.demo-form label > span {
  display: block;
}

.demo-form label > span {
  margin-bottom: 7px;
  color: #31434e;
  font-size: 13px;
  font-weight: 850;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd7dd;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.demo-form textarea {
  min-height: 104px;
  resize: vertical;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(10, 167, 165, 0.16);
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.privacy-consent {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  color: #40535f;
  font-size: 13px;
  line-height: 1.5;
}

.privacy-consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.privacy-consent > span {
  margin: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: 600 !important;
}

.privacy-consent a {
  color: #087d7b;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.demo-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.form-status.is-success {
  color: #14744b;
  font-weight: 800;
}

.form-status.is-error {
  color: #b33d2c;
  font-weight: 800;
}

.demo-form button[disabled] {
  cursor: wait;
  opacity: 0.62;
}

body:has(.demo-dialog[open]) {
  overflow: hidden;
}

.docs-link-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 900;
}

.docs-link-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.trial-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(248, 251, 252, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.trial-benefits li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.developer-code {
  min-width: 0;
  display: grid;
  align-content: center;
  padding: clamp(42px, 6vw, 80px) clamp(18px, 4vw, 60px);
  color: #d9e8e8;
  background: #102a34;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.code-toolbar,
.code-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.code-toolbar {
  padding: 0 0 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.code-toolbar strong,
.code-result span {
  color: var(--lime);
}

.developer-code pre {
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  padding: 24px;
  color: #f8fbfc;
  background: #07151f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
}

.code-result {
  padding-top: 14px;
  font-size: 12px;
}

.code-result small {
  color: rgba(255, 255, 255, 0.58);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 30px;
}

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

.price-card,
.book-grid article,
.setup-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(16, 32, 42, 0.08);
}

.price-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 22px;
}

.price-card::before {
  content: "";
  display: block;
  height: 5px;
  margin: -22px -22px 20px;
}

.price-card.starter::before {
  background: var(--teal);
}

.price-card.live::before {
  background: var(--blue);
}

.price-card.featured::before {
  background: var(--lime);
}

.price-card.odds::before {
  background: var(--amber);
}

.price-card.featured {
  color: #f8fbfc;
  background: #0b202b;
  border-color: #0b202b;
  box-shadow: var(--shadow);
}

.price-card.featured h3,
.price-card.featured .price {
  color: #ffffff;
}

.price-card.featured .plan-desc,
.price-card.featured li {
  color: rgba(248, 251, 252, 0.78);
}

.price-card.featured .plan-tag {
  color: var(--lime);
}

.price-card h3 {
  margin: 8px 0 8px;
  color: var(--ink);
  font-size: 25px;
}

.plan-desc {
  min-height: 58px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.price {
  margin: 24px 0 20px;
  color: var(--ink);
  font-size: 46px;
  font-weight: 950;
  letter-spacing: 0;
}

.price span {
  margin-right: 2px;
  font-size: 22px;
}

.price small {
  display: block;
  margin-top: 2px;
  color: inherit;
  font-size: 13px;
  opacity: 0.68;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin: 12px 0;
  padding-left: 22px;
  color: #47545d;
  line-height: 1.45;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.tracker-band {
  padding: clamp(52px, 7vw, 96px) clamp(18px, 5vw, 72px);
  color: #f8fbfc;
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 239, 69, 0.22), transparent 30%),
    linear-gradient(135deg, #07151f, #12313a 56%, #0b1e25);
}

.tracker-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: center;
}

.tracker-band .section-heading {
  margin-bottom: 0;
}

.tracker-band .section-heading h2 {
  color: #ffffff;
}

.tracker-band .section-heading p {
  margin: 16px 0 0;
  max-width: 740px;
  color: rgba(248, 251, 252, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.tracker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.match-tracker-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px;
  background: rgba(5, 17, 24, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.tracker-topbar,
.pressure-meter,
.tracker-stats,
.event-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tracker-topbar {
  margin-bottom: 12px;
  color: #ffffff;
}

.tracker-topbar span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 850;
}

.pitch {
  position: relative;
  height: 280px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 49.6%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.08) 50.4%),
    repeating-linear-gradient(90deg, #1d7f55 0 13%, #188052 13% 26%);
}

.pitch::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.pitch-line.halfway {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.58);
}

.pitch-box {
  position: absolute;
  top: 28%;
  width: 18%;
  height: 44%;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.pitch-box.left {
  left: -2px;
  border-left: 0;
}

.pitch-box.right {
  right: -2px;
  border-right: 0;
}

.danger-zone {
  position: absolute;
  top: 18%;
  right: 0;
  width: 29%;
  height: 64%;
  background: rgba(239, 109, 82, 0.38);
  box-shadow: inset 0 0 42px rgba(255, 55, 40, 0.46);
}

.team-dot,
.ball,
.shot {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.team-dot {
  width: 14px;
  height: 14px;
  border: 2px solid #ffffff;
}

.team-dot.home {
  background: var(--blue);
}

.team-dot.away {
  background: var(--amber);
}

.d1 { left: 24%; top: 40%; }
.d2 { left: 37%; top: 62%; }
.d3 { left: 52%; top: 35%; }
.d4 { left: 66%; top: 46%; }
.d5 { left: 78%; top: 31%; }
.d6 { left: 82%; top: 67%; }

.ball {
  left: 73%;
  top: 47%;
  width: 15px;
  height: 15px;
  background: #ffffff;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.14), 0 0 30px rgba(184, 239, 69, 0.9);
}

.shot {
  width: 10px;
  height: 10px;
  border: 2px solid #ffffff;
  background: rgba(239, 109, 82, 0.86);
}

.s1 { right: 18%; top: 36%; }
.s2 { right: 12%; top: 52%; }
.s3 { right: 24%; top: 63%; }

.pressure-meter {
  margin-top: 12px;
  color: rgba(248, 251, 252, 0.72);
  font-size: 13px;
}

.pressure-meter div {
  height: 10px;
  flex: 1;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.pressure-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--lime), var(--coral));
}

.pressure-meter strong {
  color: var(--lime);
}

.tracker-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 12px;
}

.tracker-stats div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.tracker-stats div:first-child {
  border-radius: 8px 0 0 8px;
}

.tracker-stats div:last-child {
  border-radius: 0 8px 8px 0;
}

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

.tracker-stats strong {
  color: #ffffff;
  font-size: 20px;
}

.tracker-stats span {
  margin-top: 4px;
  color: rgba(248, 251, 252, 0.62);
  font-size: 12px;
}

.event-timeline {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 12px;
}

.event-timeline span {
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(248, 251, 252, 0.72);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.event-timeline .active {
  color: #061116;
  background: var(--lime);
}

.tracker-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.tracker-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.tracker-card.tracker-featured {
  color: #07151f;
  background: #eafbd0;
  border-color: rgba(184, 239, 69, 0.72);
}

.tracker-card h3 {
  margin: 9px 0;
  color: #ffffff;
  font-size: 25px;
}

.tracker-card.tracker-featured h3,
.tracker-card.tracker-featured p,
.tracker-card.tracker-featured li,
.tracker-card.tracker-featured .tracker-price {
  color: #07151f;
}

.tracker-card p {
  margin: 0;
  min-height: 74px;
  color: rgba(248, 251, 252, 0.72);
  line-height: 1.5;
}

.tracker-price {
  margin: 20px 0;
  color: #ffffff;
  font-size: 38px;
  font-weight: 950;
}

.tracker-price small {
  display: block;
  font-size: 13px;
  opacity: 0.68;
}

.tracker-card li {
  color: rgba(248, 251, 252, 0.78);
}

.tracker-note {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  color: rgba(248, 251, 252, 0.78);
  background: rgba(5, 17, 24, 0.48);
  line-height: 1.55;
}

.tracker-note strong {
  color: var(--lime);
}

.betbuilder-band {
  background: #f4f7fb;
  border-top: 1px solid #dce4ee;
  border-bottom: 1px solid #dce4ee;
}

.streaming-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 44px;
  align-items: center;
  padding: 72px clamp(24px, 6vw, 96px);
  color: #edf4f6;
  background: #0c171e;
}

.streaming-copy h2 {
  max-width: 720px;
  margin: 10px 0 16px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
}

.streaming-copy > p {
  max-width: 680px;
  color: rgba(237, 244, 246, 0.74);
  line-height: 1.65;
}

.streaming-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.streaming-points div {
  padding: 16px;
  background: #12242e;
}

.streaming-points strong,
.streaming-points span {
  display: block;
}

.streaming-points strong {
  margin-bottom: 5px;
  color: #ffffff;
}

.streaming-points span {
  color: rgba(237, 244, 246, 0.65);
  font-size: 0.86rem;
}

.streaming-offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.streaming-offer span,
.streaming-offer strong,
.streaming-offer small {
  display: block;
}

.streaming-offer strong {
  margin: 4px 0;
  color: var(--lime);
  font-size: 1.8rem;
}

.streaming-offer small {
  max-width: 390px;
  color: rgba(237, 244, 246, 0.58);
}

.streaming-visual {
  margin: 0;
}

.streaming-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.streaming-visual figcaption {
  margin-top: 10px;
  color: rgba(237, 244, 246, 0.58);
  font-size: 0.82rem;
}

.betbuilder-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 34px;
}

.betbuilder-ticket {
  background: #101820;
  color: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(16, 24, 32, 0.2);
}

.betbuilder-ticket > div,
.betbuilder-ticket footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.betbuilder-ticket p {
  color: #6fe0a8;
  font-size: 0.84rem;
}

.betbuilder-ticket footer {
  border-bottom: 0;
  padding-bottom: 0;
  font-size: 1.08rem;
}

.betbuilder-ticket footer strong {
  color: #ffd166;
  font-size: 1.4rem;
}

.betbuilder-products .tracker-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: #14232d;
  background: #ffffff;
  border-color: #cfd9e4;
  box-shadow: 0 10px 28px rgba(28, 46, 60, 0.08);
}

.betbuilder-products .tracker-card h3,
.betbuilder-products .tracker-card p,
.betbuilder-products .tracker-card li,
.betbuilder-products .tracker-card .tracker-price {
  color: #14232d;
}

.betbuilder-products .tracker-card p {
  color: #52636f;
}

.betbuilder-products .tracker-card li {
  color: #40535f;
}

.betbuilder-products .tracker-card ul {
  margin-bottom: 0;
}

.betbuilder-products .tracker-price {
  margin-top: auto;
  padding-top: 20px;
}

.betbuilder-products .tracker-featured {
  background: #eafbd0;
  border-color: #9fca43;
  box-shadow: 0 16px 34px rgba(89, 125, 31, 0.16);
}

.book-band {
  color: #f8fbfc;
  background: #07151f;
}

.book-band .section-kicker {
  color: var(--lime);
}

.book-band h2 {
  color: #ffffff;
}

.book-grid,
.book-matrix,
.book-detail-grid {
  display: grid;
  gap: 16px;
}

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

.book-matrix {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.book-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.book-grid article,
.book-plan-card,
.book-detail-grid article {
  padding: 24px;
  color: #f8fbfc;
  background: #0e242f;
  border-color: rgba(255, 255, 255, 0.12);
}

.book-plan-card,
.book-detail-grid article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.book-plan-card {
  display: grid;
  gap: 16px;
  align-content: space-between;
}

.book-grid .book-featured,
.book-plan-card.book-featured {
  background: linear-gradient(135deg, #15323d, #224011);
  border-color: rgba(184, 239, 69, 0.48);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.book-grid h3,
.book-plan-card h3 {
  margin: 12px 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 40px);
}

.book-grid p,
.book-plan-card p,
.book-detail-grid p {
  margin: 0;
  color: rgba(248, 251, 252, 0.74);
  line-height: 1.6;
}

.book-price-row {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.book-price-row span {
  color: rgba(248, 251, 252, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.book-price-row strong {
  color: #ffffff;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.04;
}

.book-price-row.managed {
  border-color: rgba(184, 239, 69, 0.45);
  background: rgba(184, 239, 69, 0.1);
}

.book-price-row.managed strong {
  color: var(--lime);
}

.book-badge {
  color: var(--lime);
}

.add-ons {
  background: #ffffff;
}

.addon-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.62fr);
  gap: 18px;
  align-items: stretch;
}

.addon-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.addon-list div {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f7faf9;
}

.addon-list strong,
.addon-list span {
  display: block;
}

.addon-list strong {
  color: var(--ink);
  font-size: 17px;
}

.addon-list span {
  color: var(--teal);
  font-weight: 900;
}

.setup-panel {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(10, 167, 165, 0.16), rgba(243, 180, 63, 0.18)),
    #ffffff;
}

.setup-panel h3 {
  margin: 12px 0;
  font-size: 34px;
}

.setup-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.workflow-band {
  background: #e9f2f0;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.workflow li {
  min-height: 150px;
  margin: 0;
  padding: 20px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 42, 0.08);
  counter-increment: step;
}

.workflow li::before {
  content: counter(step, decimal-leading-zero);
  position: static;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #061116;
  background: var(--lime);
  font-size: 13px;
  font-weight: 950;
}

.workflow strong,
.workflow span {
  display: block;
}

.workflow strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 18px;
}

.workflow span {
  color: var(--muted);
  line-height: 1.45;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  color: #f8fbfc;
  background: #10202a;
}

.final-cta h2,
.final-cta .section-kicker {
  color: #ffffff;
}

.final-cta .section-kicker {
  color: var(--lime);
}

.final-cta p {
  max-width: 760px;
  color: rgba(248, 251, 252, 0.76);
}

.primary-button.dark {
  flex: 0 0 auto;
  background: var(--amber);
}

.primary-button.dark:hover {
  background: #ffd16d;
}

.final-cta-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

@media (max-width: 1120px) {
  .site-header {
    gap: 12px;
  }

  nav {
    min-width: 0;
    overflow-x: auto;
  }

  .streaming-band {
    grid-template-columns: 1fr;
  }

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

  .tracker-showcase,
  .tracker-products,
  .book-grid,
  .book-matrix,
  .book-detail-grid,
  .workflow,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
  }

  .language-switcher {
    position: absolute;
    top: 14px;
    right: 18px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
    padding-top: 180px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-stats,
  .intro-band,
  .developer-trial,
  .streaming-band,
  .betbuilder-intro,
  .tracker-showcase,
  .tracker-products,
  .pricing-grid,
  .book-grid,
  .book-matrix,
  .book-detail-grid,
  .addon-layout,
  .addon-list,
  .workflow,
  .final-cta,
  .trust-heading,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-heading .section-kicker {
    margin-bottom: -12px;
  }

  .developer-code {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .developer-trial-actions,
  .final-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .docs-link-button {
    width: 100%;
  }

  .intro-band,
  .final-cta {
    display: grid;
  }

  .streaming-offer {
    align-items: stretch;
    flex-direction: column;
  }

  .streaming-points {
    grid-template-columns: 1fr;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .pitch {
    height: 220px;
  }

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

  .demo-form-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand small {
    display: none;
  }

  .language-switcher button {
    padding: 0 8px;
  }

  nav a {
    padding: 0 10px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .price-card,
  .book-grid article,
  .setup-panel {
    padding: 18px;
  }

  .price-card::before {
    margin: -18px -18px 18px;
  }

  .demo-dialog {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
  }

  .demo-dialog-header,
  .demo-form {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .form-field-wide {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .brand > span:last-child {
    display: none;
  }
}
