/* ════════════════════════════════════════════════════════════════════
   SHREDDER FRANCHISE — B2B SITE STYLES (shredderfranchise.com)
   Loaded AFTER styles.css — overrides for the franchise audience.
   All styles scoped to body.fr-site or fr-* classes to avoid bleed.
   ════════════════════════════════════════════════════════════════════ */

/* ── Motion: reveal-on-scroll & Ken Burns ── */
@media (prefers-reduced-motion: no-preference) {
  body.fr-site .fr-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }
  body.fr-site .fr-reveal.fr-revealed {
    opacity: 1;
    transform: translateY(0);
  }
  /* Stagger children when their parent has .fr-reveal-stagger */
  body.fr-site .fr-reveal-stagger > .fr-reveal:nth-child(1) { transition-delay: 0ms; }
  body.fr-site .fr-reveal-stagger > .fr-reveal:nth-child(2) { transition-delay: 90ms; }
  body.fr-site .fr-reveal-stagger > .fr-reveal:nth-child(3) { transition-delay: 180ms; }
  body.fr-site .fr-reveal-stagger > .fr-reveal:nth-child(4) { transition-delay: 270ms; }
  body.fr-site .fr-reveal-stagger > .fr-reveal:nth-child(5) { transition-delay: 360ms; }
  body.fr-site .fr-reveal-stagger > .fr-reveal:nth-child(6) { transition-delay: 450ms; }
  body.fr-site .fr-reveal-stagger > .fr-reveal:nth-child(7) { transition-delay: 540ms; }
  body.fr-site .fr-reveal-stagger > .fr-reveal:nth-child(8) { transition-delay: 630ms; }

  /* Ken Burns drift on hero photo — very slow, very subtle */
  body.fr-site .fr-hero-photo img {
    animation: fr-kenburns 32s ease-in-out infinite alternate;
  }
}
@keyframes fr-kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.07) translate(-1.2%, -0.6%); }
}

/* ── Editorial baseline ── */
body.fr-site {
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.fr-site .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ════════════════════════════════════
   NAV
   ════════════════════════════════════ */
.fr-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.fr-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.fr-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.fr-logo-img {
  height: 54px;
  width: auto;
  display: block;
}
.fr-logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.fr-logo-mark {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2.2px;
  color: var(--navy);
}
.fr-logo-sub {
  font-family: var(--disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  margin-top: 2px;
}
.fr-nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.fr-nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.18s;
}
.fr-nav-links a:hover {
  color: var(--orange);
}
.fr-nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700 !important;
}
.fr-nav-cta:hover {
  background: var(--orange-text);
  color: #fff !important;
}
.fr-nav-hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.fr-nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  transition: transform 0.22s;
}

/* Mobile drawer */
.fr-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 84%;
  max-width: 360px;
  height: 100vh;
  background: var(--white);
  box-shadow: -12px 0 40px rgba(7, 23, 43, 0.16);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 200;
  padding: 80px 28px 28px;
  overflow-y: auto;
}
.fr-nav-drawer.open {
  transform: translateX(0);
}
.fr-nav-drawer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fr-nav-drawer-links a {
  display: block;
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.fr-nav-drawer-cta {
  margin-top: 24px;
}
.fr-nav-drawer-cta a {
  display: block;
  text-align: center;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
}
.fr-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 23, 43, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
  z-index: 150;
}
.fr-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 880px) {
  .fr-nav-links {
    display: none;
  }
  .fr-nav-hamburger {
    display: flex;
  }
}

/* ════════════════════════════════════
   EDITORIAL TYPE
   ════════════════════════════════════ */
body.fr-site .fr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--orange-cta); /* AA on light backgrounds (#CC4018 = 4.87:1 on white) */
  margin-bottom: 18px;
}
/* Dark sections keep the brighter brand orange (AA on navy); light sections use the darker token. */
body.fr-site .fr-hero .fr-eyebrow,
body.fr-site .on-navy .fr-eyebrow,
body.fr-site .on-dark .fr-eyebrow { color: var(--orange); }
body.fr-site .fr-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}
body.fr-site .fr-h1 {
  font-family: var(--disp);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin: 0 0 24px;
}
body.fr-site .fr-h1.on-dark {
  color: #fff;
}
body.fr-site .fr-h2 {
  font-family: var(--disp);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin: 0 0 18px;
}
body.fr-site .fr-h2.on-dark {
  color: #fff;
}
body.fr-site .fr-lede {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.72;
  color: var(--text);
  max-width: 60ch;
}
body.fr-site .fr-lede.on-dark {
  color: rgba(255, 255, 255, 0.92);
}
body.fr-site .cursive {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--orange);
}

/* ════════════════════════════════════
   BUTTONS (B2B treatment)
   ════════════════════════════════════ */
body.fr-site .fr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s, background 0.18s, border-color 0.18s;
}
body.fr-site .fr-btn-primary {
  background: var(--orange);
  color: #fff;
}
body.fr-site .fr-btn-primary:hover {
  background: var(--orange-text);
  transform: translateY(-1px);
}
body.fr-site .fr-btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
body.fr-site .fr-btn-ghost.on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
body.fr-site .fr-btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}
body.fr-site .fr-btn-lg {
  padding: 17px 34px;
  font-size: 15px;
}

/* ════════════════════════════════════
   SECTION BLOCKS
   ════════════════════════════════════ */
body.fr-site .fr-section {
  padding: 96px 0;
}
body.fr-site .fr-section.fr-section-tight {
  padding: 64px 0;
}
body.fr-site .fr-section.on-navy {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
body.fr-site .fr-section.on-off {
  background: var(--off);
}

/* ════════════════════════════════════
   HERO
   ════════════════════════════════════ */
.fr-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 120px 0 96px;
  overflow: hidden;
}
.fr-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fr-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.fr-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 43, 0.72) 0%, rgba(7, 23, 43, 0.94) 100%);
}
.fr-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.fr-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .fr-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Investment signal chip */
.fr-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 22px;
  margin-bottom: 36px;
}
.fr-hero-chip-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.14);
}
.fr-hero-chip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2px;
}
.fr-hero-chip-val {
  font-family: var(--disp);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}
.fr-hero-chip-val.accent {
  color: var(--orange);
}

/* Proof points list */
.fr-hero-proof {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fr-hero-proof-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.fr-hero-proof-item::before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
  width: 18px;
}

/* ════════════════════════════════════
   LEAD FORM CARD
   ════════════════════════════════════ */
.fr-form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 32px;
  backdrop-filter: blur(8px);
}
.fr-form-card .fr-form-title {
  font-family: var(--disp);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 8px;
}
.fr-form-card .fr-form-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Shared success state for the JS-submitted franchise forms (hero, apply).
   Swapped in by initFranchiseLeadForms() once a lead posts OK. */
.fr-form-thanks { text-align: center; padding: 22px 6px; color: #fff; }
.fr-form-card.light .fr-form-thanks { color: var(--navy); }
.fr-form-thanks-ic {
  width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 50%;
  background: rgba(22, 131, 62, 0.14); border: 2px solid #16833E; color: #16833E;
  font-size: 28px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.fr-form-thanks h3 { font-family: var(--disp); font-size: 24px; letter-spacing: 0.5px; margin: 0 0 8px; }
.fr-form-thanks p { font-size: 13.5px; line-height: 1.6; margin: 0 auto; max-width: 340px; opacity: 0.92; }
.fr-form-card .fr-input,
.fr-form-card .fr-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
  font-family: inherit;
  transition: border-color 0.18s;
}
.fr-form-card .fr-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.fr-form-card .fr-input:focus,
.fr-form-card .fr-select:focus {
  outline: 0;
  border-color: var(--orange);
}
.fr-form-card .fr-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}
.fr-form-card .fr-select option {
  color: var(--navy);
  background: #fff;
}

/* Light variant of form (used on /apply) */
.fr-form-card.light {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 24px 50px rgba(7, 23, 43, 0.06);
}
.fr-form-card.light .fr-form-title { color: var(--navy); }
.fr-form-card.light .fr-form-sub { color: var(--text); opacity: 0.78; }
.fr-form-card.light .fr-input,
.fr-form-card.light .fr-select {
  background-color: var(--white); /* NOT the `background` shorthand — it would reset repeat/position/size and tile the chevron */
  border-color: var(--border);
  color: var(--text);
}
.fr-form-card.light .fr-input::placeholder { color: rgba(22, 40, 64, 0.4); }
.fr-form-card.light .fr-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23162840' stroke-width='1.5' fill='none'/></svg>");
}

/* ════════════════════════════════════
   STAT BAND (mid-page momentum)
   ════════════════════════════════════ */
.fr-stat-band {
  background: var(--off);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fr-stat-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 760px) {
  .fr-stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
}
.fr-stat {
  text-align: center;
}
.fr-stat-n {
  font-family: var(--disp);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.fr-stat-l {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.74;
}

/* ════════════════════════════════════
   THESIS CARDS
   ════════════════════════════════════ */
.fr-thesis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .fr-thesis-grid {
    grid-template-columns: 1fr;
  }
}
.fr-thesis-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.fr-thesis-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(7, 23, 43, 0.06);
}
.fr-thesis-num {
  font-family: var(--disp);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 14px;
}
.fr-thesis-title {
  font-family: var(--disp);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 14px;
}
.fr-thesis-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.82;
  margin-bottom: 20px;
  flex-grow: 1;
}
.fr-thesis-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--orange);
}

/* ════════════════════════════════════
   FOUNDER QUOTE
   ════════════════════════════════════ */
.fr-quote-section {
  padding: 88px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.fr-quote-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(240, 78, 31, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.fr-quote-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.fr-quote-text {
  font-family: 'Inter', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.65;
  color: #fff;
  margin-bottom: 28px;
}
.fr-quote-text em {
  font-style: italic;
  color: var(--orange);
}
.fr-quote-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.fr-quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.fr-quote-name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  text-align: left;
}
.fr-quote-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

/* ════════════════════════════════════
   VALIDATION STRIP
   ════════════════════════════════════ */
.fr-validation {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.fr-validation-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.fr-validation-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.68; /* raised from 0.5 so 11px label clears AA (4.5:1) on white */
  text-align: center;
  margin-bottom: 22px;
}
.fr-validation-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.fr-validation-item {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--navy);
  opacity: 0.72;
}

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
.fr-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 32px;
}
.fr-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .fr-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }
}
@media (max-width: 540px) {
  .fr-footer-grid {
    grid-template-columns: 1fr;
  }
}
.fr-fb {
  max-width: 320px;
}
.fr-footer-logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 16px;
  line-height: 1;
}
.fr-footer .fr-logo-mark {
  color: #fff;
  font-size: 22px;
  letter-spacing: 2.5px;
}
.fr-footer .fr-logo-sub {
  color: var(--orange);
  margin-top: 4px;
}
.fr-footer-blurb {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.7);
}
.fr-footer-contact > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fr-footer-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.fr-footer-contact a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: color 0.18s;
}
.fr-footer-contact a:hover {
  color: var(--orange);
}
.fr-fc h4 {
  font-family: var(--disp);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.fr-fc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fr-fc a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.18s;
}
.fr-fc a:hover {
  color: var(--orange);
}
.fr-footer-cta {
  display: inline-block;
  margin-top: 22px;
  padding: 10px 18px;
  background: var(--orange);
  color: #fff !important;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s;
}
.fr-footer-cta:hover {
  background: var(--orange-text);
}
.fr-fdd-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
  margin-bottom: 14px;
}
.fr-fdd-disclaimer p {
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.48);
  margin: 0 0 12px;
  max-width: 880px;
}
.fr-fdd-disclaimer p:last-child {
  margin-bottom: 0;
}
.fr-fdd-disclaimer strong {
  color: rgba(255, 255, 255, 0.8);
}
.fr-footer-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.fr-footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fr-footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
}
.fr-footer-legal a:hover {
  color: var(--orange);
}

/* ════════════════════════════════════
   STUB PAGE (placeholder during phase 1)
   ════════════════════════════════════ */
.fr-stub {
  padding: 140px 0 100px;
  text-align: center;
}
.fr-stub-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
}
.fr-stub-h1 {
  font-family: var(--disp);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 0.96;
}
.fr-stub-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.fr-stub-blurb {
  font-size: 17px;
  line-height: 1.72;
  color: var(--text);
  opacity: 0.84;
  margin-bottom: 32px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
