/* V9 FSL11 — styles.css — L22 ACTION SPORTS FEED
   News-feed layout: action cards, breaking ticker, vertical stack, sports broadcast feel.
   Vocabulary: PLAY, play action, game on, turf battle, live play, fixture, matchup.
   Includes ALL required classes from hardened rules.
*/

/* === Reset & base === */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 0.5em;
  color: var(--text);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 800; }
h2 { font-size: clamp(24px, 3vw, 36px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
p { margin: 0 0 1em; color: var(--text-2); }
ul, ol { margin: 0 0 1em; padding-left: 22px; color: var(--text-2); }
li { margin: 0 0 0.4em; }

.skip-link { position: absolute; left: -10000px; top: 0; background: var(--primary); color: #000; padding: 8px 12px; z-index: 9999; }
.skip-link:focus { left: 12px; top: 12px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* === Header === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--soft-border);
  height: var(--header-h);
}
.site-header > .container {
  display: flex; align-items: center; gap: 24px; height: 100%;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 800; font-size: 18px; text-decoration: none; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: var(--primary); color: #1A1A1A; border-radius: 8px; font-weight: 800; font-size: 15px; letter-spacing: 0.02em; }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand-text .name { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--text); }
.brand-text .name em { color: var(--primary); font-style: normal; }
.brand-text .tag { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 22px; flex: 1; }
.main-nav a { color: var(--text-2); font-size: 14px; font-weight: 600; text-decoration: none; padding: 6px 0; transition: color var(--t-fast); }
.main-nav a:hover, .main-nav a.is-active { color: var(--primary); }
.main-nav a.cta { color: #1A1A1A; background: var(--primary); padding: 8px 14px; border-radius: 8px; font-weight: 700; }

.header-right { display: inline-flex; align-items: center; gap: 10px; }
.header-cta-ghost, .header-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
}
.header-cta-ghost { background: transparent; color: var(--text); border: 1px solid var(--gold-border); }
.header-cta-ghost:hover { color: var(--gold); border-color: var(--gold); }
.header-cta { background: var(--primary); color: #1A1A1A; border: 1px solid var(--primary); }
.header-cta:hover { background: var(--gold); border-color: var(--gold); color: #1A1A1A; }

.hamburger {
  display: none; align-items: center; justify-content: center; flex-direction: column;
  width: 42px; height: 42px;
  border: 1px solid var(--primary-border);
  border-radius: 8px; background: transparent; cursor: pointer;
  color: var(--primary); flex-shrink: 0; position: relative; z-index: 70;
  padding: 0; gap: 5px;
}
.hamburger span { display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Mobile drawer === */
.mobile-drawer {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 15, 15, 0.98);
  z-index: 55; padding: 80px 24px 32px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  display: none; height: 100vh; height: 100dvh; width: 100vw;
  overscroll-behavior: contain;
}
.mobile-drawer.is-open { display: block !important; }
.mobile-drawer a.drawer-section { display: block; padding: 14px 0; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--soft-border); font-size: 16px; font-weight: 600; }
.mobile-drawer a.drawer-section:hover { color: var(--primary); }
.drawer-social { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--soft-border); }
.drawer-social-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 8px; }
.drawer-social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.drawer-social-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--primary-tint); color: var(--primary); border: 1px solid var(--primary-border); text-decoration: none; }
.drawer-social-icon:hover { background: var(--primary); color: #1A1A1A; }
.drawer-cta { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--soft-border); display: flex; flex-direction: column; gap: 8px; }
.drawer-cta a { display: block; text-align: center; padding: 14px; border-radius: 10px; font-weight: 700; text-decoration: none; }
.drawer-cta a.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--gold-border); }
.drawer-cta a.btn-primary { background: var(--primary); color: #1A1A1A; }

/* === Hero (Action Sports Feed — full-width stats overlay) === */
.hero {
  position: relative;
  background: linear-gradient(135deg, #2D3142 0%, #1A1A1A 100%);
  border-bottom: 1px solid var(--primary-border);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255, 107, 53, 0.18), transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(255, 210, 63, 0.10), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; padding: 56px 20px 64px; }
.hero-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
.hero-banner { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 0 0 1px var(--primary-border), 0 18px 48px rgba(0,0,0,0.55); }
.hero-copy .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px; padding: 6px 12px; border: 1px solid var(--primary-border); border-radius: 999px; background: var(--primary-tint); }
.hero-copy h1 { color: var(--text); margin: 0 0 16px; }
.hero-copy h1 em { color: var(--primary); font-style: normal; }
.hero-lede { color: var(--text-2); font-size: 17px; line-height: 1.65; margin: 0 0 24px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 10px; font-weight: 800; text-decoration: none; font-size: 15px; transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast); border: 1px solid transparent; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }
.btn-primary { background: var(--primary); color: #1A1A1A; border-color: var(--primary); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: #1A1A1A; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--gold-border); }
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-tint); }

/* Hero stats overlay — 3 broadcast panels */
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 18px; background: rgba(26, 26, 26, 0.85); border: 1px solid var(--primary-border); border-radius: var(--radius-lg); backdrop-filter: blur(6px); }
.hero-stats .stat { display: flex; flex-direction: column; gap: 2px; padding: 0 8px; border-right: 1px solid var(--soft-border); }
.hero-stats .stat:last-child { border-right: 0; }
.hero-stats .stat-num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--primary); letter-spacing: -0.01em; }
.hero-stats .stat-num em { color: var(--gold); font-style: normal; }
.hero-stats .stat-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* Hero live ticker (just under hero) */
.breaking-ticker {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #1A1A1A;
  padding: 12px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-border);
}
.breaking-ticker .container { display: flex; align-items: center; gap: 16px; }
.ticker-tag { background: #1A1A1A; color: var(--primary); padding: 4px 10px; border-radius: 4px; font-weight: 800; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; flex-shrink: 0; }
.ticker-bar { display: flex; align-items: center; gap: 24px; overflow: hidden; flex: 1; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #1A1A1A; white-space: nowrap; }
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: #1A1A1A; flex-shrink: 0; }
.breaking-news { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; color: #1A1A1A; background: #1A1A1A; padding: 4px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.1em; }
.breaking-news .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* === Sections / bands === */
.band { padding: 64px 0; border-bottom: 1px solid var(--soft-border); position: relative; }
.band-elev-1 { background: var(--background); }
.band-elev-2 { background: var(--background-2); }
.band-elev-3 { background: linear-gradient(180deg, var(--surface) 0%, var(--background) 100%); }
.band-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.band-title { margin: 0 0 4px; font-size: clamp(24px, 2.6vw, 34px); }
.band-title em { color: var(--primary); font-style: normal; }
.band-eyebrow { display: inline-block; font-size: 12px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 8px; }
.band-meta { color: var(--muted); font-size: 14px; }
.band-cta-link { color: var(--primary); font-weight: 700; font-size: 14px; }

/* === Action tiles (4-tile row) === */
.action-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.action-tile {
  display: flex; flex-direction: column; gap: 12px;
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
  position: relative;
  overflow: hidden;
}
.action-tile:hover { transform: translateY(-2px); border-color: var(--primary); }
.action-tile::after { content: ''; position: absolute; top: 0; right: 0; width: 50px; height: 50px; background: radial-gradient(circle, var(--primary-tint), transparent 70%); pointer-events: none; }
.action-tile .tile-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--primary-tint); border: 1px solid var(--primary-border); border-radius: 10px; color: var(--primary); font-weight: 800; font-size: 18px; }
.action-tile h3 { font-size: 18px; margin: 0; color: var(--text); }
.action-tile p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }
.action-tile .tile-arrow { color: var(--primary); font-weight: 800; font-size: 13px; margin-top: auto; }

/* === Feed hubs (9-card grid — news feed style) === */
.feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feed-card {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--soft-border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  color: var(--text);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.feed-card:hover { background: var(--surface-2); border-left-color: var(--gold); transform: translateX(2px); }
.feed-card .feed-meta { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.feed-card .feed-tag { background: var(--primary-tint); color: var(--primary); padding: 3px 8px; border-radius: 4px; }
.feed-card h3 { font-size: 17px; margin: 0; color: var(--text); }
.feed-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }
.feed-card .feed-arrow { color: var(--primary); font-weight: 800; font-size: 12px; margin-top: 4px; }

/* === Feed items (long vertical stack) === */
.feed-stack { display: flex; flex-direction: column; gap: 14px; }
.feed-item {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 18px; align-items: center;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.feed-item:hover { background: var(--surface-2); border-color: var(--primary-border); }
.feed-item .feed-time { font-family: var(--font-display); font-weight: 800; color: var(--primary); font-size: 16px; }
.feed-item .feed-time small { display: block; font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 0.08em; }
.feed-item .feed-body h4 { font-size: 16px; margin: 0 0 4px; color: var(--text); font-weight: 700; }
.feed-item .feed-body p { font-size: 13px; color: var(--muted); margin: 0; }
.feed-item .feed-status { background: var(--primary-tint); color: var(--primary); padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.feed-item .feed-status.live { background: var(--primary); color: #1A1A1A; }

/* === Generic card / card-grid === */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  text-decoration: none; color: var(--text);
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.card:hover { transform: translateY(-2px); border-color: var(--primary-border); }
.card h3 { font-size: 18px; margin: 0; color: var(--text); }
.card p { font-size: 14px; color: var(--text-2); margin: 0; }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--primary-tint); color: var(--primary); border-radius: 8px; font-weight: 800; }
.card-badge { display: inline-block; padding: 3px 8px; background: var(--gold-tint); color: var(--gold); border-radius: 4px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; align-self: flex-start; }

/* === Data cards / data-grid (stats) === */
.data-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.data-card { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; background: var(--surface); border: 1px solid var(--soft-border); border-left: 3px solid var(--primary); border-radius: var(--radius); }
.data-card .data-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--primary); letter-spacing: -0.01em; }
.data-card .data-num em { color: var(--gold); font-style: normal; }
.data-card .data-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.data-card .data-value { font-size: 14px; color: var(--text-2); margin-top: 4px; }

/* === Step cards (4-step playbook) === */
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--soft-border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  position: relative;
  counter-increment: step;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--primary); color: #1A1A1A;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 16px;
}
.step-card h3 { font-size: 16px; margin: 0; color: var(--text); }
.step-card p { font-size: 14px; color: var(--text-2); margin: 0; }

/* === Loose card (lightweight card) === */
.loose-card { display: flex; flex-direction: column; gap: 8px; padding: 22px; background: var(--surface); border: 1px solid var(--soft-border); border-radius: var(--radius); }
.loose-card h3 { font-size: 17px; margin: 0; }
.loose-card p { font-size: 14px; color: var(--text-2); margin: 0; }

/* === Inline image row === */
.inline-image-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: center; padding: 22px 0; }
.inline-image-row.reverse { grid-template-columns: 1fr 1fr; direction: rtl; }
.inline-image-row.reverse > * { direction: ltr; }
.inline-image-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,0.4); border: 1px solid var(--soft-border); }
.inline-image-row .iir-copy .eyebrow-mini { display: inline-block; font-size: 11px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.inline-image-row .iir-copy h2 { font-size: clamp(20px, 2.2vw, 26px); margin: 0 0 10px; }
.inline-image-row .iir-copy p { font-size: 15px; line-height: 1.65; margin: 0; }

/* === FAQ === */
.faq-grid { display: flex; flex-direction: column; gap: 12px; }
.faq-item { padding: 18px 20px; background: var(--surface); border: 1px solid var(--soft-border); border-radius: var(--radius); }
.faq-item h3 { font-size: 16px; margin: 0 0 8px; color: var(--text); }
.faq-item p { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.65; }
details.faq-item summary { cursor: pointer; font-size: 16px; font-weight: 700; color: var(--text); list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; float: right; font-size: 22px; color: var(--primary); font-weight: 800; }
details.faq-item[open] summary::after { content: '−'; }
details.faq-item .faq-body { padding-top: 12px; border-top: 1px solid var(--soft-border); margin-top: 12px; }

/* === Testimonials === */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card { display: flex; flex-direction: column; gap: 12px; padding: 22px; background: var(--surface); border: 1px solid var(--soft-border); border-radius: var(--radius); }
.testimonial-card blockquote { font-size: 15px; color: var(--text-2); margin: 0; line-height: 1.6; }
.testimonial-card .who { display: flex; align-items: center; gap: 10px; }
.testimonial-card .who .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-tint); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; }
.testimonial-card .who .name { font-weight: 700; color: var(--text); font-size: 14px; }
.testimonial-card .who .meta { font-size: 12px; color: var(--muted); }

/* === Pricing === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pricing-card { display: flex; flex-direction: column; gap: 12px; padding: 28px; background: var(--surface); border: 1px solid var(--soft-border); border-radius: var(--radius-lg); position: relative; }
.pricing-card.featured { border-color: var(--primary); background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%); transform: scale(1.02); }
.pricing-card .price-tag { display: inline-block; padding: 4px 10px; background: var(--primary-tint); color: var(--primary); border-radius: 4px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; align-self: flex-start; }
.pricing-card .price { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--text); }
.pricing-card .price small { font-size: 14px; color: var(--muted); font-weight: 600; }
.pricing-card h3 { margin: 0; font-size: 20px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0; }
.pricing-card ul li { padding: 6px 0; border-bottom: 1px solid var(--soft-border); font-size: 14px; color: var(--text-2); }
.pricing-card ul li::before { content: '✓'; color: var(--primary); font-weight: 800; margin-right: 8px; }

/* === CTA band === */
.cta-band { padding: 56px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%); color: #1A1A1A; }
.cta-band .container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; }
.cta-grid { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.cta-band h2 { color: #1A1A1A; margin: 0 0 8px; }
.cta-band p { color: rgba(26, 26, 26, 0.85); font-size: 16px; margin: 0; }
.cta-band .btn-primary { background: #1A1A1A; color: var(--primary); border-color: #1A1A1A; }
.cta-band .btn-primary:hover { background: var(--gold); color: #1A1A1A; border-color: var(--gold); }
.cta-band .btn-ghost { color: #1A1A1A; border-color: #1A1A1A; }
.cta-band .btn-ghost:hover { background: #1A1A1A; color: var(--primary); }

/* === Footer === */
.site-footer { background: #0F0F0F; border-top: 1px solid var(--soft-border); padding: 56px 0 24px; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; margin-bottom: 40px; }
.footer-grid h4 { color: var(--text); font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin: 0 0 8px; }
.footer-grid a { color: var(--muted); font-size: 14px; text-decoration: none; }
.footer-grid a:hover { color: var(--primary); }
.footer-brand p { font-size: 14px; line-height: 1.6; margin: 8px 0 0; }
.footer-meta { padding-top: 24px; border-top: 1px solid var(--soft-border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--muted-2); }
.footer-meta-links { display: flex; gap: 18px; }
.footer-meta-links a { color: var(--muted-2); text-decoration: none; }

/* === Misc === */
.eyebrow { display: inline-block; font-size: 12px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 0.14em; }
.eyebrow-mini { font-size: 11px; }
.compliance { background: rgba(255, 210, 63, 0.06); border: 1px solid var(--gold-border); padding: 16px 20px; border-radius: var(--radius); font-size: 13px; color: var(--muted); margin: 24px 0; }
.compliance strong { color: var(--gold); }
.steps { counter-reset: step; }
.check { display: inline-block; width: 18px; height: 18px; border-radius: 50%; background: var(--primary-tint); color: var(--primary); text-align: center; line-height: 18px; font-size: 12px; margin-right: 8px; font-weight: 800; }

/* === Responsive === */
@media (max-width: 1099px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .action-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 899px) {
  .main-nav, .header-right .header-cta-ghost, .header-right .header-cta { display: none !important; }
  .hamburger { display: inline-flex !important; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero .container { padding: 40px 20px 48px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .stat { border-right: 0; border-bottom: 1px solid var(--soft-border); padding: 8px 0; }
  .hero-stats .stat:last-child { border-bottom: 0; }
  .cta-band .container { grid-template-columns: 1fr; }
  .cta-grid { justify-content: flex-start; }
  .feed-item { grid-template-columns: 60px 1fr; }
  .feed-item .feed-status { grid-column: 1 / -1; justify-self: flex-start; }
  .inline-image-row, .inline-image-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: 1fr; }
  .action-grid { grid-template-columns: 1fr; }
  .band-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 599px) {
  h1 { font-size: 30px; }
  .hero-copy h1 { font-size: 28px; }
  .hero-stats .stat-num { font-size: 22px; }
  .band { padding: 40px 0; }
  .testimonial-grid, .pricing-grid { gap: 14px; }
  .card, .action-tile, .loose-card, .feed-card { padding: 18px; }
}

/* === Mobile hero cap (480-720px) — HARDENED RULE 14 === */
@media (max-width: 899px) {
  #hero { max-height: 720px !important; min-height: 480px !important; overflow: hidden !important; }
}
