:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --surface-2: #fbfbfc;
  --surface-3: #f1f3f6;
  --text: #0f1115;
  --muted: #4a4f5b;
  --accent: #f55722;
  --accent-dark: #d44818;
  --border: #e5e8ef;
  --border-strong: #d7dce6;
  --radius: 18px;
  --radius-sm: 14px;
  --shadow-soft: 0 10px 28px rgba(15, 20, 34, 0.06);
  --shadow: 0 20px 44px rgba(15, 20, 34, 0.09);
  --shadow-deep: 0 28px 72px rgba(15, 20, 34, 0.12);
  --container: 1160px;
  --space-1: 0.5rem;
  --space-2: 0.8rem;
  --space-3: 1.05rem;
  --space-4: 1.45rem;
  --space-5: 2.1rem;
  --space-6: 3.4rem;
  --space-7: 4.3rem;
  --shell-pad-y: clamp(1rem, 2vw, 1.5rem);
  --shell-pad-x: 0;
  /* Vertical rhythm: between <section> blocks and large inner gaps (fluid, replaces fixed mobile/desktop pairs) */
  --section-pad-y: clamp(4rem, 3.25rem + 2.8vw, 6rem);
  /* Hero top: sticky header clearance, same scale system */
  --hero-pad-top: clamp(4.25rem, 3.5rem + 2.5vw, 5.75rem);
  --icon-size: 20px;
  --icon-wrap-size: 34px;
  --icon-stroke: #7b879b;
  /* UI line icons (24x24 grid); inlined data-uri SVGs must encode the same numeric stroke-width */
  --icon-stroke-width: 1.8;
  --nav-toggle-size: 44px;
  --nav-toggle-radius: 12px;
  --nav-toggle-stroke: #2d3340;
  --nav-toggle-bg: rgba(255, 255, 255, 0.95);
  --nav-toggle-bg-hover: #f7f9fc;
  --nav-toggle-border: #d8deea;
  --nav-toggle-border-hover: #c9d1df;
  --nav-toggle-focus: rgba(15, 17, 21, 0.14);
  --mobile-media-max-standard: 292px;
  --mobile-media-max-balanced: 280px;
  --mobile-media-max-portrait: 240px;
  --mobile-media-max-operate-solution: 180px;
  --mobile-operate-solution-aspect: 3 / 4;
  --players-why-gif-max-mobile: 280px;
  --players-why-gif-max-web: 332px;
  --operate-solution-media-tablet-max: 286px;
  --operate-solution-media-desktop-max: 304px;
  --operate-solution-radius: 16px;
  --operate-solution-shadow: 0 10px 24px rgba(15, 20, 34, 0.08);
  --mobile-hero-media-max: 300px;
  --mobile-hero-collage-max: 320px;
  --operate-goclicks-hero-media-max: 520px;
  --operate-goclicks-hero-media-vw: 42vw;
  --operate-goclicks-hero-collage-mobile-max: 360px;
  --mobile-standard-aspect: 4 / 3;
  --mobile-balanced-aspect: 4 / 5;
  --mobile-portrait-aspect: 4 / 5;
  --footer-bg: #0d1016;
  --footer-text-strong: #ffffff;
  --footer-link: #d8deea;
  --footer-link-hover: #ffffff;
  /* Layout breakpoints — use matching rem literals in @media (var() unsupported in queries) */
  --bp-sm: 30rem;
  --bp-md: 48rem;
  --bp-nav: 62rem;
  --bp-lg: 64rem;
  --bp-hero-split: 55rem;
  --bp-nav-px: 992;
  /* Mobile typography */
  --mobile-text-align: center;
  --mobile-list-text-align: left;
  /* Hero collage */
  --hero-collage-cols-default: 1.35fr 1fr;
  --hero-collage-cols-operate: 1.5fr 0.9fr;
  --hero-collage-rows-default: repeat(3, 1fr);
  --hero-collage-rows-standard: 1fr 1fr;
  --hero-collage-mobile-max: var(--mobile-hero-collage-max);
  --hero-collage-operate-mobile-max: var(--operate-goclicks-hero-collage-mobile-max);
  /* Demo / product media */
  --demo-media-max-height-mobile: 70vh;
  /* Mobile CTA buttons */
  --btn-min-height-mobile: 40px;
  --btn-pad-mobile-y: 0.55rem;
  --btn-pad-mobile-x: 0.95rem;
  --cta-mobile-max-width: 17.5rem;
  /* Mobile hero copy */
  --hero-lead-max-ch-mobile: 34ch;
  --hero-content-gutter-mobile: 1.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 0% 0%, #ffffff 0%, var(--bg) 42%, #f5f6f9 100%);
  line-height: 1.62;
  font-size: 16px;
  letter-spacing: -0.01em;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--section-pad-y) 0;
}

/* Reserved alias: same rhythm as .section for future dense layouts */
.section-tight {
  padding: var(--section-pad-y) 0;
}

.alt-bg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 246, 251, 0.8));
}

.hero-shell,
.section-shell,
.surface-panel,
.form-shell {
  background: linear-gradient(170deg, #ffffff, var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-shell {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.section-shell {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding-block: var(--shell-pad-y);
  padding-inline: var(--shell-pad-x);
}

.section-shell--editorial {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.glass-strip {
  border: 1px solid rgba(15, 17, 21, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 247, 251, 0.9));
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: clamp(0.55rem, 2vw, 0.8rem);
  box-shadow: 0 10px 24px rgba(15, 20, 34, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 250, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 17, 21, 0.08);
}

.nav-wrap {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo img {
  display: block;
  height: 40px;
  width: auto;
}

.nav-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--nav-toggle-size);
  height: var(--nav-toggle-size);
  min-width: var(--nav-toggle-size);
  min-height: var(--nav-toggle-size);
  border: 1px solid var(--nav-toggle-border);
  background: var(--nav-toggle-bg);
  border-radius: var(--nav-toggle-radius);
  padding: 0;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--nav-toggle-bg-hover);
  border-color: var(--nav-toggle-border-hover);
  outline: none;
}

.nav-toggle:focus-visible {
  box-shadow: 0 0 0 3px var(--nav-toggle-focus);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--nav-toggle-stroke);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.nav-toggle-icon::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 0.7rem 0.65rem;
  border-radius: 10px;
  color: #252a35;
  font-weight: 500;
}

.site-nav a[aria-current="page"]:not(.btn) {
  font-weight: 700;
  color: var(--accent);
  background: transparent;
  box-shadow: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #f3f5f9;
  outline: none;
}

.site-nav a[aria-current="page"]:not(.btn):hover,
.site-nav a[aria-current="page"]:not(.btn):focus-visible {
  background: transparent;
  color: var(--accent-dark);
  box-shadow: none;
  outline: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 12px;
  padding: 0.72rem 1.1rem;
  border: 1px solid transparent;
  font-weight: 700;
  color: #fff;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #f76939, var(--accent));
  color: #fff;
  box-shadow: 0 8px 20px rgba(245, 87, 34, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(180deg, #eb5b2a, var(--accent-dark));
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(245, 87, 34, 0.3);
  outline: none;
}

.btn-secondary {
  background: #1a202c;
  border-color: #1a202c;
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #0f131b;
  border-color: #0f131b;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.site-nav a.btn,
.site-nav a.btn:hover,
.site-nav a.btn:focus-visible {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  margin: 0 0 var(--space-3);
  color: #0f1115;
}

h1 {
  font-size: clamp(2.15rem, 7.4vw, 3.65rem);
  letter-spacing: -0.032em;
}

h2 {
  font-size: clamp(1.68rem, 5.4vw, 2.6rem);
  letter-spacing: -0.026em;
}

h3 {
  font-size: clamp(1.2rem, 3.8vw, 1.5rem);
}

p {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  max-width: 64ch;
}

.eyebrow {
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.text-emphasis {
  color: inherit;
  background: none;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  box-decoration-break: initial;
  -webkit-box-decoration-break: slice;
}

.text-emphasis--muted {
  color: inherit;
  background: none;
}

.site-footer .text-emphasis {
  color: inherit;
  background: none;
}

.site-footer .text-emphasis--muted {
  color: inherit;
  background: none;
}

.content-block .eyebrow:not(:first-child) {
  margin-top: var(--space-5);
}

.hero {
  padding-top: var(--hero-pad-top);
}

.hero-standard {
  width: 100%;
}

.hero-standard__layout > *,
.open-grid > *,
.two-col > *,
.problem-solution-layout > * {
  min-width: 0;
}

.hero-standard__layout {
  display: grid;
  gap: 1.1rem;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.hero--text-only .hero-standard__layout {
  grid-template-columns: minmax(0, 1fr);
}

.hero-standard__content {
  width: 100%;
}

.hero-standard__media {
  justify-self: center;
  align-self: center;
}

.hero-grid,
.two-col {
  display: grid;
  gap: 1.1rem;
}

.section-shell > .section-head:first-child,
.form-shell > .section-head:first-child {
  margin-top: 0;
}

.section-shell > :last-child,
.hero-shell > :last-child,
.form-shell > :last-child,
.content-block > :last-child {
  margin-bottom: 0;
}

.content-block {
  max-width: 62ch;
}

.hero .content-block {
  max-width: 52ch;
}

.hero .content-block h1 {
  max-width: 14ch;
}

.hero .content-block p {
  max-width: 46ch;
}

.cta-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.hero .cta-cluster {
  margin-top: var(--space-2);
}

.hero-fee-note {
  margin-top: var(--space-3);
  max-width: 46ch;
  font-size: 0.92rem;
  color: #2d3340;
}

.hero-trust-line {
  margin-top: var(--space-4);
  max-width: 46ch;
}

.hero-trust-line .stats-grid {
  gap: 0.5rem;
}

.hero-trust-line .stat-pill {
  font-size: 0.9rem;
  padding: 0.7rem 0.85rem;
}

.hero-trust-inline {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #2d3340;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-trust-inline li {
  position: relative;
  padding-left: 1rem;
}

.hero-trust-inline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(245, 87, 34, 0.55);
}


/* Organizer GoClicks-inspired preview */
.organizer-goclicks-preview .site-nav a[aria-current="page"],
[data-page="index"] .site-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.organizer-goclicks-hero .hero-standard__layout {
  max-width: min(100%, var(--container));
  width: 100%;
  margin-inline: auto;
}

.organizer-goclicks-hero .content-block h1 {
  max-width: min(14ch, 100%);
}

.organizer-goclicks-hero .content-block p {
  max-width: min(46ch, 100%);
}

.organizer-goclicks-hero__trust {
  margin: var(--space-4) 0 0;
  color: #2d3340;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.organizer-goclicks-cta__proof {
  margin: 0 0 var(--space-2);
  color: #596173;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.organizer-goclicks-trust .section-shell {
  padding-block: clamp(0.8rem, 1.8vw, 1.2rem);
}

.organizer-goclicks-trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  color: #4a4f5b;
  font-size: 0.9rem;
  font-weight: 600;
}

.organizer-goclicks-trust__list li {
  position: relative;
  padding-left: 0.9rem;
}

.organizer-goclicks-trust__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(245, 87, 34, 0.45);
}

.organizer-goclicks-problem .section-head h2,
.organizer-goclicks-problem .section-head p,
.organizer-goclicks-platform .section-head h2,
.organizer-goclicks-platform .section-head p,
.organizer-goclicks-compare .section-head h2,
.organizer-goclicks-compare .section-head p,
.organizer-goclicks-fees .section-head h2,
.organizer-goclicks-fees .section-head p {
  max-width: min(56ch, 100%);
}

.organizer-goclicks-card {
  border: 1px solid #e3e8f1;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px rgba(15, 20, 34, 0.05);
  background: linear-gradient(180deg, #ffffff, #fafbfd);
  padding: clamp(1rem, 1.8vw, 1.35rem);
  min-height: 100%;
}

.organizer-goclicks-card .open-item-copy {
  max-width: none;
}

.organizer-goclicks-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #9a3b17;
  background: rgba(245, 87, 34, 0.12);
}

.organizer-goclicks-platform__layout {
  align-items: start;
}

.organizer-goclicks-platform__grid {
  grid-template-columns: 1fr;
  gap: clamp(0.8rem, 2vw, 1.05rem);
}

.organizer-goclicks-platform__media {
  align-self: start;
}

.organizer-goclicks-compare__table {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.2vw, 1.4rem);
  margin-top: var(--space-4);
}

.organizer-goclicks-compare__col {
  border: 1px solid #e3e8f1;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px rgba(15, 20, 34, 0.05);
  background: linear-gradient(180deg, #ffffff, #fafbfd);
  padding: clamp(1.2rem, 2.1vw, 1.7rem);
}

.organizer-goclicks-compare__col--old {
  border-color: #e5e8ef;
  background: linear-gradient(180deg, #fcfcfd, #f8fafc);
}

.organizer-goclicks-compare__col--new {
  border-color: rgba(245, 87, 34, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 244, 0.82));
  box-shadow: 0 10px 24px rgba(15, 20, 34, 0.08);
}

.organizer-goclicks-compare__col h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.organizer-goclicks-compare__chip {
  margin: 0 0 0.65rem;
}

.organizer-goclicks-compare__subtitle {
  margin: 0.45rem 0 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #596173;
}

.organizer-goclicks-compare__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.organizer-goclicks-compare__col li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.35rem;
  border-bottom: 1px solid rgba(15, 17, 21, 0.08);
  font-size: 0.94rem;
  color: #2d3340;
  line-height: 1.45;
}

.organizer-goclicks-compare__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.24rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
}

.organizer-goclicks-compare__col--old li::before {
  background: rgba(122, 135, 155, 0.6);
}

.organizer-goclicks-compare__col--new li::before {
  background: rgba(245, 87, 34, 0.8);
}

.organizer-goclicks-compare__col li:last-child {
  border-bottom: 0;
}

.organizer-goclicks-fees__grid-wrap {
  max-width: min(100%, 66rem);
  margin-right: auto;
}

.organizer-goclicks-fees__payout-note {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.88rem;
  color: #596173;
}

.organizer-goclicks-fees__account-note {
  margin: clamp(0.95rem, 1.8vw, 1.25rem) 0 0;
  font-size: 0.88rem;
  color: #596173;
}

.organizer-goclicks-cta .content-block {
  max-width: 37.5rem;
  margin-inline: auto;
}

@media (min-width: 48rem) {
  .organizer-goclicks-trust__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem 1rem;
  }

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

@media (min-width: 55rem) {
  .organizer-goclicks-hero .hero--with-visual .hero-standard__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(1rem, 1.8vw, 1.4rem);
  }

  .organizer-goclicks-hero .hero-standard__media {
    justify-self: end;
    width: 100%;
    max-width: 100%;
  }

  .organizer-goclicks-platform__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.cta-section .cta-cluster,
.content-block .cta-cluster {
  align-items: center;
}

.section-shell .cta-cluster,
.hero-shell .cta-cluster,
.form-shell .cta-cluster {
  margin-top: var(--space-4);
}

.cta-section .cta-cluster {
  justify-content: center;
}

/* CTA: shrink-wrap eyebrow so caps + letter-spacing align with centered headline column */
.cta-section .eyebrow {
  display: inline-block;
  max-width: 100%;
  padding-inline: 0.04em;
  vertical-align: top;
}

.cta-section .content-block > h2 {
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .content-block > p:not(.eyebrow) {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.legal-document-section {
  padding-top: 0;
}

.legal-document {
  max-width: 70ch;
  color: #2d3340;
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-document > :first-child {
  margin-top: 0;
}

.legal-document h2 {
  margin: clamp(2rem, 4vw, 2.75rem) 0 0.85rem;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  letter-spacing: -0.02em;
  color: #11141c;
}

.legal-document h3 {
  margin: 1.35rem 0 0.55rem;
  font-size: 1.02rem;
  color: #11141c;
}

.legal-document h4 {
  margin: 1rem 0 0.45rem;
  font-size: 0.96rem;
  color: #11141c;
}

.legal-document p {
  margin: 0.75rem 0 0;
}

.legal-document a {
  color: #2d3340;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.legal-document a:hover {
  color: var(--accent);
}

.media-frame {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  overflow: hidden;
  position: relative;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(15, 17, 21, 0.07));
  pointer-events: none;
}

.media-frame--operate-bottom-gif::after,
.media-frame--demand-gif::after,
.media-frame--problem-gif::after,
.media-frame--players-why-gif::after {
  content: none;
}

.media-frame--hero {
  min-height: 280px;
  aspect-ratio: 4 / 5;
}

.media-frame--sports-outline {
  border-color: #d2d9e6;
  box-shadow: var(--shadow-deep);
}

.media-frame--sports-outline .media-image {
  position: relative;
  z-index: 1;
}

.media-frame--sports-outline::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--radius) + 10px);
  pointer-events: none;
  z-index: 2;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 72'%3E%3Ccircle cx='36' cy='36' r='30' fill='none' stroke='%23f08b66' stroke-width='2.6'/%3E%3Cpath d='M36 6v60M6 36h60M14 14c16 8 28 8 44 0M14 58c16-8 28-8 44 0' fill='none' stroke='%23f08b66' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") left 6px top 6px / 58px 58px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 72'%3E%3Cellipse cx='30' cy='30' rx='20' ry='16' fill='none' stroke='%23939db0' stroke-width='2.5'/%3E%3Cpath d='M20 30h20M30 20v20M41 41l17 17M55 56l5 5' fill='none' stroke='%23939db0' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E") right 6px top 6px / 58px 58px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 72'%3E%3Cpath d='M18 54h36l-8-20H26z' fill='none' stroke='%23939db0' stroke-width='2.5'/%3E%3Cpath d='M30 30h12l4 10H26z' fill='none' stroke='%23939db0' stroke-width='2.2'/%3E%3Cpath d='M28 14c5 6 12 8 16 17' fill='none' stroke='%23939db0' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") left 6px bottom 6px / 58px 58px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 72'%3E%3Ccircle cx='36' cy='28' r='13' fill='none' stroke='%23f08b66' stroke-width='2.4'/%3E%3Cpath d='M24 25h18M24 31h18M36 41c0 9-7 14-16 17M36 41c0 9 7 14 16 17' fill='none' stroke='%23f08b66' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") right 6px bottom 6px / 58px 58px no-repeat;
  opacity: 0.84;
}

.media-frame--demand-gif {
  width: min(100%, 340px);
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 9 / 16;
}

.media-frame--contact-hero {
  width: min(100%, 320px);
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 4 / 5;
}

.media-frame--contact-hero .media-image--cover {
  object-position: center;
}

.players-why-layout {
  display: grid;
  gap: clamp(1.15rem, 2.2vw, 1.8rem);
  align-items: center;
}

.players-why-layout > :first-child {
  min-width: 0;
}

.players-sports-layout {
  display: grid;
  gap: clamp(1.15rem, 2.2vw, 1.8rem);
  align-items: center;
}

.players-sports-layout > :first-child {
  min-width: 0;
}

.player-copy-preview .players-community-section .section-head h2,
[data-page="players"] .players-community-section .section-head h2,
.player-copy-preview .players-community-section .section-head p,
[data-page="players"] .players-community-section .section-head p {
  max-width: min(48ch, 100%);
}

.player-copy-preview .players-community-list,
[data-page="players"] .players-community-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.player-copy-preview .media-frame--players-community,
[data-page="players"] .media-frame--players-community {
  width: 100%;
  max-width: 100%;
}

.player-copy-preview .media-frame--players-community .media-image--cover,
[data-page="players"] .media-frame--players-community .media-image--cover {
  aspect-ratio: 4 / 3;
  object-position: center;
}

@media (max-width: 47.98rem) {
  .player-copy-preview .players-community-list,
  [data-page="players"] .players-community-list {
    grid-template-columns: 1fr;
  }

  .player-copy-preview .media-frame--players-community,
  [data-page="players"] .media-frame--players-community {
    width: min(100%, 22rem);
    margin-inline: auto;
  }
}

@media (min-width: 48rem) {
  .player-copy-preview .players-sports-layout .media-frame--players-community,
  [data-page="players"] .players-sports-layout .media-frame--players-community {
    justify-self: end;
  }
}

.features-page .features-hero .content-block {
  max-width: 62ch;
}

.features-list-section {
  padding-top: 0;
}

.features-audience-block + .features-audience-block {
  margin-top: var(--section-pad-y);
}

.features-audience-head {
  margin-bottom: var(--space-4);
}

.features-audience-title {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.features-list-grid .features-list-item .open-item-copy {
  max-width: 34ch;
}

.features-related-links {
  margin: var(--space-4) 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.features-related-links a {
  color: #2d3340;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.features-related-links a:hover {
  color: var(--accent);
}

.faq-page .faq-hero .content-block {
  max-width: 62ch;
}

.faq-list-section {
  padding-top: 0;
}

.faq-section + .faq-section {
  margin-top: var(--section-pad-y);
}

.faq-section-head {
  margin-bottom: var(--space-4);
}

.faq-section-title {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.faq-list {
  display: grid;
  gap: var(--space-2);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  padding: var(--space-3) var(--space-4);
  font-weight: 600;
  color: #2d3340;
  cursor: pointer;
  list-style: none;
}

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

.faq-question::after {
  content: "+";
  float: right;
  font-weight: 500;
  color: var(--muted);
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 var(--space-4) var(--space-4);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq-answer p {
  margin: 0;
}

.faq-related-links {
  margin: var(--space-4) 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-related-links a {
  color: #2d3340;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.faq-related-links a:hover {
  color: var(--accent);
}

.organizer-goclicks-preview .features-explore-link,
[data-page="index"] .features-explore-link,
.player-copy-preview .features-explore-link,
[data-page="players"] .features-explore-link {
  margin: var(--space-3) 0 0;
}

.organizer-goclicks-preview .features-explore-link a,
[data-page="index"] .features-explore-link a,
.player-copy-preview .features-explore-link a,
[data-page="players"] .features-explore-link a {
  color: #2d3340;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.organizer-goclicks-preview .features-explore-link a:hover,
[data-page="index"] .features-explore-link a:hover,
.player-copy-preview .features-explore-link a:hover,
[data-page="players"] .features-explore-link a:hover {
  color: var(--accent);
}

/* Operate GoClicks-inspired preview */
.operate-goclicks-preview .site-nav a[aria-current="page"],
[data-page="operate"] .site-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.operate-goclicks-hero .hero-standard__layout {
  max-width: min(100%, var(--container));
  width: 100%;
  margin-inline: auto;
}

.operate-goclicks-hero .content-block h1 {
  max-width: min(16ch, 100%);
}

.operate-goclicks-hero .content-block p {
  max-width: min(48ch, 100%);
}

.operate-goclicks-problem .section-head h2,
.operate-goclicks-problem .section-head p,
.operate-goclicks-platform .section-head h2,
.operate-goclicks-platform .section-head p,
.operate-goclicks-compare .section-head h2,
.operate-goclicks-compare .section-head p,
.operate-goclicks-pricing .section-head h2,
.operate-goclicks-pricing .section-head p,
.operate-goclicks-demand .content-block h2,
.operate-goclicks-demand .content-block p {
  max-width: min(56ch, 100%);
}

.operate-goclicks-platform__grid {
  grid-template-columns: 1fr;
}

.operate-goclicks-platform__media {
  width: 100%;
  margin-inline: auto;
  margin-top: var(--space-6);
}

.operate-goclicks-pricing .operate-pricing-grid .open-item-copy {
  max-width: none;
}

@media (min-width: 55rem) {
  .operate-goclicks-preview .operate-goclicks-hero .hero--with-visual .hero-standard__layout,
  [data-page="operate"] .operate-goclicks-hero .hero--with-visual .hero-standard__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, min(var(--operate-goclicks-hero-media-max), var(--operate-goclicks-hero-media-vw)));
    align-items: center;
    gap: clamp(0.85rem, 2vw, 1.3rem);
  }

  .operate-goclicks-preview .operate-goclicks-hero .hero-standard__media,
  [data-page="operate"] .operate-goclicks-hero .hero-standard__media {
    justify-self: end;
    max-width: min(var(--operate-goclicks-hero-media-max), 100%);
  }
}

/* Same treatment as `.media-frame--demand-gif` on Operate: base `.media-frame` only; width/aspect constrained */
.media-frame--players-why-gif {
  width: min(100%, var(--players-why-gif-max-mobile));
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 9 / 16;
}

.media-frame--operate-bottom-gif {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: clamp(16px, 2.6vw, 24px);
  border-color: #dbe1ec;
  box-shadow: 0 16px 36px rgba(15, 20, 34, 0.11);
  background: #ffffff;
}

.media-frame--operate-bottom-gif .media-image--cover {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.operate-platform-caption {
  margin-top: 0;
  margin-bottom: var(--space-6);
}

.operate-platform-features {
  margin-top: 0;
}

.operate-platform-visual {
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

.hero-cutout-composition {
  position: relative;
  min-height: 300px;
  aspect-ratio: 4 / 5;
  isolation: isolate;
}

.hero-cutout-piece {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
  border: 1px solid #d9dfeb;
  background: #fff;
}

.hero-cutout-piece--primary {
  z-index: 3;
  clip-path: polygon(10% 2%, 92% 0, 100% 15%, 98% 86%, 88% 100%, 10% 97%, 0 83%, 3% 14%);
}

.hero-cutout-piece--secondary {
  z-index: 2;
  transform: translate(-6%, 8%) rotate(-7deg);
  clip-path: polygon(16% 0, 88% 3%, 100% 24%, 90% 97%, 12% 100%, 0 76%, 2% 18%);
  filter: saturate(0.88) brightness(1.02);
  opacity: 0.95;
}

.hero-cutout-piece--tertiary {
  z-index: 1;
  transform: translate(8%, -8%) rotate(7deg);
  clip-path: polygon(12% 2%, 90% 0, 100% 23%, 95% 94%, 14% 100%, 0 78%, 3% 18%);
  filter: saturate(0.9) brightness(1.04);
  opacity: 0.9;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: var(--space-2);
  min-height: 0;
  aspect-ratio: auto;
  width: min(100%, var(--hero-collage-mobile-max));
  margin-inline: auto;
}

.hero-collage--operate {
  width: min(100%, var(--hero-collage-operate-mobile-max));
}

.hero-collage-piece {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 1px solid #d9dfeb;
  border-radius: calc(var(--radius) - 2px);
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}

@media (min-width: 48rem) {
  .hero-collage {
    grid-template-columns: var(--hero-collage-cols, var(--hero-collage-cols-default));
    grid-template-rows: var(--hero-collage-rows, var(--hero-collage-rows-standard));
    min-height: 300px;
    aspect-ratio: 4 / 5;
    width: 100%;
    margin-inline: 0;
  }

  .hero-collage--organizer,
  .hero-collage--players {
    --hero-collage-cols: var(--hero-collage-cols-default);
    --hero-collage-rows: var(--hero-collage-rows-default);
  }

  .hero-collage--operate {
    --hero-collage-cols: var(--hero-collage-cols-operate);
    --hero-collage-rows: var(--hero-collage-rows-standard);
    width: 100%;
  }

  .hero-collage-piece--primary {
    grid-row: 1 / span 2;
  }

  .hero-collage-piece--secondary {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .hero-collage-piece--tertiary {
    display: block;
    grid-column: 2;
    grid-row: 2;
  }

  .hero-collage--organizer .hero-collage-piece--primary {
    grid-column: 1;
    grid-row: 1 / span 3;
  }

  .hero-collage--players .hero-collage-piece--primary {
    grid-column: 1;
    grid-row: 1 / span 3;
  }

  .hero-collage--organizer .hero-collage-piece--secondary {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-collage--players .hero-collage-piece--secondary {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-collage--organizer .hero-collage-piece--tertiary {
    grid-column: 2;
    grid-row: 2;
  }

  .hero-collage--players .hero-collage-piece--tertiary {
    grid-column: 2;
    grid-row: 2;
  }

  .hero-collage--organizer .hero-collage-piece--quaternary {
    grid-column: 2;
    grid-row: 3;
  }

  .hero-collage--players .hero-collage-piece--quaternary {
    grid-column: 2;
    grid-row: 3;
  }
}

@media (max-width: 47.98rem) {
  .content-block,
  .section-head,
  .section-shell,
  .form-shell,
  .open-item,
  .organizer-goclicks-compare__col,
  .faq-question,
  .faq-answer,
  .legal-document,
  .card,
  .step-item,
  .tag-card,
  .feature-tile,
  .stat-pill,
  .metric-pill,
  .mockup-card,
  .site-footer,
  .footer-grid > div {
    text-align: var(--mobile-text-align);
  }

  .content-block,
  .section-head,
  .hero .content-block {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .content-block {
    max-width: 100%;
    padding-inline: calc(var(--hero-content-gutter-mobile) / 2);
    box-sizing: border-box;
  }

  .hero .content-block p,
  .hero .hero-fee-note {
    max-width: var(--hero-lead-max-ch-mobile);
  }

  .content-block h1,
  .content-block h2,
  .content-block h3,
  .section-head h2,
  .section-head h3,
  .content-block p,
  .section-head p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-cluster {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
  }

  .cta-cluster .btn {
    width: min(100%, var(--cta-mobile-max-width));
    min-height: var(--btn-min-height-mobile);
    padding: var(--btn-pad-mobile-y) var(--btn-pad-mobile-x);
    font-size: 0.94rem;
  }

  .open-item-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .open-item-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .plain-list,
  .organizer-goclicks-compare__col ul,
  .pain-list {
    text-align: var(--mobile-list-text-align);
    margin-left: auto;
    margin-right: auto;
  }

  .plain-list {
    max-width: 34ch;
  }

  .plain-list li {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-trust-inline {
    align-items: center;
  }

  .footer-grid a {
    display: inline-block;
  }

  label {
    text-align: var(--mobile-text-align);
  }

  .contact-topic-card {
    align-items: center;
    text-align: var(--mobile-text-align);
  }

  .contact-topic-card .contact-topic-icon,
  .contact-topic-card .contact-topic-title,
  .contact-topic-card .contact-topic-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cutout-composition {
    display: none;
  }

  .hero-collage,
  .hero-collage--organizer,
  .hero-collage--players,
  .hero-collage--operate {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    aspect-ratio: auto;
    width: min(100%, var(--hero-collage-mobile-max));
    margin-inline: auto;
  }

  .hero-collage--operate {
    width: min(100%, var(--hero-collage-operate-mobile-max));
  }

  .hero-collage-piece--primary {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: var(--mobile-standard-aspect);
  }

  .hero-collage-piece--secondary,
  .hero-collage-piece--tertiary,
  .hero-collage-piece--quaternary {
    display: none;
  }

  .media-frame--operate-bottom-gif .media-image--cover {
    max-height: var(--demo-media-max-height-mobile);
    object-fit: contain;
  }

  .media-frame--hero {
    width: min(100%, var(--mobile-hero-media-max));
    min-height: 0;
    aspect-ratio: var(--mobile-standard-aspect);
    margin-left: auto;
    margin-right: auto;
  }

  .media-frame--problem-gif {
    width: min(100%, var(--mobile-media-max-balanced));
  }

  .media-frame--operate-solution {
    display: none;
  }

  .media-frame--operate-solution .media-image--cover {
    aspect-ratio: var(--mobile-operate-solution-aspect);
    object-position: center 22%;
  }

  .media-frame--operate-bottom-gif {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .media-frame--demand-gif {
    width: min(100%, var(--mobile-media-max-balanced));
    margin-left: auto;
    margin-right: auto;
  }

  .media-frame--mobile-standard {
    width: min(100%, var(--mobile-media-max-standard));
    margin-left: auto;
    margin-right: auto;
  }

  .media-frame--mobile-standard .media-image--cover {
    aspect-ratio: var(--mobile-standard-aspect);
  }

  .section-card--enhanced > .card,
  .section-card--enhanced > .step-item,
  .section-card--enhanced > .tag-card,
  .section-card--enhanced > .feature-tile {
    padding-left: calc(var(--icon-wrap-size) + 0.95rem);
    min-height: 70px;
  }

  .section-card--enhanced > .card::before,
  .section-card--enhanced > .step-item::before,
  .section-card--enhanced > .tag-card::before,
  .section-card--enhanced > .feature-tile::before {
    left: 0.75rem;
    top: 0.82rem;
  }

  .pain-list {
    text-align: var(--mobile-list-text-align);
    width: 100%;
    max-width: none;
  }

  .pain-item {
    justify-content: flex-start;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: var(--mobile-list-text-align);
  }
}

.media-image {
  width: 100%;
  height: auto;
  display: block;
}

.media-image--cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mockup-frame {
  background: linear-gradient(170deg, #ffffff, #f7f9fc);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.mockup-frame h3 {
  margin-bottom: 0.85rem;
}

.mockup--device {
  position: relative;
  overflow: hidden;
}

.mockup--device::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -32px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 87, 34, 0.18), rgba(245, 87, 34, 0));
  pointer-events: none;
}

.mockup-card {
  border: 1px solid #e9edf4;
  color: #11141c;
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: var(--space-3);
  margin-bottom: var(--space-2);
  box-shadow: 0 6px 16px rgba(15, 20, 34, 0.05);
}

.mockup-card .meta {
  margin-top: 0.2rem;
  font-size: 0.87rem;
  color: #596173;
}

.mockup-card:last-child {
  margin-bottom: 0;
}

.stats-grid,
.card-grid,
.steps-grid,
.grid-3,
.tag-grid {
  display: grid;
  gap: 0.9rem;
}

.section-head + .stats-grid,
.section-head + .card-grid,
.section-head + .steps-grid,
.section-head + .grid-3,
.section-head + .tag-grid,
.section-head + .open-grid,
.section-head + .plain-list,
.section-head + .pain-list {
  margin-top: var(--space-4);
}

.stats-grid {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.stat-pill,
.metric-pill {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 253, 0.92));
  border: 1px solid #dde3ec;
  border-radius: 999px;
  text-align: center;
  padding: 0.82rem 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #161a23;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.open-grid {
  display: grid;
  gap: var(--space-5);
}

.open-item {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}

.open-item:hover {
  transform: none;
  box-shadow: none;
}

.open-item-icon {
  width: 32px;
  height: 32px;
  margin-bottom: var(--space-3);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.open-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: var(--icon-stroke-width);
  fill: none;
}

.open-item-title {
  display: block;
  font-weight: 700;
  color: #11141c;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.open-item-copy {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 34ch;
}

.steps-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.steps-timeline-track {
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(245, 87, 34, 0.32), rgba(122, 135, 155, 0.25));
}

.timeline-step {
  position: relative;
  padding-left: 2.35rem;
  transition: transform 0.22s ease;
}

.timeline-step-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #d8deea;
  background: #fff;
  color: #7b879b;
  font-weight: 700;
  font-size: 0.8rem;
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.timeline-step-icon {
  width: 32px;
  height: 32px;
  margin: 0 0 var(--space-2);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.timeline-step-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: var(--icon-stroke-width);
  fill: none;
}

.timeline-step-title {
  display: block;
  font-weight: 700;
  color: #11141c;
  font-size: 1.04rem;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.timeline-step-copy {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 28ch;
}

.section-editorial .section-head {
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
}

.section-editorial .section-head h2 {
  letter-spacing: -0.03em;
  max-width: 19ch;
}

#connect-features .app-features-intro.section-head {
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
}

#connect-features .app-features-intro h2 {
  letter-spacing: -0.03em;
  max-width: 26ch;
}

.section-editorial .steps-timeline-track {
  background: linear-gradient(90deg, rgba(31, 41, 55, 0.18), rgba(31, 41, 55, 0.08));
}

.section-editorial .timeline-step-marker {
  width: 28px;
  height: 28px;
  border-color: rgba(15, 17, 21, 0.16);
  color: #4a4f5b;
  box-shadow: none;
}

.section-editorial .timeline-step-icon {
  width: 28px;
  height: 28px;
  color: #a0a8b8;
}

.section-editorial .timeline-step-icon svg {
  width: 19px;
  height: 19px;
}

.open-grid--editorial {
  gap: clamp(1rem, 2vw, 1.3rem);
}

.open-grid--editorial .open-item-title {
  font-size: 1rem;
  margin-bottom: 0.26rem;
}

.open-grid--editorial .open-item-copy {
  font-size: 0.93rem;
  color: #596173;
}

.open-grid--editorial .open-item-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.62rem;
  color: #a0a8b8;
}

.open-grid--editorial .open-item-icon svg {
  width: 19px;
  height: 19px;
}

.contact-topic-grid {
  margin-top: var(--space-6);
}

.contact-topic-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100%;
  padding: clamp(1rem, 1.6vw, 1.25rem);
  border: 1px solid #e2e7f0;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 254, 0.96));
  box-shadow: 0 2px 8px rgba(17, 20, 28, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.contact-topic-link {
  text-decoration: none;
  color: inherit;
}

.contact-topic-link:visited {
  color: inherit;
}

.contact-topic-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 87, 34, 0.35);
  box-shadow: 0 10px 22px rgba(17, 20, 28, 0.08);
}

.contact-topic-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(245, 87, 34, 0.55);
  box-shadow: 0 10px 22px rgba(17, 20, 28, 0.08), 0 0 0 3px rgba(245, 87, 34, 0.2);
  outline: none;
}

.contact-topic-icon {
  width: 34px;
  height: 34px;
  margin-bottom: var(--space-3);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(245, 87, 34, 0.08);
}

.contact-topic-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: var(--icon-stroke-width);
  fill: none;
}

.contact-topic-title {
  margin-bottom: 0.45rem;
}

.contact-topic-copy {
  max-width: none;
}

.operate-pricing-grid .open-item-copy {
  max-width: 30ch;
}

.connect-fees-grid .pricing-card-amount {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #11141c;
}

.connect-fees-grid .open-item-copy {
  max-width: 30ch;
}

@media (max-width: 47.98rem) {
  .contact-topic-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .timeline-step {
    text-align: center;
    padding-left: 0;
    padding-top: 0.15rem;
  }

  .timeline-step-marker {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 auto var(--space-2);
  }

  .steps-timeline-track {
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
    bottom: 1rem;
  }

  .timeline-step-icon,
  .timeline-step-copy {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 48rem) {
  .open-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .open-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .open-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-4);
    align-items: start;
  }

  .steps-timeline-track {
    left: 12%;
    right: 12%;
    top: 14px;
    bottom: auto;
    width: auto;
    height: 1px;
    transform: none;
    background: linear-gradient(90deg, rgba(245, 87, 34, 0.28), rgba(122, 135, 155, 0.24));
  }

  .timeline-step {
    padding-left: 0;
  }

  .timeline-step-marker {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 0 var(--space-2);
  }
}

@media (hover: hover) {
  .timeline-step:hover {
    transform: translateY(-2px);
  }

  .timeline-step:hover .timeline-step-marker {
    color: var(--accent);
    border-color: rgba(245, 87, 34, 0.4);
  }

  .timeline-step:hover .timeline-step-icon {
    color: var(--accent-dark);
  }
}

.card,
.step-item,
.tag-card,
.feature-tile {
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.02rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card--feature {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.card--proof {
  background: linear-gradient(180deg, #fafbfd, #f2f5fa);
}

.card-icon-wrap {
  width: var(--icon-wrap-size);
  height: var(--icon-wrap-size);
  border: 1px solid #dbe2ee;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  display: inline-grid;
  place-items: center;
}

.card-icon {
  width: var(--icon-size);
  height: var(--icon-size);
  stroke: var(--icon-stroke);
  stroke-width: var(--icon-stroke-width);
  fill: none;
}

.card-title {
  display: block;
  font-weight: 600;
  color: #11141c;
}

.card-copy {
  display: block;
  margin-top: 0.15rem;
  color: #4f5768;
  font-size: 0.92rem;
}

.section-card--enhanced > .card,
.section-card--enhanced > .step-item,
.section-card--enhanced > .tag-card,
.section-card--enhanced > .feature-tile {
  position: relative;
  padding-left: calc(var(--icon-wrap-size) + 1.1rem);
  min-height: 76px;
}

/* Data-uri icons: stroke widths are numeric strings; align with --icon-stroke-width when editing */
.section-card--enhanced > .card::before,
.section-card--enhanced > .step-item::before,
.section-card--enhanced > .tag-card::before,
.section-card--enhanced > .feature-tile::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 0.92rem;
  width: var(--icon-wrap-size);
  height: var(--icon-wrap-size);
  border-radius: 10px;
  border: 1px solid #dbe2ee;
  background-color: #f9fbff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: var(--icon-size) var(--icon-size);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.section-card--enhanced > .card::before,
.section-card--enhanced > .feature-tile::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3a8.5 8.5 0 1 0 8.5 8.5A8.5 8.5 0 0 0 12 3Z' fill='none' stroke='%237b879b' stroke-width='1.8'/%3E%3Cpath d='M8.5 11.5h7M12 8v7' fill='none' stroke='%237b879b' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.section-card--enhanced > .step-item::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.5 12h12.5M13 7l4.5 5-4.5 5' fill='none' stroke='%237b879b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='5' cy='12' r='1.2' fill='%237b879b'/%3E%3C/svg%3E");
}

.section-card--enhanced > .tag-card::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4.5h6.8L20 11.7l-7.8 7.8L5 12.3Z' fill='none' stroke='%237b879b' stroke-width='1.8' stroke-linejoin='round'/%3E%3Ccircle cx='9' cy='8.5' r='1.2' fill='%237b879b'/%3E%3C/svg%3E");
}

@media (hover: hover) {
  .card:hover,
  .step-item:hover,
  .tag-card:hover,
  .feature-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #d8deea;
  }
}

.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #2f3645;
  display: grid;
  gap: 0;
}

.plain-list li {
  position: relative;
  margin: 0;
  padding: 0.7rem 0 0.7rem 1.7rem;
  line-height: 1.5;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92rem;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  opacity: 0.75;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 7 10 17l-5-5' fill='none' stroke='%237b879b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.plain-list--two-col {
  grid-template-columns: 1fr;
  column-gap: 0;
}

.plain-list--two-col li {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.plain-list--two-col li::before {
  top: 0.68rem;
}

@media (min-width: 48rem) {
  /* Tight columns (max-content) but align with section copy — do not center the whole block */
  .plain-list--two-col {
    grid-template-columns: repeat(2, max-content);
    justify-content: start;
    column-gap: 0.65rem;
    width: max-content;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.pain-list {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0;
  padding: var(--space-3) var(--space-4);
  color: #2d3340;
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.45;
  background: #ffffff;
  border: 1px solid #e9edf4;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 16px rgba(15, 20, 34, 0.05);
  min-height: 100%;
}

.pain-icon,
.players-sports-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  stroke: var(--icon-stroke);
  stroke-width: var(--icon-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  margin-top: 0.12rem;
}

.players-sports-list {
  list-style: none;
  margin: clamp(1rem, 2vw, 1.35rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.5rem, 1.5vw, 0.85rem) clamp(0.75rem, 2vw, 1.25rem);
}

.players-sports-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  color: #2d3340;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.45;
}

.problem-solution-layout {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: center;
}

.media-frame--problem-gif {
  border-radius: clamp(16px, 2.6vw, 24px);
  border-color: #dbe1ec;
  box-shadow: 0 16px 36px rgba(15, 20, 34, 0.11);
  background: linear-gradient(180deg, #ffffff, #f8fafd);
  overflow: hidden;
  width: min(100%, 340px);
  margin-left: auto;
  margin-right: auto;
  justify-self: center;
  align-self: center;
}

.media-frame--problem-gif .media-image--cover {
  aspect-ratio: 9 / 16;
  object-position: center top;
}

.media-frame--operate-solution {
  border-color: #e2e7f1;
  border-radius: var(--operate-solution-radius);
  box-shadow: var(--operate-solution-shadow);
  background: linear-gradient(180deg, #ffffff, #f9fbfe);
  width: min(100%, var(--operate-solution-media-desktop-max));
}

.media-frame--operate-solution::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(245, 87, 34, 0.12) 0%,
    rgba(245, 87, 34, 0.05) 18%,
    rgba(245, 87, 34, 0) 42%
  );
  z-index: 1;
}

.section-head {
  margin-bottom: var(--space-4);
}

.section-head h2 {
  max-width: 24ch;
}

.section-head p {
  max-width: 58ch;
}

.section-break {
  margin-top: var(--section-pad-y);
}

.steps-grid + .section-head,
.grid-3 + .section-head,
.card-grid + .section-head,
.tag-grid + .section-head,
.stats-grid + .section-head,
.pain-list + .section-head {
  margin-top: var(--section-pad-y);
}

.cta-section {
  text-align: center;
}

.form-shell {
  padding: clamp(1rem, 2vw, 1.6rem);
}

.contact-panel {
  max-width: 62ch;
  margin: 0 auto;
  padding: clamp(1.3rem, 2.3vw, 2rem);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  box-shadow: var(--shadow);
  display: grid;
  gap: var(--space-3);
}

.contact-panel-eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-panel-title {
  margin: 0;
  max-width: 28ch;
}

.contact-panel-copy {
  margin: 0;
  color: var(--muted);
}

.contact-email-cta {
  width: fit-content;
}

@media (max-width: 47.98rem) {
  .contact-panel,
  .contact-panel-title,
  .contact-panel-copy {
    text-align: center;
  }

  .contact-email-cta {
    margin-left: auto;
    margin-right: auto;
  }

  .players-sports-list {
    grid-template-columns: 1fr;
    max-width: 26ch;
    margin-left: auto;
    margin-right: auto;
  }

  .players-sports-item {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.form-grid {
  display: grid;
  gap: var(--space-3);
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: #181d28;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d6dce8;
  border-radius: 12px;
  padding: 0.72rem 0.86rem;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

textarea {
  resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #f6b59d;
  outline-offset: 1px;
  border-color: var(--accent);
}

.input-error {
  border-color: #dc2626;
  background: #fef2f2;
}

.form-status {
  margin-top: var(--space-2);
  font-weight: 600;
  min-height: 1.4rem;
}

form .btn-primary[type="submit"] {
  margin-top: var(--space-2);
  width: 100%;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text-strong);
  padding: var(--space-7) 0;
}

.site-footer .logo,
.site-footer h4 {
  color: var(--footer-text-strong);
}

.site-footer p {
  color: var(--footer-text-strong);
}

.site-footer .logo img {
  height: 36px;
}

.footer-grid {
  display: grid;
  gap: var(--space-4);
}

.footer-grid a {
  display: block;
  color: var(--footer-link);
  margin: 0 0 0.34rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--footer-link-hover);
  outline: none;
}

.footer-locale-switch {
  font-size: 0.9rem;
  margin-top: var(--space-3);
  color: var(--footer-text-strong);
}

.footer-locale-btn {
  background: none;
  border: 0;
  color: var(--footer-link);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  font: inherit;
}

.footer-locale-btn:hover,
.footer-locale-btn:focus-visible {
  color: var(--footer-link-hover);
  outline: none;
}

@media (min-width: 48rem) {
  .players-why-layout {
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  }

  .players-sports-layout {
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  }

  .players-sports-layout .media-frame--mobile-standard {
    margin-left: 0;
    margin-right: 0;
    justify-self: end;
  }

  .media-frame--players-why-gif {
    width: min(100%, var(--players-why-gif-max-web));
    margin-left: 0;
    margin-right: 0;
    justify-self: end;
  }

  .media-frame--contact-hero {
    width: min(100%, 390px);
    margin-left: 0;
    margin-right: 0;
    justify-self: end;
  }

  .media-frame--operate-solution {
    width: min(100%, var(--operate-solution-media-tablet-max));
  }

  .media-frame--operate-solution .media-image--cover {
    aspect-ratio: 4 / 5;
    object-position: center 18%;
  }

  .hero-grid,
  .two-col {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 1.8rem;
  }

  .hero--with-visual .hero-standard__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(1rem, 1.8vw, 1.4rem);
  }

  .hero--text-only .hero-standard__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-shell {
    padding: 0;
  }

  :root {
    --shell-pad-y: clamp(1.2rem, 1.8vw, 1.8rem);
  }

  .section-shell {
    padding-block: var(--shell-pad-y);
    padding-inline: var(--shell-pad-x);
  }

  .form-shell {
    padding: clamp(1.2rem, 1.8vw, 1.8rem);
  }

  .section-shell--editorial {
    padding: 0;
  }

  .media-frame--hero {
    min-height: 390px;
    aspect-ratio: 5 / 4;
  }

  .hero-cutout-composition {
    min-height: 390px;
    aspect-ratio: 5 / 4;
  }

  .hero-cutout-piece--secondary {
    transform: translate(-12%, 8%) rotate(-8deg);
  }

  .hero-cutout-piece--tertiary {
    transform: translate(12%, -10%) rotate(9deg);
  }

  .media-frame--sports-outline::before {
    inset: -12px;
    border-radius: calc(var(--radius) + 12px);
    background-size: 66px 66px, 66px 66px, 66px 66px, 66px 66px;
    opacity: 0.9;
  }

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

  .hero-trust-line .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust-inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    font-size: 0.9rem;
  }

  .hero-trust-inline li {
    padding-left: 0;
  }

  .hero-trust-inline li::before {
    display: none;
  }

  .hero-trust-inline li + li {
    padding-left: 1rem;
  }

  .hero-trust-inline li + li::before {
    display: block;
    left: 0;
    top: 0.62em;
    width: 5px;
    height: 5px;
    background: rgba(45, 51, 64, 0.35);
  }

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

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

  .grid-3 > .card,
  .grid-3 > .feature-tile,
  .tag-grid > .tag-card {
    min-height: 100%;
  }

  .card-grid > .card,
  .steps-grid > .step-item {
    min-height: 120px;
  }

  .pain-list {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  }

  .problem-solution-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
  }

  .media-frame--problem-gif {
    justify-self: center;
    align-self: center;
  }

  .pain-item {
    padding: var(--space-4) clamp(1rem, 2vw, 1.35rem);
  }

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

@media (min-width: 62rem) {
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 0;
    background: transparent;
    padding: 0;
  }

  .site-nav a {
    padding: 0.58rem 0.72rem;
  }

  .nav-toggle {
    display: none;
  }
}

@media (min-width: 64rem) {
  .hero--with-visual .hero-standard__layout {
    gap: clamp(1rem, 1.4vw, 1.25rem);
  }

  .media-frame--operate-solution {
    width: min(100%, var(--operate-solution-media-desktop-max));
  }

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

  .hero-trust-line {
    max-width: 52ch;
  }

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

  .hero-trust-inline {
    gap: 0.4rem 1.2rem;
    font-size: 0.92rem;
  }

  .media-frame--hero {
    min-height: 470px;
    aspect-ratio: 11 / 10;
  }

  .hero-cutout-composition {
    min-height: 470px;
    aspect-ratio: 11 / 10;
  }

  .hero-collage {
    min-height: 470px;
    aspect-ratio: 11 / 10;
  }

  .hero-cutout-piece--secondary {
    transform: translate(-14%, 9%) rotate(-9deg);
  }

  .hero-cutout-piece--tertiary {
    transform: translate(15%, -12%) rotate(10deg);
  }

  .media-frame--sports-outline::before {
    inset: -14px;
    border-radius: calc(var(--radius) + 14px);
    background-size: 72px 72px, 72px 72px, 72px 72px, 72px 72px;
    opacity: 0.94;
  }

  .section-head h2 {
    max-width: 22ch;
  }

  .hero-shell {
    padding: 0;
  }

  :root {
    --shell-pad-y: clamp(1.35rem, 1.8vw, 2rem);
  }

  .section-shell {
    padding-block: var(--shell-pad-y);
    padding-inline: var(--shell-pad-x);
  }

  .form-shell {
    padding: clamp(1.35rem, 1.8vw, 2rem);
  }
}

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