/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-nav.scrolled {
  background: var(--cream);
  border-bottom: 1px solid var(--border-lt);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-logo img {
  height: 57px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.1px;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:hover { color: var(--charcoal); }

.nav-links a.active {
  color: var(--charcoal);
  font-weight: 600;
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}


.nav-cta {
  padding: 11px 22px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 7px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover  { background: var(--gold-lt); }
.nav-cta:active { transform: scale(0.98); }

.nav-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: 0.1px;
  transition: color 0.15s;
}

.nav-phone:hover { color: var(--charcoal); }

/* ─── HERO ─── */
.hero {
  min-height: 64vh;
  padding-top: 72px;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(163, 56, 40, 0.08);
  border: 1px solid rgba(163, 56, 40, 0.28);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #A33828;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.hero-left h1 em {
  color: var(--gold);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: rgba(199, 146, 58, 0.35);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.hero-gold-rule {
  width: 40px;
  height: 3px;
  background: #A33828;
  border-radius: 2px;
  margin: 26px 0 32px;
}

.text-red { color: #A33828; }

.hero-sub {
  font-size: 19px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 32px;
}

/* ─── CTA MICROCOPY (shared across hero, steps, final CTA) ─── */
.cta-microcopy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}

.cta-micro-1 {
  font-size: 17px;
  color: var(--charcoal);
  letter-spacing: 0.2px;
}

.cta-micro-2 {
  font-size: 15.5px;
  color: var(--charcoal);
  letter-spacing: 0.1px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 17px 34px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: background 0.15s, transform 0.1s, box-shadow 0.2s;
  margin-bottom: 12px;
  box-shadow:
    0 4px 20px rgba(199, 146, 58, 0.45),
    0 1px 3px rgba(0, 0, 0, 0.10);
}

.hero-cta:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .hero-cta:hover {
    background: var(--gold-lt);
    box-shadow: 0 6px 26px rgba(199, 146, 58, 0.55), 0 1px 3px rgba(0, 0, 0, 0.12);
  }
}

.hero-phone-cta {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.15s;
  letter-spacing: 0.1px;
}

.hero-phone-cta:hover { color: var(--charcoal); }

.hero-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 8px;
  font-size: 13px;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: 0.1px;
}

.hero-trust-bar span { white-space: nowrap; }

.hero-trust-sep {
  color: var(--border-cream);
  font-size: 14px;
}

.hero-value-frame {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.2px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--charcoal);
  flex-wrap: wrap;
}

.hero-trust span { display: flex; align-items: center; gap: 6px; }

.hero-trust svg { flex-shrink: 0; opacity: 0.6; }

.trust-dot {
  width: 4px;
  height: 4px;
  background: var(--border-cream);
  border-radius: 50%;
}

/* HERO LOGO FIX — FINAL VERSION */

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(10px);
}

.hero-logo-wrap {
  position: relative;
  width: min(560px, 90vw);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroLogoEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(163, 56, 40, 0.07) 0%,
    rgba(199, 146, 58, 0.04) 50%,
    transparent 72%
  );
  z-index: 0;
}

.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(196, 154, 39, 0.12),
    transparent 70%
  );
  z-index: 1;
}

.hero-logo-img {
  position: relative;
  z-index: 2;

  width: min(490px, 80vw);
  height: auto;
  display: block;
  object-fit: contain;

  background: transparent;
  padding: 0;
  border-radius: 0;

  filter: drop-shadow(0 24px 48px rgba(28, 18, 9, 0.18));
  animation: heroLogoFloat 5s ease-in-out 0.8s infinite;
  will-change: transform;
}

@keyframes heroLogoEntrance {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-wrap { animation: none; opacity: 1; }
  .hero-logo-img  { animation: none; }
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--bg-3);
  padding: 34px 40px 38px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Numbers row */
.stats-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 0;
}

.stats-num-item {
  text-align: center;
  padding: 0 20px 32px;
  border-right: 1px solid rgba(27, 23, 19, 0.10);
}

.stats-num-item:last-child { border-right: none; }

.stats-num-value {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 7px;
}

.stats-num-value--word {
  font-size: 28px;
  padding-top: 6px;
  display: block;
}

.stats-num-sup {
  font-size: 22px;
}

.stats-num-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.3px;
}

/* Divider between numbers and trust points */
.stats-rule {
  width: 100%;
  height: 1px;
  background: rgba(27, 23, 19, 0.15);
  margin-top: 12px;
  margin-bottom: 36px;
}

.stats-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.stats-label::before,
.stats-label::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A33828, #7F241A);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.stat-text {}

.stat-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.55;
}

/* ─── NUMBERS STRIP (removed from HTML, kept for reference) ─── */
.numbers-strip {
  display: none;
}

.numbers-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.num-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--border-lt);
}

.num-item:last-child { border-right: none; }

.num-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.num-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.3px;
}

/* ─── FEATURES ─── */
.features {
  padding: 48px 40px;
  background: #3D2C1A;
}

.features .receipt {
  box-shadow: 0 12px 64px rgba(15,9,4,0.55), 0 3px 14px rgba(15,9,4,0.30);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 88px;
  align-items: start;
}

.features-text {
  position: sticky;
  top: 112px;
}

.features-text .section-title {
  margin-bottom: 20px;
  color: var(--text-on-dark);
}

.features-sub {
  font-size: 17px;
  color: rgba(244, 230, 211, 0.78);
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 300px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.22;
  max-width: 560px;
  margin-bottom: 20px;
}

/* ─── RECEIPT ─── */
.receipt {
  background: #FAF5EC;
  box-shadow: 0 2px 18px rgba(27, 23, 19, 0.09), 0 1px 4px rgba(27, 23, 19, 0.05);
  position: relative;
}

/* Wavy receipt edges — thermal paper effect */
.receipt::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6'%3E%3Cpath d='M0,6 Q3,0 6,6 Q9,0 12,6 L12,6 L0,6 Z' fill='%23FAF5EC'/%3E%3C/svg%3E") repeat-x;
  background-size: 12px 6px;
  pointer-events: none;
}

.receipt::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6'%3E%3Cpath d='M0,0 Q3,6 6,0 Q9,6 12,0 L12,0 L0,0 Z' fill='%23FAF5EC'/%3E%3C/svg%3E") repeat-x;
  background-size: 12px 6px;
  pointer-events: none;
}

.receipt-head {
  padding: 16px 32px 10px;
}

.receipt-head-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.receipt-brand {
  font-family: 'Courier New', Courier, monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.receipt-merchant-copy {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.receipt-tagline {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.receipt-refline {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.receipt-rule {
  border: none;
  margin: 0;
}

.receipt-rule--solid {
  border-top: 1px solid rgba(27, 23, 19, 0.2);
}

.receipt-rule--dotted {
  border-top: 1px dashed rgba(27, 23, 19, 0.18);
}

.receipt-col-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 32px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.receipt-body {}

.receipt-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 32px;
  gap: 16px;
}

.receipt-item + .receipt-item {
  border-top: 1px dashed rgba(27, 23, 19, 0.14);
}

.receipt-item-left {
  flex: 1;
}

.receipt-item-name {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 5px;
}

.receipt-item-detail {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.6;
}

.receipt-item-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(27, 23, 19, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  margin-top: 1px;
}

.receipt-item-status {
  flex-shrink: 0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  opacity: 1;
  white-space: nowrap;
  margin-top: 2px;
}

.receipt-foot {
  padding: 10px 32px 18px;
}

.receipt-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
}

.receipt-total-key {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 700;
}

.receipt-total-val {
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--charcoal);
  font-weight: 700;
}

.receipt-foot-strip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px dashed rgba(27, 23, 19, 0.15);
  margin-top: 6px;
  padding-top: 12px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.receipt-footnote {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: none;
  font-style: italic;
  color: var(--charcoal);
}

/* ─── RECEIPT RATES ─── */
.receipt-rates {
  padding: 12px 32px 6px;
}

.receipt-rate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(27, 23, 19, 0.12);
}

.receipt-rate-row:last-child { border-bottom: none; }

.receipt-rate-key {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.receipt-rate-val {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  letter-spacing: 0.8px;
  color: var(--charcoal);
  font-weight: 700;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  padding: 48px 40px;
  background: var(--cream-dark);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.how-text {
  position: sticky;
  top: 112px;
}

.how-text .section-title { margin-bottom: 12px; }

.section-sub {
  font-size: 17px;
  color: var(--charcoal);
  letter-spacing: 0.1px;
  margin-bottom: 0;
  line-height: 1.7;
}

.section-urgency {
  font-size: 15px;
  color: var(--red);
  opacity: 0.85;
  margin-top: 14px;
  letter-spacing: 0.1px;
}

/* ─── Horizontal Steps (right column) ─── */
.steps-right {
  padding-top: 4px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 25px;
  left: calc(16.66% + 26px);
  right: calc(16.66% + 26px);
  height: 1px;
  background: var(--gold);
  opacity: 0.25;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  background: var(--cream-dark);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.7;
}

.steps-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 48px;
}

.steps-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 12px rgba(199, 146, 58, 0), 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: background 0.15s, transform 0.1s, box-shadow 0.2s;
  cursor: pointer;
}

.steps-cta-btn:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .steps-cta-btn:hover { background: var(--gold-lt); box-shadow: 0 4px 20px rgba(199, 146, 58, 0.28), 0 20px 50px rgba(0, 0, 0, 0.08); }
}

.steps-cta-sub {
  font-size: 12px;
  color: var(--charcoal);
  letter-spacing: 0.2px;
}

.steps-cta-guarantee {
  font-size: 11.5px;
  color: var(--charcoal);
  letter-spacing: 0.2px;
  margin-top: -8px;
}

/* ─── TESTIMONIAL / PROOF ─── */
.testimonial {
  padding: 48px 40px;
  background: #17120E;
}

.testimonial .section-eyebrow { color: #D39A2D; }

.testimonial .testimonial-quote { color: #F4E6D3; }
.testimonial .testimonial-attr  { color: rgba(244, 230, 211, 0.72); }
.testimonial .star               { color: #D39A2D; }

.testimonial .savings-module {
  background: rgba(244, 230, 211, 0.05);
  border-color: rgba(244, 230, 211, 0.10);
}

.testimonial .savings-col + .savings-col { border-color: rgba(244, 230, 211, 0.10); }

.testimonial .savings-label   { color: rgba(244, 230, 211, 0.68); }
.testimonial .savings-amount--new  { color: #F4E6D3; }
.testimonial .savings-amount--bad  { color: #C06050; }
.testimonial .savings-amount--saved { color: #4CAF7D; }
.testimonial .savings-footnote { color: rgba(244, 230, 211, 0.58); border-color: rgba(244, 230, 211, 0.15); }

.testimonial-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 40px;
}

/* Savings module — 3-column horizontal */
.savings-module {
  border: 1px solid var(--border-lt);
  background: var(--cream-dark);
}

.savings-cols {
  display: flex;
}

.savings-col {
  flex: 1;
  padding: 28px 24px 24px;
}

.savings-col + .savings-col {
  border-left: 1px solid var(--border-lt);
}

.savings-label {
  display: block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.savings-amount {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.savings-amount--bad {
  color: var(--red);
  text-decoration: line-through;
  text-decoration-color: rgba(163, 56, 40, 0.5);
  opacity: 0.75;
}

.savings-amount--new {
  color: var(--charcoal);
}

.savings-amount--saved {
  color: #2A7A4F;
}

.savings-footnote {
  font-size: 12px;
  color: var(--charcoal);
  padding: 14px 24px;
  border-top: 1px solid var(--border-lt);
  letter-spacing: 0.3px;
}

/* Quote module */
.quote-module {
  padding: 8px 0;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.star { color: var(--gold); font-size: 17px; }

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 27px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 24px;
  quotes: none;
}

.testimonial-attr {
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.5px;
}

/* ─── WHO WE HELP ─── */
.who-we-help {
  padding: 44px 40px;
  background: var(--bg-3);
  border-top: 1px solid rgba(80, 50, 25, 0.10);
}

.wwh-inner { max-width: 1200px; margin: 0 auto; }

.wwh-header { max-width: 620px; }

.wwh-gold-rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px 0 20px;
  opacity: 0.7;
}

.wwh-sub {
  font-size: 20px;
  color: var(--charcoal);
  line-height: 1.65;
  margin-top: -16px;
  margin-bottom: 0;
}

.wwh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 20px;
  row-gap: 26px;
  margin-top: 40px;
  margin-bottom: 52px;
}

.wwh-card {
  background: var(--cream-dark);
  border: 1px solid var(--border-lt);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(28, 18, 9, 0.04);
}

.wwh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.wwh-icon {
  width: 38px;
  height: 38px;
  background: rgba(163, 56, 40, 0.12);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
  flex-shrink: 0;
}

.wwh-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.wwh-card-desc {
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.6;
}

.wwh-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding-top: 4px;
}

.wwh-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: background 0.15s, transform 0.1s;
  cursor: pointer;
}

.wwh-cta-btn:hover  { background: var(--gold-lt); }
.wwh-cta-btn:active { transform: scale(0.98); }

.wwh-cta-sub {
  font-size: 12px;
  color: var(--charcoal);
  letter-spacing: 0.2px;
}

.wwh-not-listed {
  font-size: 12px;
  color: var(--charcoal);
  letter-spacing: 0.1px;
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--bg-2);
  padding: 48px 40px 44px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-60%);
  width: 480px;
  height: 480px;
  background: url('../logo.png') no-repeat center;
  background-size: contain;
  opacity: 0.05;
  filter: grayscale(1);
  pointer-events: none;
}

.final-cta-inner {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  text-align: left;
}

.final-cta h2 em {
  color: var(--gold);
  font-style: normal;
}

.final-cta-triplet {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.final-cta-triplet span {
  font-size: 17px;
  color: rgba(244, 230, 211, 0.80);
  line-height: 1.7;
}

.final-cta-col--action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 17px 36px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: background 0.15s, transform 0.1s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(199, 146, 58, 0);
}

.final-cta-btn:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .final-cta-btn:hover { background: var(--gold-lt); box-shadow: 0 4px 20px rgba(199, 146, 58, 0.28); }
}

.final-cta-nosignup {
  font-size: 12px;
  color: var(--text-on-dark);
  letter-spacing: 0.1px;
}

.final-cta-nosignup--xs {
  opacity: 0.7;
}

.final-cta-call {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-on-dark);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.15s;
}
.final-cta-call:hover { color: var(--gold); }

.final-trust-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-on-dark);
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
}
.final-trust-sep { opacity: 0.55; }

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  color: var(--text-on-dark);
}

.trust-badge svg { color: var(--gold); opacity: 0.55; }

/* ════════════════════════════════════════════════════════════════
   HOMEPAGE SECTION COLOR RHYTHM
   cream → dark(stats) → cream-dark(numbers) → dark(how-it-works)
   → cream(testimonial) → tan(features) → dark(final-cta)
════════════════════════════════════════════════════════════════ */

/* ─── HOW IT WORKS — warm tan ─── */
.how-it-works {
  background: var(--bg-3);
  border-top: 1px solid rgba(80, 50, 25, 0.10);
}

.how-it-works .section-eyebrow { color: var(--gold); }
.how-it-works .section-title   { color: var(--charcoal); }
.how-it-works .section-sub     { color: var(--charcoal); }
.how-it-works .section-urgency { color: var(--red); opacity: 1; }

.how-it-works .steps-row::before {
  background: var(--gold);
  opacity: 0.25;
}

.how-it-works .step-num {
  background: var(--bg-3);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: none;
}

.how-it-works .step-title { color: var(--charcoal); }
.how-it-works .step-desc  { color: var(--charcoal); }

.how-it-works .steps-cta-btn { background: var(--gold); }
.how-it-works .steps-cta-btn:hover { background: var(--gold-lt); }

.how-it-works .steps-cta-sub,
.how-it-works .steps-cta-guarantee { color: var(--charcoal); }

/* ─── FEATURES — dark ─── */
.features {
  background: var(--bg-1);
  border-top: none;
}

.features .section-eyebrow { color: #D39A2D; }
.features .section-title   { color: #F4E6D3; }
.features .features-sub    { color: rgba(244, 230, 211, 0.80); }

/* ─── FOOTER ─── */
footer {
  background: var(--cream-dark);
  border-top: 1px solid var(--border-lt);
  text-align: center;
  padding: 36px 24px;
}

.footer-main {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 2.2;
}

.footer-sub {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 2;
}

.footer-unsub {
  font-size: 11px;
  color: #bbb;
  margin-top: 8px;
  line-height: 1.8;
}

/* ─── HERO LIVE CARD (left side) ─── */
.hero-live-card {
  background: rgba(163, 56, 40, 0.04);
  border: 1px solid rgba(163, 56, 40, 0.14);
  border-radius: 12px;
  padding: 18px 20px 16px;
  margin-bottom: 28px;
  width: 100%;
  max-width: 400px;
}
.hero-live-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.hero-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #0f4a27;
  flex-shrink: 0;
}
.hero-live-dot {
  width: 7px;
  height: 7px;
  background: #0f4a27;
  border-radius: 50%;
  flex-shrink: 0;
  animation: liveDotPulse 2.2s ease-out infinite;
}
@keyframes liveDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(15,74,39,0.6); }
  70%  { box-shadow: 0 0 0 6px rgba(15,74,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(15,74,39,0); }
}
.hero-live-ref {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1px;
}
.hero-live-body {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.hero-live-amount {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
}
.hero-live-label {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  font-style: italic;
}
.hero-live-yr {
  font-size: 13px;
  color: rgba(27,23,19,0.55);
  letter-spacing: 0.2px;
}

/* Disclaimer below trust bar */
.hero-disclaimer {
  font-size: 11.5px;
  color: rgba(27,23,19,0.42);
  line-height: 1.6;
  letter-spacing: 0.1px;
  max-width: 400px;
  margin-top: 4px;
}

/* ─── HERO RATEMETER (animation shell only) ─── */
.hero-ratemeter {
  max-width: 600px;
  width: 100%;
  padding-top: 22px;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-ratemeter.rm-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PCR DOCUMENT CARD ─── */
.pcr-doc-wrap {
  background: #FAF5ED;
  border: 1px solid #DDD0B8;
  border-radius: 12px;
  padding: 30px 26px 20px;
  box-shadow:
    5px 5px 0 0 #EADBB8,
    10px 10px 0 0 #DCC9A0,
    0 24px 60px rgba(28,18,9,0.12);
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
}

/* Paperclip */
.pcr-clip-zone {
  position: absolute;
  top: -20px;
  left: 28px;
  z-index: 5;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.13));
  pointer-events: none;
}
.pcr-paperclip {
  display: block;
}

/* PCR header */
.pcr-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--charcoal);
}
.pcr-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  margin: 0 0 4px;
}
.pcr-stmt-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.pcr-case-file {
  flex-shrink: 0;
  text-align: right;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
  border: 1px solid var(--border-lt);
  border-radius: 4px;
  padding: 5px 10px;
}
.pcr-case-file span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0;
  line-height: 1;
}

/* Metadata row */
.pcr-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(27,23,19,0.10);
}

/* Table */
.pcr-table {
  margin-bottom: 16px;
}
.pcr-table-head,
.pcr-row {
  display: grid;
  grid-template-columns: 1.55fr 1fr 0.9fr;
  gap: 0;
  align-items: center;
}
.pcr-table-head {
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(27,23,19,0.15);
  margin-bottom: 2px;
}
.pcr-col-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(27,23,19,0.55);
  padding-right: 8px;
}
.pcr-col-label:not(:first-child) { text-align: right; }
.pcr-col-bad   { color: rgba(110,22,10,0.65); }
.pcr-col-crane { color: var(--gold-dark); }

/* Table rows */
.pcr-row {
  padding: 10px 0;
  border-bottom: 1px solid rgba(27,23,19,0.07);
}
.pcr-row:last-child { border-bottom: none; }
.pcr-row--rate { padding: 12px 0; }
.pcr-row--total {
  padding: 12px 0 4px;
  border-top: 2px solid rgba(27,23,19,0.18);
  border-bottom: none;
  margin-top: 4px;
}
.pcr-item {
  font-size: 13px;
  color: var(--charcoal);
  letter-spacing: 0.1px;
}
.pcr-row--rate .pcr-item  { font-size: 13.5px; font-weight: 600; }
.pcr-total-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--charcoal);
}
.pcr-info {
  font-size: 10px;
  color: rgba(27,23,19,0.30);
  cursor: default;
}
.pcr-val {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  padding-right: 4px;
  line-height: 1.3;
}
.pcr-row--rate .pcr-val {
  font-size: 14px;
  font-family: 'Playfair Display', serif;
}
.pcr-val--bad    { color: rgba(110,22,10,0.85); }
.pcr-val--crane  { color: var(--charcoal); }
.pcr-val--hidden {
  color: rgba(110,22,10,0.75);
  font-style: italic;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
}
.pcr-val--zero   { color: rgba(27,23,19,0.25); font-family: 'Inter', sans-serif; }
.pcr-val--total  { font-size: 15px; font-family: 'Playfair Display', serif; }
.pcr-val--stack  { display: flex; flex-direction: column; align-items: flex-end; }
.pcr-val-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  color: rgba(110,22,10,0.55);
  font-style: normal;
  letter-spacing: 0.1px;
  margin-top: 1px;
}
.pcr-val--crane .pcr-val-sub { color: rgba(27,23,19,0.40); }
.pcr-total-note {
  font-size: 10px;
  color: rgba(27,23,19,0.40);
  font-style: italic;
  letter-spacing: 0.1px;
  padding-top: 4px;
  text-align: right;
}

/* Equipment toggle */
.pcr-equip-toggle {
  border: 1px solid rgba(27,23,19,0.12);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.55);
}
.pcr-equip-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(27,23,19,0.45);
  margin-bottom: 10px;
}
.pcr-equip-options {
  display: flex;
  gap: 10px;
}
.pcr-equip-opt {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid rgba(27,23,19,0.14);
  border-radius: 6px;
  cursor: pointer;
  background: #FFF8F0;
  transition: border-color 0.15s, background 0.15s;
}
.pcr-equip-opt input { position: absolute; opacity: 0; pointer-events: none; }
.pcr-equip-opt--active {
  border-color: #2D6A4F;
  background: rgba(45,106,79,0.06);
}
.pcr-equip-radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(27,23,19,0.25);
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.pcr-equip-opt--active .pcr-equip-radio {
  border-color: #2D6A4F;
  background: #2D6A4F;
}
.pcr-equip-opt--active .pcr-equip-radio::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: white;
  border-radius: 50%;
}
.pcr-equip-content strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.pcr-equip-price {
  font-size: 11px;
  font-weight: 600;
  color: var(--charcoal);
}
.pcr-equip-note {
  font-size: 10px;
  color: var(--muted);
}

/* Verdict box */
.pcr-verdict {
  background: #1A3828;
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--cream);
  margin-bottom: 12px;
  border: 1px solid rgba(45,106,79,0.35);
}
.pcr-verdict-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 6px;
  opacity: 0.85;
}
.pcr-verdict-main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px 4px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(244,230,211,0.80);
  margin-bottom: 2px;
}
.pcr-verdict-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: #8FD4AE;
  line-height: 1;
}
.pcr-verdict-mo {
  font-size: 16px;
  font-weight: 600;
  color: rgba(143,212,174,0.75);
}
.pcr-verdict-yr {
  font-size: 12.5px;
  color: rgba(244,230,211,0.60);
  margin-bottom: 8px;
}
.pcr-verdict-note {
  font-size: 10.5px;
  color: rgba(244,230,211,0.48);
  line-height: 1.5;
}

/* Card footer */
.pcr-foot {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 12px 2px 4px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.2px;
}
.pcr-footnote {
  font-size: 10px;
  color: rgba(27,23,19,0.35);
  line-height: 1.5;
  padding: 0 2px 4px;
}

/* ─── TRUST STRIP ─── */
.cp-trust-strip {
  background: var(--charcoal);
  padding: 36px 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cp-trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 52px;
  flex: 1;
}
.cp-trust-sep {
  width: 1px;
  height: 44px;
  background: rgba(244,230,211,0.12);
  flex-shrink: 0;
}
.cp-trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 7px;
}
.cp-trust-unit {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
}
.cp-trust-desc {
  font-size: 13px;
  font-weight: 500;
  color: rgba(244,230,211,0.58);
  letter-spacing: 0.2px;
}

/* 7th child stagger for trust strip (4 items + 3 seps = 7 children) */
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 450ms; }

/* ─── MOBILE: snapshot card + trust strip ─── */
@media (max-width: 768px) {
  .hero-snapshot { display: none; }

  .cp-trust-strip { padding: 28px 20px; }
  .cp-trust-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }
  .cp-trust-sep { display: none; }
  .cp-trust-item { padding: 12px 16px; }
  .cp-trust-num { font-size: 26px; }
}
@media (max-width: 440px) {
  .cp-trust-strip-inner { grid-template-columns: 1fr; }
  .cp-trust-item { padding: 10px 0; }
}

/* ─── ABOUT PAGE — AGENT HEADSHOT ─── */
.cp-about-page-lead--flex {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

@media (max-width: 640px) {
  .cp-about-page-lead--flex {
    flex-direction: column;
    align-items: center;
  }
}

.about-agent-img-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold, #C7923A);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  background: var(--bg-1, #17120E);
  flex-shrink: 0;
}

.about-agent-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}


/* ─── FINAL CTA — "60 seconds" underline draw ─── */

.cta-timed {
  position: relative;
  display: inline-block;
}

.cta-timed::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.final-cta.visible .cta-timed::after {
  clip-path: inset(0 0% 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .cta-timed::after { transition: none; clip-path: inset(0 0% 0 0); }
}


/* ═══════════════════════════════════════════════════════════════
   HERO — STATEMENT COMPARISON CARD + LIVE TICKER
═══════════════════════════════════════════════════════════════ */

/* ── Live ticker on left side ── */
.hero-ticker {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: rgba(163, 56, 40, 0.05);
  border: 1px solid rgba(163, 56, 40, 0.14);
  border-radius: 8px;
  padding: 11px 15px;
  margin-bottom: 26px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--charcoal);
}

.hero-ticker-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #0f4a27;
  flex-shrink: 0;
  margin-top: 3px;
  white-space: nowrap;
}

.hero-ticker-dot {
  width: 6px;
  height: 6px;
  background: #0f4a27;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.hero-ticker-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(15, 74, 39, 0.25);
  animation: rmDotPulse 2.2s ease-out infinite;
}

.hero-ticker-body strong {
  color: #A33828;
  font-weight: 700;
}

/* ── Statement card: column headers ── */
.hero-stmt-cols {
  display: grid;
  grid-template-columns: 1fr 88px 88px;
  gap: 0;
  padding: 7px 20px 6px;
  background: rgba(27, 23, 19, 0.025);
  border-bottom: 1px dashed rgba(27, 23, 19, 0.10);
}

.hero-stmt-col {
  font-family: 'Courier New', Courier, monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-align: right;
}

.hero-stmt-col--bad   { color: rgba(110, 22, 10, 0.60); }
.hero-stmt-col--crane { color: var(--gold-dark); }

/* ── Statement card: line items ── */
.hero-stmt-body {
  padding: 6px 0 2px;
}

.hero-stmt-row {
  display: grid;
  grid-template-columns: 1fr 88px 88px;
  gap: 0;
  align-items: center;
  padding: 5px 20px;
}

.hero-stmt-item {
  font-size: 12px;
  font-weight: 500;
  color: rgba(27, 23, 19, 0.62);
  letter-spacing: 0.05px;
}

.hero-stmt-val {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11.5px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.hero-stmt-val--bad    { color: rgba(110, 22, 10, 0.80); }
.hero-stmt-val--crane  { color: var(--charcoal); }
.hero-stmt-val--zero   { color: rgba(27, 23, 19, 0.22); font-weight: 500; font-family: 'Inter', sans-serif; }
.hero-stmt-val--flag   { color: rgba(110, 22, 10, 0.90); }

.hero-stmt-row--rate {
  background: rgba(27, 23, 19, 0.03);
  padding-top: 8px;
  padding-bottom: 8px;
}

.hero-stmt-row--rate .hero-stmt-item {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 12.5px;
}

.hero-stmt-row--rate .hero-stmt-val {
  font-size: 12.5px;
}

.hero-stmt-divider {
  height: 1px;
  background: rgba(27, 23, 19, 0.08);
  margin: 4px 20px;
}

/* ── Statement card: totals ── */
.hero-stmt-totals {
  background: rgba(27, 23, 19, 0.04);
  border-top: 1px solid rgba(27, 23, 19, 0.12);
  border-bottom: 1px solid rgba(27, 23, 19, 0.12);
  padding: 11px 20px;
}

.hero-stmt-total-row {
  display: grid;
  grid-template-columns: 1fr 88px 88px;
  gap: 0;
  align-items: baseline;
}

.hero-stmt-total-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.hero-stmt-total-bad {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(110, 22, 10, 0.84);
  text-align: right;
  white-space: nowrap;
}

.hero-stmt-total-crane {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  text-align: right;
  white-space: nowrap;
}

/* ── Statement card: footnote ── */
.hero-stmt-footnote {
  padding: 7px 20px 9px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 9.5px;
  letter-spacing: 0.3px;
  color: rgba(27, 23, 19, 0.35);
  font-style: italic;
  border-top: 1px dashed rgba(27, 23, 19, 0.09);
}

@media (max-width: 768px) {
  .hero-ticker { display: none; }
}


