/* === BayCast shared brand + footer — DARK THEME (matches app) === */
:root{
  --bc-navy:        #0a1526;   /* page background */
  --bc-navy-2:      #142436;   /* card background */
  --bc-navy-3:      #1d2f48;   /* hover / strip block */
  --bc-yellow:      #f6c23b;
  --bc-yellow-dim:  #c9a02e;
  --bc-text:        #e6ecf5;   /* main text on dark */
  --bc-text-soft:   #95a3bd;   /* labels, secondary */
  --bc-text-faint:  #6b7a96;
  --bc-card:        #142436;
  --bc-line:        rgba(255,255,255,.08);
  --bc-line-strong: rgba(255,255,255,.16);
  --bc-go:          #2ed178;
  --bc-go-soft:     #1d6c3d;
  --bc-caution:     #ffa726;
  --bc-caution-soft:#995a06;
  --bc-nogo:        #ef5350;
  --bc-nogo-soft:   #8b1d24;
  --bc-live:        #2ed178;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  background: var(--bc-navy);
  color: var(--bc-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px; line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* === Top header === */
.bc-header{
  background: var(--bc-navy);
  color: #fff;
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 3px solid var(--bc-yellow);
  position: sticky; top: 0; z-index: 100;
}
.bc-header .brand{
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: #fff;
  font-weight: 800; font-size: 18px; letter-spacing: -0.01em;
}
.bc-header .brand .mark{
  background: var(--bc-yellow); color: var(--bc-navy);
  width: 30px; height: 30px;
  border-radius: 7px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900; font-size: 18px;
}
.bc-header .nav{ display: flex; gap: 14px; align-items: center; }
.bc-header .nav a{
  color: rgba(255,255,255,.85); text-decoration: none;
  font-size: 13px; font-weight: 600;
}
.bc-header .nav a:hover{ color: var(--bc-yellow); }
.bc-header .open-app{
  background: var(--bc-yellow); color: var(--bc-navy);
  padding: 6px 12px; border-radius: 6px;
  text-decoration: none; font-weight: 700; font-size: 13px;
}
@media (max-width: 600px){ .bc-header .nav{ display: none; } }

/* === Cards === */
.bc-card{
  background: var(--bc-card);
  border: 1px solid var(--bc-line);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 10px 0;
}
.bc-card h3{
  font-size: 16px; margin: 0 0 8px; color: #fff;
  font-weight: 700;
}

/* === Disclaimer === */
.bc-disclaim{
  font-size: 12px;
  color: var(--bc-text-soft);
  background: rgba(246,194,59,.08);
  border-left: 3px solid var(--bc-yellow);
  padding: 8px 12px;
  border-radius: 4px;
  margin: 8px 0;
  font-style: italic;
}

/* === Reedy's Footer === */
.bc-reedy-footer{
  background: #060d1a;
  color: rgba(255,255,255,.85);
  padding: 28px 20px 18px;
  margin-top: 32px;
  border-top: 3px solid var(--bc-yellow);
}
.bc-reedy-footer .inner{
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.bc-reedy-footer .col h4{
  color: var(--bc-yellow);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 10px;
  font-weight: 700;
}
.bc-reedy-footer p{ margin: 0 0 8px; line-height: 1.5; font-size: 14px; }
.bc-reedy-footer a{
  color: rgba(255,255,255,.85);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  margin: 4px 0;
  font-size: 14px;
}
.bc-reedy-footer a:hover{ color: var(--bc-yellow); }
.bc-reedy-footer .ico{
  width: 24px; height: 24px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border-radius: 5px;
  font-size: 13px;
}
.bc-reedy-footer .links a{ display:block; }
.bc-reedy-footer .legal{
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.bc-reedy-footer .legal a{ color: rgba(255,255,255,.6); display: inline; }
@media (max-width: 700px){
  .bc-reedy-footer .inner{ grid-template-columns: 1fr; gap: 18px; }
}

/* === Long-form SEO copy blocks (dark) === */
.bc-seo{
  background: var(--bc-card);
  border: 1px solid var(--bc-line);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 14px 0;
  color: var(--bc-text);
}
.bc-seo h2{
  margin: 0 0 10px;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}
.bc-seo h2 + p, .bc-seo h2 + ul, .bc-seo h2 + ol{ margin-top: 0; }
.bc-seo p{ margin: 0 0 10px; line-height: 1.6; color: var(--bc-text); }
.bc-seo p:last-child{ margin-bottom: 0; }
.bc-seo ul, .bc-seo ol{ margin: 0 0 10px; padding-left: 22px; }
.bc-seo li{ margin: 4px 0; color: var(--bc-text); }
.bc-seo a{ color: var(--bc-yellow); text-decoration: underline; text-underline-offset: 2px; }
.bc-seo a:hover{ color: #fff; }
.bc-seo strong{ color: #fff; font-weight: 700; }
.bc-seo details{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--bc-line);
  border-radius: 8px;
  padding: 8px 14px;
  margin: 8px 0;
}
.bc-seo summary{ cursor:pointer; font-weight: 600; color: var(--bc-yellow); }
