/* ============================================================
   Bring It In – Global Stylesheet
   www.bringitin.app | Static HTML/CSS
   Token-aligned with the Bring It In brand identity design system
   (tokens/colors.css, tokens/typography.css, tokens/spacing.css)
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand core */
  --color-navy:          #1A1A2E;  /* darkest — headers, dark surfaces, primary text */
  --color-brand:         #0A5BE0;  /* PRIMARY blue — buttons, links, brand accents */
  --color-brand-dark:    #0847B4;  /* primary hover/press */
  --color-brand-light:   #7DB4E8;  /* lighter accent, gradients */

  /* Neutrals */
  --color-white:         #FFFFFF;
  --color-off-white:     #F8FAFC;
  --color-page-bg:       #F8FAFC;
  --color-light-gray:    #E2E8F0;
  --color-border:        #E2E8F0;
  --color-medium-gray:   #94A3B8;
  --color-dark-gray:     #334155;
  --color-text-primary:  #1A1A2E;
  --color-text-secondary:#4A5568;
  --color-text-muted:    #94A3B8;
  --color-darkest:       #1A1A2E;

  /* Accent */
  --color-amber:         #F5A623;
  --color-orange-alert:  #FF6F3C;

  /* Semantic */
  --fg-primary:          var(--color-text-primary);
  --fg-secondary:        var(--color-text-secondary);
  --fg-on-brand:         var(--color-white);
  --fg-link:             var(--color-brand);
  --fg-link-hover:       var(--color-brand-dark);

  --bg-page:             var(--color-page-bg);
  --bg-surface:          var(--color-white);
  --bg-brand:            var(--color-brand);
  --bg-brand-dark:       var(--color-navy);
  --bg-tint-brand:       rgba(10, 91, 224, 0.05);
  --bg-tint-brand-hover: rgba(10, 91, 224, 0.10);

  --border-default:      var(--color-border);
  --border-subtle:       var(--color-light-gray);
  --border-tint-brand:   rgba(10, 91, 224, 0.18);

  /* Gradients */
  --grad-hero:  linear-gradient(160deg, #1A1A2E 0%, #113E90 55%, #0A5BE0 100%);
  --grad-avatar: linear-gradient(135deg, #7DB4E8, #0A5BE0);

  /* Shadows — tinted with navy, not plain black */
  --shadow-xs: 0 1px 4px rgba(26, 26, 46, 0.12);
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.08);
  --shadow-md: 0 4px 12px rgba(26, 26, 46, 0.14);
  --shadow-lg: 0 4px 16px rgba(26, 26, 46, 0.14);
  --shadow-xl: 0 8px 32px rgba(26, 26, 46, 0.30);

  /* Typography — single family: Inter */
  --font-display: 'Inter', 'Helvetica', sans-serif;
  --font-body:    'Inter', 'Helvetica', 'Arial', sans-serif;

  /* Radii */
  --radius-sm:   6px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  20px;
  --radius-pill: 999px;

  /* Motion */
  --motion-fast:   150ms;
  --motion-normal: 200ms;
  --ease-default:  ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--fg-secondary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--fg-link); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  color: var(--color-navy);
  font-weight: 700;
  line-height: 1.25;
  font-family: var(--font-display);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); letter-spacing: -0.01em; }
h3 { font-size: 1.0625rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.prose {
  max-width: 760px;
  margin: 0 auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--color-navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-xs);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg-on-brand);
  text-decoration: none;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
.logo-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; opacity: 0.92; }

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  padding: 0; margin: 0;
  align-items: center;
}
.nav-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: background var(--motion-fast) var(--ease-default),
              color var(--motion-fast) var(--ease-default);
  display: block;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  text-decoration: none;
}
.nav-links a.active {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--motion-normal);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all var(--motion-fast) var(--ease-default);
  text-decoration: none;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
  font-family: var(--font-display);
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--bg-brand);
  color: var(--fg-on-brand);
}
.btn-primary:hover {
  background: var(--color-brand-dark);
  box-shadow: var(--shadow-md);
}

.btn-amber {
  background: var(--color-amber);
  color: var(--color-navy);
  font-weight: 600;
}
.btn-amber:hover {
  background: #e09510;
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Outline on a light background (e.g. inside content sections) */
.btn-outline-brand,
.btn-outline-green {
  background: transparent;
  border-color: var(--color-brand);
  color: var(--color-brand);
}
.btn-outline-brand:hover,
.btn-outline-green:hover {
  background: var(--bg-tint-brand);
}

.btn-disabled {
  background: var(--color-border);
  color: #9e9e9e;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-large { padding: 0.75rem 1.75rem; font-size: 1rem; }
.btn-sm    { padding: 0.375rem 0.875rem; font-size: 0.875rem; }

/* ============================================================
   HERO SECTION — two-column layout
   ============================================================ */
.hero {
  background: var(--grad-hero);
  color: white;
  padding: 0;
  overflow: hidden;
  position: relative;
}
/* Radial highlight in top-right corner */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% -20%, rgba(125, 180, 232, 0.35), transparent 60%);
  pointer-events: none;
}
.hero-in {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5.5rem 0 5rem;
}
.hero-text { max-width: 560px; }

/* Brand lockup at the top of the hero — transparent badge + live type, so it
   sits directly on the gradient instead of reading as a card on a card. */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  margin-bottom: 2.25rem;
}
.hero-brand-mark {
  /* Scales fluidly, so no breakpoint jump is needed for the lockup */
  width: clamp(60px, 7.5vw, 84px);
  height: clamp(60px, 7.5vw, 84px);
  flex-shrink: 0;
  /* Lifts the badge off the mid-tones of the gradient without a hard edge */
  filter: drop-shadow(0 3px 12px rgba(10, 12, 26, 0.5));
}
.hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.6vw, 2.625rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
}
.hero-brand-name span { color: var(--color-brand-light); }
.hero-brand-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(0.625rem, 0.95vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
/* Short rules flanking the tagline, as in the brand sheet. Fixed widths rather
   than flex:1 so the lockup stays compact regardless of font metrics. */
.hero-brand-tag::before,
.hero-brand-tag::after {
  content: "";
  width: 16px;
  height: 1px;
  flex-shrink: 0;
  background: rgba(125, 180, 232, 0.6);
}

/* Badge above the features heading */
.features-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: block;
}

/* Eyebrow — small uppercase label above h1 */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  margin-bottom: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
  margin: 0 0 1.375rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-amber);
  font-weight: 800;
}

.hero .subheadline {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
  margin: 0 0 2rem;
}
.hero-ctas {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-fine {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1.125rem;
}
.hero-fine a {
  color: rgba(255, 255, 255, 0.65);
}
.hero-fine a:hover { color: white; text-decoration: none; }

/* Ghost white button — used in hero */
.btn-ghost-w {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}
.btn-ghost-w:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Hero phone mockup */
.hero-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 2rem;
}
.hp-frame {
  width: 270px;
  background: #000;
  border-radius: 34px;
  padding: 7px;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.hp-screen {
  background: var(--color-off-white);
  border-radius: 27px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hp-top {
  padding: 20px 18px 12px;
}
.hp-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hp-team {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  margin: 4px 0 0;
}
.hp-card {
  margin: 0 12px 10px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
}
.hp-date {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--color-brand);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hp-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  margin-top: 2px;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
}
.hp-meta {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 2px;
}
.hp-rsvp-bar {
  display: flex;
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 10px;
}
.hp-rsvp-bar > div:nth-child(1) { background: var(--color-brand); flex: 9; }
.hp-rsvp-bar > div:nth-child(2) { background: var(--color-amber); flex: 2; }
.hp-rsvp-bar > div:nth-child(3) { background: var(--color-orange-alert); flex: 1; }
.hp-rsvp-bar > div:nth-child(4) { background: var(--color-light-gray); flex: 2; }
/* Recap card inside phone mockup */
.hp-recap {
  margin: 0 12px 10px;
  background: var(--grad-team-badge, linear-gradient(135deg, #0A5BE0, #1A1A2E));
  border-radius: 8px;
  padding: 10px 14px;
  color: white;
}
.hp-recap-tag {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}
.hp-recap-score {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hp-us { color: var(--color-amber); }
.hp-vs { color: rgba(255,255,255,0.35); font-size: 16px; font-weight: 500; }
.hp-recap-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.hp-msg {
  margin: 0 12px 14px;
  background: rgba(10, 91, 224, 0.05);
  border: 1px solid rgba(10, 91, 224, 0.14);
  border-radius: 8px;
  padding: 10px 12px;
}
.hp-msg-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--color-brand);
}
.hp-msg-body {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 2px;
  line-height: 1.5;
}

/* ============================================================
   SPORTS ROW
   ============================================================ */
.sports-row {
  background: var(--bg-surface);
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.sports-row-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}
.sports-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  white-space: nowrap;
}
/* The full sport list is too long for the right-hand column, so it gets its own
   centered line beneath the label and icons. */
.sports-list {
  flex-basis: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.7;
  opacity: 0.5;
  margin-top: 0.25rem;
}

.sports-icons {
  display: flex;
  gap: 2rem;
  color: var(--color-brand);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.sports-icons svg {
  width: 26px; height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.75;
  transition: opacity var(--motion-fast);
}
.sports-icons svg:hover { opacity: 1; }

/* ============================================================
   FEATURES SECTION — numbered columns
   ============================================================ */
.features {
  padding: 6rem 0;
  background: var(--bg-surface);
}
.features-head {
  text-align: center;
  margin-bottom: 4rem;
}
.features-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}
.features-head p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Numbered 4-column feature grid */
.f-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.f-item {
  padding-top: 1.125rem;
  border-top: 1px solid var(--color-border);
}
.f-num {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  color: var(--color-brand);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.625rem;
}
.f-item h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}
.f-item p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Coming-soon items (inside the features grid or beta section) */
.f-item.f-soon {
  opacity: 0.55;
}
.card-soon-badge {
  display: inline-block;
  background: var(--bg-tint-brand);
  color: var(--color-brand);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.175rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  border: 1px solid var(--border-tint-brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   BETA SECTION
   ============================================================ */
.beta {
  padding: 5rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}
.beta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.beta-content h2 { margin-bottom: 1rem; }
.beta-content p { font-size: 1rem; margin-bottom: 1.5rem; }
.beta-perks {
  list-style: none;
  padding: 0; margin: 0 0 2rem;
}
.beta-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: var(--fg-secondary);
}
.beta-perks li::before {
  content: "✓";
  color: var(--color-brand);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.beta-finePrint {
  font-size: 0.8125rem;
  color: var(--color-medium-gray);
  margin-top: 0.75rem;
}
.beta-finePrint a {
  color: var(--color-brand-dark);
  font-weight: 500;
}
.beta-visual {
  background: var(--bg-page);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}
.phone-mockup {
  background: var(--color-navy);
  border-radius: var(--radius-2xl);
  width: 172px;
  height: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
}
.phone-app-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.phone-app-icon img { width: 52px; height: 52px; }
.phone-label {
  color: var(--color-medium-gray);
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.5;
}
.phone-bar {
  width: 100%;
  height: 5px;
  background: var(--color-brand);
  border-radius: var(--radius-pill);
  opacity: 0.7;
}
.phone-bar-sm {
  width: 70%;
  height: 4px;
  background: var(--color-brand-light);
  border-radius: var(--radius-pill);
  opacity: 0.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-darkest);
  color: rgba(255, 255, 255, 0.55);
  padding: 2.25rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-logo {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
}
.footer-logo-icon {
  width: 26px; height: 26px;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}
.footer-links a:hover { color: white; text-decoration: none; }
.footer-copy { font-size: 0.8125rem; }
.footer-contact a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}
.footer-contact a:hover { color: white; }

/* ============================================================
   LEGAL PAGES (privacy, terms)
   ============================================================ */
.legal-hero {
  background: var(--grad-hero);
  padding: 3.25rem 0;
  text-align: center;
}
.legal-hero h1 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.375rem;
}
.legal-hero p { color: rgba(255, 255, 255, 0.75); font-size: 0.9375rem; }

.legal-content { padding: 3.5rem 0 5rem; }
.legal-content h2 {
  font-size: 1.125rem;
  color: var(--color-navy);
  margin: 2rem 0 0.625rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-default);
  font-weight: 600;
}
.legal-content h2:first-child { border-top: none; margin-top: 0; }
.legal-content p {
  font-size: 0.9375rem;
  color: var(--fg-secondary);
  line-height: 1.75;
}
.legal-content ul {
  font-size: 0.9375rem;
  color: var(--fg-secondary);
}
.legal-content .last-updated,
.last-updated {
  display: inline-block;
  background: var(--bg-tint-brand);
  color: var(--color-brand-dark);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.75rem;
  border: 1px solid var(--border-tint-brand);
}

/* ============================================================
   BLOG INDEX
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--motion-normal) var(--ease-default),
              box-shadow var(--motion-normal) var(--ease-default);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.blog-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.625rem;
  font-family: var(--font-display);
}
.blog-card h3 {
  font-size: 1.0625rem;
  color: var(--color-navy);
  margin-bottom: 0.625rem;
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  margin: 0 0 1.25rem;
  flex: 1;
}
.blog-card a.read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.blog-card a.read-more:hover { text-decoration: none; color: var(--color-brand-dark); }

/* ============================================================
   BLOG POST
   ============================================================ */
.blog-post-content { padding: 3.5rem 0 5rem; }
.blog-post-content h2 {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin: 2rem 0 0.75rem;
  font-weight: 600;
}
.blog-post-content p {
  font-size: 0.9375rem;
  color: var(--fg-secondary);
  line-height: 1.8;
}
.blog-post-content ul {
  font-size: 0.9375rem;
  color: var(--fg-secondary);
  line-height: 1.8;
}
.blog-post-content strong {
  color: var(--color-dark-gray);
  font-weight: 600;
}
.blog-cta-box {
  background: var(--bg-tint-brand);
  border: 1px solid var(--border-tint-brand);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}
.cta-mark {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: block;
}
.blog-cta-box h3 {
  color: var(--color-navy);
  margin-bottom: 0.625rem;
}
.blog-cta-box p {
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 2.5rem; }
.faq-item {
  border-bottom: 1px solid var(--border-default);
  padding: 1.75rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border-default); }
.faq-item h3 {
  font-size: 1.0625rem;
  color: var(--color-navy);
  margin-bottom: 0.875rem;
  font-weight: 600;
}
.faq-item p {
  font-size: 0.9375rem;
  color: var(--fg-secondary);
  line-height: 1.75;
  margin-bottom: 0.625rem;
}
.faq-item p:last-child { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .f-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px; left: 0; right: 0;
    background: var(--color-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  /* Hero collapses to single column */
  .hero-in {
    grid-template-columns: 1fr;
    padding: 3.5rem 0 2rem;
    gap: 2.5rem;
  }
  .hero-text { max-width: 100%; }
  .hero-phone-wrap { padding-top: 0; justify-content: center; }
  .hp-frame { width: 240px; }

  .sports-row-inner { justify-content: center; gap: 1.25rem 2rem; }

  .beta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .beta-visual { display: none; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 480px) {
  .f-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .sports-icons { gap: 1.5rem; }

  /* Sizes come from clamp() above; only tighten the spacing here so the
     lockup stays on one line in a narrow viewport. */
  .hero-brand { gap: 0.75rem; }
  .hero-brand-tag { letter-spacing: 0.13em; }
  .hero-brand-tag::before,
  .hero-brand-tag::after { width: 10px; }
}
