/* === Custom Properties === */
:root {
  --green: #00e676;
  --green-dark: #00b359;
  --green-glow: rgba(0,230,118,0.15);
  --black: #050a05;
  --dark: #0c110c;
  --card: #111811;
  --card2: #161e16;
  --border: rgba(0,230,118,0.15);
  --white: #ffffff;
  --off-white: #e8ede8;
  --muted: rgba(255,255,255,0.45);
  --dim: rgba(255,255,255,0.2);
  --brs-font-display: 'Anton', sans-serif;
  --brs-font-heading: 'Bebas Neue', sans-serif;
  --brs-font-body: 'Barlow', sans-serif;
  --brs-max-width: 1200px;
  --brs-header-h: 66px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--brs-font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
section { scroll-margin-top: 80px; }

/* === Layout === */
.brs-container {
  max-width: var(--brs-max-width);
  margin: 0 auto;
  padding: 0 5%;
}

/* === Header === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--brs-header-h);
  background: rgba(5,10,5,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .brs-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo {
  font-family: var(--brs-font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.site-logo__accent { color: var(--green); }

/* Nav */
.site-nav__list {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.site-nav__list li a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.site-nav__list li a:hover,
.site-nav__list li a:focus {
  color: var(--green);
}
.site-nav__cta a {
  background: var(--green) !important;
  color: var(--black) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 3px;
  font-weight: 700 !important;
  transition: background 0.2s;
}
.site-nav__cta a:hover,
.site-nav__cta a:focus {
  background: var(--green-dark) !important;
}

/* Hamburger */
.site-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.site-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.site-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.site-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === Hero === */
.brs-hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 110px 5% 80px;
  position: relative;
  overflow: hidden;
}
.brs-hero__field {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(0,230,118,0.03) 59px, rgba(0,230,118,0.03) 60px),
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(0,230,118,0.03) 59px, rgba(0,230,118,0.03) 60px);
}
.brs-hero__radial {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,0.07) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.brs-hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
.brs-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.brs-hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.brs-hero__heading {
  font-family: var(--brs-font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.brs-green { color: var(--green); }

.brs-hero__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2rem;
  font-weight: 400;
}
.brs-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.brs-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero Form Card */
.brs-hero-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.brs-hero-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
}
.brs-hero-form__title {
  font-family: var(--brs-font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.brs-hero-form__subtitle {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.brs-hero-form__subtitle strong { color: var(--green); }
.brs-hero-form .brs-fg {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.brs-hero-form .brs-fg label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}
.brs-hero-form input[type="text"],
.brs-hero-form input[type="email"],
.brs-hero-form input[type="tel"] {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--brs-font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.brs-hero-form input::placeholder { color: rgba(255,255,255,0.2); }
.brs-hero-form input:focus { border-color: var(--green); background: rgba(0,230,118,0.04); }

.brs-hero-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0.5rem 0 1rem;
}
.brs-hero-form__consent input[type="checkbox"] {
  width: 16px; height: 16px; min-width: 16px;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}
.brs-hero-form__consent label {
  font-size: 0.7rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
}
.brs-hero-form__consent label a { color: var(--green); }
.brs-hero-form__btn {
  display: block;
  width: 100%;
  background: var(--green);
  color: var(--black);
  border: none;
  font-family: var(--brs-font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  padding: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.brs-hero-form__btn:hover,
.brs-hero-form__btn:focus {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,230,118,0.25);
}
.brs-hero-form__success {
  display: none;
  text-align: center;
  padding: 1.5rem 0;
}
.brs-hero-form__success .check-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(0,230,118,0.12);
  border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.brs-hero-form__success .check-circle svg {
  width: 26px; height: 26px;
  stroke: var(--green); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.brs-hero-form__success h3 {
  font-family: var(--brs-font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.brs-hero-form__success p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.is-hidden { display: none !important; }

/* === Stats Bar (Green Band) === */
.brs-stats {
  background: var(--green);
  padding: 1.1rem 5%;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.brs-stat {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brs-stat__value {
  font-family: var(--brs-font-display);
  font-size: 1.6rem;
  color: var(--black);
  line-height: 1;
}
.brs-stat__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.6);
  text-align: left;
  line-height: 1.3;
}

/* === Why Section === */
.brs-why {
  background: var(--dark);
  padding: 100px 5%;
}
.brs-why .brs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
}
.brs-section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.brs-section-tag::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--green);
}
.brs-section-title {
  font-family: var(--brs-font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.brs-why__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.brs-feature-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.brs-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s;
}
.brs-feature-card:hover { border-color: var(--green); }
.brs-feature-card__icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--green-glow);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.brs-feature-card__title {
  font-family: var(--brs-font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.brs-feature-card__desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
}

/* === Sports Coverage === */
.brs-sports {
  background: var(--black);
  padding: 100px 5%;
}
.brs-sports__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.brs-sports__header .brs-section-tag {
  justify-content: center;
}
.brs-sports__header .brs-section-tag::after {
  content: '';
  width: 20px; height: 2px;
  background: var(--green);
}
.brs-sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.brs-sport-card {
  background: var(--card);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: background 0.25s;
  cursor: default;
}
.brs-sport-card:hover { background: var(--card2); }
.brs-sport-card__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.brs-sport-card__name {
  font-family: var(--brs-font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.brs-sport-card__desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* === Pricing === */
.brs-pricing {
  background: var(--black);
  padding: 100px 5%;
  text-align: center;
}
.brs-pricing__header {
  margin-bottom: 0;
}
.brs-pricing__header .brs-section-tag {
  justify-content: center;
}
.brs-pricing__header .brs-section-tag::after {
  content: '';
  width: 20px; height: 2px;
  background: var(--green);
}
.brs-pricing__desc {
  color: var(--muted);
  max-width: 480px;
  margin: 0.75rem auto 0;
  font-size: 1rem;
  line-height: 1.75;
}
.brs-pricing-card {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3rem 3.5rem;
  max-width: 460px;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
  text-align: left;
}
.brs-pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
}
.brs-pricing-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-glow);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.25rem;
}
.brs-pricing-card__plan {
  font-family: var(--brs-font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.brs-pricing-card__price {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.brs-pricing-card__dollar {
  font-family: var(--brs-font-display);
  font-size: 1.8rem;
  color: var(--green);
  margin-top: 0.5rem;
}
.brs-pricing-card__amount {
  font-family: var(--brs-font-display);
  font-size: 5rem;
  color: var(--white);
  line-height: 1;
}
.brs-pricing-card__period {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 0.75rem;
}
.brs-pricing-card__info {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.brs-pricing-card__features {
  text-align: left;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.brs-pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 500;
}
.brs-pricing-card__features li::before {
  content: '\2713';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 50%;
  background: var(--green-glow);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
}
.brs-pricing-card__btn {
  display: block;
  width: 100%;
  background: var(--green);
  color: var(--black);
  font-family: var(--brs-font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.brs-pricing-card__btn:hover,
.brs-pricing-card__btn:focus {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,230,118,0.25);
}
.brs-pricing-card__trust {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1.25rem;
}

/* === Testimonials === */
.brs-testimonials {
  background: var(--dark);
  padding: 100px 5%;
}
.brs-testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}
.brs-testimonials__header .brs-section-tag {
  justify-content: center;
}
.brs-testimonials__header .brs-section-tag::after {
  content: '';
  width: 20px; height: 2px;
  background: var(--green);
}
.brs-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}
.brs-testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.brs-testimonial-card:hover { border-color: rgba(0,230,118,0.35); }
.brs-testimonial-card__stars {
  color: var(--green);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}
.brs-testimonial-card__quote {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.brs-testimonial-card__author {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.brs-testimonial-card__role {
  font-size: 0.78rem;
  color: var(--dim);
  font-weight: 400;
}

/* === CTA === */
.brs-cta {
  background: var(--black);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brs-cta__radial {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.brs-cta__inner { position: relative; }
.brs-cta .brs-section-tag { justify-content: center; }
.brs-cta .brs-section-tag::after {
  content: '';
  width: 20px; height: 2px;
  background: var(--green);
}
.brs-cta .brs-section-title { margin-bottom: 0; }
.brs-cta__desc {
  color: var(--muted);
  max-width: 440px;
  margin: 1rem auto 0;
  line-height: 1.75;
  font-size: 1rem;
}
.brs-cta__btn {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-family: var(--brs-font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  padding: 1rem 3rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 2rem;
}
.brs-cta__btn:hover,
.brs-cta__btn:focus {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,230,118,0.25);
}

/* === Disclaimer === */
.brs-disclaimer {
  background: #030603;
  padding: 2rem 5%;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.brs-disclaimer__text {
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.2);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.brs-disclaimer__text strong {
  color: rgba(255,255,255,0.35);
}

/* === Footer === */
.site-footer {
  background: var(--dark);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.site-footer .brs-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer .site-logo { font-size: 1.5rem; }
.site-footer__nav ul {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.site-footer__nav a {
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.site-footer__nav a:hover { color: var(--green); }
.site-footer__copy {
  font-size: 0.78rem;
  color: var(--dim);
}

/* === Legal Pages === */
.brs-legal__hero {
  background: var(--dark);
  padding: 120px 5% 60px;
  border-bottom: 1px solid var(--border);
}
.brs-legal__title {
  font-family: var(--brs-font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1rem;
}
.brs-legal__meta {
  font-size: 0.82rem;
  color: var(--muted);
}
.brs-legal__body {
  background: var(--black);
  padding: 60px 5% 80px;
}
.brs-legal__content {
  max-width: 700px;
  margin: 0 auto;
}
.brs-legal__content h2,
.brs-legal__content h3 {
  font-family: var(--brs-font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin: 2.5rem 0 0.75rem;
}
.brs-legal__content h3 {
  font-size: 1.1rem;
  color: var(--green);
}
.brs-legal__content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.brs-legal__content ul,
.brs-legal__content ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
  list-style: disc;
}
.brs-legal__content li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.brs-legal__content a {
  color: var(--green);
  transition: color 0.2s;
}
.brs-legal__content a:hover { color: var(--green-dark); }
.brs-legal__content blockquote {
  background: var(--card);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.brs-legal__content blockquote h3 { margin-top: 0; }
.brs-legal__contact {
  max-width: 700px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.brs-legal__contact p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.brs-legal__contact a {
  color: var(--green);
  font-weight: 600;
}

/* === Page Content (for shortcode pages) === */
.brs-page-content {
  padding: 40px 0 80px;
  min-height: 60vh;
  margin-top: var(--brs-header-h);
}

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 900px) {
  .brs-hero__layout { grid-template-columns: 1fr; }
  .brs-hero-form { max-width: 500px; }
  .brs-why .brs-container { grid-template-columns: 1fr; gap: 3rem; }
  .brs-sports-grid { grid-template-columns: repeat(2, 1fr); }
  .brs-testimonials-grid { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 600px) {
  .site-nav { display: none; }
  .site-nav.is-open {
    display: block;
    position: absolute;
    top: var(--brs-header-h);
    left: 0; right: 0;
    background: rgba(5,10,5,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 24px 5%;
    z-index: 999;
  }
  .site-nav.is-open .site-nav__list {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .site-nav.is-open .site-nav__list li a {
    font-size: 1rem;
    padding: 8px 0;
    display: block;
  }
  .site-nav__toggle { display: flex; }
  .brs-stats { gap: 1.5rem; }
  .brs-hero, .brs-why, .brs-sports, .brs-pricing, .brs-testimonials, .brs-cta { padding: 70px 5%; }
  .site-footer .brs-container { flex-direction: column; text-align: center; }
  .site-footer__nav ul { justify-content: center; }
}
