:root {
  --bg: #0c0d10;
  --bg-2: #111318;
  --bg-3: #171a20;
  --panel: #14171d;
  --panel-soft: #191d24;
  --panel-strong: #101318;
  --text: #f4f5f7;
  --muted: #b7bfcb;
  --muted-2: #98a1ae;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.13);
  --accent: #7eb7ff;
  --success: #94b84f;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 18%, rgba(126, 183, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #090a0c 0%, #0c0d10 52%, #090a0c 100%);
  line-height: 1.5;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(8, 9, 11, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #171a20, #111318);
  border: 1px solid var(--line-strong);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.brand-mark::before {
  content: "";
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  border-radius: 3px;
  background: linear-gradient(180deg, #90bfff, #5b95df);
  box-shadow: 0 0 0 3px rgba(126, 183, 255, 0.14);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.25rem;
  min-height: 48px;
  font: inherit;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #091019;
  background: linear-gradient(180deg, #a5cbff, #77aff6);
  box-shadow: 0 10px 24px rgba(126, 183, 255, 0.16);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-strong);
}

.hero {
  padding: 3.25rem 0 2.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.eyebrow-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(148, 184, 79, 0.18);
}

h1, .section-head h2, .cta-card h2, .story-card-main h3, .feature-card h3, .format-card h3, .proof-card h3, .step-card h3 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  max-width: 18ch;
}

.hero p {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--muted);
  max-width: 58ch;
  margin: 1rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 1rem;
}

.hero-note {
  color: var(--muted-2);
  font-size: 0.96rem;
}

.hero-card,
.compare-card,
.step-card,
.feature-card,
.format-card,
.story-card,
.proof-card,
.cta-card {
  background: linear-gradient(180deg, rgba(20, 23, 29, 0.96), rgba(14, 16, 20, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: 34px;
  padding: 1.15rem;
}

.mock-stage,
.mini-table,
.pick-list,
.player-list {
  display: grid;
  gap: 0.8rem;
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
}

.mock-label,
.feature-shot .label,
.standing-caption {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.league-name {
  margin-top: 0.2rem;
  font-size: 1rem;
  font-weight: 800;
}

.status-pill {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(126, 183, 255, 0.12);
  color: #d6e9ff;
  border: 1px solid rgba(126, 183, 255, 0.3);
  font-weight: 800;
}

.mock-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.team-column,
.phone-card,
.mini-card,
.objection-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.team-column {
  padding: 0.95rem;
  min-height: 305px;
}

.team-column-current {
  border-color: rgba(126, 183, 255, 0.38);
  box-shadow: inset 0 0 0 1px rgba(126, 183, 255, 0.14);
}

.team-name {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}

.team-count {
  color: var(--accent);
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  line-height: 1.2;
  text-align: right;
}

.player-item,
.pick-option,
.mini-row,
.standing-row {
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}

.player-item {
  padding: 0.8rem 0.85rem;
  min-height: 64px;
}

.player-name {
  font-size: 0.95rem;
  font-weight: 800;
}

.player-team {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--accent);
}

.mock-bottom {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0.9rem;
}

.phone-card,
.mini-card {
  padding: 1rem;
}

.phone-notch {
  width: 84px;
  height: 18px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.search-box {
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  padding: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.pick-option {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem;
}

.pick-badge {
  align-self: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(148, 184, 79, 0.2);
  color: #eff8d4;
  font-weight: 800;
  font-size: 0.83rem;
}

.mini-card h3,
.feature-card h3,
.compare-title,
.format-card h3,
.story-card h3,
.proof-card h3,
.step-card h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.mini-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem;
  font-weight: 700;
}

.mini-rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
}

.mini-row strong,
.standing-row strong {
  color: #54b9ff;
}

.section-padded {
  padding: 1.75rem 0;
}

.section-head {
  max-width: none;
  margin-bottom: 1.3rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.section-head p,
.compare-list,
.step-card p,
.feature-card p,
.format-card p,
.story-card p,
.proof-card p,
.cta-card p,
.footer-grid p {
  color: var(--muted);
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.compare-card {
  border-radius: 28px;
  padding: 1.2rem 1.35rem;
}

.compare-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.compare-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(126, 183, 255, 0.12);
  color: #d7eaff;
  font-weight: 800;
}

.compare-list {
  margin: 0.25rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.7rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card,
.feature-card,
.format-card,
.story-card,
.proof-card {
  border-radius: 28px;
  padding: 1.25rem;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(126, 183, 255, 0.12);
  color: #d7eaff;
  font-weight: 900;
  margin-bottom: 0.95rem;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-shot {
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  padding: 1rem;
  min-height: 240px;
  margin-bottom: 1rem;
}

.board-shot,
.phone-shot,
.standings-shot {
  height: 100%;
  border-radius: 18px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.8rem;
}

.board-shot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.board-shot .col {
  display: grid;
  gap: 0.55rem;
}

.board-shot .col div,
.phone-shot .phone-list div {
  min-height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}

.phone-shot {
  max-width: 250px;
  margin: 0 auto;
  min-height: 240px;
}

.phone-shot .header {
  width: 82px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  margin: 0 auto 0.95rem;
}

.phone-shot .phone-list {
  display: grid;
  gap: 0.65rem;
}

.standings-shot {
  display: grid;
  gap: 0.65rem;
}

.standing-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.8rem;
  font-weight: 700;
}

.standing-row span:first-child {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
}

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

.format-chip {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(126, 183, 255, 0.12);
  color: #d7eaff;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
}

.story-card-main h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  max-width: none;
  margin-bottom: 1rem;
}

.story-card p + p {
  margin-top: 1rem;
}

.proof-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 100%;
}

.cta-wrap {
  padding: 2rem 0 4rem;
}

.cta-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
  border-radius: 32px;
  padding: 1.5rem;
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.cta-panel {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.2rem 1.3rem 1.25rem 1.45rem;
}

.cta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.cta-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.cta-check {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(148, 184, 79, 0.18);
  color: #f1f8db;
  font-weight: 800;
  margin-top: 0.05rem;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.8rem 0 2.5rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .comparison,
  .steps,
  .screen-grid,
  .formats-grid,
  .story-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .nav.open .nav-links {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: rgba(8, 9, 11, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .hero-grid,
  .mock-bottom,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .mock-board {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    padding-bottom: 0.2rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.15rem), var(--max));
  }

  .nav-actions .button-primary {
    display: none;
  }

  .hero {
    padding-top: 2.4rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.8rem, 11vw, 4.5rem);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-card,
  .compare-card,
  .step-card,
  .feature-card,
  .format-card,
  .story-card,
  .proof-card,
  .cta-card,
  .team-column,
  .phone-card,
  .mini-card,
  .cta-panel {
    border-radius: 22px;
  }

  .section-head h2 {
    font-size: 2rem;
  }

  .story-card-main h3 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .cta-list li {
    grid-template-columns: 28px 1fr;
    gap: 0.75rem;
  }
}


.stacked-subhead {
  margin-top: 1.5rem !important;
}
