:root {
  --bg-deep: #050810;
  --bg-card: #0c1424;
  --blue-bright: #00b8ff;
  --blue-mid: #1a6fd4;
  --blue-dark: #0d2d5c;
  --gold-light: #ffe566;
  --gold-mid: #f5c518;
  --gold-dark: #c9920a;
  --text: #e8eef8;
  --text-muted: #8fa3c4;
  --border: rgba(0, 184, 255, 0.25);
  --radius: 12px;
  --font-display: "Rajdhani", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 184, 255, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(26, 111, 212, 0.08), transparent);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue-bright);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 8, 16, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.brand:hover {
  text-decoration: none;
  color: var(--gold-light);
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 44px;
  flex-shrink: 0;
}

.brand-logo img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.25;
  text-align: center;
}

.nav-desktop a:hover {
  color: var(--blue-bright);
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-actions .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--blue-bright);
  color: var(--blue-bright);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-mid) 55%, var(--gold-dark));
  color: #1a1200;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 6px 28px rgba(245, 197, 24, 0.5);
}

.btn-blue {
  background: linear-gradient(180deg, var(--blue-bright), var(--blue-mid));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 184, 255, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.25rem;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--text-muted);
  padding: 0.35rem 0;
}

/* Hero — matches app login visual (fans-hero.png) */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(92vh, 880px);
}

.hero-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.hero-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(5, 8, 16, 0.92), rgba(5, 8, 16, 0.72)),
    linear-gradient(to top, rgba(5, 8, 16, 0.88), rgba(5, 8, 16, 0.35) 55%, transparent 80%);
  pointer-events: none;
}

.hero-carousel-track {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 auto;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-mid) transparent;
}

.hero-slide-panel {
  position: relative;
  z-index: 1;
  padding: 2rem 1.75rem 4.5rem;
  max-width: 40rem;
}

.hero-slide-panel .section-title {
  margin-top: 0;
}

.hero-slide-panel .section-eyebrow {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-slide-panel .section-sub {
  margin-bottom: 1rem;
}

.hero-slide-lead,
.hero-slide-note {
  color: #b8c8de;
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-slide-lead {
  margin: 0 0 1rem;
}

.hero-slide-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.hero-slide .check-list li {
  font-size: 0.9rem;
  padding: 0.5rem 0 0.5rem 1.35rem;
}

.check-list-features li {
  padding: 0.4rem 0 0.4rem 1.35rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.check-list-features li strong {
  color: var(--gold-light);
  font-weight: 600;
}

.check-list-compact li {
  font-size: 0.82rem;
  padding: 0.35rem 0 0.35rem 1.25rem;
}

.feature-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.feature-col-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-bright);
}

@media (max-width: 520px) {
  .feature-columns {
    grid-template-columns: 1fr;
  }
}

.hero-slide .card {
  padding: 1rem;
}

.hero-slide .card h3 {
  font-size: 1rem;
}

.hero-slide .card p {
  font-size: 0.85rem;
}

.card-grid-compact {
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.form-panel-carousel {
  padding: 1rem;
  max-width: none;
}

.form-panel-carousel .zoho-iframe {
  min-height: 420px;
}

.hero-carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  z-index: 4;
  pointer-events: auto;
  display: flex;
  gap: 0.5rem;
  padding: 0 2rem;
}

.hero-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(5, 8, 16, 0.72);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hero-carousel-btn:hover {
  background: rgba(5, 8, 16, 0.92);
  border-color: var(--blue-bright);
  color: var(--gold-light);
}

.hero-carousel-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.hero-carousel-prev {
  left: 0.75rem;
}

.hero-carousel-next {
  right: 0.75rem;
}

.hero-carousel-dots button {
  width: 2.25rem;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-carousel-dots button.is-active {
  background: linear-gradient(90deg, var(--gold-mid), var(--blue-bright));
  transform: scaleY(1.35);
}

.hero-carousel-dots button:hover {
  background: rgba(255, 255, 255, 0.45);
}

nav[data-carousel-nav] a.is-active {
  color: var(--gold-light);
}

.hero-visual-tag {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold-light);
}

.hero-visual-headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

.hero-visual-headline span {
  background: linear-gradient(90deg, #34d399, var(--blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-visual-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 2rem 1.75rem 2.25rem;
  background: linear-gradient(to top, rgba(5, 8, 16, 0.95), rgba(5, 8, 16, 0.55) 70%, transparent);
}

.hero-visual-sub {
  margin: 0.75rem 0 1.25rem;
  max-width: 28rem;
  color: #c5d4ea;
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-visual-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-content {
  display: flex;
  align-items: center;
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
  background: var(--bg-deep);
  border-left: 1px solid var(--border);
}

.hero-content-inner {
  max-width: 34rem;
}

.hero-logo {
  display: block;
  height: auto;
  width: min(220px, 75vw);
  max-height: 96px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.hero-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-bright);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero-content h1 span {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.hero-points {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #34d399;
  font-weight: 700;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  justify-content: center;
}

.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: min(100%, 14rem);
}

.hero-audience-label {
  display: block;
  width: 100%;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.hero-audience-label-fans {
  color: #1a1200;
  background: linear-gradient(90deg, var(--gold-mid), var(--gold-light));
  box-shadow: 0 0 0 1px rgba(245, 197, 24, 0.45);
}

.hero-audience-label-venues {
  color: #fff;
  background: linear-gradient(90deg, #0279ff, var(--blue-bright));
  box-shadow: 0 0 0 1px rgba(0, 184, 255, 0.45);
}

.hero-cta-block .btn {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: #fff;
  line-height: 1;
}

.hero-stats span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-stat-league strong {
  transition: opacity 0.35s ease;
}

.hero-stat-league strong.is-fading {
  opacity: 0;
}

.hero-stat-league {
  min-width: 9.5rem;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: rgba(0, 0, 0, 0.22);
  border-block: 1px solid var(--border);
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.split-block.reverse .split-copy {
  order: 2;
}

.split-block.reverse .check-list {
  order: 1;
}

.split-copy p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.35rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-bright);
  font-weight: 700;
}

.card-grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.section-cta {
  margin: 2rem 0 0;
  text-align: center;
}

/* Info subpages (FLY Zone, etc.) */
.container-narrow {
  width: min(720px, 92vw);
}

.info-page .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.resp-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: resp;
}

.resp-list li {
  counter-increment: resp;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.25rem 1.25rem 3.5rem;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.resp-list li::before {
  content: counter(resp);
  position: absolute;
  left: 1.1rem;
  top: 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-light);
}

.resp-list h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.resp-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.callout {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 197, 24, 0.35);
  background: rgba(245, 197, 24, 0.08);
}

.callout h3 {
  margin: 0 0 0.5rem;
  color: var(--gold-light);
  font-family: var(--font-display);
}

.callout p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.muted {
  color: var(--text-muted);
}

.muted.small {
  font-size: 0.85rem;
  margin-top: 1.25rem;
}

.cta-panel .hero-cta {
  margin-top: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  color: var(--gold-light);
}

.section-sub {
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 40rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--blue-bright);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* About */
.about-copy {
  max-width: 42rem;
}

.about-copy p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

/* Forms */
.form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 520px;
}

.form-panel-wide {
  max-width: 640px;
  margin-inline: auto;
}

.signup-section-inner .section-sub {
  max-width: 36rem;
  margin-inline: auto;
}

.signup-section .form-panel {
  margin-top: 1.5rem;
}

.form-success-banner {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(18, 170, 103, 0.12);
  border: 1px solid rgba(18, 170, 103, 0.4);
  color: #b8f5d4;
  font-size: 0.95rem;
}

.form-success-banner[hidden] {
  display: none !important;
}

.zoho-iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
  border-radius: 8px;
  background: var(--bg-card);
  display: block;
}

.investor-copy .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.investor-block {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .investor-block {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.investor-copy ul {
  color: var(--text-muted);
  padding-left: 1.2rem;
}

.investor-copy li {
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--blue-bright);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 1.5rem 0 0;
}

/* ─────────────────────────────────────────────────────────────
   REDESIGN OVERRIDES & NEW SECTIONS
   ───────────────────────────────────────────────────────────── */

/* Stronger hero overlay so carousel text is actually readable */
.hero-visual-overlay {
  background:
    linear-gradient(to right, rgba(5, 8, 16, 0.97) 0%, rgba(5, 8, 16, 0.82) 60%, rgba(5, 8, 16, 0.55) 100%),
    linear-gradient(to top, rgba(5, 8, 16, 0.95) 0%, rgba(5, 8, 16, 0.4) 50%, transparent 80%);
}

/* Carousel slide: more breathing room at top */
.hero-slide-panel {
  padding: 2.5rem 2rem 5rem;
}

/* Slide headings: bigger, bolder */
.hero-slide-panel .section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* Slide subtitle text: brighter */
.hero-slide-panel .section-sub {
  color: #c8d8ed;
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* Lead text in slides: sharper */
.hero-slide-lead {
  color: #cddaec;
  font-size: 0.97rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Feature checklist items in slides: brighter */
.hero-slide .check-list li,
.check-list-features li {
  color: #dce8f8;
  border-bottom-color: rgba(0, 184, 255, 0.12);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Hero right-panel: subtle gradient instead of flat bg */
.hero-content {
  background: linear-gradient(135deg, #080e1e 0%, #0a1428 60%, #061020 100%);
  border-left: 1px solid rgba(0, 184, 255, 0.18);
  position: relative;
  overflow: hidden;
}

/* Decorative glow behind the hero right panel */
.hero-content::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(0, 184, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(245, 197, 24, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Stats: accent line color upgrade */
.hero-stats {
  border-top-color: rgba(0, 184, 255, 0.2);
}

.hero-stats strong {
  font-size: 2rem;
  background: linear-gradient(180deg, #fff 30%, #b8d0f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─── Features Belt ─────────────────────────────────────────── */
.features-belt {
  background: linear-gradient(180deg, rgba(0, 184, 255, 0.07) 0%, rgba(0, 0, 0, 0) 100%);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0 2rem;
  overflow: hidden;
}

.features-belt-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}

.features-belt-group {
  padding: 1rem 1.1rem 1.15rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(5, 8, 16, 0.35);
}

.features-belt-group-fans {
  border-color: rgba(245, 197, 24, 0.35);
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.08) 0%, rgba(5, 8, 16, 0.2) 100%);
}

.features-belt-group-venues {
  border-color: rgba(0, 184, 255, 0.35);
  background: linear-gradient(180deg, rgba(0, 184, 255, 0.08) 0%, rgba(5, 8, 16, 0.2) 100%);
}

.features-belt-heading {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.features-belt-heading-fans {
  color: var(--gold-light);
}

.features-belt-heading-venues {
  color: var(--blue-bright);
}

.features-belt-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  justify-content: center;
  padding: 0;
  list-style: none;
  margin: 0;
}

.features-belt-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 184, 255, 0.15);
  background: rgba(0, 184, 255, 0.04);
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.features-belt-item:hover {
  color: var(--blue-bright);
  border-color: rgba(0, 184, 255, 0.35);
}

.features-belt-item .belt-icon {
  font-size: 1rem;
  line-height: 1;
}

/* ─── Audience Two-Up Section ───────────────────────────────── */
.audience-section {
  padding: 5rem 0;
}

.audience-section .section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue-bright);
  margin-bottom: 0.6rem;
}

.audience-section .section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 2.5rem;
  color: #fff;
  line-height: 1.1;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.audience-card:hover {
  border-color: rgba(0,184,255,0.4);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* Top accent bar */
.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
}

.audience-card-fans::before {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-mid));
}

.audience-card-venue::before {
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-bright), #34d399);
}

/* Corner glow */
.audience-card-fans::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(245,197,24,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.audience-card-venue::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0,184,255,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.audience-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.audience-badge-fan {
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.audience-badge-venue {
  background: rgba(0, 184, 255, 0.12);
  color: var(--blue-bright);
  border: 1px solid rgba(0, 184, 255, 0.25);
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.6rem;
  color: #fff;
}

.audience-card-fans h3 { color: #fff; }
.audience-card-venue h3 { color: #fff; }

.audience-card .audience-desc {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}

.audience-card .check-list {
  margin: 0;
}

.audience-card-fans .check-list li::before {
  color: var(--gold-mid);
}

.audience-card-venue .check-list li::before {
  color: var(--blue-bright);
}

.audience-card .check-list li {
  font-size: 0.93rem;
  padding: 0.55rem 0 0.55rem 1.35rem;
  color: #c8d8ee;
  border-bottom-color: rgba(255,255,255,0.06);
}

.audience-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 0.5rem;
}

@media (max-width: 720px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Sign-up Section Redesign ──────────────────────────────── */
.signup-section {
  position: relative;
  padding: 5rem 0 6rem;
  background: transparent;
  border-block: none;
  overflow: hidden;
}

.signup-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%),
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(26, 111, 212, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.signup-section > * {
  position: relative;
  z-index: 1;
}

.signup-section-inner {
  text-align: center;
}

.signup-section-inner .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.signup-section-inner .section-sub {
  font-size: 1rem;
  color: #94adc8;
  max-width: 32rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.signup-section .form-panel {
  margin-inline: auto;
  margin-top: 0;
  background: rgba(12, 20, 36, 0.9);
  border-color: rgba(0, 184, 255, 0.22);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

/* Divider line before sign-up section */
.pre-signup-divider {
  width: min(320px, 80vw);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Full-width audience bands */
.audience-band {
  padding: 4.5rem 0;
  border-block: 1px solid var(--border);
}

.audience-band-fans {
  background:
    radial-gradient(ellipse 70% 60% at 10% 0%, rgba(245, 197, 24, 0.08), transparent 55%),
    var(--bg-deep);
}

.audience-band-venues {
  background:
    radial-gradient(ellipse 70% 60% at 90% 0%, rgba(0, 184, 255, 0.1), transparent 55%),
    rgba(0, 0, 0, 0.22);
}

.audience-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: start;
}

.audience-band-header .section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue-bright);
  margin-bottom: 0.6rem;
}

.audience-band-header .section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
  color: #fff;
  line-height: 1.1;
}

.audience-band-lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34rem;
}

.audience-band-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.audience-feature-list {
  margin: 0;
  padding: 1.5rem;
  background: rgba(12, 20, 36, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.audience-feature-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.special-sauce-callout {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 197, 24, 0.45);
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.14), rgba(12, 20, 36, 0.85));
  box-shadow: 0 0 32px rgba(245, 197, 24, 0.08);
}

.special-sauce-venue {
  border-color: rgba(0, 184, 255, 0.45);
  background: linear-gradient(135deg, rgba(0, 184, 255, 0.12), rgba(12, 20, 36, 0.85));
  box-shadow: 0 0 32px rgba(0, 184, 255, 0.08);
}

.special-sauce-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1200;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-mid));
}

.special-sauce-badge-venue {
  color: #fff;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-bright));
}

.special-sauce-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

.special-sauce-venue .special-sauce-title {
  color: var(--blue-bright);
}

.special-sauce-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #c5d4ea;
}

.hero-special-sauce {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--gold-mid);
  background: rgba(245, 197, 24, 0.08);
  color: #d4e0f0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-special-sauce strong {
  color: var(--gold-light);
}

.features-belt-special {
  border-color: rgba(245, 197, 24, 0.5);
  color: var(--gold-light);
  font-weight: 600;
}

.features-belt-fan {
  border-color: rgba(245, 197, 24, 0.22);
  color: #e8eef8;
}

.features-belt-venue {
  border-color: rgba(0, 184, 255, 0.45);
  color: var(--blue-bright);
  font-weight: 600;
}

@media (max-width: 768px) {
  .features-belt-wrap {
    grid-template-columns: 1fr;
  }
}

/* Audience banners (carousel + highlights) */
.audience-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  width: 100%;
  margin: 0 auto 1.25rem;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  text-align: center;
}

.audience-banner-kicker {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.6vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
}

.audience-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.8vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
}

.audience-banner-fans {
  color: #1a1200;
  background: linear-gradient(90deg, rgba(245, 197, 24, 0.95), rgba(255, 229, 102, 0.95));
  box-shadow: 0 0 0 1px rgba(245, 197, 24, 0.55), 0 8px 24px rgba(245, 197, 24, 0.15);
}

.audience-banner-venues {
  color: #fff;
  background: linear-gradient(90deg, rgba(2, 121, 255, 0.95), rgba(0, 184, 255, 0.92));
  box-shadow: 0 0 0 1px rgba(0, 184, 255, 0.55), 0 8px 24px rgba(0, 184, 255, 0.12);
}

.features-for-label {
  margin: 0.25rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
}

.features-for-fans {
  color: var(--gold-light);
}

.features-for-venues {
  color: var(--blue-bright);
}

.hero-slide-fans .hero-slide-panel {
  border-top: 4px solid var(--gold-mid);
}

.hero-slide-venues .hero-slide-panel {
  border-top: 4px solid var(--blue-bright);
}

.check-list-fans li::before {
  color: var(--gold-light);
}

.check-list-venues li::before {
  color: var(--blue-bright);
}

.hero-carousel-dots-labeled {
  gap: 0.65rem;
  justify-content: center;
}

.hero-carousel-dots-labeled button {
  width: auto;
  height: auto;
  min-height: 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 8, 16, 0.72);
  transform: none;
}

.hero-carousel-dots-labeled button .dot-label {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.8vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c5d4ea;
  white-space: nowrap;
}

.hero-carousel-dots-labeled .hero-carousel-dot-fans.is-active {
  background: linear-gradient(90deg, var(--gold-mid), var(--gold-light));
  border-color: rgba(245, 197, 24, 0.65);
  transform: none;
}

.hero-carousel-dots-labeled .hero-carousel-dot-fans.is-active .dot-label {
  color: #1a1200;
}

.hero-carousel-dots-labeled .hero-carousel-dot-venues.is-active {
  background: linear-gradient(90deg, #0279ff, var(--blue-bright));
  border-color: rgba(0, 184, 255, 0.65);
  transform: none;
}

.hero-carousel-dots-labeled .hero-carousel-dot-venues.is-active .dot-label {
  color: #fff;
}

nav[data-carousel-nav] a.is-active[href="#sports-fans"] {
  color: var(--gold-light);
}

nav[data-carousel-nav] a.is-active[href="#sports-venues"] {
  color: var(--blue-bright);
}

.hero-slide-panel .special-sauce-callout {
  margin-bottom: 1rem;
}

.hero-slide-panel .special-sauce-desc {
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.7rem 1.35rem;
  font-size: 0.95rem;
}

/* Leagues section */
.leagues-section {
  padding: 4rem 0 4.5rem;
}

.leagues-section .section-eyebrow,
.leagues-section .section-heading {
  text-align: center;
}

.leagues-section .section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.leagues-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}

.leagues-block {
  margin-bottom: 2rem;
}

.leagues-block-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.league-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.league-tags li {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
}

.league-tags-upcoming li {
  border-color: rgba(0, 184, 255, 0.35);
  color: #c5d4ea;
}

.league-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Signup type toggle */
.signup-type-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.25rem 0 0.75rem;
}

.signup-type-btn.is-active {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.signup-type-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}

.signup-legal-notice {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0, 184, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 8, 16, 0.35);
  font-size: 0.88rem;
  line-height: 1.55;
  color: #b8c8de;
  text-align: left;
}

.signup-legal-notice a {
  color: var(--blue-bright);
  text-decoration: underline;
}

.signup-legal-notice a:hover {
  color: var(--gold-light);
}

.signup-legal-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.signup-age-notice {
  margin: 0.75rem 0 0;
  color: #dce8f8;
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(5, 8, 16, 0.96);
  border-top: 1px solid rgba(0, 184, 255, 0.25);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-consent p {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cookie-consent a {
  color: var(--blue-bright);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
}

/* California resident toggle — CPRA-only UI */
.ca-only,
.ca-only-inline,
.ca-only-block {
  display: none !important;
}

html.is-ca-resident .ca-only {
  display: inline !important;
}

html.is-ca-resident .footer-links a.ca-only {
  display: inline !important;
}

html.is-ca-resident .ca-only-inline {
  display: inline !important;
}

html.is-ca-resident .ca-only-block {
  display: block !important;
}

html.is-ca-resident li.ca-only {
  display: list-item !important;
}

.ca-only-prompt {
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 8px;
  background: rgba(245, 197, 24, 0.06);
  color: #dce8f8;
  font-size: 0.92rem;
  line-height: 1.55;
}

html.is-ca-resident .ca-only-prompt {
  display: none !important;
}

.footer-ca {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 184, 255, 0.15);
}

.ca-resident-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #dce8f8;
  user-select: none;
}

.ca-resident-toggle input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--gold-mid);
}

.ca-toggle-hint {
  margin: 0.5rem 0 0;
  max-width: 40rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.ca-toggle-hint a {
  color: var(--blue-bright);
  text-decoration: underline;
}

/* Legal pages */
.legal-page .legal-content {
  max-width: 42rem;
}

.legal-lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
}

.legal-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.legal-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.legal-list li {
  margin-bottom: 0.35rem;
}

.legal-content a {
  color: var(--blue-bright);
  text-decoration: underline;
}

/* ── Layout v2: stacked hero (revert: remove hero-split--layout-v2 from index.html) ── */
.hero-split--layout-v2 {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Top band — full width, not a side panel */
.hero-split--layout-v2 .hero-content {
  order: 1;
  width: 100%;
  flex: none;
  display: flex;
  justify-content: center;
  padding: 2.75rem clamp(1.25rem, 5vw, 4rem) 2.5rem;
  border: none;
  border-bottom: 1px solid rgba(0, 184, 255, 0.2);
  text-align: center;
}

.hero-split--layout-v2 .hero-content-inner {
  max-width: 52rem;
  width: 100%;
  margin: 0 auto;
}

.hero-split--layout-v2 .hero-logo {
  width: min(280px, 78vw);
  max-height: 112px;
  margin-left: auto;
  margin-right: auto;
}

.hero-split--layout-v2 .hero-eyebrow {
  font-size: 0.9rem;
}

.hero-split--layout-v2 .hero-content h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
}

.hero-split--layout-v2 .hero-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-split--layout-v2 .hero-cta {
  justify-content: center;
}

.hero-split--layout-v2 .hero-stats {
  justify-content: center;
  gap: 2rem 2.5rem;
}

.hero-split--layout-v2 .hero-stats strong {
  font-size: 2rem;
}

/* Carousel — centered block below, grows with content (no inner scroll) */
.hero-split--layout-v2 .hero-visual {
  order: 2;
  width: min(100%, 76rem);
  margin: 0 auto;
  min-height: 0;
  overflow: visible;
}

.hero-split--layout-v2 .hero-carousel-frame {
  position: relative;
  inset: auto;
  z-index: 3;
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) 3.5rem;
  pointer-events: none;
}

.hero-split--layout-v2 .hero-carousel-track {
  position: relative;
  inset: auto;
  height: auto;
  align-items: flex-start;
}

.hero-split--layout-v2 .hero-slide {
  height: auto;
  overflow: visible;
}

.hero-split--layout-v2 .hero-carousel-body {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  pointer-events: auto;
  border-left: 1px solid rgba(245, 197, 24, 0.12);
  border-right: 1px solid rgba(245, 197, 24, 0.12);
}

.hero-split--layout-v2 .hero-carousel-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  background: rgba(5, 8, 16, 0.55);
  align-self: stretch;
}

.hero-split--layout-v2 .hero-carousel-rail-left {
  border-right: 1px solid rgba(0, 184, 255, 0.28);
}

.hero-split--layout-v2 .hero-carousel-rail-right {
  border-left: 1px solid rgba(0, 184, 255, 0.28);
}

.hero-split--layout-v2 .hero-carousel-btn {
  position: static;
  transform: none;
  width: 2.15rem;
  height: 2.15rem;
  font-size: 1.15rem;
}

.hero-split--layout-v2 .hero-carousel-btn:active {
  transform: scale(0.96);
}

.hero-split--layout-v2 .hero-carousel-dots {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  justify-content: center;
  padding: 0.75rem 1rem 1.25rem;
}

.hero-split--layout-v2 .hero-slide-panel {
  margin: 0 auto;
  max-width: none;
  width: 100%;
  padding: 2rem 2rem 1.5rem;
  text-align: center;
}

.hero-split--layout-v2 .hero-slide-panel .section-eyebrow {
  font-size: 0.8rem;
}

.hero-split--layout-v2 .audience-banner {
  max-width: 28rem;
}

.hero-split--layout-v2 .hero-slide-panel .section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
}

.hero-split--layout-v2 .hero-slide-panel .section-sub {
  font-size: 1.08rem;
}

.hero-split--layout-v2 .hero-slide .check-list,
.hero-split--layout-v2 .check-list-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
}

.hero-split--layout-v2 .hero-slide .check-list li,
.hero-split--layout-v2 .check-list-features li {
  font-size: 0.94rem;
  padding: 0.35rem 0 0.35rem 1.35rem;
}

.hero-split--layout-v2 .special-sauce-callout {
  text-align: left;
}

.hero-split--layout-v2 .features-for-label {
  text-align: center;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-split--layout-v2 .hero-slide-actions {
  justify-content: center;
}

/* Responsive */
@media (prefers-reduced-motion: reduce) {
  .hero-carousel-track {
    transition: none;
  }
}

@media (min-width: 1100px) {
  .card-grid-compact {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-split:not(.hero-split--layout-v2) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-split--layout-v2 .hero-visual {
    width: 100%;
  }

  .hero-split--layout-v2 .hero-slide .check-list,
  .hero-split--layout-v2 .check-list-features {
    grid-template-columns: 1fr;
  }

  .hero-split--layout-v2 .hero-carousel-frame {
    grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
  }

  .hero-visual {
    min-height: 42vh;
  }

  .hero-content {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .hero-split--layout-v2 .hero-content {
    border-top: none;
  }

  .split-block,
  .split-block.reverse {
    grid-template-columns: 1fr;
  }

  .split-block.reverse .split-copy,
  .split-block.reverse .check-list {
    order: unset;
  }

  .audience-band-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop,
  .header-actions .btn-ghost {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .btn-gold {
    font-size: 0.8rem;
    padding: 0.45rem 0.85rem;
  }
}
