/* BlueKnightMarketing — page-specific styles */

/* ============ HOME ============ */
.hero {
  position: relative;
  padding: clamp(20px, 3vw, 48px) var(--pad-x) clamp(56px, 9vw, 120px);
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-eyebrow { margin-bottom: 28px; }
.hero h1.display { margin: 0; }
.hero h1.display .pay { display: block; }
.hero-sub {
  margin-top: clamp(36px, 5vw, 56px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.4;
  max-width: 30ch;
  color: var(--fg);
  opacity: 0.82;
}
.hero-ctas {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero-fine {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  max-width: 50ch;
  line-height: 1.5;
}

.hero-mark {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
}
.hero-mark::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, var(--flame-soft) 0%, transparent 65%);
  filter: blur(20px);
  z-index: 0;
}
.hero-mark img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(11, 20, 38, 0.18));
}
.hero-mark .ring {
  position: absolute;
  inset: -2%;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  z-index: 0;
}
.hero-mark .ring--inner {
  inset: 10%;
  border-color: var(--rule);
  border-style: dashed;
}
.hero-mark .seal {
  position: absolute;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-mark .seal-top { top: -8px; left: 50%; transform: translateX(-50%); background: var(--bg); padding: 0 16px; }
.hero-mark .seal-bot { bottom: -8px; left: 50%; transform: translateX(-50%); background: var(--bg); padding: 0 16px; color: var(--flame); font-style: italic; font-family: var(--serif); font-size: 18px; letter-spacing: 0.04em; text-transform: none; }

/* Marquee strip at bottom of hero — label above, draggable scroller below */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 0 16px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-marquee-label {
  margin: 0;
  padding: 0 var(--pad-x);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-marquee-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--flame) 0%, transparent 60%);
  opacity: 0.45;
}
.hero-marquee-strip {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.hero-marquee-strip.is-dragging { cursor: grabbing; }
.hero-marquee-track--logos {
  display: flex;
  gap: clamp(48px, 5vw, 80px);
  align-items: center;
  width: max-content;
  padding: 8px 0;
  animation: none;          /* JS drives the motion */
  font-style: normal;
}
.m-logo {
  height: clamp(34px, 3vw, 44px);
  width: auto;
  flex-shrink: 0;
  filter: none;
  opacity: 1;
  transition: transform 0.25s ease;
  -webkit-user-drag: none;
  user-select: none;
}
.m-logo:hover { transform: translateY(-2px); }
[data-theme="parchment"] .m-logo { filter: none; opacity: 1; }
[data-theme="parchment"] .m-logo:hover { transform: translateY(-2px); }
.hero-marquee-strip.is-dragging .m-logo { pointer-events: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track { animation: none; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mark { max-width: 360px; margin-inline: auto; }
}

/* ============ STAT BLOCK ============ */
.stat-band {
  padding: clamp(60px, 10vw, 140px) var(--pad-x);
  border-top: 1px solid var(--rule);
  background: var(--bg-2);
}
.stat-grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(32px, 6vw, 100px);
  align-items: center;
}
.bignum {
  font-family: var(--serif);
  font-size: clamp(140px, 22vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--fg);
  position: relative;
}
.bignum sup {
  font-family: var(--serif);
  font-size: 0.3em;
  vertical-align: top;
  margin-left: 4px;
  color: var(--flame);
  font-style: italic;
  letter-spacing: 0;
}
.bignum em { font-style: italic; color: var(--flame); }
.stat-copy h2 { font-size: clamp(28px, 3.2vw, 44px); }
.stat-copy p { margin-top: 18px; }
@media (max-width: 800px) {
  .stat-grid { grid-template-columns: 1fr; }
  .bignum { font-size: clamp(120px, 32vw, 220px); }
}

/* ============ VERTICALS ============ */
.verticals {
  padding: clamp(60px, 9vw, 120px) var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--rule);
}
.verticals-head {
  max-width: var(--max);
  margin: 0 auto 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end;
}
.verticals-head h2 { font-size: clamp(40px, 5.4vw, 76px); }
.verticals-head p { font-size: 16px; max-width: 44ch; color: var(--muted); line-height: 1.5; }
@media (max-width: 760px) { .verticals-head { grid-template-columns: 1fr; } }

/* Verticals marquee — italic serif strip between title and grid (drag-enabled) */
.vert-marquee {
  max-width: var(--max);
  margin: 0 auto 48px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.vert-marquee.is-dragging { cursor: grabbing; }
.vert-marquee-track {
  display: flex;
  gap: clamp(40px, 4.5vw, 72px);
  width: max-content;
  animation: none;          /* JS drives the motion */
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.1vw, 30px);
  white-space: nowrap;
  color: var(--fg);
  opacity: 0.92;
}
.vert-marquee-track span { padding-right: 0; }
@media (prefers-reduced-motion: reduce) {
  .vert-marquee-track { animation: none; }
}

/* Verticals grid — gapped cursor-glow cards (port of 21st.dev cursor-cards) */
.vert-grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border: none;
  padding: 0;
}
.vert-card {
  --cc-mx: 50%;
  --cc-my: 50%;
  --cc-on: 0;
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--rule);
  background: var(--card);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 150px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s, background 0.35s;
}
.vert-card:hover {
  background: var(--card);
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -34px rgba(6, 15, 31, 0.55);
}
[data-theme="parchment"] .vert-card:hover {
  box-shadow: 0 26px 56px -32px rgba(11, 20, 38, 0.22);
}
/* Cursor-tracking gradient ring (active near pointer) */
.vert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    260px circle at var(--cc-mx) var(--cc-my),
    var(--flame),
    color-mix(in oklab, var(--flame) 40%, var(--rule-strong)) 55%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#000, #000) content-box,
    linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: var(--cc-on);
  transition: opacity 0.35s;
  pointer-events: none;
  z-index: 0;
}
/* Soft inner illumination under cursor */
.vert-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    220px circle at var(--cc-mx) var(--cc-my),
    rgba(243, 156, 18, 0.10),
    transparent 70%
  );
  opacity: var(--cc-on);
  transition: opacity 0.35s;
  pointer-events: none;
  z-index: 0;
}
[data-theme="parchment"] .vert-card::after {
  background: radial-gradient(
    220px circle at var(--cc-mx) var(--cc-my),
    rgba(243, 156, 18, 0.14),
    transparent 70%
  );
}
.vert-card > * { position: relative; z-index: 1; }
.vert-card h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
}
.vert-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 28ch;
  margin: 0;
}

/* "Not on this list?" CTA card — keeps the num + h3 + p stack, left-aligned */
.vert-card--cta {
  background: linear-gradient(140deg, var(--slab-bg), var(--ink));
  color: var(--paper);
  border-color: rgba(244, 238, 223, 0.16);
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 28px 26px;
  gap: 12px;
}
.vert-card--cta .num { color: var(--flame); font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; }
.vert-card--cta h3 { color: var(--paper); margin-top: auto; font-size: clamp(22px, 2.2vw, 30px); }
.vert-card--cta p { color: rgba(244, 238, 223, 0.7); }
/* Light-mode variant: distinct from neutral cards but not as loud as dark slab */
[data-theme="parchment"] .vert-card--cta {
  background:
    linear-gradient(160deg, #F0F4FA 0%, #E3EAF4 100%);
  border-color: rgba(31, 51, 88, 0.18);
  color: var(--fg);
  box-shadow:
    inset 0 0 0 1px rgba(31, 51, 88, 0.05),
    0 14px 36px -22px rgba(31, 51, 88, 0.28);
}
[data-theme="parchment"] .vert-card--cta::before {
  /* Persistent ring so the card reads as "different" even without hover */
  opacity: 1;
  background: radial-gradient(
    260px circle at var(--cc-mx) var(--cc-my),
    var(--flame),
    rgba(31, 51, 88, 0.30) 55%,
    rgba(31, 51, 88, 0.10) 100%
  );
}
[data-theme="parchment"] .vert-card--cta h3 { color: var(--fg); }
[data-theme="parchment"] .vert-card--cta p { color: rgba(11, 20, 38, 0.6); }

@media (max-width: 820px) { .vert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .vert-grid { grid-template-columns: 1fr; } }

/* ============ PROCESS PREVIEW (home) — rolling text list ============ */
.process-prev {
  padding: clamp(48px, 6vw, 80px) var(--pad-x) clamp(20px, 3vw, 40px);
  background: var(--bg);
  color: var(--fg);
  position: relative;
  overflow: hidden;
}
.process-prev .wrap {
  max-width: 920px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
/* "Our Process" heading — bigger than list items */
.rolling-heading {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  text-align: center;
}
.rolling-heading em { font-style: italic; color: var(--flame); }

.rolling-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
/* No dividing borders between rolling-list items — items separated by space */
.rolling-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: clamp(16px, 2vw, 28px);
  row-gap: 4px;
  padding: clamp(10px, 1.4vw, 18px) 0;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.rolling-item:first-child { border-top: none; }

.rolling-item__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(14px, 1.1vw, 18px);
  letter-spacing: 0.04em;
  color: var(--muted);
  align-self: center;
  text-align: left;
  transition: color 0.5s ease;
}

/* Rolling text type — two stacked lines on a viewport that slides up on hover.
   Sized ~30% smaller than the previous treatment. */
.rolling-item__type {
  position: relative;
  overflow: hidden;
  height: clamp(44px, 5.6vw, 72px);
}
.rolling-item__line {
  display: flex;
  align-items: center;
  height: clamp(44px, 5.6vw, 72px);
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4.9vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
  transform: translateY(0);
}
.rolling-item__line--hover {
  font-style: italic;
  color: var(--flame);
}
.rolling-item:hover .rolling-item__line,
.rolling-item:focus-within .rolling-item__line {
  transform: translateY(-100%);
}
.rolling-item:hover .rolling-item__num,
.rolling-item:focus-within .rolling-item__num {
  color: var(--flame);
}

/* Hover-revealed copy — collapses height when at rest */
.rolling-item__copy {
  grid-column: 2 / -1;
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--muted);
  max-width: 56ch;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition:
    max-height 0.55s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.4s ease 0.05s,
    transform 0.55s cubic-bezier(0.76, 0, 0.24, 1),
    margin 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}
.rolling-item:hover .rolling-item__copy,
.rolling-item:focus-within .rolling-item__copy {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 8px;
}

@media (max-width: 600px) {
  .rolling-item { grid-template-columns: 40px 1fr; }
  .rolling-item__copy { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .rolling-item__line, .rolling-item__copy { transition: none; }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background: var(--bg);
}
.trust-strip .label {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 36px;
}
.trust-strip .label::before, .trust-strip .label::after {
  content: ""; display: inline-block; width: 28px; height: 1px; background: var(--flame); vertical-align: middle; margin: 0 12px;
}
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 80px);
  flex-wrap: wrap;
  padding-inline: var(--pad-x);
}
.logo-row img {
  height: 36px; width: auto;
  filter: grayscale(1) invert(0.92);
  opacity: 0.55;
  transition: opacity 0.3s, filter 0.3s;
}
.logo-row img:hover { filter: grayscale(0) invert(0); opacity: 1; }
[data-theme="parchment"] .logo-row img { filter: grayscale(1); opacity: 0.6; }
[data-theme="parchment"] .logo-row img:hover { filter: grayscale(0); opacity: 1; }

/* ============ GUARANTEE BLOCK ============ */
.guarantee {
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  position: relative;
}
.guarantee-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.guarantee-left h2 {
  font-size: clamp(40px, 5.6vw, 80px);
}
.guarantee-shield {
  position: relative;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 40px 32px;
  background: var(--card-2);
}
.guarantee-shield::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--flame), transparent);
}
[data-theme="parchment"] .guarantee-shield { background: var(--card-2); border-color: rgba(11, 20, 38, 0.10); }
.terms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  margin-top: 8px;
}
.term {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.term .key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flame);
}
.term .val {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
}
.term .desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 800px) {
  .guarantee-inner { grid-template-columns: 1fr; }
  .terms { grid-template-columns: 1fr; gap: 20px; }
}

/* ============ CTA FINAL ============ */
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============ CTA WITH HORIZONTAL MARQUEE ============ */
.cta-marquee {
  padding: clamp(64px, 9vw, 120px) 0 clamp(40px, 6vw, 80px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-marquee__wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 7vw, 80px);
}
.cta-marquee__head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 12px;
}
.cta-marquee__h {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.cta-marquee__h em { font-style: italic; color: var(--flame); }
.cta-marquee__copy {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--fg);
  opacity: 0.85;
  max-width: 56ch;
  margin-inline: auto;
  text-wrap: pretty;
}
.cta-marquee__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

/* Horizontal marquee of service businesses, with vignettes + opacity decay */
.cta-marquee__strip {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.cta-marquee__strip.is-dragging { cursor: grabbing; }
.cta-marquee__strip::before,
.cta-marquee__strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(120px, 18vw, 280px);
  z-index: 2;
  pointer-events: none;
}
.cta-marquee__strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, color-mix(in oklab, var(--bg) 50%, transparent) 50%, transparent 100%);
}
.cta-marquee__strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, color-mix(in oklab, var(--bg) 50%, transparent) 50%, transparent 100%);
}
.cta-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 8px 0;
  animation: none; /* JS drives motion */
}
.cta-marquee__track span {
  flex-shrink: 0;
  padding: 0 clamp(28px, 4vw, 64px);
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
  white-space: nowrap;
  opacity: 1; /* JS overrides per-item based on distance from center */
  transition: color 0.25s ease;
}
.cta-marquee__track span:hover { color: var(--flame); }
@media (max-width: 600px) {
  .cta-marquee__track span { padding: 0 clamp(20px, 6vw, 40px); }
}

.cta-final {
  padding: clamp(72px, 10vw, 120px) var(--pad-x) clamp(80px, 11vw, 140px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  max-width: 900px;
  height: 480px;
  border-radius: 50%;
  filter: blur(140px);
  background: radial-gradient(circle, var(--flame-soft) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.cta-final-wrap {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2.5vw, 32px);
}
.cta-final-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
/* Newspaper-style rule with inline tag */
.cta-final-rule {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.cta-final-rule::before,
.cta-final-rule::after {
  content: "";
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: var(--rule-strong);
}
.cta-final-rule span {
  color: var(--flame);
  white-space: nowrap;
}
.cta-final-h {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.cta-final-h em {
  font-style: italic;
  color: var(--flame);
}
.cta-final-copy {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.5;
  color: var(--fg);
  opacity: 0.84;
  max-width: 44ch;
  text-wrap: pretty;
}
/* Big italic link instead of a button */
.cta-final-link {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 48px);
  font-style: italic;
  line-height: 1;
  padding: 4px 10px 12px;
  border-bottom: 1px solid var(--rule-strong);
  position: relative;
  transition: color 0.28s, border-color 0.28s, gap 0.28s;
}
.cta-final-link:hover {
  color: var(--flame);
  border-bottom-color: var(--flame);
  gap: 28px;
}
.cta-final-link-arrow {
  font-family: var(--mono);
  font-style: normal;
  color: var(--flame);
  font-size: 0.7em;
  transform: translateY(-0.05em);
  transition: transform 0.28s;
}
.cta-final-link:hover .cta-final-link-arrow { transform: translate(4px, -0.05em); }
.cta-final-fine {
  margin: 6px 0 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 600px) {
  .cta-final-rule::before, .cta-final-rule::after { max-width: 60px; }
}

/* Book page email block — bigger centered heading + long-email-friendly link */
.book-email-h {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--fg);
  text-align: center;
}
.book-email-h em { font-style: italic; color: var(--flame); }
.book-email .cta-final-link {
  font-size: clamp(20px, 2.6vw, 36px);
  gap: 14px;
  word-break: break-all;
  max-width: 100%;
}
.book-email .cta-final-link .cta-final-link-label {
  word-break: break-word;
}

/* ============ INTERIOR PAGE HERO ============ */
.page-hero {
  padding: clamp(72px, 11vw, 140px) var(--pad-x) clamp(48px, 7vw, 80px);
  border-bottom: 1px solid var(--rule);
}
.page-hero-grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.page-hero h1 {
  font-size: clamp(56px, 8.5vw, 132px);
  line-height: 0.95;
}
.page-hero .lead { margin-top: 24px; }
.page-hero--center .page-hero-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.page-hero--center h1 { text-align: center; }
@media (max-width: 800px) {
  .page-hero-grid { grid-template-columns: 1fr; }
}

/* ============ PROCESS PAGE ============ */
/* How it works — 3 cards with connected step indicators */
.how-it-works {
  width: 100%;
  background: var(--bg-2);
  padding: clamp(40px, 6vw, 96px) var(--pad-x) clamp(56px, 8vw, 120px);
  border-top: 1px solid var(--rule);
}
.hiw-container {
  max-width: 1080px;
  margin-inline: auto;
}

/* Step number indicators sitting on a horizontal line above the cards */
.hiw-steps {
  position: relative;
  max-width: 880px;
  margin: 0 auto clamp(20px, 3vw, 32px);
}
.hiw-steps__rail {
  position: absolute;
  left: 16.6667%;
  right: 16.6667%;
  top: 50%;
  height: 1px;
  background: var(--rule);
  transform: translateY(-50%);
}
.hiw-steps__row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hiw-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--rule);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
  box-shadow: 0 0 0 6px var(--bg);
}

/* The card grid */
.hiw-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 1080px;
  margin: 0 auto;
}
.hiw-card {
  position: relative;
  background: var(--card);
  color: var(--fg);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(24px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.3s,
    border-color 0.3s,
    background 0.3s;
}
.hiw-card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: color-mix(in oklab, var(--flame) 50%, transparent);
  box-shadow: 0 24px 50px -28px rgba(11, 20, 38, 0.28);
  background: color-mix(in oklab, var(--card) 92%, var(--flame) 8%);
}
[data-theme="parchment"] .hiw-card:hover {
  background: color-mix(in oklab, var(--card) 88%, var(--flame) 12%);
}

.hiw-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--flame);
}
.hiw-card__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.hiw-card__desc {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.5;
  color: var(--muted);
}
.hiw-card__list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hiw-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.hiw-card__list li::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--flame) 24%, transparent);
  box-shadow: inset 0 0 0 4px var(--card), 0 0 0 0 var(--flame);
  transition: box-shadow 0.3s ease;
}
.hiw-card:hover .hiw-card__list li::before {
  box-shadow: inset 0 0 0 4px color-mix(in oklab, var(--card) 92%, var(--flame) 8%), 0 0 0 0 var(--flame);
}

/* Subtle highlight ring around the middle card */
.hiw-card--featured {
  border-color: color-mix(in oklab, var(--flame) 40%, var(--rule-strong));
  box-shadow: 0 18px 48px -28px rgba(243, 156, 18, 0.35);
}

.hiw-foot {
  margin: clamp(40px, 5vw, 64px) auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 880px) {
  .hiw-cards { grid-template-columns: 1fr; }
  .hiw-steps { display: none; }
}
.stage {
  max-width: var(--max);
  margin: 0 auto clamp(48px, 7vw, 96px);
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: clamp(24px, 4vw, 64px);
  padding-bottom: clamp(48px, 7vw, 96px);
  border-bottom: 1px solid var(--rule);
}
.stage:last-of-type { border-bottom: none; }
.stage-roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(60px, 7vw, 100px);
  line-height: 0.9;
  color: var(--flame);
}
.stage-head h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-top: 8px;
}
.stage-head .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.stage-head .summary {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--fg);
  opacity: 0.85;
}
.stage-list {
  display: flex; flex-direction: column;
  list-style: none; padding: 0; margin: 0;
}
.stage-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 18px;
  align-items: baseline;
}
.stage-list li:first-child { border-top: 1px solid var(--rule); }
.stage-list .idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--flame);
}
.stage-list .title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 6px;
}
.stage-list .text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 56ch;
}
@media (max-width: 880px) {
  .stage { grid-template-columns: 1fr; gap: 24px; }
  .stage-roman { font-size: 64px; }
}

/* Process intro stats */
.process-pillars {
  max-width: var(--max);
  margin: 0 auto clamp(48px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pillar {
  padding: 28px 24px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.pillar:last-child { border-right: none; }
.pillar .key { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--flame); }
.pillar .val { font-family: var(--serif); font-size: 32px; line-height: 1; }
.pillar .desc { font-size: 13px; color: var(--muted); line-height: 1.45; }
@media (max-width: 820px) {
  .process-pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 480px) {
  .process-pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--rule); }
  .pillar:last-child { border-bottom: none; }
}

/* ============ PROOF PAGE ============ */
.proof-filter {
  max-width: var(--max);
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding-inline: var(--pad-x);
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
}
.proof-filter .filter-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 12px;
}
.filter-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.filter-pill[aria-pressed="true"] { background: var(--fg); color: var(--bg); border-color: var(--fg); }

.proof-grid {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.case {
  grid-column: span 3;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.case:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -24px rgba(11, 20, 38, 0.25); }
.case[data-feature="true"] { grid-column: span 6; background: linear-gradient(140deg, var(--slab-bg) 0%, var(--ink) 100%); color: var(--paper); border-color: rgba(244, 238, 223, 0.16); }
.case[data-feature="true"] .case-meta .vert,
.case[data-feature="true"] .case-meta .geo { color: rgba(244, 238, 223, 0.65); }
.case[data-feature="true"] .case-quote { color: rgba(244, 238, 223, 0.9); }
.case[data-feature="true"] .case-table { border-color: rgba(244, 238, 223, 0.16); }
.case[data-feature="true"] .case-table dt,
.case[data-feature="true"] .case-table dd { border-color: rgba(244, 238, 223, 0.12); }
.case[data-feature="true"] .case-table dt { color: var(--flame); }

.case-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.case-meta .vert { color: var(--flame); }
.case-meta .geo { color: var(--muted); }

.case-headline {
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
}
.case-headline .unit { font-size: 0.45em; color: var(--flame); font-style: italic; vertical-align: top; margin-left: 6px; }
.case-headline em { font-style: italic; color: var(--flame); }

.case-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  margin: 0;
}
.case-quote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 42ch;
  margin: 0;
}
.case-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: auto;
}
.case-table > div {
  padding: 16px 12px 4px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 4px;
}
.case-table > div:last-child { border-right: none; }
.case-table dt {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--flame);
  margin: 0;
}
.case-table dd {
  font-family: var(--serif); font-size: 20px; line-height: 1.1; margin: 0;
}

.case-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
  text-decoration: none;
  align-self: flex-start;
}
.case-cta .arrow { transition: transform 0.2s; }
.case-cta:hover .arrow { transform: translateX(3px); }

.case-empty {
  grid-column: span 6;
  border: 1px dashed var(--rule-strong);
  border-radius: 14px;
  padding: 48px;
  text-align: center;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}
@media (max-width: 880px) {
  .proof-grid { grid-template-columns: 1fr; }
  .case, .case[data-feature="true"] { grid-column: span 1; }
  .case-table { grid-template-columns: 1fr 1fr; }
  .case-table > div:nth-child(2) { border-right: none; }
}

/* ============ BOOK PAGE — Cal.com ============ */
.book-cal {
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(40px, 6vw, 80px) var(--pad-x) clamp(60px, 8vw, 120px);
}

.cal-card {
  background: var(--card-2);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(11, 20, 38, 0.25);
}

.cal-card__head {
  padding: 22px 28px;
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}

.cal-card__head .title {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0;
}

.cal-card__head .badge {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
  display: inline-flex; align-items: center; gap: 8px;
}

.cal-card__head .badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--flame);
  box-shadow: 0 0 0 4px var(--flame-soft);
  animation: pulse 2s ease-in-out infinite;
}

#cal-booking { min-height: 700px; }

/* ============ CONTACT SECTION ============ */
.contact-section {
  border-top: 1px solid var(--rule);
  padding: clamp(60px, 9vw, 120px) var(--pad-x);
  background: var(--bg-2);
}

.contact-wrap {
  max-width: var(--max);
  margin-inline: auto;
}

.contact-blurb {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 clamp(32px, 4vw, 48px);
  max-width: 56ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.contact-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rule);
  aspect-ratio: 4 / 3;
}

.contact-map iframe {
  width: 100%; height: 100%; display: block; border: none;
}

.contact-form-wrap {
  display: flex; flex-direction: column; gap: 20px;
}

.contact-form {
  display: flex; flex-direction: column; gap: 18px;
}

.form-row {
  display: flex; flex-direction: column; gap: 6px;
}

.form-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-opt {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--serif);
  font-size: 11px;
  opacity: 0.7;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.form-input::placeholder { color: var(--muted); opacity: 0.7; }

.form-input:focus {
  outline: none;
  border-color: var(--flame);
  box-shadow: 0 0 0 3px var(--flame-soft);
}

.form-input[aria-invalid="true"] { border-color: #e05252; }

.form-textarea { resize: vertical; min-height: 120px; }

.fs-msg {
  display: none;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.fs-msg--success:not(:empty) {
  display: block;
  background: rgba(43, 174, 102, 0.12);
  border: 1px solid rgba(43, 174, 102, 0.3);
  color: #2BAE66;
}

.fs-msg--error:not(:empty) {
  display: block;
  background: rgba(224, 82, 82, 0.10);
  border: 1px solid rgba(224, 82, 82, 0.25);
  color: #e05252;
}

.fs-field-error {
  display: block;
  font-size: 12px;
  color: #e05252;
  min-height: 16px;
  line-height: 1.4;
}

.form-submit { align-self: flex-start; }

[data-fs-submit-btn]:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { aspect-ratio: 16 / 9; }
}

/* ============ BOOK PAGE (legacy — kept for reference) ============ */
.book-grid {
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(40px, 6vw, 80px) var(--pad-x) clamp(60px, 8vw, 120px);
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.book-side {
  display: flex; flex-direction: column;
  gap: 28px;
  align-self: stretch;
}
.book-side__cards {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.book-side .lead { font-size: 22px; }
.book-checklist {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--rule);
}
.book-checklist li {
  list-style: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
}
.book-checklist .idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--flame);
  padding-top: 2px;
}
.book-checklist .ttl {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 4px;
}
.book-checklist .txt {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

.book-stat {
  padding: 20px 22px;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.book-stat .v { font-family: var(--serif); font-size: 40px; line-height: 1; }
.book-stat .v em { color: var(--flame); font-style: italic; }
.book-stat .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.calendly-card {
  background: var(--card-2);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(11, 20, 38, 0.25);
}
.calendly-head {
  padding: 22px 28px;
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.calendly-head .title {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0;
}
.calendly-head .badge {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
  display: inline-flex; align-items: center; gap: 8px;
}
.calendly-head .badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--flame);
  box-shadow: 0 0 0 4px var(--flame-soft);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px transparent; } }

.calendly-inline-widget {
  min-width: 320px;
  height: min(86vh, 920px);
  background: var(--card-2);
  color-scheme: dark;
}

@media (max-width: 900px) {
  .book-grid { grid-template-columns: 1fr; }
  .book-side { position: static; }
}


/* ===================================== */
/* PORTFOLIO (proof page rewrite)        */
/* ===================================== */
.portfolio {
  padding: clamp(40px, 6vw, 80px) var(--pad-x) clamp(64px, 9vw, 120px);
  background: var(--bg-2);
}
.portfolio-grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 820px) { .portfolio-grid { grid-template-columns: 1fr; } }

.client {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-color 0.3s, box-shadow 0.3s;
}
.client:hover {
  transform: translateY(-4px);
  border-color: var(--flame);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5), 0 0 0 1px var(--flame-soft);
}

.client-shot {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--ink-2), var(--ink-3));
  overflow: hidden;
}
.client-shot a {
  display: block;
  position: absolute;
  inset: 0;
}
.client-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.client:hover .client-shot img { transform: scale(1.04); }

.client-shot__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--ink-2), var(--ink-3));
}
.client-shot__brand {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.01em;
}
.client-shot__hint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 238, 223, 0.45);
  line-height: 1.5;
}
.client-shot__hint code {
  background: rgba(244, 238, 223, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--flame);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: none;
}
.client-shot__chev {
  color: var(--paper);
  opacity: 0.6;
  margin-top: 4px;
  transition: opacity 0.3s, transform 0.3s;
}
.client:hover .client-shot__chev {
  opacity: 1;
  transform: translate(2px, -2px);
}

.client-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.client-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.client-meta .client-cat { color: var(--flame); }
.client-meta .client-geo { color: var(--muted); }

.client-name {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  margin: 0;
}

.client-result {
  margin: 0;
  padding: 16px 18px;
  background: var(--soft);
  border-radius: 10px;
  border-left: 3px solid var(--flame);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.client-result__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.client-result__val {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  color: var(--fg);
}

.client-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.client-cta:hover {
  background: var(--flame);
  color: #fff;
  transform: translateY(-1px);
}
.client-cta svg { transition: transform 0.2s; }
.client-cta:hover svg { transform: translate(2px, -2px); }

/* Empty slot */
.client--empty {
  background: transparent;
  border: 1px dashed var(--rule-strong);
}
.client--empty:hover {
  transform: translateY(-2px);
  border-color: var(--flame);
  box-shadow: none;
}
.client-empty__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  padding: 48px 32px;
  min-height: 360px;
}
.client-empty__lead {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  margin: 0;
}
.client-empty__sub {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 38ch;
}

/* ===================================== */
/* PRICING PAGE                          */
/* ===================================== */
/* ============ PRICING PAGE — 3-tier comparison ============ */
.pricing-tiers {
  padding: clamp(40px, 6vw, 96px) var(--pad-x) clamp(60px, 8vw, 120px);
  border-top: 1px solid var(--rule);
  background: var(--bg-2);
}
.ptiers-container {
  max-width: 1180px;
  margin-inline: auto;
}
.ptiers-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}
.ptiers-head__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.ptiers-head__sub {
  margin: 18px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
  text-wrap: pretty;
}

/* Tier grid */
.ptiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}
.ptier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(24px, 2.4vw, 32px);
  box-shadow: 0 14px 36px -28px rgba(11, 20, 38, 0.25);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s, border-color 0.35s;
}
.ptier:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -28px rgba(11, 20, 38, 0.32);
  border-color: color-mix(in oklab, var(--flame) 36%, var(--rule-strong));
}
.ptier--featured {
  border-color: var(--flame);
  border-width: 2px;
  box-shadow: 0 24px 56px -24px rgba(243, 156, 18, 0.45);
}
@media (min-width: 880px) {
  .ptier--featured { transform: translateY(-8px); }
  .ptier--featured:hover { transform: translateY(-11px); }
}
.ptier__flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--flame);
  color: #fff;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.ptier__head { display: flex; flex-direction: column; gap: 8px; }
.ptier__name {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.ptier__desc {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}
.ptier__price-block {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ptier__price {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.ptier__price-suffix {
  font-family: var(--mono);
  font-size: 0.32em;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-left: 6px;
  text-transform: uppercase;
}
.ptier__price-note {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.ptier__price-strike {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-decoration: line-through;
  opacity: 0.55;
  letter-spacing: 0.04em;
}
.ptier__body {
  flex-grow: 1;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.ptier__features-h {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.ptier__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ptier__feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--fg);
}
.ptier__feat::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: var(--flame);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M5 9.5l3 3 5-6' stroke='black' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M5 9.5l3 3 5-6' stroke='black' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}
.ptier__feat--no {
  color: var(--muted);
  opacity: 0.7;
}
.ptier__feat--no::before {
  background: var(--rule-strong);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M5.5 5.5l7 7 M12.5 5.5l-7 7' stroke='black' stroke-width='2' fill='none' stroke-linecap='round'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M5.5 5.5l7 7 M12.5 5.5l-7 7' stroke='black' stroke-width='2' fill='none' stroke-linecap='round'/></svg>") center / contain no-repeat;
}
.ptier__foot { margin-top: 24px; }
.ptier__cta { width: 100%; }

@media (max-width: 880px) {
  .ptiers-grid { grid-template-columns: 1fr; }
}

/* Comparison table */
.ptable-h {
  margin: clamp(56px, 7vw, 96px) 0 24px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--fg);
  text-align: center;
}
.ptable-wrap {
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow-x: auto;
  background: var(--card);
}
.ptable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ptable thead th {
  padding: 18px 20px;
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  text-align: center;
  border-bottom: 1px solid var(--rule);
  white-space: nowrap;
}
.ptable thead th:first-child { text-align: left; }
.ptable thead th.ptable__feat,
.ptable tbody td.ptable__feat {
  background: color-mix(in oklab, var(--flame) 14%, var(--bg-2));
  color: var(--flame);
}
.ptable tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  text-align: center;
  color: var(--fg);
  vertical-align: middle;
}
.ptable tbody td:first-child {
  text-align: left;
  font-weight: 500;
  white-space: normal;
}
.ptable tbody tr:last-child td { border-bottom: none; }

.ptable__yes,
.ptable__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.ptable__yes {
  border-radius: 999px;
  background: color-mix(in oklab, var(--flame) 18%, transparent);
  color: var(--flame);
}
.ptable__yes:empty::before {
  content: "✓";
  font-family: var(--serif);
  font-size: 14px;
}
.ptable__no {
  color: var(--muted);
  opacity: 0.55;
}
.ptable__no::before {
  content: "—";
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.ptiers-foot {
  margin: clamp(32px, 4vw, 48px) auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .ptable thead th, .ptable tbody td { padding: 12px 14px; }
  .ptable { font-size: 13px; }
}

/* ===================================== */
/* PRICING PAGE (legacy single-card)     */
/* ===================================== */
.pricing-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--pad-x) clamp(64px, 9vw, 120px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 72px);
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, var(--flame-soft), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.pricing-card__head { display: flex; flex-direction: column; gap: 12px; }
.pricing-card__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--flame);
  margin: 0;
}
.pricing-card__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.pricing-card__money {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.money { display: flex; flex-direction: column; gap: 6px; }
.money__lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.money__big {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.money__big small {
  font-size: 0.35em;
  color: var(--flame);
  font-style: italic;
  margin-left: 4px;
}
.money__sub {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}
.money-sep {
  width: 1px;
  height: 60%;
  background: var(--rule);
}

.pricing-incl {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.pricing-incl li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--fg);
}
.pricing-incl li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 9px;
  border-left: 1.5px solid var(--flame);
  border-bottom: 1.5px solid var(--flame);
  transform: rotate(-45deg);
  transform-origin: 0 0;
}
@media (max-width: 720px) {
  .pricing-card__money { grid-template-columns: 1fr; }
  .money-sep { width: 60%; height: 1px; justify-self: center; }
  .pricing-incl { grid-template-columns: 1fr; }
}

.terms-h {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 40px);
  text-align: center;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.term-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.term-card:hover {
  transform: translateY(-4px);
  border-color: var(--flame);
}
.term-card--feature {
  background: linear-gradient(160deg, var(--card-2), var(--card));
  border-color: rgba(243, 156, 18, 0.4);
  box-shadow: 0 30px 60px -30px var(--flame);
}
.term-card__flag {
  position: absolute;
  top: -10px; left: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--flame);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}
.term-card__name {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.term-card__rate {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.term-card__rate small {
  font-size: 0.3em;
  color: var(--muted);
  margin-left: 4px;
  font-family: var(--mono);
  letter-spacing: 0.08em;
}
.term-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.term-card__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.term-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--fg);
}
.term-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px;
  height: 1px;
  background: var(--flame);
}
@media (max-width: 820px) { .terms-grid { grid-template-columns: 1fr; } }

.price-guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: clamp(28px, 4vw, 40px);
  background: linear-gradient(160deg, var(--slab-bg), var(--ink));
  color: var(--paper);
  border-radius: 16px;
  align-items: center;
}
.ptiers-container .price-guarantee { margin-top: clamp(40px, 5vw, 64px); }
.price-guarantee__icon { color: var(--flame); }
.price-guarantee__k {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,238,223,0.55);
}
.price-guarantee__h {
  margin: 6px 0 12px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.price-guarantee__p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(244, 238, 223, 0.75);
  max-width: 65ch;
}
@media (max-width: 600px) {
  .price-guarantee { grid-template-columns: 1fr; }
}

.pricing-foot {
  margin: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.5;
  max-width: 60ch;
  margin-inline: auto;
}


/* ============ OVERRIDES — site-wide blue light mode (post-cleanup) ============ */
/* Half-size industries marquee */
.cta-marquee__strip { padding: 4px 0; }
.cta-marquee__track span {
  font-size: clamp(18px, 3vw, 44px);
  padding: 0 clamp(14px, 2vw, 32px);
}
@media (max-width: 600px) {
  .cta-marquee__track span { padding: 0 clamp(10px, 3vw, 20px); }
}

/* Light-mode price guarantee card */
[data-theme="parchment"] .price-guarantee {
  background: linear-gradient(160deg, #F0F4FA 0%, #E3EAF4 100%);
  color: var(--fg);
  border: 1px solid rgba(31, 51, 88, 0.16);
}
[data-theme="parchment"] .price-guarantee__icon { color: var(--flame); }
[data-theme="parchment"] .price-guarantee__k { color: rgba(11, 20, 38, 0.55); }
[data-theme="parchment"] .price-guarantee__h { color: var(--fg); }
[data-theme="parchment"] .price-guarantee__p { color: rgba(11, 20, 38, 0.72); }

/* "Our Process" header centered in the geomap column */
.geomap-copy .rolling-heading {
  text-align: center;
  margin: 0 0 24px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}
/* Rolling list resized for the narrower geomap column (no numeral column) */
.geomap-copy .rolling-list { gap: 6px; }
.geomap-copy .rolling-item {
  display: flex;
  flex-direction: column;
  row-gap: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(11, 20, 38, 0.08);
}
.geomap-copy .rolling-item:first-child { border-top: none; }
.geomap-copy .rolling-item__type {
  height: clamp(26px, 2.4vw, 32px);
}
.geomap-copy .rolling-item__line {
  height: clamp(26px, 2.4vw, 32px);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.geomap-copy .rolling-item__copy {
  grid-column: 1 / -1;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  font-style: normal;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  max-width: none;
  color: rgb(11, 20, 38);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.geomap-copy .rolling-item__copy li {
  position: relative;
  padding-left: 18px;
}
.geomap-copy .rolling-item__copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--flame);
}
/* When opened, give the bullets room to breathe */
.geomap-copy .rolling-item:hover .rolling-item__copy,
.geomap-copy .rolling-item:focus-within .rolling-item__copy {
  max-height: 360px;
}

/* Simple homepage CTA — single centered button, no marquee */
.home-cta {
  padding: 12px var(--pad-x) 24px;
  display: flex;
  justify-content: center;
  background: var(--bg);
}
.home-cta__btn { font-size: 16px; padding: 18px 32px; }
.geomap-copy .rolling-list { width: 100%; }
.geomap-copy .geomap-actions { justify-content: center; margin-top: 18px; }

/* Hide all tweak chrome — kept in DOM for backwards-compat but not visible */
.tweaks-btn, .tweaks-panel { display: none !important; }

/* ============================================================
   TOP BANNER
   ============================================================ */
.top-banner {
  background: var(--flame);
  color: #fff;
  text-align: center;
  padding: 22px 48px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  line-height: 1.4;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.top-banner strong { font-weight: 800; }

/* ============================================================
   HERO V2
   ============================================================ */
.hero-v2 {
  background: #E2E5ED;
  overflow: visible;  /* allow cards to pop out */
  position: relative;
  padding: 16px 0;
}
.hero-v2__inner {
  display: grid;
  grid-template-columns: 310px 1fr 310px;
  min-height: 380px;
  align-items: stretch;
  padding: 0 clamp(16px, 3vw, 48px);
}
.hero-v2__geo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  width: 290px;
  align-self: end;
  margin-bottom: 16px;
  border-radius: 18px;
  box-shadow: 0 24px 72px rgba(6,15,31,0.15), 0 4px 16px rgba(6,15,31,0.08);
  border: 2px solid rgba(6,15,31,0.10);
  /* no mask — clean card edges */
}
/* Thick diagonal wipe bar — follows the clip-path leading edge */
.hero-v2__geo::after {
  content: '';
  position: absolute;
  top: -20%;
  height: 140%;
  width: 20px;
  left: calc(var(--geo-bar-x, -0.2) * 100% - 10px);
  background: #000;
  z-index: 3;
  transform: skewX(-12.4deg);
  transform-origin: top center;
  pointer-events: none;
}
.hero-v2__geo--l { justify-self: end; }
.hero-v2__geo--r { justify-self: start; }
.hero-v2__copy {
  text-align: center;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-v2__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
}
.hero-v2__headline {
  font-family: 'Poppins', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
  color: #060F1F;
  margin: 0;
  text-transform: uppercase;
}
.hero-v2__headline em {
  font-style: normal;
  color: var(--flame);
}
.hero-v2__sub {
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(6,15,31,0.65);
  max-width: 520px;
  line-height: 1.3;
  margin: 0;
}
.hero-v2__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-v2__fine {
  font-size: 12px;
  color: rgba(6,15,31,0.4);
  max-width: 380px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 860px) {
  .hero-v2__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .hero-v2__geo { display: none; }
  .hero-v2__copy { padding: 64px 24px; }
}

/* ============================================================
   LEARN SECTION (YouTube shorts)
   ============================================================ */
.learn-section {
  background: #F5F7FA;
  padding: 80px var(--pad-x);
}
.learn-section__head {
  text-align: center;
  margin-bottom: 48px;
}
.learn-section__title {
  font-family: 'Poppins', 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 42px);
  color: #060F1F;
  margin: 0 0 12px;
  line-height: 1.15;
}
.learn-section__sub {
  font-size: 16px;
  color: #4a5568;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.6;
}
.learn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.learn-card {
  background: #f7f8fa;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #a0aec0;
  font-size: 14px;
  font-weight: 600;
  border: 2px dashed #e2e8f0;
}
.learn-card__icon {
  width: 48px;
  height: 48px;
  background: var(--flame);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.learn-card__icon svg { width: 22px; height: 22px; }

/* Instagram embed cards */
.learn-card--video {
  background: #000;
  border: none;
  display: block;
  padding: 0;
}
.learn-card--video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 860px) {
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .learn-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: #060F1F;
  padding: 40px var(--pad-x);
}
.faq-section__head {
  text-align: center;
  margin-bottom: 48px;
}
.faq-section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
  display: block;
  margin-bottom: 10px;
}
.faq-section__title {
  font-family: 'Poppins', 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 38px);
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--flame);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '×';
}
.faq-item__body {
  padding: 0 0 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 660px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: #fff;
  padding: 80px var(--pad-x);
}
.about-section__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
  display: block;
  margin-bottom: 12px;
}
.about-section__title {
  font-family: 'Poppins', 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 34px);
  color: #060F1F;
  margin: 0 0 16px;
  line-height: 1.2;
}
.about-section__body {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.75;
  margin: 0 0 20px;
}
.about-section__img {
  border-radius: 16px;
  background: #f0f3f7;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0aec0;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
}
.about-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 700px) {
  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   AUDIT BANNER
   ============================================================ */
.audit-wrap {
  background: #fff;
  padding: 0 var(--pad-x) 80px;
}
.audit-banner {
  background: #060F1F;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 65fr 35fr;
  min-height: 260px;
  max-width: 960px;
  margin: 0 auto;
}
.audit-banner__img {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.audit-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.audit-banner__img-placeholder {
  width: 100%;
  height: 100%;
  background: #0d1f3c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 14px;
  font-weight: 600;
}
.audit-banner__copy {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.audit-banner__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
}
.audit-banner__title {
  font-family: 'Poppins', 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2vw, 26px);
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.audit-banner__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .audit-banner {
    grid-template-columns: 1fr;
  }
  .audit-banner__img { min-height: 160px; }
  .audit-banner__copy { padding: 28px 24px; }
}

/* ============================================================
   FIXED TOP BANNER + BODY OFFSET
   ============================================================ */
.top-banner {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 500;
  width: 100%;
}
body { padding-top: 70px; }

/* ============================================================
   HERO GEO — DIAGONAL SWEEP ANIMATION
   Two images stacked; the "after" image wipes in with a
   diagonal clip-path, holds, then exits, revealing the "before"
   ============================================================ */
.geo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  /* zoom into the grid-square area, trimming empty map edges */
  transform: scale(1.18);
}
/* GPT (green/after) image sits on top; clip-path sweeps in on scroll */
.geo-img--gpt     { z-index: 2; clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%); transition: clip-path 0.06s linear; }
/* Current (red/before) image sits behind */
.geo-img--current { z-index: 1; }

/* ============================================================
   YOUTUBE SHORTS CAROUSEL
   ============================================================ */
.learn-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.learn-carousel__viewport {
  overflow: hidden;
  flex: 1;
}
.learn-carousel__track {
  display: flex;
  gap: 20px;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.learn-card {
  flex: 0 0 calc(25% - 15px);
  background: #f7f8fa;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #a0aec0;
  font-size: 14px;
  font-weight: 600;
  border: 2px dashed #e2e8f0;
  min-width: 0;
}
/* Video embed cards in the carousel */
.learn-carousel .learn-card--video {
  background: #000;
  border: none;
  padding: 0;
  display: block;
}
.learn-carousel .learn-card--video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: auto;
}

/* Arrow buttons */
.learn-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: #060F1F;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: color 0.2s;
}
.learn-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(6,15,31,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.learn-arrow:hover::before { opacity: 1; }
.learn-arrow--prev { margin-right: 8px; }
.learn-arrow--next { margin-left: 8px; }
.learn-arrow:disabled { opacity: 0.25; cursor: default; }
.learn-arrow:disabled::before { display: none; }

@media (max-width: 860px) {
  .learn-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 500px) {
  .learn-card { flex: 0 0 calc(50% - 10px); }
  .learn-arrow { width: 36px; height: 36px; font-size: 20px; }
}

/* ============================================================
   PLAYBOOK PAGE HERO
   ============================================================ */
.pb-hero {
  background: #E2E5ED;
  padding: 72px var(--pad-x) 64px;
  text-align: center;
  border-bottom: 1px solid rgba(6,15,31,0.08);
}
.pb-hero__inner {
  max-width: 640px;
  margin: 0 auto;
}
.pb-hero__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 14px;
}
.pb-hero__title {
  font-family: 'Poppins', var(--sans);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  color: #060F1F;
  line-height: 1.05;
  margin: 0 0 18px;
}
.pb-hero__sub {
  font-size: 18px;
  color: rgba(6,15,31,0.60);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   PLAYBOOK PAGE GRID WRAPPER
   ============================================================ */
.pb-grid-section {
  background: #fff;
  padding: 72px var(--pad-x) 96px;
}
.pb-grid-wrap {
  max-width: var(--max);
  margin: 0 auto;
}
.playbook-card__thumb--placeholder {
  background: linear-gradient(135deg, #E2E5ED 0%, #c8cdd8 100%);
  color: rgba(6,15,31,0.35);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ============================================================
   PLAYBOOK SECTION (blog listing)
   ============================================================ */
.playbook-section {
  background: #fff;
  padding: 80px var(--pad-x);
}
.playbook-section__head {
  text-align: center;
  margin-bottom: 48px;
}
.playbook-section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
  display: block;
  margin-bottom: 10px;
}
.playbook-section__title {
  font-family: 'Poppins', var(--sans);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 42px);
  color: #060F1F;
  margin: 0 0 12px;
}
.playbook-section__sub {
  font-size: 16px;
  color: #4a5568;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.6;
}
.playbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.playbook-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.playbook-card:hover {
  box-shadow: 0 8px 32px rgba(6,15,31,0.10);
  transform: translateY(-2px);
}
.playbook-card__thumb {
  aspect-ratio: 16/9;
  background: #f0f3f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0aec0;
  font-size: 13px;
  font-weight: 600;
}
.playbook-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.playbook-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame);
}
.playbook-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #060F1F;
  line-height: 1.35;
  margin: 0;
}
.playbook-card__excerpt {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}
.playbook-card__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--flame);
  text-decoration: none;
  margin-top: auto;
}

@media (max-width: 760px) {
  .playbook-grid { grid-template-columns: 1fr; }
}

/* Temporarily hidden nav items */
.nav a[href="process.html"],
.nav a[href="proof.html"] {
  display: none;
}

/* ============================================================
   LEGAL PAGES (privacy-policy, terms-of-use)
   ============================================================ */
.legal-page {
  background: #F5F7FA;
  min-height: 60vh;
  padding: clamp(56px, 7vw, 96px) var(--pad-x) clamp(80px, 10vw, 140px);
}
.legal-page__inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-page__header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid rgba(6,15,31,0.12);
}
.legal-page__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--flame);
  margin: 0 0 12px;
}
.legal-page__title {
  font-family: 'Poppins', var(--sans);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 52px);
  color: #060F1F;
  margin: 0 0 10px;
  line-height: 1.1;
}
.legal-page__meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(6,15,31,0.45);
  margin: 0;
}
.legal-section {
  margin-bottom: 40px;
}
.legal-section h2 {
  font-family: 'Poppins', var(--sans);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 19px);
  color: #060F1F;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(6,15,31,0.10);
}
.legal-section h3 {
  font-family: 'Poppins', var(--sans);
  font-weight: 700;
  font-size: 15px;
  color: #060F1F;
  margin: 24px 0 8px;
}
.legal-section p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(6,15,31,0.72);
  margin: 0 0 14px;
}
.legal-section ul {
  margin: 0 0 14px;
  padding-left: 20px;
}
.legal-section li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(6,15,31,0.72);
  margin-bottom: 6px;
}
.legal-section a {
  color: var(--flame);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-section a:hover { opacity: 0.8; }
.legal-section address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(6,15,31,0.72);
}
.legal-section code {
  font-family: var(--mono);
  font-size: 13px;
  background: rgba(6,15,31,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: #060F1F;
}

/* Footer legal links row */
.foot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.foot-legal {
  display: flex;
  gap: 20px;
}
.foot-legal a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,238,223,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.foot-legal a:hover { color: rgba(244,238,223,0.80); }

/* ============================================================
   PRICING PAGE V2
   ============================================================ */

.pr-hero {
  background: #E2E5ED;
  padding: clamp(72px, 10vw, 112px) var(--pad-x) clamp(64px, 9vw, 96px);
  text-align: center;
  border-bottom: 1px solid rgba(6,15,31,0.08);
}
.pr-hero__inner {
  max-width: 780px;
  margin: 0 auto;
}
.pr-hero__eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--flame);
  margin: 0 0 18px;
}
.pr-hero__h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(44px, 6.8vw, 88px);
  line-height: 1.0;
  color: #060F1F;
  margin: 0;
  letter-spacing: -0.01em;
}
.pr-hero__h1 em {
  font-style: normal;
  color: var(--flame);
}
.pr-hero__sub {
  font-size: clamp(17px, 1.7vw, 20px);
  color: rgba(6,15,31,0.60);
  max-width: 54ch;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.pr-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.pr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(6,15,31,0.15);
  background: rgba(255,255,255,0.72);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #060F1F;
  backdrop-filter: blur(4px);
}
.pr-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--flame);
  flex-shrink: 0;
}

/* Value Stack */
.pr-stack {
  background: #F5F7FA;
  padding: clamp(64px, 9vw, 108px) var(--pad-x);
}
.pr-stack__inner {
  max-width: 860px;
  margin: 0 auto;
}
.pr-stack__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 2px solid #060F1F;
  padding-bottom: 12px;
  margin-bottom: 6px;
  gap: 16px;
  flex-wrap: wrap;
}
.pr-stack__h {
  font-family: 'Poppins', var(--sans);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  color: #060F1F;
  margin: 0;
  line-height: 1.1;
}
.pr-stack__tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(6,15,31,0.42);
  white-space: nowrap;
}
.pr-group-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--flame);
  font-weight: 700;
  margin: 32px 0 8px;
}
.pr-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 28px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(6,15,31,0.08);
}
.pr-row__name {
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  color: #060F1F;
  margin: 0 0 5px;
}
.pr-row--bonus .pr-row__name::before {
  content: "+ BONUS  ";
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--flame);
  vertical-align: middle;
}
.pr-row__desc {
  font-size: 14px;
  color: rgba(6,15,31,0.52);
  line-height: 1.55;
  margin: 0;
  max-width: 58ch;
}
.pr-row__val {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  color: #060F1F;
  white-space: nowrap;
  text-align: right;
  align-self: center;
}
.pr-row__val small {
  display: block;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(6,15,31,0.42);
  margin-top: 2px;
}
.pr-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0 6px;
  font-family: var(--mono);
}
.pr-subtotal span:first-child {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 10.5px;
  color: rgba(6,15,31,0.42);
}
.pr-subtotal span:last-child {
  font-weight: 700;
  font-size: 18px;
  color: #060F1F;
}

.pr-total {
  margin: 44px 0 0;
  background: #060F1F;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.pr-total__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.35;
  color: rgba(244,238,223,0.80);
  max-width: 22ch;
  margin: 0;
}
.pr-total__nums {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.pr-total__num {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pr-total__num b {
  display: block;
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 46px);
  color: #E85520;
  line-height: 1;
}
.pr-total__num b s {
  font-size: 0.55em;
  font-weight: 400;
  text-decoration: none;
  color: rgba(244,238,223,0.45);
}
.pr-total__num span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,238,223,0.45);
}

/* Alternatives */
.pr-contrast {
  background: #EAEDF3;
  padding: clamp(60px, 8vw, 96px) var(--pad-x);
}
.pr-contrast__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.pr-contrast__h {
  font-family: 'Poppins', var(--sans);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: #060F1F;
  margin: 0 0 10px;
  line-height: 1.15;
}
.pr-contrast__sub {
  font-size: 16px;
  color: rgba(6,15,31,0.52);
  margin: 0 auto 36px;
  max-width: 46ch;
  line-height: 1.6;
}
.pr-c-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}
.pr-c-card {
  background: #fff;
  border: 1.5px solid rgba(6,15,31,0.10);
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pr-c-card:hover {
  box-shadow: 0 8px 28px rgba(6,15,31,0.10);
  transform: translateY(-2px);
}
.pr-c-card__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
  margin: 0 0 12px;
}
.pr-c-card__big {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1;
  color: #060F1F;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.pr-c-card__p {
  font-size: 14px;
  color: rgba(6,15,31,0.52);
  line-height: 1.6;
  margin: 0;
}
.pr-c-card__suffix {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(6,15,31,0.38);
  margin: 6px 0 0;
}

/* Plans section */
.pr-offer {
  background: #F5F7FA;
  padding: clamp(64px, 9vw, 108px) var(--pad-x);
}
.pr-offer__inner {
  max-width: 1060px;
  margin: 0 auto;
}
.pr-offer__ribbon {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--flame);
  margin: 0 0 14px;
}
.pr-offer__h {
  font-family: 'Poppins', var(--sans);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 46px);
  color: #060F1F;
  text-align: center;
  margin: 0 0 10px;
  line-height: 1.1;
}
.pr-offer__sub {
  text-align: center;
  font-size: 16px;
  color: rgba(6,15,31,0.52);
  max-width: 52ch;
  margin: 0 auto 52px;
  line-height: 1.65;
}
.pr-offer .ptiers-grid {
  margin-bottom: 52px;
}
.pr-offer .price-guarantee {
  background: linear-gradient(160deg, #0d1f3c, #060F1F);
  color: #f6f1e7;
  border: none;
}
.pr-offer .price-guarantee__k { color: rgba(244,238,223,0.50); }
.pr-offer .price-guarantee__h { color: #f6f1e7; }
.pr-offer .price-guarantee__p { color: rgba(244,238,223,0.72); }
.pr-offer .ptiers-foot { margin-top: clamp(24px, 3vw, 36px); }

/* Scarcity */
.pr-scarcity {
  background: #060F1F;
  padding: clamp(60px, 8vw, 96px) var(--pad-x);
}
.pr-scarcity__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.pr-scarcity__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--flame);
  margin: 0 0 16px;
  display: block;
}
.pr-scarcity__p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
  color: rgba(244,238,223,0.88);
  margin: 0;
}

/* FAQ (light) */
.pr-faq {
  background: #F5F7FA;
  padding: clamp(60px, 8vw, 96px) var(--pad-x);
}
.pr-faq__inner {
  max-width: 720px;
  margin: 0 auto;
}
.pr-faq__h {
  font-family: 'Poppins', var(--sans);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  color: #060F1F;
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.1;
}
.pr-faq-item {
  border-bottom: 1px solid rgba(6,15,31,0.10);
}
.pr-faq-item:first-of-type {
  border-top: 1px solid rgba(6,15,31,0.10);
}
.pr-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
  font-size: 16px;
  color: #060F1F;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.pr-faq-item summary::-webkit-details-marker { display: none; }
.pr-faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--flame);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
.pr-faq-item[open] summary::after { content: '×'; }
.pr-faq__body {
  padding: 0 0 20px;
  font-size: 15px;
  color: rgba(6,15,31,0.58);
  line-height: 1.75;
  max-width: 640px;
  margin: 0;
}

/* Final CTA */
.pr-cta {
  background: #060F1F;
  padding: clamp(72px, 10vw, 120px) var(--pad-x);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.pr-cta__inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pr-cta__h {
  font-family: 'Poppins', var(--sans);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 50px);
  color: #fff;
  margin: 0;
  line-height: 1.1;
}
.pr-cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.52);
  margin: 0;
  line-height: 1.65;
  max-width: 44ch;
}
.pr-cta__fine {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin: 0;
}

@media (max-width: 700px) {
  .pr-total { flex-direction: column; align-items: flex-start; }
  .pr-row { grid-template-columns: 1fr; }
  .pr-row__val { text-align: left; }
  .pr-c-cards { grid-template-columns: 1fr; }
}

/* ── OFFER BOX (replaces tier cards) ── */
.pr-offer-box {
  border: 2px solid rgba(6,15,31,0.15);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 72px -28px rgba(6,15,31,0.14);
  margin-bottom: 40px;
}
.pr-offer-box__ribbon {
  background: var(--flame);
  color: #fff;
  text-align: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 13px 24px;
}
.pr-offer-box__body {
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 48px) clamp(20px, 3vw, 32px);
}
.pr-offer-box__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
  color: #060F1F;
  margin: 0 0 10px;
}
.pr-offer-box__tag {
  font-size: 15px;
  color: rgba(6,15,31,0.52);
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 0 28px;
}
.pr-offer-box__onboard {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(6,15,31,0.04);
  border-radius: 10px;
  border: 1px solid rgba(6,15,31,0.07);
  margin-bottom: 20px;
}
.pr-offer-box__onboard-k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(6,15,31,0.45);
  flex: 1;
}
.pr-offer-box__onboard-v {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 20px;
  color: #060F1F;
}

/* 3 billing boxes inside the offer card */
.pr-billing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pr-pricebox {
  border: 1.5px solid rgba(6,15,31,0.11);
  border-radius: 14px;
  padding: clamp(16px, 2.2vw, 26px) clamp(14px, 1.8vw, 22px);
  position: relative;
  background: #FAFBFD;
  transition: border-color 0.2s;
}
.pr-pricebox:hover { border-color: rgba(6,15,31,0.22); }
.pr-pricebox--featured {
  border-color: var(--flame);
  border-width: 2px;
  background: rgba(232,85,32,0.025);
}
.pr-pricebox__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--flame);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.pr-pricebox__k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(6,15,31,0.42);
  margin: 0 0 10px;
}
.pr-pricebox__v {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  color: #060F1F;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.pr-pricebox__v span {
  font-family: var(--mono);
  font-size: 0.3em;
  font-weight: 500;
  color: rgba(6,15,31,0.42);
  letter-spacing: 0.04em;
  margin-left: 2px;
}
.pr-pricebox__sub {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(6,15,31,0.42);
  letter-spacing: 0.04em;
  margin: 0 0 0;
}
.pr-pricebox__perks {
  list-style: none;
  padding: 10px 0 0;
  margin: 10px 0 0;
  border-top: 1px solid rgba(6,15,31,0.07);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pr-pricebox__perks li {
  font-size: 12px;
  color: rgba(6,15,31,0.52);
  line-height: 1.4;
  padding-left: 15px;
  position: relative;
}
.pr-pricebox__perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--flame);
  font-size: 10px;
  font-weight: 700;
  top: 1px;
}

/* Guarantee inside offer box */
.pr-offer-box__guarantee {
  margin: 0 clamp(24px, 4vw, 48px);
  border-top: 1px dashed rgba(6,15,31,0.14);
  padding: clamp(20px, 3vw, 30px) 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.pr-offer-box__seal {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--flame);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 9px;
  line-height: 1.25;
  text-align: center;
  color: var(--flame);
  letter-spacing: 0.04em;
}
.pr-offer-box__guarantee-h {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
  color: #060F1F;
  margin: 0 0 6px;
}
.pr-offer-box__guarantee-p {
  font-size: 14px;
  color: rgba(6,15,31,0.52);
  line-height: 1.65;
  margin: 0;
  max-width: 52ch;
}

/* CTA inside offer box */
.pr-offer-box__cta {
  text-align: center;
  padding: clamp(20px, 3vw, 32px) clamp(24px, 4vw, 48px) clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pr-offer-box__micro {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(6,15,31,0.32);
}

/* Remove old ribbon/heading wrappers from offer section */
.pr-offer__ribbon,
.pr-offer__h,
.pr-offer__sub { display: none; }

@media (max-width: 680px) {
  .pr-billing-grid { grid-template-columns: 1fr; }
  .pr-offer-box__guarantee { flex-direction: column; gap: 14px; }
}

/* Count-up: "Every call" text reveal */
[data-count-reveal] {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-count-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ── PRICING V2 POLISH ── */

/* Hero: dot-grid texture + atmospheric glow */
.pr-hero {
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle, rgba(6,15,31,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  background-color: #E2E5ED;
}
.pr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #E2E5ED 0%, rgba(226,229,237,0.55) 60%, #E2E5ED 100%);
  pointer-events: none;
  z-index: 0;
}
.pr-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,85,32,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.pr-hero__inner {
  position: relative;
  z-index: 1;
}

/* Stack rows: subtle hover tint + extended hit area */
.pr-row {
  border-radius: 6px;
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
  border-bottom-color: transparent;
  position: relative;
  transition: background 0.18s ease;
}
.pr-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: rgba(6,15,31,0.08);
}
.pr-row:hover { background: rgba(232,85,32,0.04); }

/* Group label: add a left accent notch */
.pr-group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}
.pr-group-label::before {
  content: '';
  flex-shrink: 0;
  width: 3px;
  height: 14px;
  background: var(--flame);
  border-radius: 2px;
}

/* Total card: orange top-edge accent + fix /mo span */
.pr-total {
  position: relative;
  overflow: hidden;
}
.pr-total::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--flame), rgba(232,85,32,0.3) 70%, transparent);
}
.pr-mo {
  font-size: 0.5em;
  font-weight: 400;
  color: rgba(244,238,223,0.48);
  letter-spacing: 0;
  margin-left: 1px;
}

/* Ribbon: styled separator with fading rules */
.pr-offer__ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.pr-offer__ribbon::before,
.pr-offer__ribbon::after {
  content: '';
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,85,32,0.45));
}
.pr-offer__ribbon::after {
  background: linear-gradient(270deg, transparent, rgba(232,85,32,0.45));
}

/* Alternatives: per-card top-border accent */
.pr-c-cards .pr-c-card:nth-child(1) { border-top: 3px solid rgba(232,85,32,0.55); }
.pr-c-cards .pr-c-card:nth-child(2) { border-top: 3px solid rgba(6,15,31,0.25); }
.pr-c-cards .pr-c-card:nth-child(3) { border-top: 3px solid #c0392b; }
/* "Doing nothing" card gets a slightly muted danger feel */
.pr-c-cards .pr-c-card:nth-child(3) .pr-c-card__big {
  color: #c0392b;
}
.pr-c-cards .pr-c-card:nth-child(3) .pr-c-card__label {
  color: #c0392b;
}

/* Scarcity: flame horizontal rule + subtle large watermark */
.pr-scarcity {
  position: relative;
  overflow: hidden;
}
.pr-scarcity__inner::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--flame);
  border-radius: 2px;
  margin: 0 auto 24px;
}
.pr-scarcity::after {
  content: 'EXCLUSIVE';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', var(--sans);
  font-weight: 800;
  font-size: clamp(60px, 14vw, 160px);
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* FAQ: summary transition + focus style */
.pr-faq-item summary {
  transition: color 0.18s;
}
.pr-faq-item[open] summary {
  color: var(--flame);
}
.pr-faq-item[open] summary::after {
  color: rgba(6,15,31,0.4);
}

/* CTA: radial orange glow + z-stacking */
.pr-cta {
  position: relative;
  overflow: hidden;
}
.pr-cta::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  background: radial-gradient(circle, rgba(232,85,32,0.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.pr-cta__inner { position: relative; z-index: 1; }

/* Hero badge: smooth hover */
.pr-hero__badge {
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.pr-hero__badge:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(232,85,32,0.35);
  transform: translateY(-1px);
}
