/* ============================================================
   NFMSS HOMEPAGE STYLES - v7 (photos embedded, small + smooth)
   - Sanitizer-safe backgrounds (no radial-gradient "at" syntax)
   - Photos are SMALL by design: capped heights, thin strips
   - New .action-row strip between How It Works and Sports
   All rules scoped under .nfp. ASCII-only.
   ============================================================ */
.nfp {
  --blue: #0e3a66;
  --blue-deep: #06182f;
  --red: #c8102e;
  --red-dark: #9e0c24;
  --red-bright: #e81c34;
  --off: #f6f7f9;
  --border: #e4e7eb;
  --ink: #1c2430;
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1c2430;
  line-height: 1.6;
  font-size: 17px;
  background: #ffffff;
  margin: 0;
}
.nfp *, .nfp *::before, .nfp *::after { box-sizing: border-box; }
.nfp img { max-width: 100%; height: auto; display: block; }
.nfp h1, .nfp h2, .nfp h3 { margin: 0; line-height: 1.05; }
.nfp p { margin: 0 0 1em; }
.nfp a:focus-visible,
.nfp button:focus-visible,
.nfp summary:focus-visible {
  outline: 3px solid #c8102e;
  outline-offset: 3px;
}

/* ---- Shared building blocks ---- */
.nfp .wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.nfp .eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #e81c34;
  border-bottom: 2px solid #e81c34;
  padding-bottom: 6px;
  margin-bottom: 18px;
}
.nfp .eyebrow.dark { color: #c8102e; border-color: #c8102e; }
.nfp .headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.nfp .headline em {
  font-style: italic;
  color: #c8102e;
}
.nfp .btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.nfp .btn:hover { transform: translateY(-2px); }
.nfp .btn-red { background: #c8102e; color: #fff; }
.nfp .btn-red:hover { background: #9e0c24; }
.nfp .btn-ghost { border-color: #0e3a66; color: #0e3a66; }
.nfp .btn-ghost:hover { border-color: #c8102e; color: #fff; background: #c8102e; }
.nfp .btn-blue { background: #0e3a66; color: #fff; }
.nfp .btn-blue:hover { background: #06182f; }

/* Diagonal red sideline stripe - final CTA only */
.nfp .hero::after { display: none; }
.nfp .stripe::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -160px;
  width: 90px;
  height: 140%;
  background: #c8102e;
  transform: rotate(14deg);
  opacity: .38;
  pointer-events: none;
}

/* ---- HERO ---- */
.nfp .hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #1c2430;
  padding: 72px 0 84px;
  border-bottom: 1px solid #e4e7eb;
}
.nfp .hero .eyebrow { color: #c8102e; border-color: #c8102e; }
.nfp .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
}
.nfp .hero .headline {
  font-size: clamp(52px, 9vw, 92px);
  color: #0e3a66;
  margin-bottom: 24px;
}
.nfp .hero .headline em { color: #c8102e; }
.nfp .hero-body {
  font-size: 17px;
  color: #1c2430;
  max-width: 60ch;
}
.nfp .hero-body strong { color: #c8102e; }
.nfp .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.nfp .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 44px;
  max-width: 780px;
}
.nfp .stat-card {
  background: #06182f;
  border: 1px solid #06182f;
  border-top: 3px solid #0e3a66;
  padding: 22px 20px 18px;
}
.nfp .stat-card.accent {
  border-top-color: #e81c34;
  background: #9e0c24;
  border-color: #9e0c24;
}
.nfp .stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}
.nfp .stat-card.accent .stat-num { color: #e81c34; }
.nfp .stat-lbl {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  margin-top: 8px;
  line-height: 1.4;
}

/* ---- MISSION ---- */
.nfp .mission { padding: 84px 0; background: #fff; }
.nfp .mission-inner { display: grid; gap: 40px; align-items: center; }
.nfp .mission-img {
  width: 100%;
  max-width: 440px;
  justify-self: center;
  border: 1px solid #e4e7eb;
  box-shadow: 10px 10px 0 #0e3a66;
}
.nfp .mission .headline { font-size: clamp(36px, 5vw, 52px); color: #0e3a66; margin-bottom: 20px; }
.nfp .mission-copy p { color: #1c2430; }

/* ---- BANNERS (red / white / blue pennants) ---- */
.nfp .banners { padding: 84px 0; background: #ffffff; border-top: 1px solid #e4e7eb; }
.nfp .banners .headline { font-size: clamp(36px, 5vw, 52px); color: #0e3a66; margin-bottom: 14px; }
.nfp .banners-sub { max-width: 62ch; margin-bottom: 44px; color: #1c2430; }
.nfp .banner-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-top: 14px;
  border-top: 10px solid #c8102e;
  border-image: repeating-linear-gradient(45deg, #c8102e 0 14px, #ffffff 14px 20px, #0e3a66 20px 34px, #ffffff 34px 40px) 10;
}
.nfp .banner {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  padding: 34px 24px 64px;
  text-align: center;
  min-height: 230px;
}
.nfp .banner-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 18px;
}
.nfp .banner h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.nfp .banner.blue { background: #0e3a66; color: #ffffff; }
.nfp .banner.blue .banner-tag { color: #e81c34; opacity: 1; }
.nfp .banner.red { background: #c8102e; color: #ffffff; }
.nfp .banner.red .banner-tag { color: #ffffff; }
.nfp .banner.white { background: #f6f7f9; color: #0e3a66; border: 2px solid #0e3a66; }
.nfp .banner.white .banner-tag { color: #c8102e; opacity: 1; }

/* ---- HOW IT WORKS ---- */
.nfp .hiw { padding: 84px 0; background: #f6f7f9; }
.nfp .hiw .headline { font-size: clamp(36px, 5vw, 52px); color: #0e3a66; margin-bottom: 44px; }
.nfp .hiw-grid { display: grid; gap: 20px; }
.nfp .hiw-step {
  background: #fff;
  border: 1px solid #e4e7eb;
  border-left: 4px solid #c8102e;
  padding: 30px 26px;
}
.nfp .hiw-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .14em;
  color: #c8102e;
  text-transform: uppercase;
}
.nfp .hiw-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 27px;
  text-transform: uppercase;
  color: #0e3a66;
  margin: 10px 0 12px;
}
.nfp .hiw-step p { font-size: 16px; margin-bottom: 0; }

/* ---- ACTION ROW (small photo strip) ---- */
.nfp .action-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: #06182f;
}
.nfp .action-row img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

/* ---- SPORTS ---- */
.nfp .sports {
  padding: 84px 0;
  background: #06182f;
  background-image: linear-gradient(160deg, #0e3a66 0%, #06182f 100%);
  color: #fff;
}
.nfp .sports .headline { font-size: clamp(36px, 5vw, 52px); color: #fff; margin-bottom: 14px; }
.nfp .sports .headline em { color: #e81c34; }
.nfp .sports-sub { color: rgba(255,255,255,.78); max-width: 60ch; margin-bottom: 36px; }
.nfp .pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
.nfp .pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: #fff;
  transition: border-color .15s ease, background .15s ease;
}
.nfp .pill:hover { border-color: #e81c34; background: #c8102e; }

/* ---- PRICING ---- */
.nfp .pricing { padding: 84px 0; background: #fff; }
.nfp .pricing .headline { font-size: clamp(36px, 5vw, 52px); color: #0e3a66; margin-bottom: 12px; }
.nfp .pricing-sub { max-width: 62ch; margin-bottom: 44px; }
.nfp .tier-grid { display: grid; gap: 22px; }
.nfp .tier {
  border: 1px solid #e4e7eb;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  background: #f6f7f9;
}
.nfp .tier.featured {
  background: #fff;
  border: 2px solid #c8102e;
  position: relative;
}
.nfp .tier.best { background: #06182f; color: #fff; border: none; }
.nfp .tier-flag {
  position: absolute;
  top: -14px;
  left: 30px;
  background: #c8102e;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 5px 14px;
}
.nfp .tier h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #0e3a66;
}
.nfp .tier.best h3 { color: #e81c34; }
.nfp .tier-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 62px;
  line-height: 1;
  color: #0e3a66;
  margin: 14px 0 4px;
}
.nfp .tier.best .tier-price { color: #fff; }
.nfp .tier-per { font-size: 14px; color: #6e7684; margin-bottom: 20px; }
.nfp .tier.best .tier-per { color: rgba(255,255,255,.65); }
.nfp .tier ul { list-style: none; margin: 0 0 28px; padding: 0; flex: 1; }
.nfp .tier li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid #e4e7eb;
}
.nfp .tier.best li { border-color: rgba(255,255,255,.14); }
.nfp .tier li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #c8102e;
  font-weight: 700;
}
.nfp .tier.best li::before { color: #e81c34; }
.nfp .tier .btn { text-align: center; }

/* ---- FAQ ---- */
.nfp .faq { padding: 84px 0; background: #f6f7f9; }
.nfp .faq .headline { font-size: clamp(36px, 5vw, 52px); color: #0e3a66; margin-bottom: 40px; }
.nfp .faq-inner { display: grid; gap: 40px; align-items: start; }
.nfp .faq-list { max-width: 820px; }
.nfp .faq details {
  background: #fff;
  border: 1px solid #e4e7eb;
  margin-bottom: 12px;
}
.nfp .faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #0e3a66;
  position: relative;
}
.nfp .faq summary::-webkit-details-marker { display: none; }
.nfp .faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #c8102e;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
}
.nfp .faq details[open] summary::after { content: "\2013"; }
.nfp .faq-a { padding: 0 24px 22px; font-size: 16px; }
.nfp .faq-a p:last-child { margin-bottom: 0; }
.nfp .faq-side { display: none; }
.nfp .faq-side img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid #e4e7eb;
  margin-bottom: 14px;
  box-shadow: 8px 8px 0 #c8102e;
}

/* ---- PHOTO STRIP (small) ---- */
.nfp .photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: #06182f;
  position: relative;
  overflow: hidden;
}
.nfp .photos img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* ---- FINAL CTA ---- */
.nfp .cta {
  position: relative;
  overflow: hidden;
  background: #06182f;
  background-image: linear-gradient(160deg, #0e3a66 0%, #06182f 100%);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}
.nfp .cta .wrap { position: relative; z-index: 1; }
.nfp .cta .headline { font-size: clamp(44px, 7vw, 74px); color: #fff; margin-bottom: 18px; }
.nfp .cta .headline em { color: #e81c34; }
.nfp .cta p { color: rgba(255,255,255,.82); max-width: 56ch; margin: 0 auto 34px; }
.nfp .cta .stripe-note {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #e81c34;
  margin-top: 22px;
}

/* ---- DESKTOP (768px and up) ---- */
@media (min-width: 768px) {
  .nfp .mission-inner { grid-template-columns: .9fr 1.1fr; gap: 64px; }
  .nfp .hiw-grid { grid-template-columns: repeat(3, 1fr); }
  .nfp .banner-row { grid-template-columns: repeat(3, 1fr); }
  .nfp .action-row img { height: 170px; }
  .nfp .tier-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .nfp .faq-inner { grid-template-columns: 1fr 300px; gap: 56px; }
  .nfp .faq-side { display: block; }
  .nfp .photos img { height: 160px; }
  .nfp .stripe::after { right: -40px; }
}

@media (prefers-reduced-motion: reduce) {
  .nfp * { transition: none !important; }
}
