/* ═══════════════════════════════════════════════
   COMPONENTS.CSS — Cards, buttons, badges, forms
   PropBetEdge NFL
═══════════════════════════════════════════════ */

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--nfl);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-md);
  letter-spacing: .2px;
  transition: all .2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(27,94,32,.3);
}

.btn-primary:hover {
  background: var(--nfl-b);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,94,32,.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.55);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.1);
  transition: all .2s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--nfl-b);
  border: 1px solid rgba(67,160,71,.25);
  padding: 7px 16px;
  border-radius: var(--r-sm);
  transition: all .15s;
  cursor: pointer;
  background: none;
}

.btn-outline:hover { background: var(--nfl-l); border-color: var(--nfl-b); }

/* ── SIGNAL TAGS ── */
.signal-tag {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 4px 10px;
  border-radius: var(--r-xs);
  letter-spacing: .2px;
  transition: all .15s;
  white-space: nowrap;
}

.signal-tag:hover {
  color: rgba(255,255,255,.7);
  border-color: rgba(67,160,71,.3);
  background: rgba(67,160,71,.06);
}

.signal-tag.highlight {
  color: var(--nfl-bright);
  border-color: rgba(67,160,71,.25);
  background: rgba(67,160,71,.08);
}

/* ── FEATURE CARDS ── */
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--nfl-b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--nfl-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 1rem;
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .5rem;
  line-height: 1.1;
}

.feature-card-desc {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.65;
}

/* ── NETWORK CARDS ── */
.network-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
  display: block;
  text-decoration: none;
  color: inherit;
}

.network-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.nc-sport {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 4px;
}

.nc-subdomain {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink4);
  margin-bottom: 10px;
}

.nc-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: .9rem;
}

.nc-live  { background: #dcfce7; color: #166534; }
.nc-soon  { background: var(--paper); color: var(--ink3); }

.nc-desc {
  font-size: 12px;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.nc-arrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--nfl-b);
  transition: gap .15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.network-card:hover .nc-arrow { gap: 8px; }

/* ── NOTIFY SECTION ── */
.notify-sec {
  background: var(--nfl-l);
  border-top: 1px solid rgba(27,94,32,.12);
  border-bottom: 1px solid rgba(27,94,32,.12);
  padding: 4.5rem 1rem;
  text-align: center;
}

@media (min-width: 640px) { .notify-sec { padding: 5.5rem 2rem; } }

.notify-h {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -1.5px;
  line-height: .92;
  margin-bottom: .75rem;
}

.notify-h em { color: var(--nfl); font-style: italic; }

.notify-sub {
  font-size: 16px;
  color: var(--ink2);
  margin-bottom: .5rem;
  line-height: 1.6;
}

.notify-sub2 {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 2.5rem;
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}

@media (min-width: 480px) { .notify-form { flex-direction: row; } }

.notify-input {
  flex: 1;
  padding: 13px 16px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(27,94,32,.2);
  background: #fff;
  font-size: 14px;
  outline: none;
  color: var(--ink);
  transition: border-color .15s;
  -webkit-appearance: none;
}

.notify-input:focus { border-color: var(--nfl-b); }
.notify-input::placeholder { color: var(--ink4); }

.notify-submit {
  padding: 13px 24px;
  border-radius: var(--r-md);
  background: var(--nfl);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  letter-spacing: .2px;
}

.notify-submit:hover { background: var(--nfl-b); }
.notify-submit:disabled { opacity: .5; cursor: not-allowed; }

.notify-ok {
  display: none;
  color: var(--nfl);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.notify-err {
  display: none;
  color: #c0392b;
  font-size: 13px;
  margin-bottom: .75rem;
}

.notify-chips {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.notify-chip {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink2);
  background: #fff;
  border: 1px solid var(--line2);
  padding: 5px 14px;
  border-radius: 99px;
}

.notify-chip.active {
  color: var(--nfl);
  border-color: rgba(27,94,32,.3);
  background: rgba(27,94,32,.06);
}

/* ── FOOTER ── */
.site-footer {}

.footer-top {
  background: var(--ink);
  padding: 4rem 1rem;
}

@media (min-width: 768px) { .footer-top { padding: 5rem 2rem; } }

.footer-top-inner { max-width: 1300px; margin: 0 auto; }

.footer-mission {
  text-align: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.fm-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: .65rem;
}

.fm-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto .75rem;
  font-style: italic;
}

.fm-quote em { color: var(--nfl-bright); font-style: normal; }

.fm-sub {
  font-size: 13px;
  color: rgba(255,255,255,.28);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.65;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) { .footer-cols { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; } }
@media (min-width: 1024px) { .footer-cols { gap: 4rem; } }

.footer-brand {}

.ft-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: .65rem;
}

.ft-wordmark {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.ft-wordmark em { color: var(--nfl-bright); font-style: normal; }

.ft-tagline {
  font-size: 12px;
  color: rgba(255,255,255,.28);
  line-height: 1.65;
  max-width: 220px;
  margin-bottom: 1rem;
}

.footer-col-h {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  margin-bottom: .85rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.42);
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-links a:hover { color: #fff; }
.footer-links a::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 7px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 12px;
  border-radius: var(--r-sm);
  transition: all .15s;
}

.social-btn:hover { color: #fff; border-color: rgba(255,255,255,.28); }

.footer-bottom {
  background: #060806;
  padding: 1.25rem 1rem;
}

@media (min-width: 1024px) { .footer-bottom { padding: 1.25rem 2rem; } }

.footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.ft-copy    { font-size: 11px; color: rgba(255,255,255,.18); }
.ft-powered { font-size: 10px; color: rgba(255,255,255,.18); display: flex; align-items: center; gap: 5px; }
.ft-powered strong { color: rgba(255,255,255,.32); font-weight: 500; }
.ft-disc    { font-size: 10px; color: rgba(255,255,255,.14); max-width: 460px; line-height: 1.5; }
