/* ═══════════════════════════════════════════════════════════════════
   CRANE.CSS — homepage rebuild, 2026
   One stylesheet for nav, hero, sections, footer. Legacy CSS files
   remain loaded only for the calculator modal, scroll-reveal states,
   and the mobile CTA bar. All new markup uses cr-* classes so the
   legacy files cannot collide with it.
═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600;700&display=swap');

:root {
  --ink:        #181310;
  --ink-2:      #221A13;
  --parch:      #F6EFE2;
  --parch-deep: #EDE2CC;
  --paper:      #FFFDF7;
  --crane-red:  #A33828;
  --red-deep:   #7F241A;
  --gold:       #B98730;
  --gold-deep:  #8A621C;
  --gold-brt:   #D2A34F;
  --mut:        #6E5F4B;
  --mut-lt:     #97876E;
  --line:       rgba(24, 19, 16, 0.10);
  --line-2:     rgba(24, 19, 16, 0.18);
  --on-ink:     #F6EFE2;
  --on-ink-dim: rgba(246, 239, 226, 0.56);

  /* keep legacy tokens coherent for the modal */
  --cream: var(--parch);
  --charcoal: var(--ink);
}

body { background: var(--parch); color: var(--ink); }

/* ─── shared primitives ─── */
.cr-wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.cr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.cr-eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--gold); }

.cr-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}

.cr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.2s ease;
}
.cr-btn--ink { background: var(--ink); color: var(--parch); box-shadow: 0 12px 28px rgba(24, 19, 16, 0.22); }
.cr-btn--ink:hover { background: #000; box-shadow: 0 14px 32px rgba(24, 19, 16, 0.28); }
.cr-btn--gold { background: var(--gold); color: var(--ink); box-shadow: 0 12px 28px rgba(185, 135, 48, 0.35); }
.cr-btn--gold:hover { background: var(--gold-brt); }
.cr-btn:active { transform: scale(0.97); }

.cr-linkline {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.15s ease;
}
.cr-linkline:hover { color: var(--gold-deep); }

/* ═══════════════════════════════════════════════════════════════════
   NAV — floating pill
═══════════════════════════════════════════════════════════════════ */
.cr-nav {
  position: fixed;
  top: 16px; left: 0; right: 0;
  z-index: 300;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}
.cr-nav-pill {
  pointer-events: auto;
  width: 100%;
  max-width: 1120px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 10px 0 20px;
  border-radius: 999px;
  background: rgba(246, 239, 226, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(24, 19, 16, 0.10);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.cr-nav.nav-scrolled .cr-nav-pill {
  background: rgba(246, 239, 226, 0.96);
  box-shadow: 0 14px 36px rgba(24, 19, 16, 0.16);
}

.cr-nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cr-nav-logo img { height: 34px; }
.cr-nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.005em;
  white-space: nowrap;
}

.cr-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.cr-nav-links > li { position: relative; }
.cr-nav-links > li > a,
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--mut);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.cr-nav-links > li > a:hover,
.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger {
  color: var(--ink);
  background: rgba(24, 19, 16, 0.05);
}
.nav-dropdown-trigger svg { width: 9px; opacity: 0.55; transition: transform 0.18s ease; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 208px;
  padding: 8px;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(24, 19, 16, 0.16);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: block;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mut);
  transition: color 0.12s ease, background 0.12s ease;
}
.nav-dropdown-menu li a:hover { color: var(--ink); background: var(--parch); }

.cr-nav-cta {
  flex-shrink: 0;
  padding: 11px 22px;
  border: none;
  border-radius: 999px;
  background: var(--ink);
  color: var(--parch);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.cr-nav-cta:hover { background: #000; }
.cr-nav-cta:active { transform: scale(0.96); }

/* burger */
.cr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.cr-burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.cr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cr-burger.open span:nth-child(2) { opacity: 0; }
.cr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* drawer */
.cr-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(320px, 86vw);
  z-index: 320;
  background: var(--parch);
  border-right: 1px solid var(--line);
  padding: 24px 22px;
  transform: translateX(-102%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.cr-drawer.open { transform: translateX(0); }
.cr-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 310;
  background: rgba(24, 19, 16, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.cr-drawer-overlay.visible { opacity: 1; visibility: visible; }

.cr-drawer-cta {
  width: 100%;
  padding: 14px;
  margin-top: 24px;
  border: none;
  border-radius: 12px;
  background: var(--ink);
  color: var(--parch);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
}
.cr-drawer-nav { display: flex; flex-direction: column; }
.cr-drawer-link,
.nav-drawer-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 4px;
  border: none;
  border-bottom: 1px solid var(--line);
  background: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.nav-drawer-group-toggle svg { width: 10px; opacity: 0.5; transition: transform 0.2s ease; }
.nav-drawer-group.open .nav-drawer-group-toggle svg { transform: rotate(180deg); }
.nav-drawer-group-items {
  display: none;
  flex-direction: column;
  padding: 6px 0 10px 14px;
}
.nav-drawer-group.open .nav-drawer-group-items { display: flex; }
.nav-drawer-group-items a {
  padding: 9px 0;
  font-size: 14px;
  color: var(--mut);
}
.nav-drawer-group-items a:hover { color: var(--ink); }

/* ═══════════════════════════════════════════════════════════════════
   HERO — thesis + audit receipt (the signature)
═══════════════════════════════════════════════════════════════════ */
.cr-hero {
  position: relative;
  padding: 170px 24px 96px;
  overflow: hidden;
}
.cr-hero::before {
  /* faint ledger grid in the backdrop */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px);
  background-size: 100% 56px;
  opacity: 0.28;
  mask-image: radial-gradient(80% 70% at 70% 30%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 70% at 70% 30%, #000 30%, transparent 100%);
  pointer-events: none;
}
.cr-hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.cr-hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 4.6vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 22px;
}
.cr-hero-copy h1 em {
  font-style: italic;
  color: var(--crane-red);
}
.cr-hero-sub {
  font-size: 18px;
  color: var(--mut);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 34px;
}
.cr-hero-sub strong { color: var(--ink); font-weight: 600; }

.cr-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.cr-hero-call {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--mut);
  transition: color 0.15s ease;
}
.cr-hero-call b { color: var(--ink); font-weight: 600; }
.cr-hero-call:hover b { color: var(--gold-deep); }

.cr-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  font-size: 12.5px;
  color: var(--mut-lt);
}
.cr-hero-trust span { display: inline-flex; align-items: center; }
.cr-hero-trust span + span::before {
  content: '·';
  margin: 0 10px;
  color: var(--line-2);
}

/* ── the receipt ── */
.cr-receipt-stage {
  position: relative;
  display: flex;
  justify-content: center;
}
.cr-receipt {
  position: relative;
  width: min(430px, 100%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  padding: 26px 28px 30px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--ink);
  box-shadow:
    0 30px 60px rgba(24, 19, 16, 0.16),
    0 6px 18px rgba(24, 19, 16, 0.08);
  transform: rotate(1.4deg);
  animation: crReceiptIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
@keyframes crReceiptIn {
  from { opacity: 0; transform: translateY(26px) rotate(3deg); }
  to   { opacity: 1; transform: translateY(0) rotate(1.4deg); }
}
/* sawtooth torn bottom edge */
.cr-receipt::after {
  content: '';
  position: absolute;
  left: -1px; right: -1px;
  bottom: -11px;
  height: 12px;
  background:
    linear-gradient(45deg, var(--paper) 8.5px, transparent 0) 0 0 / 17px 17px repeat-x,
    linear-gradient(-45deg, var(--paper) 8.5px, transparent 0) 0 0 / 17px 17px repeat-x;
  filter: drop-shadow(0 5px 5px rgba(24, 19, 16, 0.07));
}

.cr-receipt-head {
  text-align: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--line-2);
}
.cr-receipt-head-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--ink);
}
.cr-receipt-head-sub {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--mut-lt);
  margin-top: 5px;
}

.cr-receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 5.5px 0;
  animation: crRowIn 0.4s ease both;
}
.cr-receipt-row:nth-child(2) { animation-delay: 0.55s; }
.cr-receipt-row:nth-child(3) { animation-delay: 0.70s; }
.cr-receipt-row:nth-child(4) { animation-delay: 0.85s; }
.cr-receipt-row:nth-child(5) { animation-delay: 1.00s; }
.cr-receipt-row:nth-child(6) { animation-delay: 1.15s; }
@keyframes crRowIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cr-receipt-row .l { color: var(--mut); }
.cr-receipt-row .v { font-weight: 600; white-space: nowrap; }

.cr-receipt-row--flag .l,
.cr-receipt-row--flag .v { color: var(--crane-red); }
.cr-receipt-row--flag .l::before {
  content: '⚑ ';
  font-size: 10px;
}

.cr-receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 0;
  border-top: 1px dashed var(--line-2);
  border-bottom: 1px dashed var(--line-2);
}
.cr-receipt-total .l {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red-deep);
}
.cr-receipt-total .v {
  font-size: 24px;
  font-weight: 700;
  color: var(--crane-red);
  white-space: nowrap;
}
.cr-receipt-total .v small {
  font-size: 12px;
  font-weight: 600;
  color: var(--mut-lt);
}

.cr-receipt-crane {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0 4px;
}
.cr-receipt-crane .l {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
}
.cr-receipt-crane .v {
  font-weight: 700;
  color: var(--gold-deep);
  white-space: nowrap;
}
.cr-receipt-keep {
  text-align: center;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--mut);
}
.cr-receipt-keep b { color: var(--ink); }

/* crest stamp */
.cr-receipt-stamp {
  position: absolute;
  top: -26px;
  right: -30px;
  width: 92px;
  height: 92px;
  transform: rotate(-9deg);
  filter: drop-shadow(0 10px 18px rgba(24, 19, 16, 0.20));
  animation: crStampIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.35s both;
}
@keyframes crStampIn {
  from { opacity: 0; transform: rotate(-9deg) scale(1.5); }
  to   { opacity: 1; transform: rotate(-9deg) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .cr-receipt, .cr-receipt-row, .cr-receipt-stamp { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   WHO WE HELP — chip row
═══════════════════════════════════════════════════════════════════ */
.cr-wwh {
  padding: 72px 24px;
  background: var(--parch-deep);
}
.cr-wwh-head { text-align: center; margin-bottom: 26px; }
.cr-wwh-head .cr-eyebrow::before { display: none; }
.cr-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}
.cr-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--paper);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mut);
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.cr-chip svg { width: 15px; height: 15px; opacity: 0.55; }
.cr-chip:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 19, 16, 0.08);
}

/* ═══════════════════════════════════════════════════════════════════
   PROOF — verified savings
═══════════════════════════════════════════════════════════════════ */
.cr-proof { padding: 84px 24px; background: var(--parch-deep); }
.cr-proof-head { text-align: center; margin-bottom: 46px; }
.cr-proof-head .cr-eyebrow { justify-content: center; margin-bottom: 16px; }
.cr-proof-head .cr-eyebrow::before { display: none; }
.cr-proof-head .cr-title { font-size: clamp(28px, 3.2vw, 38px); margin-bottom: 10px; }
.cr-proof-head p { font-size: 15px; color: var(--mut); }

.cr-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 40px;
}
.cr-proof-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 30px 26px;
  box-shadow: 0 14px 36px rgba(24, 19, 16, 0.07);
}
.cr-proof-lead {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.cr-proof-amt {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--gold-deep);
  line-height: 1;
}
.cr-proof-unit { font-size: 13px; font-weight: 500; color: var(--mut); }
.cr-proof-yr {
  margin-left: auto;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--mut-lt);
}

.cr-bars { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.cr-barrow { display: flex; align-items: center; gap: 12px; }
.cr-barlabel {
  flex: 0 0 104px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  color: var(--mut);
  white-space: nowrap;
}
.cr-barlabel b { font-weight: 700; color: var(--crane-red); }
.cr-barlabel--after b { color: var(--gold-deep); }
.cr-bar { flex: 1; height: 7px; border-radius: 999px; background: rgba(24, 19, 16, 0.08); overflow: hidden; }
.cr-bar-fill { display: block; height: 100%; border-radius: 999px; }
.cr-bar-fill--before { background: var(--crane-red); opacity: 0.55; }
.cr-bar-fill--after  { background: var(--gold); }

.cr-proof-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-bottom: 12px;
}
.cr-proof-name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.cr-proof-name small { font-weight: 400; color: var(--mut-lt); }
.cr-proof-loc { font-size: 12.5px; color: var(--mut-lt); }
.cr-proof-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-deep);
  background: rgba(185, 135, 48, 0.12);
  padding: 4px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.cr-proof-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--mut);
  line-height: 1.6;
}
.cr-proof-verified {
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold-deep);
}
.cr-proof-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════════════
   PRICING — rate bar + setup chooser
═══════════════════════════════════════════════════════════════════ */
.cr-pricing { padding: 88px 24px; }
.cr-pricing-head { text-align: center; margin-bottom: 40px; }
.cr-pricing-head .cr-eyebrow { justify-content: center; margin-bottom: 16px; }
.cr-pricing-head .cr-eyebrow::before { display: none; }
.cr-pricing-head .cr-title { font-size: clamp(28px, 3.2vw, 38px); }

.cr-rate-bar {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--ink);
  border-radius: 18px;
  padding: 30px 18px;
  margin-bottom: 34px;
  box-shadow: 0 20px 50px rgba(24, 19, 16, 0.24);
}
.cr-rate-cell {
  text-align: center;
  padding: 0 40px;
}
.cr-rate-cell + .cr-rate-cell { border-left: 1px solid rgba(246, 239, 226, 0.13); }
.cr-rate-val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 27px;
  font-weight: 700;
  color: var(--gold-brt);
  white-space: nowrap;
}
.cr-rate-val small {
  font-size: 13px;
  font-weight: 600;
  color: var(--on-ink-dim);
}
.cr-rate-key {
  display: block;
  margin-top: 7px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-ink-dim);
}

/* setup pills — same class hooks the JS expects */
.cp-setup-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.cp-setup-pill {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mut);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.cp-setup-pill-seq { display: none; }
.cp-setup-pill:hover { border-color: var(--gold); color: var(--ink); }
.cp-setup-pill.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--parch);
}

.cp-setup-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 16px 40px rgba(24, 19, 16, 0.07);
}
.cp-setup-data {
  display: grid;
  grid-template-columns: 216px 1fr;
  gap: 44px;
  align-items: center;
}
.cp-setup-data--hidden { display: none; }
.cp-setup-data--entering { animation: crPanelIn 0.25s ease; }
@keyframes crPanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cp-setup-photo {
  width: 100%;
  max-width: 216px;
  justify-self: center;
  filter: drop-shadow(0 18px 30px rgba(24, 19, 16, 0.18));
}
.cp-setup-data-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.cp-deploy-icon { color: var(--gold-deep); opacity: 0.85; display: flex; }
.cp-setup-data-name { font-size: 19px; font-weight: 700; color: var(--ink); }
.cp-setup-data-for { font-size: 13px; color: var(--mut-lt); margin-top: 2px; }
.cp-setup-featured-badge {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--gold-deep);
  background: rgba(185, 135, 48, 0.12);
  padding: 3px 9px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}
.cp-setup-data-rows { display: flex; flex-direction: column; gap: 14px; }
.cp-setup-data-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 4px 18px;
  align-items: baseline;
}
.cp-setup-data-key {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mut-lt);
}
.cp-setup-data-val { font-size: 15px; font-weight: 600; color: var(--ink); }
.cp-field-unit { font-weight: 400; color: var(--mut-lt); }
.cp-setup-data-note {
  grid-column: 2;
  font-size: 12.5px;
  color: var(--mut-lt);
}
.cp-setup-data-cta { margin-top: 20px; }
.cp-deploy-cta {
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  background: var(--ink);
  color: var(--parch);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
}
.cp-deploy-cta:hover { background: #000; }
.cr-pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--mut-lt);
  margin-top: 24px;
}

/* slim inline CTA banner */
.cr-band {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 16px;
  padding: 22px 28px;
}
.cr-band-text { font-size: 15.5px; color: var(--mut); }
.cr-band-text b { color: var(--ink); font-weight: 600; }
.cr-band .cr-btn { padding: 13px 26px; font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════════ */
.cr-about { padding: 84px 24px; background: var(--ink); }
.cr-about-inner { max-width: 660px; margin: 0 auto; text-align: center; }
.cr-about .cr-eyebrow { color: var(--gold-brt); justify-content: center; margin-bottom: 18px; }
.cr-about .cr-eyebrow::before { display: none; }
.cr-about .cr-title { color: var(--on-ink); font-size: clamp(26px, 3vw, 34px); margin-bottom: 22px; }
.cr-about p {
  font-size: 15.5px;
  color: var(--on-ink-dim);
  line-height: 1.75;
  margin-bottom: 16px;
}
.cr-about p b { color: var(--on-ink); font-weight: 600; }
.cr-about .cr-linkline { color: var(--on-ink); border-color: var(--gold); margin-top: 8px; }
.cr-about .cr-linkline:hover { color: var(--gold-brt); }

/* ═══════════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════════ */
.cr-faq { padding: 88px 24px; }
.cr-faq-inner { max-width: 680px; margin: 0 auto; }
.cr-faq-head { text-align: center; margin-bottom: 34px; }
.cr-faq-head .cr-title { font-size: clamp(26px, 3vw, 34px); }

.cr-faq details { border-bottom: 1px solid var(--line-2); }
.cr-faq details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 2px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.cr-faq details summary::-webkit-details-marker { display: none; }
.cr-faq details summary::after {
  content: '+';
  font-family: 'IBM Plex Mono', monospace;
  font-size: 19px;
  font-weight: 500;
  color: var(--gold-deep);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.cr-faq details[open] summary::after { transform: rotate(45deg); }
.cr-faq details p {
  font-size: 14.5px;
  color: var(--mut);
  line-height: 1.7;
  padding: 0 32px 20px 2px;
}
.cr-faq-more { text-align: center; margin-top: 30px; }

/* ═══════════════════════════════════════════════════════════════════
   FINAL CTA + FOOTER (one continuous ink block)
═══════════════════════════════════════════════════════════════════ */
.cr-final {
  background: var(--ink);
  padding: 84px 24px 56px;
}
.cr-final-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(246, 239, 226, 0.10);
}
.cr-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--on-ink);
  margin-bottom: 18px;
}
.cr-final h2 em { font-style: italic; color: var(--gold-brt); }
.cr-final-sub {
  font-size: 15px;
  color: var(--on-ink-dim);
  line-height: 1.7;
  max-width: 440px;
}
.cr-final-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.cr-final-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}
.cr-final-contact a { color: var(--on-ink-dim); transition: color 0.15s ease; }
.cr-final-contact a:hover { color: var(--gold-brt); }

.cr-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cr-footer-brand { display: flex; align-items: center; gap: 11px; }
.cr-footer-brand img { height: 30px; }
.cr-footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--on-ink);
}
.cr-footer-links { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 13.5px; }
.cr-footer-links a { color: var(--on-ink-dim); transition: color 0.15s ease; }
.cr-footer-links a:hover { color: var(--gold-brt); }
.cr-footer-contact {
  font-size: 13.5px;
  color: var(--on-ink-dim);
  text-align: right;
  line-height: 1.9;
}
.cr-footer-contact a { color: rgba(246, 239, 226, 0.78); }
.cr-footer-contact a:hover { color: var(--gold-brt); }

.cr-footer-bottom {
  max-width: 1120px;
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(246, 239, 226, 0.07);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(246, 239, 226, 0.36);
}
.cr-footer-bottom a { color: rgba(246, 239, 226, 0.46); }
.cr-footer-bottom a:hover { color: var(--gold-brt); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .cr-nav-links { display: none; }
  .cr-nav-cta { display: none; }
  .cr-burger { display: flex; }
  .cr-nav-pill { padding: 0 8px 0 18px; }
}

@media (max-width: 900px) {
  .cr-hero { padding: 138px 24px 64px; }
  .cr-hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .cr-hero-copy { text-align: center; }
  .cr-hero-sub { margin-left: auto; margin-right: auto; }
  .cr-hero-actions { justify-content: center; }
  .cr-hero-trust { justify-content: center; }
  .cr-receipt { transform: rotate(0.8deg); }
  .cr-receipt-stamp { right: -8px; }

  .cr-proof-grid { grid-template-columns: 1fr; }

  .cr-rate-bar { flex-direction: column; gap: 20px; padding: 26px 24px; }
  .cr-rate-cell + .cr-rate-cell { border-left: none; border-top: 1px solid rgba(246, 239, 226, 0.13); padding-top: 20px; }

  .cp-setup-panel { padding: 30px 24px; }
  .cp-setup-data { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .cp-setup-data-head { justify-content: center; }
  .cp-setup-data-row { grid-template-columns: 1fr; justify-items: center; }
  .cp-setup-data-note { grid-column: 1; }

  .cr-final-inner { grid-template-columns: 1fr; gap: 32px; }

  .cr-footer { flex-direction: column; }
  .cr-footer-contact { text-align: left; }
  .cr-footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .cr-nav { top: 10px; padding: 0 12px; }
  .cr-nav-pill { height: 54px; }
  .cr-nav-logo-name { font-size: 14px; }
  .cr-receipt { padding: 22px 18px 26px; font-size: 12px; }
  .cr-receipt-stamp { width: 74px; height: 74px; top: -20px; }
  .cr-band { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════════ */
.cr-how {
  padding: 84px 24px;
  border-top: 1px solid var(--line);
}
.cr-how-head { text-align: center; margin-bottom: 48px; }
.cr-how-head .cr-eyebrow { justify-content: center; margin-bottom: 16px; }
.cr-how-head .cr-eyebrow::before { display: none; }
.cr-how-head .cr-title { font-size: clamp(28px, 3.2vw, 38px); }

.cr-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.cr-how-step {
  position: relative;
  padding: 6px 36px 0;
}
.cr-how-step + .cr-how-step { border-left: 1px dashed var(--line-2); }
.cr-how-num {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.cr-how-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.cr-how-step p {
  font-size: 14.5px;
  color: var(--mut);
  line-height: 1.7;
}
.cr-how-cta { text-align: center; margin-top: 48px; }

@media (max-width: 900px) {
  .cr-how-grid { grid-template-columns: 1fr; gap: 34px; }
  .cr-how-step { padding: 0; }
  .cr-how-step + .cr-how-step { border-left: none; border-top: 1px dashed var(--line-2); padding-top: 34px; }
}

/* ═══════════════════════════════════════════════════════════════════
   POLISH PASS
═══════════════════════════════════════════════════════════════════ */
/* hero copy entrance — quiet stagger to match the receipt */
.cr-hero-copy h1,
.cr-hero-sub,
.cr-hero-actions,
.cr-hero-trust {
  animation: crCopyIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.cr-hero-sub     { animation-delay: 0.10s; }
.cr-hero-actions { animation-delay: 0.18s; }
.cr-hero-trust   { animation-delay: 0.26s; }
@keyframes crCopyIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* proof cards lift on hover */
.cr-proof-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .cr-proof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(24, 19, 16, 0.11);
  }
}

/* keyboard focus — visible everywhere, invisible to mouse users */
.cr-btn:focus-visible,
.cr-nav-cta:focus-visible,
.cr-chip:focus-visible,
.cr-linkline:focus-visible,
.cp-setup-pill:focus-visible,
.cp-deploy-cta:focus-visible,
.nav-dropdown-trigger:focus-visible,
.cr-burger:focus-visible,
.cr-drawer-cta:focus-visible,
.cr-faq summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}
.cr-btn:focus-visible,
.cr-nav-cta:focus-visible,
.cr-chip:focus-visible,
.cp-setup-pill:focus-visible { border-radius: 999px; }

/* smoother FAQ open */
.cr-faq details p { animation: crFaqIn 0.22s ease; }
@keyframes crFaqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .cr-hero-copy h1, .cr-hero-sub, .cr-hero-actions, .cr-hero-trust,
  .cr-faq details p { animation: none !important; }
  .cr-proof-card { transition: none; }
}

/* ─── FOOTER OVERRIDE — kill landing.css `footer` element styling on interior pages ─── */
.cr-final footer#footer,
footer#footer.cr-footer {
  background: transparent !important;
  padding: 44px 0 0 !important;
  margin: 0 auto !important;
  text-align: left !important;
  border: none !important;
  box-shadow: none !important;
}

/* ─── WHO WE HELP v2 — industry link-cards ─── */
.cr-wwh-title { font-size: clamp(24px, 2.7vw, 32px); margin-top: 14px; }
.cr-wwh-head { margin-bottom: 34px; }
.cr-ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cr-ind {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  background: var(--paper);
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}
.cr-ind-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(185, 135, 48, 0.10);
  color: var(--gold-deep);
}
.cr-ind-ico svg { width: 17px; height: 17px; }
.cr-ind-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cr-ind-body b { font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.cr-ind-body small { font-size: 12px; color: var(--mut-lt); line-height: 1.35; }
.cr-ind-arrow {
  margin-left: auto;
  font-size: 14px;
  color: var(--gold-deep);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
@media (hover: hover) and (pointer: fine) {
  .cr-ind:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(24, 19, 16, 0.09);
  }
  .cr-ind:hover .cr-ind-arrow { opacity: 1; transform: translateX(0); }
}
.cr-ind--ask {
  border-style: dashed;
  background: transparent;
}
.cr-ind--ask .cr-ind-body b { color: var(--gold-deep); }
.cr-ind:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
@media (max-width: 1000px) { .cr-ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .cr-ind-grid { grid-template-columns: 1fr; } }

/* ─── DRAWER HEADER (logo in mobile menu) ─── */
.cr-drawer-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.cr-drawer-head img { height: 34px; }
.cr-drawer-head span {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

/* ═══════════════════════════════════════════════════════════════════
   MERGE ADJUSTMENTS — redesign-merge branch
   ═══════════════════════════════════════════════════════════════════ */

/* The site footer lives OUTSIDE .cr-final as a sibling .cr-footer-block,
   sharing the same ink background so the band reads as one block. */
.cr-final { padding-bottom: 0; }
.cr-footer-block { background: var(--ink); padding: 0 24px 56px; }
.cr-footer-block footer#footer {
  background: transparent !important;
  padding: 44px 0 0 !important;
  margin: 0 auto !important;
  text-align: left !important;
  border: none !important;
  box-shadow: none !important;
}
.cr-footer-block .email-traffic-only p {
  font-size: 11px;
  color: rgba(246, 239, 226, 0.3);
  max-width: 1120px;
  margin: 14px auto 0;
}

/* Current-page highlighting (desktop nav, dropdown menus, mobile drawer) */
.cr-nav-links > li > a.active,
.nav-dropdown.active > .nav-dropdown-trigger {
  color: var(--ink);
  background: rgba(24, 19, 16, 0.05);
}
.nav-dropdown-menu li a.active { color: var(--ink); background: var(--parch); font-weight: 600; }
.cr-drawer-link.active { color: var(--gold-deep); }
.nav-drawer-group-items a.active { color: var(--gold-deep); font-weight: 600; }

/* Nav must stack BELOW the calculator modal (modal.css .modal-overlay is z-index 202;
   the old nav sat at 201 for the same reason) */
.cr-nav { z-index: 201; }

/* scroll-reveal.css staggers stop at nth-child(6); the industry grid has 8 children */
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 450ms; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 525ms; }

/* Hero: quiet secondary path to the statement-audit funnel */
.cr-hero-audit {
  display: inline-block;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(185, 135, 48, 0.45);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.cr-hero-audit:hover { color: var(--ink); border-color: var(--gold); }
.cr-hero-audit:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.cr-hero-audit + .cr-hero-trust { margin-top: 24px; }

/* Hero receipt: illustrative-example note */
.cr-receipt-note {
  text-align: center;
  margin-top: 8px;
  font-size: 9.5px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--mut-lt);
}
