/* ============================================================
   Bet on NFL — style.css
   Bento Box Grid / Plus Jakarta Sans / Monochromatic palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* ---------- Reset & custom properties ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:   #ffffff;
  --offwhite:#f5f5f5;
  --ink:     #1f1f1f;
  --ink-60:  rgba(31,31,31,.6);
  --ink-12:  rgba(31,31,31,.12);
  --radius:  28px;
  --radius-sm: 16px;
  --gap:     16px;
  --max-w:   1200px;
  --header-h: 64px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --shadow: 0 4px 6px rgba(0,0,0,.05), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --transition: .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Announce strip ---------- */
.announce-strip {
  background: var(--ink);
  color: var(--white);
  font-size: .75rem;
  font-weight: 500;
  text-align: center;
  padding: 6px 16px;
  letter-spacing: .03em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--ink-12);
  height: var(--header-h);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}

.brand-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-icon {
  font-size: 1.6rem;
  line-height: 1;
}

/* Desktop nav — hidden behind toggle on all sizes per spec */
.site-nav {
  display: none;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- CTA buttons ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
}

.cta-signup {
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
}

.cta-login {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.cta:hover { opacity: .82; transform: translateY(-1px); }

/* ---------- Hamburger toggle ---------- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid var(--ink-12);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: border-color var(--transition);
}

.nav-toggle:hover { border-color: var(--ink); }

.hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Full-screen overlay nav ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transition: opacity .28s ease, visibility .28s ease;
}

.nav-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.nav-overlay-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  gap: 32px;
}

.nav-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: border-color var(--transition);
}

.nav-close:hover { border-color: var(--white); }

.nav-overlay nav p {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-overlay nav p a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: opacity var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-overlay nav p a:hover { opacity: .7; }

.overlay-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.overlay-ctas .cta-signup {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.overlay-ctas .cta-login {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}

/* ---------- Dot-matrix texture ---------- */
.dot-matrix-bg {
  position: relative;
  overflow: hidden;
}

.dot-matrix-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--ink-12) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

/* ---------- Hero div (home) ---------- */
.hero-section {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 20px;
  gap: 40px;
}

.hero-figure {
  border-radius: var(--radius);
  background: var(--offwhite);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-icon {
  font-size: 6rem;
  position: relative;
  z-index: 1;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-60);
  background: var(--offwhite);
  padding: 4px 12px;
  border-radius: 100px;
}

.hero-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--ink-60);
  max-width: 480px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  min-height: 48px;
  align-self: flex-start;
  transition: opacity var(--transition), transform var(--transition);
}

.btn-primary:hover { opacity: .82; transform: translateY(-2px); }

/* ---------- Stage label ---------- */
.stage-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--offwhite);
  color: var(--ink-60);
  margin-bottom: 4px;
}

/* ---------- Content div (two-column with sidebar) ---------- */
.content-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.content-body {
  min-width: 0;
}

/* ---------- Sidebar ---------- */
.content-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.sidebar-heading {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sidebar-card hr {
  border: none;
  border-top: 1px solid var(--ink-12);
  margin-bottom: 12px;
}

.sidebar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-card ul li a {
  color: var(--ink);
  text-decoration: underline;
  font-size: .9rem;
  font-weight: 500;
  min-height: 36px;
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}

.sidebar-card ul li a:hover { opacity: .6; }

.sidebar-card--cta {
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.sidebar-cta-label {
  font-weight: 700;
  font-size: .95rem;
}

.sidebar-card--cta .btn-primary,
.sidebar-card--cta .cta-signup {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  font-size: .875rem;
  min-height: 44px;
  padding: 0 18px;
}

.sidebar-card--rg {
  background: var(--offwhite);
}

.rg-notice {
  font-size: .75rem;
  color: var(--ink-60);
  line-height: 1.5;
}

/* ---------- Body copy typography ---------- */
.content-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 36px 0 4px;
  line-height: 1.2;
}

.content-body h2 + hr {
  border: none;
  border-top: 2px solid var(--ink);
  margin-bottom: 16px;
}

.content-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 28px 0 8px;
}

.content-body h3 + hr {
  border: none;
  border-top: 1px solid var(--ink-12);
  margin-bottom: 12px;
}

.content-body p { margin-bottom: 16px; max-width: 68ch; }

.content-body a {
  color: var(--ink);
  text-decoration: underline;
  font-weight: 500;
}

.content-body a:hover { opacity: .6; }

.content-body ul, .content-body ol {
  margin: 0 0 16px 20px;
}

.content-body li { margin-bottom: 6px; }

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: .9rem;
}

.content-body th, .content-body td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--ink-12);
}

.content-body th {
  font-weight: 700;
  background: var(--offwhite);
}

/* ---------- Byline ---------- */
.byline {
  font-size: .875rem;
  color: var(--ink-60);
  margin-bottom: 0 !important;
}

.byline time { font-weight: 500; }

/* ---------- Page hero sections (inner pages) ---------- */
.page-header-section,
.pricing-hero-section,
.faq-header-section,
.contact-hero-section,
.about-hero-section,
.privacy-hero-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 20px 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}

.page-hero-figure,
.pricing-hero-fig,
.faq-hero-fig,
.contact-hero-fig,
.about-hero-fig,
.privacy-hero-fig {
  border-radius: var(--radius);
  background: var(--offwhite);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-hero-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: var(--radius);
}

.page-hero-figure img { width: 100%; height: auto; display: block; border-radius: var(--radius); }

.pricing-hero-icon,
.faq-hero-icon,
.contact-hero-icon,
.about-hero-icon,
.privacy-hero-icon {
  font-size: 4rem;
  position: relative;
  z-index: 1;
}

.page-header-meta,
.pricing-hero-meta,
.faq-hero-meta,
.contact-hero-meta,
.about-hero-meta,
.privacy-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-header-meta h1,
.pricing-hero-meta h1,
.faq-hero-meta h1,
.contact-hero-meta h1,
.about-hero-meta h1,
.privacy-hero-meta h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.18;
}

.page-lead {
  font-size: 1rem;
  color: var(--ink-60);
  max-width: 52ch;
}

/* ---------- Bento grid div (home) ---------- */
.bento-section {
  padding-top: 0;
}

.bento-grid-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px 60px;
}

.section-heading {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.bento-grid-section > hr {
  border: none;
  border-top: 2px solid var(--ink);
  margin-bottom: 24px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--gap);
  margin-bottom: 32px;
}

.bento-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bento-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.bento-card--span2 {
  grid-column: span 2;
}

.bento-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.bento-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.bento-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.bento-card h3 a:hover { text-decoration: underline; }

.bento-card p {
  font-size: .85rem;
  color: var(--ink-60);
  line-height: 1.5;
  flex: 1;
}

.bento-readmore {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
  margin-top: auto;
}

/* ---------- Child list (ul > li > section) ---------- */
.child-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 16px;
}

.child-list li { display: block; }

.bento-card--child {
  height: 100%;
}

.bento-card--child h3 { font-size: .95rem; }
.bento-card--child h3 a { color: var(--ink); text-decoration: none; }
.bento-card--child h3 a:hover { text-decoration: underline; }

.card-date {
  font-size: .75rem;
  color: var(--ink-60);
}

/* ---------- Author div ---------- */
.author-section {
  margin-top: 40px;
  background: var(--offwhite);
}

.author-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.author-section hr {
  border: none;
  border-top: 2px solid var(--ink);
  margin-bottom: 16px;
}

.author-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.author-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 2px !important;
}

.author-credentials {
  font-size: .85rem;
  color: var(--ink-60);
  margin-bottom: 8px !important;
}

.author-bio {
  font-size: .95rem;
}

/* ---------- FAQ accordion style ---------- */
.faq-body details {
  border-radius: var(--radius-sm);
  background: var(--offwhite);
  margin-bottom: 12px;
  padding: 0;
  overflow: hidden;
}

.faq-body details summary {
  font-weight: 700;
  cursor: pointer;
  padding: 16px 20px;
  list-style: none;
  user-select: none;
  min-height: 52px;
  display: flex;
  align-items: center;
}

.faq-body details summary::after {
  content: '+';
  margin-left: auto;
  font-size: 1.3rem;
  font-weight: 400;
}

.faq-body details[open] summary::after { content: '−'; }

.faq-body details > *:not(summary) {
  padding: 0 20px 16px;
  font-size: .95rem;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .bento-card:hover { transform: none; }
  .cta:hover, .btn-primary:hover { transform: none; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 60px 20px 32px;
}

.footer-wordmark {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 48px;
  color: rgba(255,255,255,.08);
  user-select: none;
}

.footer-cols {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col--brand address {
  font-style: normal;
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
}

.footer-col--brand address strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.footer-col--brand address a {
  color: rgba(255,255,255,.8);
  text-decoration: underline;
}

.footer-col--links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col--links ul li a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .9rem;
  min-height: 36px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.footer-col--links ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

.footer-rg {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  max-width: 440px;
  text-align: right;
}

/* ---------- Responsive: tablet ---------- */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .bento-card--span2 { grid-column: span 2; }

  .child-list { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Responsive: mobile ---------- */
@media (max-width: 768px) {
  .site-nav { display: none !important; }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 32px 16px 40px;
    gap: 24px;
  }

  .hero-figure { min-height: 200px; order: -1; }

  .hero-section h1 { font-size: 1.8rem; }

  .page-header-section,
  .pricing-hero-section,
  .faq-header-section,
  .contact-hero-section,
  .about-hero-section,
  .privacy-hero-section {
    grid-template-columns: 1fr;
    padding: 32px 16px 24px;
    gap: 20px;
  }

  .page-hero-figure,
  .pricing-hero-fig,
  .faq-hero-fig,
  .contact-hero-fig,
  .about-hero-fig,
  .privacy-hero-fig {
    min-height: 160px;
  }

  .content-section {
    grid-template-columns: 1fr;
    padding: 24px 16px 40px;
  }

  .content-sidebar {
    position: static;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-card {
    min-height: 160px;
  }

  .bento-card--span2 { grid-column: span 1; }

  .child-list { grid-template-columns: 1fr; }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-rg { text-align: left; }

  .bento-grid-section { padding: 0 16px 48px; }

  .header-actions .cta {
    font-size: .78rem;
    padding: 0 12px;
    min-height: 40px;
  }
}

@media (max-width: 480px) {
  .header-actions .cta {
    padding: 0 10px;
    font-size: .75rem;
  }
}

/* ---------- Utility ---------- */
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

a[data-cta],button[aria-controls]{min-height:44px;min-width:44px;box-sizing:border-box}main p a{text-decoration:underline}