﻿/* === footer-pages.css === */
/* footer-pages.css — inner pages linked from bottom nav (layout variants fp-*) */



/* ── Layout A: vertical stack — image blocks separate from text ── */

.fp-a-wrap { padding: 0;
}

.fp-a-intro {
  padding: 1.25rem 0 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.fp-a-intro h2 {
  margin: 0 0 0.65rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.35;
}

.fp-a-intro p {
  margin: 0 0 0.55rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-a-intro p:last-child {
  margin-bottom: 0;
}

.fp-a-media {
  padding: 1rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.fp-a-media img {
  width: min(100%, 560px);
  margin-inline: auto;
  border-radius: 14px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-glow), var(--shadow-soft);
}

.fp-a-media figcaption {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.fp-a-block {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.fp-a-block h3 {
  margin: 0 0 0.45rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.fp-a-block p {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-a-block p:last-child {
  margin-bottom: 0;
}

.fp-a-block ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-a-kpi {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.fp-a-kpi div {
  padding: 12px 8px;
  text-align: center;
  border-radius: 10px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-a-kpi strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-amber-bright);
  line-height: 1.2;
}

.fp-a-kpi span {
  display: block;
  margin-top: 3px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
}

.fp-a-outro {
  padding: 1.15rem 0 0.5rem;
  text-align: center;
}

.fp-a-outro p {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}


/* ── Layout B: lead band + numbered steps + quote strip ── */

.fp-b-wrap { padding: 0;
}

.fp-b-lead {
  padding: 1.35rem 0 1rem;
  border-left: 4px solid var(--accent-amber-bright);
  padding-left: 1rem;
  margin-left: 2px;
}

.fp-b-lead h2 {
  margin: 0 0 0.6rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fp-b-lead p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-b-media {
  padding: 1.1rem 0;
  text-align: center;
}

.fp-b-media img {
  width: min(100%, 540px);
  margin-inline: auto;
  border-radius: 12px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-soft);
}

.fp-b-media figcaption {
  margin-top: 0.45rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.fp-b-steps {
  padding: 0.75rem 0 1rem;
  counter-reset: fpstep;
}

.fp-b-step {
  position: relative;
  padding: 0.85rem 0 0.85rem 2.75rem;
  border-bottom: 1px dashed var(--border-subtle);
}

.fp-b-step:last-child {
  border-bottom: none;
}

.fp-b-step::before {
  counter-increment: fpstep;
  content: counter(fpstep);
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-amber-bright);
  color: #1a1208;
  font-size: 0.75rem;
  font-weight: 800;
}

.fp-b-step h3 {
  margin: 0 0 0.35rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.fp-b-step p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-b-quote {
  margin: 1rem 0;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--accent-amber-bright);
}

.fp-b-quote p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
  font-style: italic;
}

.fp-b-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 700;
  color: var(--accent-amber-bright);
}

.fp-b-note {
  padding: 1rem 0;
}

.fp-b-note h3 {
  margin: 0 0 0.45rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.fp-b-note p {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-b-outro {
  padding: 1.25rem 0 0.75rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.fp-b-outro p {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}


/* ── Layout C: tag ribbon + playlist cards + spec dl ── */

.fp-c-wrap { padding: 0;
}

.fp-c-head {
  padding: 1.25rem 0 0.85rem;
  text-align: center;
}

.fp-c-head h2 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fp-c-head p {
  margin: 0 auto;
  max-width: 36rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-c-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 0.5rem 0 1rem;
}

.fp-c-tag {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent-amber-bright);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-c-media {
  padding: 0.85rem 0;
  text-align: center;
}

.fp-c-media img {
  width: min(100%, 520px);
  margin-inline: auto;
  border-radius: 16px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-glow);
}

.fp-c-media figcaption {
  margin-top: 0.45rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.fp-c-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 1rem 0;
}

.fp-c-card {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-c-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.fp-c-card-head h3 {
  margin: 0;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.fp-c-card-head span {
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--accent-amber-bright);
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(245, 197, 24, 0.12);
}

.fp-c-card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.fp-c-spec {
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.fp-c-spec h3 {
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.fp-c-spec dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.fp-c-spec dt {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.fp-c-spec dd {
  margin: 2px 0 0;
  font-size: var(--prose-size);
  line-height: 1.5;
  color: var(--text-body);
}

.fp-c-body {
  padding: 1rem 0;
}

.fp-c-body p {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-c-body p:last-child {
  margin-bottom: 0;
}

.fp-c-outro {
  padding: 1.15rem 0 0.65rem;
  text-align: center;
}

.fp-c-outro p {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}


/* ── Layout D: tier stack + feature rows + highlight strip ── */

.fp-d-wrap { padding: 0;
}

.fp-d-strip {
  margin: 1.1rem 0 1rem;
  padding: 14px 16px;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.18), rgba(245, 197, 24, 0.06));
  border: 1px solid rgba(245, 197, 24, 0.35);
}

.fp-d-strip p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.5;
  color: var(--text-body);
}

.fp-d-strip strong {
  color: var(--accent-amber-bright);
}

.fp-d-tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 1rem;
}

.fp-d-tier {
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-d-tier--featured {
  border-color: var(--accent-amber-bright);
  box-shadow: 0 0 0 1px rgba(245, 197, 24, 0.25), var(--shadow-soft);
}

.fp-d-tier-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-amber-bright);
}

.fp-d-tier h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fp-d-tier-price {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
}

.fp-d-tier ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-body);
}

.fp-d-media {
  padding: 0.85rem 0;
  text-align: center;
}

.fp-d-media img {
  width: min(100%, 530px);
  margin-inline: auto;
  border-radius: 14px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-soft);
}

.fp-d-media figcaption {
  margin-top: 0.45rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.fp-d-rows {
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
}

.fp-d-rows h3 {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.fp-d-row {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.fp-d-row:last-child {
  border-bottom: none;
}

.fp-d-row dt {
  margin: 0 0 3px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

.fp-d-row dd {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.5;
  color: var(--text-body);
}

.fp-d-detail {
  padding: 1rem 0;
}

.fp-d-detail p {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-d-detail p:last-child {
  margin-bottom: 0;
}

.fp-d-outro {
  padding: 1.2rem 0 0.65rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.fp-d-outro p {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}


/* ── Layout E: category bands + Q/A blocks with badge ── */

.fp-e-wrap { padding: 0;
}

.fp-e-intro {
  padding: 1.2rem 0 0.75rem;
  text-align: center;
}

.fp-e-intro h2 {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fp-e-intro p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-e-media {
  padding: 0.9rem 0;
  text-align: center;
}

.fp-e-media img {
  width: min(100%, 525px);
  margin-inline: auto;
  border-radius: 12px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-soft);
}

.fp-e-media figcaption {
  margin-top: 0.45rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.fp-e-band {
  margin: 1rem 0 0.65rem;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-e-band h3 {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-amber-bright);
}

.fp-e-qa {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}

.fp-e-qa:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fp-e-q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 0.4rem;
}

.fp-e-q-mark {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(245, 197, 24, 0.15);
  color: var(--accent-amber-bright);
  font-size: 0.75rem;
  font-weight: 800;
}

.fp-e-q span {
  font-size: var(--prose-size);
  font-weight: 800;
  line-height: 1.4;
  color: var(--text-heading);
}

.fp-e-a {
  margin: 0 0 0 2.35rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-e-help {
  margin: 1.1rem 0;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px dashed var(--border-subtle);
  text-align: center;
}

.fp-e-help p {
  margin: 0 0 0.35rem;
  font-size: var(--prose-size);
  line-height: 1.5;
  color: var(--text-body);
}

.fp-e-help strong {
  color: var(--accent-amber-bright);
}

.fp-e-outro {
  padding: 1.15rem 0 0.65rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.fp-e-outro p {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}


/* ── Layout F: timeline pipeline + checklist benefits ── */

.fp-f-wrap { padding: 0;
}

.fp-f-head {
  padding: 1.2rem 0 0.85rem;
  text-align: center;
}

.fp-f-head h2 {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fp-f-head p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-f-pipeline {
  position: relative;
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(245, 197, 24, 0.35);
}

.fp-f-node {
  position: relative;
  padding: 0 0 1.1rem 1rem;
}

.fp-f-node:last-child {
  padding-bottom: 0;
}

.fp-f-node::before {
  content: "";
  position: absolute;
  left: calc(-1.25rem - 5px);
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-amber-bright);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
}

.fp-f-node h3 {
  margin: 0 0 0.35rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.fp-f-node p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-body);
}

.fp-f-media {
  padding: 0.9rem 0;
  text-align: center;
}

.fp-f-media img {
  width: min(100%, 520px);
  margin-inline: auto;
  border-radius: 14px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-glow);
}

.fp-f-media figcaption {
  margin-top: 0.45rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.fp-f-checks {
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.fp-f-checks h3 {
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.fp-f-checks ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fp-f-checks li {
  position: relative;
  padding: 8px 0 8px 1.65rem;
  font-size: var(--prose-size);
  line-height: 1.5;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-subtle);
}

.fp-f-checks li:last-child {
  border-bottom: none;
}

.fp-f-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(245, 197, 24, 0.15);
  color: var(--accent-amber-bright);
  font-size: 0.6875rem;
  font-weight: 800;
}

.fp-f-alert {
  margin: 1rem 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-f-alert p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.fp-f-alert strong {
  color: var(--text-heading);
}

.fp-f-outro {
  padding: 1.15rem 0 0.65rem;
  text-align: center;
}

.fp-f-outro p {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}


/* ── Layout G: legal chapters + numbered clauses ── */

.fp-g-wrap { padding: 0;
}

.fp-g-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 1.1rem 0 1rem;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  font-size: 0.6875rem;
}

.fp-g-meta div {
  text-align: center;
}

.fp-g-meta strong {
  display: block;
  margin-bottom: 2px;
  font-weight: 800;
  color: var(--accent-amber-bright);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fp-g-meta span {
  color: var(--text-muted);
}

.fp-g-preamble {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}

.fp-g-preamble p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-g-media {
  padding: 0.9rem 0;
  text-align: center;
}

.fp-g-media img {
  width: min(100%, 515px);
  margin-inline: auto;
  border-radius: 10px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-soft);
}

.fp-g-media figcaption {
  margin-top: 0.45rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.fp-g-chapter {
  padding: 1rem 0 0.5rem;
}

.fp-g-chapter h3 {
  margin: 0 0 0.65rem;
  padding-bottom: 6px;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-amber-bright);
  border-bottom: 2px solid rgba(245, 197, 24, 0.25);
}

.fp-g-clause {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.fp-g-clause:last-child {
  border-bottom: none;
}

.fp-g-num {
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--text-muted);
  line-height: 1.5;
}

.fp-g-clause p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-body);
}

.fp-g-outro {
  padding: 1.2rem 0 0.65rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.fp-g-outro p {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}


/* ── Layout H: mission panel + pillar grid + tool bars ── */

.fp-h-wrap { padding: 0;
}

.fp-h-mission {
  margin: 1.15rem 0 1rem;
  padding: 16px 18px;
  text-align: center;
  border-radius: 14px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-h-mission h2 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fp-h-mission p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-h-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-bottom: 1rem;
}

.fp-h-pillar {
  padding: 12px 12px 14px;
  border-radius: 10px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.fp-h-pillar-icon {
  display: block;
  margin-bottom: 6px;
  font-size: 1.25rem;
  line-height: 1;
}

.fp-h-pillar h3 {
  margin: 0 0 4px;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.fp-h-pillar p {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--text-body);
}

.fp-h-media {
  padding: 0.85rem 0;
  text-align: center;
}

.fp-h-media img {
  width: min(100%, 518px);
  margin-inline: auto;
  border-radius: 12px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-soft);
}

.fp-h-media figcaption {
  margin-top: 0.45rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.fp-h-tools {
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
}

.fp-h-tools h3 {
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.fp-h-tool {
  padding: 10px 12px 10px 14px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--accent-amber-bright);
}

.fp-h-tool:last-child {
  margin-bottom: 0;
}

.fp-h-tool strong {
  display: block;
  margin-bottom: 3px;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.fp-h-tool p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.fp-h-warn {
  margin: 1rem 0;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(245, 197, 24, 0.4);
  background: rgba(245, 197, 24, 0.08);
}

.fp-h-warn p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.fp-h-warn strong {
  color: var(--accent-amber-bright);
}

.fp-h-resources {
  padding: 0.85rem 0 1rem;
}

.fp-h-resources h3 {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.fp-h-resources p {
  margin: 0 0 0.45rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-h-outro {
  padding: 1.15rem 0 0.65rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.fp-h-outro p {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}


@media (max-width: 360px) {
  .fp-h-pillars {
    grid-template-columns: 1fr;
  }
}

/* ── Layout I: sport bars + live strip + market grid ── */

.fp-i-wrap { padding: 0;
}

.fp-i-intro {
  padding: 1.2rem 0 0.75rem;
}

.fp-i-intro h2 {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fp-i-intro p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-i-live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1rem;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.35);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent-amber-bright);
}

.fp-i-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  box-shadow: 0 0 6px rgba(231, 76, 60, 0.6);
  animation: fp-i-pulse 1.5s ease-in-out infinite;
}

@keyframes fp-i-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.fp-i-sports {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 1rem;
}

.fp-i-sport {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-i-sport-ico {
  display: block;
  margin-bottom: 4px;
  font-size: 1.125rem;
  line-height: 1;
}

.fp-i-sport h3 {
  margin: 0 0 3px;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.fp-i-sport p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.fp-i-media {
  padding: 0.85rem 0;
  text-align: center;
}

.fp-i-media img {
  width: min(100%, 528px);
  margin-inline: auto;
  border-radius: 14px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-glow);
}

.fp-i-media figcaption {
  margin-top: 0.45rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.fp-i-markets {
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.fp-i-markets h3 {
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.fp-i-market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.fp-i-market {
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-i-market strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fp-i-market span {
  font-size: 0.6875rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.fp-i-detail {
  padding: 1rem 0;
}

.fp-i-detail p {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-i-detail p:last-child {
  margin-bottom: 0;
}

.fp-i-outro {
  padding: 1.15rem 0 0.65rem;
  text-align: center;
}

.fp-i-outro p {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}


/* ── Layout J: mode cards + arrow flow + slot bar ── */

.fp-j-wrap { padding: 0;
}

.fp-j-head {
  padding: 1.2rem 0 0.85rem;
  text-align: center;
}

.fp-j-head h2 {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fp-j-head p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-j-slots {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 0.75rem 0 1rem;
}

.fp-j-slot {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--text-muted);
  background: var(--surface-card);
  border: 1px dashed var(--border-subtle);
}

.fp-j-slot--on {
  color: #1a1208;
  background: var(--accent-amber-bright);
  border-style: solid;
  border-color: var(--accent-amber-bright);
}

.fp-j-modes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 1rem;
}

.fp-j-mode {
  position: relative;
  padding: 14px 16px 14px 14px;
  border-radius: 12px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-j-mode-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--accent-amber-bright);
  background: rgba(245, 197, 24, 0.12);
}

.fp-j-mode h3 {
  margin: 0 0 4px;
  padding-right: 4.5rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.fp-j-mode p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.fp-j-media {
  padding: 0.85rem 0;
  text-align: center;
}

.fp-j-media img {
  width: min(100%, 522px);
  margin-inline: auto;
  border-radius: 14px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-soft);
}

.fp-j-media figcaption {
  margin-top: 0.45rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.fp-j-flow {
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
}

.fp-j-flow h3 {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
  text-align: center;
}

.fp-j-step {
  padding: 10px 14px;
  text-align: center;
  border-radius: 10px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-j-step strong {
  display: block;
  margin-bottom: 3px;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.fp-j-step span {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.fp-j-arrow {
  display: flex;
  justify-content: center;
  padding: 4px 0;
  font-size: 1rem;
  color: var(--accent-amber-bright);
  line-height: 1;
}

.fp-j-note {
  padding: 1rem 0;
}

.fp-j-note p {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-j-note p:last-child {
  margin-bottom: 0;
}

.fp-j-outro {
  padding: 1.15rem 0 0.65rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.fp-j-outro p {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}


/* ── Layout K: week strip + ribbon promos + terms blocks ── */

.fp-k-wrap { padding: 0;
}

.fp-k-head {
  padding: 1.2rem 0 0.75rem;
  text-align: center;
}

.fp-k-head h2 {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fp-k-head p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-k-week {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  padding-bottom: 1rem;
}

.fp-k-day {
  padding: 8px 2px;
  text-align: center;
  border-radius: 8px;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-k-day--on {
  color: #1a1208;
  background: var(--accent-amber-bright);
  border-color: var(--accent-amber-bright);
}

.fp-k-day em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 0.6875rem;
  font-weight: 800;
}

.fp-k-promos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 1rem;
}

.fp-k-promo {
  position: relative;
  overflow: hidden;
  padding: 14px 16px 14px 14px;
  border-radius: 12px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-k-promo-ribbon {
  position: absolute;
  top: 10px;
  right: -28px;
  width: 100px;
  padding: 3px 0;
  text-align: center;
  font-size: 0.5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1a1208;
  background: var(--accent-amber-bright);
  transform: rotate(45deg);
}

.fp-k-promo-date {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--text-muted);
}

.fp-k-promo h3 {
  margin: 0 0 4px;
  padding-right: 1rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.fp-k-promo p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.fp-k-media {
  padding: 0.85rem 0;
  text-align: center;
}

.fp-k-media img {
  width: min(100%, 524px);
  margin-inline: auto;
  border-radius: 14px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-glow);
}

.fp-k-media figcaption {
  margin-top: 0.45rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.fp-k-terms {
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
}

.fp-k-terms h3 {
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.fp-k-term {
  margin-bottom: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(245, 197, 24, 0.06);
  border: 1px solid var(--border-subtle);
}

.fp-k-term:last-child {
  margin-bottom: 0;
}

.fp-k-term strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fp-k-term p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.fp-k-outro {
  padding: 1.15rem 0 0.65rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.fp-k-outro p {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}


@media (max-width: 380px) {
  .fp-k-week {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ── Layout L: platform cards + feature grid + sync banner ── */

.fp-l-wrap { padding: 0;
}

.fp-l-head {
  padding: 1.2rem 0 0.85rem;
  text-align: center;
}

.fp-l-head h2 {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fp-l-head p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-l-platforms {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 1rem;
}

.fp-l-plat {
  padding: 16px;
  text-align: center;
  border-radius: 14px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-l-plat-ico {
  display: block;
  margin-bottom: 6px;
  font-size: 1.5rem;
  line-height: 1;
}

.fp-l-plat h3 {
  margin: 0 0 4px;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.fp-l-plat p {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.fp-l-plat a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--accent-amber-bright);
  color: #1a1208;
  font-size: 0.8125rem;
  font-weight: 800;
  text-decoration: none;
}

.fp-l-media {
  padding: 0.85rem 0;
  text-align: center;
}

.fp-l-media img {
  width: min(100%, 520px);
  margin-inline: auto;
  border-radius: 16px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-glow);
}

.fp-l-media figcaption {
  margin-top: 0.45rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.fp-l-feats {
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
}

.fp-l-feats h3 {
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
  text-align: center;
}

.fp-l-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.fp-l-feat {
  padding: 10px 6px;
  text-align: center;
  border-radius: 10px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-l-feat span {
  display: block;
  margin-bottom: 4px;
  font-size: 1.125rem;
  line-height: 1;
}

.fp-l-feat strong {
  display: block;
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.3;
}

.fp-l-sync {
  margin: 1rem 0;
  padding: 12px 14px;
  text-align: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.14), rgba(245, 197, 24, 0.04));
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.fp-l-sync p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.5;
  color: var(--text-body);
}

.fp-l-sync strong {
  color: var(--accent-amber-bright);
}

.fp-l-reqs {
  padding: 0.85rem 0 1rem;
}

.fp-l-reqs p {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-l-reqs p:last-child {
  margin-bottom: 0;
}

.fp-l-outro {
  padding: 1.15rem 0 0.65rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.fp-l-outro p {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}


@media (max-width: 360px) {
  .fp-l-feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Layout M: date feed + featured block + category labels ── */

.fp-m-wrap { padding: 0;
}

.fp-m-head {
  padding: 1.2rem 0 0.85rem;
  text-align: center;
}

.fp-m-head h2 {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fp-m-head p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-m-featured {
  margin-bottom: 1rem;
  padding: 16px;
  text-align: center;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(245, 197, 24, 0.12), var(--surface-card));
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.fp-m-date-big {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--accent-amber-bright);
  color: #1a1208;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.fp-m-featured h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.35;
}

.fp-m-featured p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-m-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 1rem;
}

.fp-m-item {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-m-date-pill {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid var(--border-subtle);
}

.fp-m-item h3 {
  margin: 0 0 4px;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--text-heading);
}

.fp-m-item p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.fp-m-media {
  padding: 0.85rem 0;
  text-align: center;
}

.fp-m-media img {
  width: min(100%, 518px);
  margin-inline: auto;
  border-radius: 12px;
  border: 2px solid var(--shell-border);
  box-shadow: var(--shadow-soft);
}

.fp-m-media figcaption {
  margin-top: 0.45rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.fp-m-cats {
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
}

.fp-m-cats h3 {
  margin: 0 0 0.6rem;
  font-size: var(--prose-size);
  font-weight: 800;
  color: var(--accent-amber-bright);
}

.fp-m-cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fp-m-cat {
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-body);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.fp-m-note {
  padding: 0.85rem 0 1rem;
}

.fp-m-note p {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.fp-m-outro {
  padding: 1.15rem 0 0.65rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.fp-m-outro p {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

