/* Hero variations — shared styles. All three live inside artboards in
   the design canvas, so we scope to .hv-stage and use local tokens that
   match the live site (Fraunces / JetBrains Mono / Inter, ink/paper). */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,200..600,30..100;1,9..144,200..500,30..100&family=JetBrains+Mono:wght@400;500;600&family=Inter:wght@400;450;500&display=swap');

.hv-stage {
  --ink:        #0A0A0A;
  --ink-2:      #141414;
  --ink-3:      #1F1F1F;
  --paper:      #FAF7F2;
  --paper-2:    #E8E2D6;
  --muted:      #6B6660;
  --line:       rgba(250,247,242,0.10);
  --line-2:     rgba(250,247,242,0.18);
  --line-3:     rgba(250,247,242,0.32);
  --terracotta: #C36B3E;
  --display:    "Fraunces", Georgia, serif;
  --mono:       "JetBrains Mono", ui-monospace, monospace;
  --sans:       "Inter", system-ui, sans-serif;
  --ease-soft:  cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  overflow: hidden;
  isolation: isolate;
}
.hv-stage *, .hv-stage *::before, .hv-stage *::after { box-sizing: border-box; }

/* Grain — subtle, scoped */
.hv-stage::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none; z-index: 100;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
}

.hv-globe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ---------- TopBar ---------- */
.hv-topbar {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 56px;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(10,10,10,0.6), rgba(10,10,10,0));
}
.hv-brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--paper);
  text-decoration: none;
}
.hv-mark { color: var(--paper); display: inline-flex; }
.hv-brand-word {
  font-family: var(--display);
  font-size: 22px; font-weight: 400;
  letter-spacing: -0.01em;
}
.hv-brand-word em {
  font-style: normal;
  color: var(--terracotta);
  font-weight: 500;
}
.hv-topnav {
  display: flex; align-items: center; gap: 32px;
  font-family: var(--mono); font-size: 12px;
  color: var(--paper);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hv-topnav a { color: inherit; text-decoration: none; opacity: 0.72; transition: opacity 0.2s; }
.hv-topnav a:hover { opacity: 1; }
.hv-pill {
  border: 1px solid var(--line-2);
  padding: 10px 18px; border-radius: 999px;
  opacity: 1 !important;
  transition: border-color 0.2s, background 0.2s;
}
.hv-pill:hover { border-color: var(--terracotta); background: rgba(195,107,62,0.08); }

/* ---------- Shared label ---------- */
.hv-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--paper); opacity: 0.7;
}
.hv-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(195,107,62,0.18);
  animation: hv-pulse 2.4s var(--ease-soft) infinite;
}
@keyframes hv-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(195,107,62,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(195,107,62,0.05); }
}
.hv-label-num { color: var(--terracotta); font-weight: 600; }

/* ---------- Shared CTAs ---------- */
.hv-cta-row {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hv-cta-primary {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--paper); color: var(--ink);
  padding: 18px 30px; border-radius: 4px;
  font-family: var(--display);
  font-size: 18px; font-weight: 400;
  letter-spacing: -0.01em;
  transition: gap 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}
.hv-cta-primary:hover { gap: 22px; transform: translateY(-1px); }
.hv-cta-primary .hv-arrow { font-family: var(--sans); }

.hv-cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--paper);
  border: 1px solid var(--line-2);
  padding: 17px 22px; border-radius: 4px;
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.hv-cta-secondary:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: rgba(195,107,62,0.06);
}
.hv-cta-secondary-icon { display: inline-flex; }

.hv-microcopy {
  margin-top: 20px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
}

/* The poetic line — preserved but quieted, lives below the lede */
.hv-a-poetic, .hv-b-poetic, .hv-c-poetic {
  font-family: var(--display);
  font-size: 15px; font-weight: 300;
  color: var(--paper); opacity: 0.5;
  margin: 28px 0 0;
  letter-spacing: -0.005em;
  max-width: 50ch;
}
.hv-a-poetic em, .hv-b-poetic em, .hv-c-poetic em {
  font-style: italic; color: var(--terracotta); opacity: 0.85;
}

/* ---------- Hero A ---------- */
.hv-a-grid {
  position: relative; z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  padding: 120px 56px 56px;
  max-width: 1480px;
  margin: 0 auto;
}
.hv-a-text { max-width: 580px; }
.hv-a-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 5.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 32px 0 0;
  font-variation-settings: "opsz" 144;
}
.hv-a-headline em {
  font-style: italic; color: var(--terracotta); font-weight: 300;
}
.hv-a-sub {
  margin: 28px 0 0;
  font-size: 17px; line-height: 1.55;
  color: var(--paper); opacity: 0.82;
  max-width: 52ch;
}

.hv-a-visual {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
}
.hv-a-cover-stack {
  position: relative;
  width: 380px; height: 520px;
  perspective: 1600px;
}
.hv-a-cover, .hv-a-cover-back1, .hv-a-cover-back2 {
  position: absolute; inset: 0;
  border-radius: 2px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 8px 20px rgba(0,0,0,0.3);
}
.hv-a-cover-back1 {
  background: var(--paper-2);
  transform: translate(10px, 8px) rotate(1.4deg);
  opacity: 0.75;
}
.hv-a-cover-back2 {
  background: #d8d2c5;
  transform: translate(20px, 16px) rotate(2.8deg);
  opacity: 0.5;
}
.hv-a-cover {
  color: var(--ink);
  padding: 32px 30px;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 18px;
  transform: rotate(-1deg);
  transition: transform 0.6s var(--ease-soft);
}
.hv-a-cover:hover { transform: rotate(-0.3deg) translateY(-4px); }

.hv-cover-mark {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-size: 20px; font-weight: 400;
  color: var(--ink);
}
.hv-cover-mark em {
  font-style: normal; color: var(--terracotta); font-weight: 500;
}
.hv-cover-vol {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
  display: flex; align-items: baseline; gap: 6px;
}
.hv-cover-vol .hv-cover-num {
  font-family: var(--display);
  font-size: 28px; font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.hv-cover-title { padding-top: 8px; }
.hv-cover-kicker {
  display: block;
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 14px;
}
.hv-cover-title h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 144;
}
.hv-cover-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(10,10,10,0.12);
  border-bottom: 1px solid rgba(10,10,10,0.12);
}
.hv-cover-meta > div {
  display: flex; flex-direction: column; gap: 3px;
  font-family: var(--mono); font-size: 9.5px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
}
.hv-cover-meta .v {
  font-family: var(--display);
  font-style: italic; font-weight: 300;
  font-size: 13px;
  text-transform: none; letter-spacing: 0;
  color: var(--ink);
}
.hv-cover-foot {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 9.5px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
}
.hv-cover-foot-rule {
  flex: 1; height: 1px; background: rgba(10,10,10,0.18);
}
.hv-cover-stamp {
  position: absolute;
  bottom: 28px; right: 24px;
  width: 76px; height: 76px;
}
.hv-stamp-ring {
  width: 100%; height: 100%;
  border: 1.5px solid var(--terracotta);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  opacity: 0.85;
  transform: rotate(-12deg);
}
.hv-stamp-ring::before, .hv-stamp-ring::after {
  content: ""; position: absolute;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
  opacity: 0.4;
}
.hv-stamp-ring::before { inset: 4px; }
.hv-stamp-ring::after { inset: -6px; opacity: 0.18; }
.hv-stamp-inner {
  display: flex; flex-direction: column; align-items: center;
  font-family: var(--mono); font-size: 8px;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--terracotta);
  line-height: 1;
}
.hv-stamp-num {
  font-family: var(--display); font-style: italic;
  font-size: 20px; font-weight: 300;
  margin-top: 2px;
  letter-spacing: 0;
}

.hv-a-caption {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted);
}
.hv-a-caption-line {
  width: 24px; height: 1px; background: var(--line-2);
}

/* ---------- Hero B ---------- */
.hv-b-grid {
  position: relative; z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  padding: 120px 0 56px 56px;
  max-width: 1640px;
  margin: 0 auto;
}
.hv-b-text { max-width: 600px; padding-right: 24px; }
.hv-b-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--paper);
  margin: 32px 0 0;
  text-wrap: balance;
  font-variation-settings: "opsz" 144;
}
.hv-b-headline em {
  font-style: italic; color: var(--terracotta); font-weight: 300;
}
.hv-b-sub {
  margin: 28px 0 0;
  font-size: 17px; line-height: 1.55;
  color: var(--paper); opacity: 0.82;
  max-width: 54ch;
}
.hv-b-visual {
  position: relative;
  height: 100%;
  display: flex; align-items: center;
  overflow: visible;
}
.hv-b-page-frame {
  position: relative;
  transform: rotate(-1.2deg) translateX(20px);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55)) drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}
.hv-b-page-stamp {
  position: absolute;
  top: -22px; left: 28px;
  background: var(--terracotta); color: var(--paper);
  padding: 6px 12px;
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.1em;
  transform: rotate(-2deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ---------- Hero C ---------- */
.hv-c-grid {
  position: relative; z-index: 2;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 48px;
  padding: 120px 56px 56px;
  max-width: 1480px;
  margin: 0 auto;
}
.hv-c-head { max-width: 920px; }
.hv-c-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 6.4vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: var(--paper);
  margin: 32px 0 0;
  font-variation-settings: "opsz" 144;
}
.hv-c-headline em {
  font-style: italic; color: var(--terracotta); font-weight: 300;
}
.hv-c-sub {
  margin: 28px 0 0;
  font-size: 17px; line-height: 1.55;
  color: var(--paper); opacity: 0.82;
  max-width: 68ch;
}
.hv-c-moves {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-self: center;
  width: 100%;
}
.hv-c-move {
  border-top: 1px solid var(--line-2);
  padding: 24px 4px 8px;
  opacity: 0;
  animation: hv-move-in 0.9s var(--ease-soft) forwards;
  position: relative;
}
.hv-c-move::after {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--terracotta);
  animation: hv-move-rule 1.4s var(--ease-soft) forwards;
  animation-delay: inherit;
}
@keyframes hv-move-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hv-move-rule {
  from { width: 0; }
  to { width: 40px; }
}
.hv-c-move-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 18px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.hv-c-move-n { color: var(--terracotta); font-weight: 600; }
.hv-c-move-kind { color: var(--paper); opacity: 0.7; }
.hv-c-move-body {
  font-family: var(--display);
  font-size: 22px; line-height: 1.25;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0 0 20px;
  text-wrap: pretty;
  font-variation-settings: "opsz" 60;
}
.hv-c-move-body em {
  font-style: italic; color: var(--terracotta); font-weight: 300;
}
.hv-c-move-tag {
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
}
.hv-c-foot {
  display: flex; flex-direction: column; gap: 0;
}
.hv-c-foot .hv-cta-row { margin-top: 0; }

/* ---------- Redacted page (for B + lightbox) ---------- */
.hv-page {
  background: var(--paper); color: var(--ink);
  padding: 36px 38px 24px;
  font-family: var(--sans);
  display: flex; flex-direction: column;
  position: relative;
}
.hv-page-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px; align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(10,10,10,0.18);
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
}
.hv-page-num { color: var(--terracotta); font-weight: 600; }
.hv-page-title {
  font-family: var(--display); font-style: italic;
  font-size: 14px; font-weight: 300;
  text-transform: none; letter-spacing: 0;
  color: var(--ink);
}
.hv-page-vol { color: var(--muted); }
.hv-page-body {
  flex: 1;
  padding: 22px 0 16px;
}
.hv-page-h {
  font-family: var(--display);
  font-weight: 300;
  font-size: 24px; line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 18px;
  font-variation-settings: "opsz" 144;
}
.hv-page-h em {
  font-style: italic; color: var(--terracotta); font-weight: 300;
}
.hv-page-rows {
  display: flex; flex-direction: column; gap: 10px;
}
.hv-page-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px; align-items: baseline;
  font-size: 13px; line-height: 1.5;
  color: var(--ink);
}
.hv-page-row-k {
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--terracotta); font-weight: 600;
}
.hv-page-row-k.hv-down { color: var(--muted); }
.hv-page-row-v { color: rgba(10,10,10,0.85); }
.hv-redact {
  display: inline-block;
  background: var(--ink);
  color: var(--ink);
  padding: 0 4px;
  border-radius: 1px;
  letter-spacing: 0.04em;
  user-select: none;
}
.hv-page-pull {
  margin: 22px 0 0;
  padding: 18px 18px 18px 22px;
  background: rgba(195,107,62,0.06);
  border-left: 2px solid var(--terracotta);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  font-family: var(--display);
  font-size: 14px; line-height: 1.45;
  font-style: italic; font-weight: 300;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
}
.hv-page-pull em {
  font-style: normal; color: var(--terracotta); font-weight: 500;
}
.hv-pull-mark {
  font-family: var(--display); font-style: normal;
  color: var(--terracotta); font-size: 22px;
  line-height: 1;
}
.hv-page-pull p { margin: 0; }
.hv-page-comp {
  display: flex; flex-direction: column; gap: 12px;
}
.hv-page-comp-row {
  display: grid;
  grid-template-columns: 130px 1fr 160px;
  gap: 14px; align-items: center;
  font-size: 12px;
}
.hv-page-comp-name {
  font-family: var(--mono); font-size: 11px;
}
.hv-page-comp-bar {
  height: 6px;
  background: rgba(10,10,10,0.08);
  border-radius: 1px;
  overflow: hidden;
}
.hv-page-comp-bar > span {
  display: block; height: 100%;
  background: var(--terracotta);
}
.hv-page-comp-tag {
  font-family: var(--display); font-style: italic;
  font-size: 12px; color: var(--muted);
}
.hv-page-foot {
  display: flex; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(10,10,10,0.18);
  font-family: var(--mono); font-size: 9.5px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
}

/* ---------- Lightbox ---------- */
.hv-lightbox {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  animation: hv-fade 0.25s ease-out;
}
@keyframes hv-fade { from { opacity: 0; } to { opacity: 1; } }
.hv-lightbox-card {
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  width: min(1200px, 100%);
  max-height: 100%;
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: hv-rise 0.4s var(--ease-soft);
}
@keyframes hv-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hv-lightbox-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
}
.hv-lightbox-tag { color: var(--terracotta); }
.hv-lightbox-close {
  background: transparent; border: 1px solid var(--line-2);
  color: var(--paper);
  width: 32px; height: 32px;
  font-size: 18px; line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.hv-lightbox-close:hover { border-color: var(--terracotta); color: var(--terracotta); }
.hv-lightbox-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 32px;
  overflow: auto;
  background: var(--ink);
}
.hv-lightbox-body .hv-page {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.hv-lightbox-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
}
.hv-lightbox-cta {
  color: var(--terracotta);
  font-family: var(--display); font-style: italic;
  font-size: 15px; font-weight: 300;
  text-transform: none; letter-spacing: 0;
  transition: opacity 0.2s;
}
.hv-lightbox-cta:hover { opacity: 0.7; }

/* ---------- BenefitsBand (home page, below the hero) ---------- */
.hv-band {
  --ink:        #0A0A0A;
  --ink-2:      #141414;
  --paper:      #FAF7F2;
  --muted:      #8A8378;
  --line:       rgba(250,247,242,0.10);
  --line-2:     rgba(250,247,242,0.18);
  --terracotta: #C36B3E;
  --display:    "Fraunces", Georgia, serif;
  --mono:       "JetBrains Mono", ui-monospace, monospace;
  --sans:       "Inter", system-ui, sans-serif;
  --ease-soft:  cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  display: block;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  border-top: 1px solid var(--line);
  padding: 120px 0 140px;
}
.hv-band *, .hv-band *::before, .hv-band *::after { box-sizing: border-box; }

.hv-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}
.hv-band-head {
  max-width: 720px;
  margin: 0 0 72px;
}
.hv-band-head .hv-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--paper); opacity: 0.85;
}
.hv-band-head .hv-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
}
.hv-band-head .hv-label-num { color: var(--terracotta); font-weight: 600; }

.hv-band-h {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--paper);
  margin: 28px 0 18px;
  font-variation-settings: "opsz" 144;
}
.hv-band-h em {
  font-style: italic; color: var(--terracotta); font-weight: 300;
}
.hv-band-lede {
  font-family: var(--display);
  font-style: italic; font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--paper); opacity: 0.7;
  max-width: 56ch;
  margin: 0;
}

.hv-band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.hv-band-cell {
  background: var(--ink);
  padding: 40px 36px 44px;
  display: flex; flex-direction: column;
  gap: 14px;
  min-height: 240px;
}
.hv-band-num {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--terracotta);
  font-weight: 600;
}
.hv-band-cell h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--paper);
  margin: 0;
}
.hv-band-cell h3 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.hv-band-cell p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--paper); opacity: 0.72;
  margin: 0;
}
.hv-band-cell p em { font-style: italic; color: var(--terracotta); opacity: 1; font-weight: 500; }

.hv-band-tail {
  margin: 72px auto 0;
  max-width: 900px;
  display: flex; align-items: center; gap: 24px;
  text-align: center;
}
.hv-band-tail-rule {
  flex: 1; height: 1px;
  background: var(--line-2);
}
.hv-band-tail p {
  font-family: var(--display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
  color: var(--paper); opacity: 0.85;
  margin: 0;
  max-width: 56ch;
}
.hv-band-tail p em { font-style: italic; color: var(--terracotta); font-weight: 300; opacity: 1; }

.hv-band-cta {
  margin-top: 56px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hv-band-cta .hv-cta-primary {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--paper); color: var(--ink);
  padding: 18px 30px; border-radius: 4px;
  font-family: var(--display);
  font-size: 18px; font-weight: 400;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: gap 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}
.hv-band-cta .hv-cta-primary:hover { gap: 22px; transform: translateY(-1px); }
.hv-band-cta .hv-cta-primary .hv-arrow { font-family: var(--sans); }
.hv-band-cta .hv-cta-secondary {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; color: var(--paper);
  border: 1px solid var(--line-2);
  padding: 17px 22px; border-radius: 4px;
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.hv-band-cta .hv-cta-secondary:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: rgba(195,107,62,0.06);
}
.hv-band-cta .hv-arrow { font-family: var(--sans); }

@media (max-width: 1100px) {
  .hv-band-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .hv-band { padding: 80px 0 96px; }
  .hv-band-inner { padding: 0 24px; }
  .hv-band-grid { grid-template-columns: minmax(0, 1fr); }
  .hv-band-head { margin-bottom: 48px; }
  .hv-band-tail { flex-direction: column; gap: 16px; }
  .hv-band-tail-rule { width: 60%; flex: none; }
}

/* ---------- AndOneMoreThing (the moat reveal, below BenefitsBand) ---------- */
/* A single full-width featured block. Deliberately NOT a grid — the assistant
   is the moat, and giving it its own moment is the design intent. */
.hv-moat {
  --ink:        #0A0A0A;
  --ink-2:      #141414;
  --paper:      #FAF7F2;
  --muted:      #8A8378;
  --line:       rgba(250,247,242,0.10);
  --line-2:     rgba(250,247,242,0.18);
  --terracotta: #C36B3E;
  --display:    "Fraunces", Georgia, serif;
  --mono:       "JetBrains Mono", ui-monospace, monospace;
  --sans:       "Inter", system-ui, sans-serif;

  position: relative;
  display: block;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  border-top: 1px solid var(--line);
  padding: 110px 0 130px;
}
.hv-moat *, .hv-moat *::before, .hv-moat *::after { box-sizing: border-box; }

.hv-moat-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 56px;
}
.hv-moat-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--paper); opacity: 0.85;
  margin-bottom: 26px;
}
.hv-moat-label .hv-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
}
.hv-moat-h {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--paper);
  margin: 0 0 22px;
  font-variation-settings: "opsz" 144;
}
.hv-moat-h em {
  font-style: italic; color: var(--terracotta); font-weight: 300;
}
.hv-moat-lede {
  font-family: var(--display);
  font-style: italic; font-weight: 300;
  font-size: 19px;
  line-height: 1.5;
  color: var(--paper); opacity: 0.78;
  max-width: 56ch;
  margin: 0 0 32px;
}
.hv-moat-examples {
  list-style: none;
  padding: 0; margin: 0 0 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.hv-moat-examples li {
  background: var(--ink);
  padding: 18px 22px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--paper);
  opacity: 0.92;
}
.hv-moat-examples li::before {
  content: "› ";
  color: var(--terracotta);
  margin-right: 6px;
}
.hv-moat-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--paper); opacity: 0.85;
  margin: 0 0 28px;
  max-width: 64ch;
}
.hv-moat-body em {
  font-family: var(--display);
  font-style: italic;
  color: var(--terracotta);
  opacity: 1;
}
.hv-moat-foot {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--paper);
  opacity: 0.65;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

@media (max-width: 820px) {
  .hv-moat-examples { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 720px) {
  .hv-moat { padding: 80px 0 96px; }
  .hv-moat-inner { padding: 0 24px; }
}
