body,html{background:#07182c!important;color:#f0e8da;}
/*
 * Bank Shot Buddy — Site CSS
 * Matched to live saintjohn.com / atlascueacademy.com design system
 * GS-BSB-LC002-B · July 29 2026
 *
 * PALETTE (from live site audit):
 *   --navy:    #07182c  main background
 *   --navy2:   #0a1e35  section alternate
 *   --navy3:   #0d2440  card backgrounds
 *   --gold:    #C8922A  primary accent (shared SJS/ACA/BSB)
 *   --gold2:   #d4a843  hover gold
 *   --goldd:   rgba(200,146,42,0.25)  gold dim
 *   --red:     #CC1F1F  BSB primary CTA
 *   --red2:    #e02424  hover red
 *   --blue:    #1A3A6B  BSB secondary
 *   --ivory:   #f0e8da  warm text (not cold white)
 *   --dim:     rgba(240,232,218,0.72)  body text
 *   --mute:    rgba(240,232,218,0.45)  secondary text
 *   --felt:    #145c43  table green
 *   --line:    rgba(200,146,42,0.18)  borders
 *   --max:     1180px
 */

:root {
  --navy:   #07182c;
  --navy2:  #0a1e35;
  --navy3:  #0d2440;
  --gold:   #C8922A;
  --gold2:  #d4a843;
  --goldd:  rgba(200,146,42,0.22);
  --red:    #CC1F1F;
  --red2:   #e02424;
  --blue:   #1A3A6B;
  --ivory:  #f0e8da;
  --dim:    rgba(240,232,218,0.78);
  --mute:   rgba(240,232,218,0.48);
  --felt:   #145c43;
  --line:   rgba(200,146,42,0.18);
  --shadow: 0 18px 50px rgba(0,0,0,0.35);
  --max:    1180px;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--ivory);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy2); }
::-webkit-scrollbar-thumb { background: var(--goldd); border-radius: 2px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background: var(--navy3);
  color: var(--ivory); padding: .7rem; z-index: 999; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: auto; }

/* ── SHARED TYPE ─────────────────────────────────────── */
.eyebrow, .kicker, nav a, .btn, .section-no,
.footer-label, .meta {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
}
h1, h2, h3 { font-weight: 400; line-height: 1.05; }
h1 { font-size: clamp(3rem, 8vw, 6.8rem); letter-spacing: -.04em; }
h2 { font-size: clamp(2.2rem, 5vw, 4.4rem); letter-spacing: -.03em; }
h3 { font-size: 1.55rem; }
.lead {
  font-size: 1.2rem;
  color: var(--dim);
  max-width: 680px;
  line-height: 1.7;
}
.kicker {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* ── HEADER / NAV ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,24,44,0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: min(320px, 44vw);
  display: block;
  filter: brightness(1.05);
}
.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav a {
  font-size: .68rem;
  font-weight: 700;
  color: var(--mute);
  transition: color .2s;
}
.nav a:hover,
.nav a[aria-current=page] { color: var(--ivory); }
.nav a.nav-cta {
  border: 1px solid var(--goldd);
  color: var(--gold);
  padding: 8px 18px;
  transition: all .2s;
}
.nav a.nav-cta:hover {
  background: rgba(200,146,42,0.12);
  border-color: var(--gold);
  color: var(--ivory);
}
.menu {
  display: none;
  border: 0;
  background: none;
  color: var(--ivory);
  font: 700 1rem Arial;
  cursor: pointer;
  padding: 4px 8px;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  padding: 14px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .22s;
  line-height: 1;
}
/* Primary: BSB Red (matches live site) */
.btn.primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn.primary:hover {
  background: var(--red2);
  border-color: var(--red2);
  transform: translateY(-2px);
}
/* Secondary: gold outline */
.btn.secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--goldd);
}
.btn.secondary:hover {
  border-color: var(--gold);
  background: rgba(200,146,42,0.1);
  transform: translateY(-2px);
}
/* Ghost: subtle outline */
.btn.ghost {
  background: transparent;
  color: var(--dim);
  border-color: rgba(240,232,218,0.2);
}
.btn.ghost:hover {
  border-color: var(--dim);
  color: var(--ivory);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 60% 40%,
    rgba(200,146,42,0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-actions, .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}
.hero-art img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

/* ── SECTIONS ────────────────────────────────────────── */
.section {
  padding: 90px 0;
  border-top: 1px solid var(--line);
}
.section.alt {
  background: var(--navy2);
}
.section.dark {
  background: #040c17;
}
.section-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
.section-no {
  font-size: .68rem;
  color: var(--gold);
  font-weight: 700;
  padding-top: 6px;
}
.section-copy p {
  font-size: 1.12rem;
  color: var(--dim);
  line-height: 1.75;
}

/* ── GRID LAYOUTS ────────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

/* ── CARDS ───────────────────────────────────────────── */
.card {
  background: var(--navy3);
  border: 1px solid var(--line);
  padding: 28px 24px;
  transition: border-color .2s, background .2s;
}
.card:hover {
  border-color: var(--goldd);
  background: #0f2a42;
}
.card .index {
  font: 700 .68rem Arial;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.card h3 { color: var(--ivory); margin-bottom: 10px; }
.card p { color: var(--dim); font-size: 1rem; line-height: 1.65; }

/* ── SYSTEM TILES (home page 4-up) ──────────────────── */
.system-tile {
  background: var(--navy2);
  border: 1px solid var(--line);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}
.system-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%,
    rgba(200,146,42,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.system-tile:hover::before { opacity: 1; }
.system-tile:hover { border-color: var(--goldd); }
.tile-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  opacity: .8;
}
.tile-label {
  font: 700 .68rem Arial;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.system-tile h3 { color: var(--ivory); margin-bottom: 8px; font-size: 1.3rem; }
.system-tile p { color: var(--dim); font-size: .95rem; line-height: 1.6; }

/* ── LAUNCH STATUS BLOCK (replaces fake stats) ───────── */
.launch-status {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--line);
  margin: 40px 0;
}
.ls-tile {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.ls-tile:last-child { border-right: 0; }
.ls-value {
  font: 400 2.4rem Georgia;
  font-style: italic;
  color: var(--gold);
  display: block;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.ls-label {
  font: 700 .68rem Arial;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.ls-sub {
  font: .78rem Arial;
  color: var(--mute);
}

/* ── BETA NOTICE BAND ────────────────────────────────── */
.beta-notice {
  background: rgba(200,146,42,0.06);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.beta-notice-inner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.beta-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.beta-notice strong {
  font: 700 .68rem Arial;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 5px;
}
.beta-notice p {
  font-size: .9rem;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 8px;
}
.beta-notice a {
  font: 700 .68rem Arial;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── TRAINING BALL / CONTACT POINTS ─────────────────── */
.ball-key {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 52px;
}
.ball-key img { max-height: 480px; margin: auto; }
.legend { display: grid; gap: 2px; }
.legend-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.dot { width: 16px; height: 16px; border-radius: 50%; margin-top: 5px; }
.legend-row h4 { color: var(--ivory); font-size: 1rem; margin-bottom: 3px; }
.legend-row p { color: var(--dim); font-size: .9rem; }

/* ── CTA SECTION ─────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #040c17 0%, var(--navy) 100%);
  border-top: 1px solid var(--line);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%,
    rgba(200,146,42,0.07) 0%, transparent 70%);
}
.cta-section > .wrap { position: relative; z-index: 1; }
.cta-section p { color: var(--dim); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }

/* ── PAGE HERO ───────────────────────────────────────── */
.page-hero {
  padding: 80px 0 52px;
  background: var(--navy2);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%,
    rgba(200,146,42,0.05) 0%, transparent 70%);
}
.page-hero > .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); color: var(--ivory); }
.page-hero .lead { margin-top: 16px; }

/* ── QUOTE ───────────────────────────────────────────── */
.quote {
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  max-width: 960px;
  color: var(--ivory);
}
.quote em { color: var(--gold); font-style: italic; }

/* ── NOTICE / CALLOUT ────────────────────────────────── */
.notice {
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  background: rgba(200,146,42,0.06);
  margin: 28px 0;
}
.notice p { color: var(--dim); font-size: 1rem; margin: 0; }

/* ── FORM ────────────────────────────────────────────── */
.form { display: grid; gap: 16px; max-width: 680px; }
.form label {
  font: 700 .72rem Arial;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 13px 16px;
  background: var(--navy3);
  border: 1px solid rgba(240,232,218,0.15);
  color: var(--ivory);
  font: 1rem Georgia;
  transition: border-color .2s;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--goldd);
}
.form textarea { min-height: 140px; resize: vertical; }
.form input::placeholder, .form textarea::placeholder { color: var(--mute); }

/* ── FEATURE LIST ────────────────────────────────────── */
.feature-list { list-style: none; padding: 0; margin: 20px 0; }
.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--dim);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-list li::before {
  content: '▸';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FOOTER ──────────────────────────────────────────── */
/* Matches live bankshotbuddy.com footer exactly */
.site-footer {
  background: #030d1a;
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
  color: var(--ivory);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo { max-width: 280px; margin-bottom: 14px; }
.footer-brand-line {
  font-size: .9rem;
  color: var(--mute);
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer-contact a {
  font-size: .85rem;
  color: var(--mute);
  display: block;
  margin-bottom: 4px;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-col h4 {
  font: 700 .68rem Arial;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: .88rem;
  color: var(--mute);
  transition: color .2s;
}
.footer-col a:hover { color: var(--ivory); }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font: .72rem Arial;
  color: var(--mute);
}
.footer-tagline {
  font: .72rem Arial;
  color: rgba(200,146,42,0.45);
  letter-spacing: .08em;
}
/* "Built on purpose. Driven by mastery." — BSB specific */
.footer-tagline::before { content: 'Built on purpose. Driven by mastery.'; }

/* ── ARTICLE PAGES ───────────────────────────────────── */
.article { max-width: 820px; margin: 0 auto; }
.article h2 { font-size: 2.4rem; margin: 64px 0 16px; color: var(--ivory); }
.article h3 { margin-top: 36px; color: var(--ivory); }
.article p, .article li { font-size: 1.1rem; color: var(--dim); line-height: 1.8; }
.article ul, .article ol { padding-left: 1.4rem; margin: 16px 0; }
.article li { margin-bottom: 8px; }
.legal-date {
  font: 700 .72rem Arial;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 32px;
  display: block;
}

/* ── TABLE ───────────────────────────────────────────── */
.table-wrap { overflow: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); }
th { font: 700 .68rem Arial; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold); }
td { color: var(--dim); font-size: .95rem; }

/* ── STATUS BADGE ────────────────────────────────────── */
.status {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid currentColor;
  font: 700 .64rem Arial;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.status.beta { color: var(--gold); border-color: var(--goldd); }
.status.live  { color: #4ca55a; border-color: rgba(76,165,90,0.4); }

/* ── DAILY CHALLENGE (existing feature) ─────────────── */
.daily-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.challenge-card {
  background: var(--navy3);
  border: 1px solid var(--line);
  padding: 28px;
}
.challenge-card h3 { color: var(--ivory); margin-bottom: 12px; }
.challenge-card p { color: var(--dim); }

/* ── 404 ─────────────────────────────────────────────── */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}
.not-found h1 { font-size: clamp(5rem, 15vw, 12rem); color: var(--goldd); }
.not-found p { color: var(--dim); margin: 16px 0 32px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .menu { display: block; }
  .nav {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: rgba(7,24,44,0.98);
    border-bottom: 1px solid var(--line);
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    backdrop-filter: blur(16px);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; font-size: .78rem; }
  .hero-grid, .ball-key, .footer-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 320px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .launch-status { grid-template-columns: 1fr; }
  .ls-tile { border-right: 0; border-bottom: 1px solid var(--line); }
  .ls-tile:last-child { border-bottom: 0; }
  .daily-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .header-inner { height: 68px; }
  .nav { top: 68px; }
  .brand img { width: 220px; }
  .hero { padding: 52px 0 48px; }
  .hero-grid { gap: 24px; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .page-hero { padding: 52px 0 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── REDUCED MOTION ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── MISSING CLASS FIXES ─────────────────────────────── */
.brand { display:flex; align-items:center; }
.footer { font-family: Arial,Helvetica,sans-serif; }
.footer-col h4 {
  font: 700 .68rem Arial; letter-spacing:.2em;
  text-transform:uppercase; color:var(--gold);
  margin-bottom:14px; margin-top:0;
}
.footer-col ul { list-style:none; padding:0; }
.footer-col li { margin-bottom:8px; }
.footer-col a {
  font-size:.88rem; color:var(--mute);
  transition:color .2s; text-decoration:none;
}
.footer-col a:hover { color:var(--ivory); }
.footer-contact { margin-top:12px; }
.footer-contact a {
  font-size:.85rem; color:var(--mute);
  display:block; margin-bottom:5px;
  transition:color .2s; text-decoration:none;
}
.footer-contact a:hover { color:var(--gold); }
.family {
  font-size:.72rem; font-family:Arial,Helvetica,sans-serif;
  color:rgba(200,146,42,0.4); letter-spacing:.08em;
}
.cta {
  background:linear-gradient(135deg,#040c17 0%,var(--navy) 100%);
  border-top:1px solid var(--line); padding:80px 0; text-align:center;
}
.cta h2 { color:var(--ivory); margin-bottom:16px; }
.cta p { color:var(--dim); max-width:580px; margin:0 auto 28px; font-size:1.05rem; }
.cta .btn { border-color:rgba(240,232,218,0.3); color:var(--ivory); }
.cta .btn:hover { border-color:var(--ivory); }
.section-copy { max-width:720px; }
.section-copy p { font-size:1.1rem; color:var(--dim); line-height:1.75; margin-bottom:14px; }
.section-copy h3 { color:var(--ivory); margin-bottom:10px; }
h1,h2,h3,h4 { color:var(--ivory); }
p { color:var(--dim); }
