@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #18120c;
  --bg-2: #1e160f;
  --card: rgba(42, 31, 21, 0.76);
  --card-solid: #241a11;
  --gold: #d8b84e;
  --muted-gold: #bfa15a;
  --accent-gold: #b88a2e;
  --cream-parchment: #f3ebdd;
  --text-on-light: #17130d;
  --muted-on-light: #4a4033;
  --dark-section: #080706;
  --text-on-dark: #f7f0e3;
  --muted-on-dark: #d8c7a5;
  --cta-green: #123d2a;
  --cta-green-hover: #0e3021;
  --ivory: #f5efe3;
  --muted: #d6cbb8;
  --quiet: #afa18d;
  --line: rgba(217, 181, 82, 0.24);
  --line-strong: rgba(217, 181, 82, 0.42);
  --green: #86b889;
  --amber: #b98c4a;
  --red: #c97968;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ivory);
  background:
    linear-gradient(rgba(217, 181, 82, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 181, 82, 0.012) 1px, transparent 1px),
    radial-gradient(circle at 78% 6%, rgba(216, 184, 78, 0.1), transparent 30rem),
    linear-gradient(180deg, rgba(30, 22, 15, 0.88), rgba(24, 18, 12, 0.94) 760px),
    var(--bg);
  background-size: 56px 56px, 56px 56px, auto, auto;
  font-size: clamp(15px, 0.35vw + 14px, 18px);
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 50;
  padding: 0.8rem 1rem;
  background: var(--gold);
  color: #17130f;
}
.skip-link:focus { top: 1rem; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}
.navbar.is-scrolled {
  background: rgba(24, 18, 12, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.nav-shell, .section-inner, .stats-inner, .footer-inner, .footer-disclaimer {
  width: min(1180px, calc(100% - clamp(28px, 5vw, 80px)));
  margin: 0 auto;
}
.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand-lockup {
  display: block;
  width: clamp(170px, 18vw, 236px);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}
.brand > span:last-child span:first-child { color: var(--ivory); }
.brand > span:last-child span:last-child { color: var(--muted-gold); }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.nav-links a:not(.button):hover { color: var(--ivory); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.65rem;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ivory);
  margin: 6px 0;
}

.section { padding: clamp(56px, 7vw, 96px) 0; }
.hero {
  min-height: min(860px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(48px, 7vw, 88px);
  background:
    radial-gradient(circle at 75% 20%, rgba(216, 184, 78, 0.11), transparent 32%),
    linear-gradient(180deg, rgba(27, 20, 13, 0.72), rgba(24, 18, 12, 0));
}
.page-hero { min-height: auto; padding: 82px 0 54px; }
.hero-grid, .brief-grid, .split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  gap: clamp(1.75rem, 5vw, 4.5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
h1 { font-size: clamp(3.1rem, 5.7vw, 5.75rem); max-width: 820px; }
h2 { font-size: clamp(2.25rem, 4.2vw, 3.8rem); }
h3 { font-size: clamp(1.35rem, 1.2vw, 1.72rem); }
h4 {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
p { color: var(--muted); line-height: 1.65; }
ul { margin: 0; padding-left: 1.1rem; color: var(--muted); line-height: 1.65; }
.hero-subhead { max-width: 680px; font-size: 1.12rem; margin: 1.25rem 0 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(216, 184, 78, 0.68);
  border-radius: 6px;
  background: linear-gradient(135deg, #e5c95f, #b6963f 58%, #7c6321);
  color: #11100c;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(216, 184, 78, 0.13);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(216, 184, 78, 0.2); }
.button:disabled { cursor: not-allowed; opacity: 0.68; transform: none; }
.button-small { min-height: 40px; padding: 0.62rem 0.9rem; }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.text-link { color: var(--gold); font-weight: 800; border-bottom: 1px solid var(--line-strong); }
.microcopy { font-size: 0.9rem; margin-top: 0.85rem; color: var(--muted); }
.expert-line {
  margin: 1rem 0 0;
  color: var(--ivory);
  font-weight: 800;
  font-size: clamp(1rem, 1vw, 1.16rem);
}
.trust-line {
  margin-top: 1.35rem;
  padding-left: 1rem;
  border-left: 1px solid var(--gold);
  color: var(--muted);
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
  margin-top: 1.8rem;
  text-align: left;
}
.signup-form label span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 0.45rem;
}
.hero-signup {
  max-width: 620px;
  grid-template-columns: minmax(190px, 1fr) minmax(180px, 0.8fr);
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 16, 13, 0.76);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.25);
}
.hero-signup .button { grid-column: 1 / -1; }
.hero-signup .form-message, .final-signup .form-message, .brief-signup .form-message { grid-column: 1 / -1; }
.category-picker {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.85rem;
  border: 1px solid rgba(216, 184, 78, 0.2);
  border-radius: 8px;
  background: rgba(10, 7, 4, 0.38);
}
.category-picker legend {
  padding: 0 0.35rem;
  color: var(--ivory);
  font-weight: 800;
  font-size: 0.9rem;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.7rem;
  margin-top: 0.45rem;
}
.category-grid label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}
.category-grid input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--gold);
}
.category-picker p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}
input, select {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #1a130d;
  color: var(--ivory);
  padding: 0 0.85rem;
}
input::placeholder { color: rgba(200, 191, 175, 0.6); }
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.form-message {
  min-height: 24px;
  margin: 0.1rem 0 0;
  font-weight: 800;
}
.form-message.success { color: var(--green); }
.form-message.error { color: var(--red); }

.signal-card, .opportunity-card, .brief-preview, .feature-card, .audience-card, .proof-card, .step-card, .signup-inner, .plan-card, .library-card, .education-card, .inline-signup, .test-grid div {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(42, 31, 21, 0.94), rgba(30, 22, 15, 0.94));
  box-shadow: var(--shadow);
  border-radius: 8px;
}
.hero-panel {
  position: relative;
  display: grid;
  gap: 1rem;
}
.signal-card {
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.hero-card { max-width: 560px; margin-left: auto; }
.mini-hero-card {
  width: min(78%, 390px);
  margin-left: auto;
  margin-top: -1.4rem;
  background: linear-gradient(145deg, rgba(46, 34, 23, 0.96), rgba(30, 22, 15, 0.98));
}
.inside-brief-card { padding: 1.1rem; }
.inside-brief-card ul { margin-top: 0.8rem; }
.mini-hero-card h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); }
.mini-hero-card p { margin-bottom: 0; font-size: 0.92rem; }
.card-topline, .brief-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.card-topline {
  margin-bottom: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}
.signal-card img {
  border-radius: 6px;
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.06);
}
.signal-card img.lead-listing-photo {
  height: clamp(260px, 27vw, 320px);
  object-fit: contain;
  background: #100b07;
  padding: 0.25rem;
}
.signal-body { padding: 1rem 0.15rem 0.2rem; }
.signal-body h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin: 0.75rem 0 0; }
.card-note { margin: 0.6rem 0; font-size: 0.94rem; }
.card-note strong { color: var(--ivory); }

.metric-grid, .detail-list, .brief-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 1rem 0;
}
.metric-grid div, .detail-list div, .brief-stats div {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.82rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 6px;
}
.metric-grid span, .detail-list span, .brief-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-bottom: 0.3rem;
}
.badge-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.33rem 0.58rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold);
  background: rgba(216, 184, 78, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 800;
}
.badge.warning { color: var(--amber); border-color: rgba(185, 140, 74, 0.42); }
.badge.neutral { color: var(--muted); border-color: rgba(200, 191, 175, 0.18); background: rgba(200, 191, 175, 0.055); }
.badge.success { color: var(--green); border-color: rgba(134, 184, 137, 0.36); }

.stats-strip {
  border-block: 1px solid var(--line);
  background: rgba(30, 22, 15, 0.78);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-inner div {
  padding: 1rem 1.2rem;
  border-right: 1px solid var(--line);
}
.stats-inner div:first-child { border-left: 1px solid var(--line); }
.stats-inner strong {
  display: block;
  color: var(--ivory);
  font-size: 1.05rem;
}
.stats-inner span {
  color: var(--muted-gold);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.7rem;
}

.section-heading { max-width: 760px; margin-bottom: 2.35rem; }
.section-heading p, .section-copy p { max-width: 650px; }
.band {
  background: linear-gradient(180deg, rgba(30, 22, 15, 0.78), rgba(24, 18, 12, 0.5));
  border-block: 1px solid rgba(216, 184, 78, 0.08);
}
.step-grid, .criteria-grid, .feature-grid, .audience-grid, .proof-grid, .plan-grid, .library-grid, .education-grid, .test-grid, .type-grid, .desk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.desk-grid { grid-template-columns: repeat(4, 1fr); }
.criteria-grid { grid-template-columns: repeat(3, 1fr); }
.step-card, .feature-card, .audience-card, .proof-card, .plan-card, .library-card, .education-card, .test-grid div, .type-card {
  min-height: 164px;
  padding: 1.25rem;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.step-card:hover, .feature-card:hover, .audience-card:hover, .proof-card:hover, .plan-card:hover, .library-card:hover, .education-card:hover, .type-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(0,0,0,0.32);
}
.step-card span, .feature-card span, .proof-card span, .plan-card span, .library-card span, .type-card span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}
.step-card > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--bg-2);
}
.feature-card h3, .audience-card h3, .step-card h3 { margin-bottom: 0.7rem; }
.feature-card p, .audience-card p, .step-card p, .plan-card p { margin-bottom: 0; }
.type-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(42, 31, 21, 0.86), rgba(30, 22, 15, 0.94));
  min-height: 0;
  padding: 0;
}
.type-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05) saturate(0.98);
  border-bottom: 1px solid rgba(216, 184, 78, 0.16);
}
.type-card > div { padding: 1.1rem; }
.type-card h3 { margin: 0.5rem 0 0.6rem; }
.type-card p { margin: 0; }
.type-card strong {
  display: block;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.opportunity-card {
  overflow: hidden;
  max-width: 680px;
}
.opportunity-content { padding: 1.35rem; }
.opportunity-content h3 { margin: 0.9rem 0 0; }
.insight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.15rem;
}
.disclaimer { font-size: 0.86rem; color: var(--quiet); }

.brief-preview { padding: 1.2rem; }
.brief-signup-copy {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.brief-signup-copy h3 { margin-bottom: 0.45rem; }
.brief-signup-copy p { margin: 0; }
.brief-signup {
  grid-template-columns: 1fr 0.82fr;
  max-width: 650px;
  margin-top: 1.1rem;
}
.brief-signup .button { grid-column: 1 / -1; }
.email-chrome { display: flex; gap: 0.38rem; margin-bottom: 1rem; }
.email-chrome span { width: 10px; height: 10px; border-radius: 50%; background: rgba(244, 239, 228, 0.22); }
.subject-line {
  margin: 0 0 1rem;
  padding: 0.78rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  color: var(--ivory);
  background: rgba(255,255,255,0.03);
  font-size: 0.9rem;
}
.brief-stats { grid-template-columns: repeat(3, 1fr); }
.brief-summary {
  margin: 1rem 0 0;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  color: var(--ivory);
  background: rgba(255,255,255,0.05);
  font-weight: 800;
}
.brief-row, .brief-block, .mini-row, .locked-panel {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 6px;
  padding: 0.9rem;
  margin-top: 0.75rem;
}
.brief-row strong, .brief-row span { display: block; }
.brief-row span { margin-top: 0.32rem; color: var(--muted); }
.locked-panel {
  min-height: 64px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  background: rgba(255,255,255,0.045);
}

.audience-grid { grid-template-columns: repeat(4, 1fr); }
.not-for {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.not-for strong { color: var(--ivory); }
.not-for span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.52rem 0.78rem;
  color: var(--muted);
  background: rgba(255,255,255,0.025);
}

.pricing-logic {
  color: var(--ivory);
  font-weight: 700;
}
.pricing-panel {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(216, 184, 78, 0.12);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 18%, rgba(216, 184, 78, 0.1), transparent 24rem),
    rgba(30, 22, 15, 0.6);
}
.plan-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.55rem;
}
.plan-card.featured {
  border-color: rgba(216, 184, 78, 0.48);
  background: linear-gradient(145deg, rgba(50, 38, 25, 0.98), rgba(34, 25, 16, 0.98));
  transform: translateY(-8px);
  box-shadow: 0 30px 76px rgba(0,0,0,0.36), 0 0 0 1px rgba(216,184,78,0.1);
}
.plan-card.elite-card { border-color: rgba(200, 191, 175, 0.28); }
.plan-card small {
  color: var(--muted);
  line-height: 1.45;
  margin: 0.8rem 0 0.35rem;
}
.plan-card h3 { margin: 0.35rem 0 0.2rem; }
.plan-card h3 + h3 {
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}
.plan-card ul { margin-bottom: 0; }
.plan-card li { margin: 0.25rem 0; }
.plan-card li::marker { color: var(--gold); content: "✓  "; }
.plan-card .plan-callout {
  font-style: italic;
}
.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.34rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(216, 184, 78, 0.08);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.feature-group {
  width: 100%;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(217,181,82,0.12);
}
.feature-group:first-of-type { margin-top: 0.35rem; }
.feature-group strong {
  display: block;
  color: var(--ivory);
  margin-bottom: 0.4rem;
}
.button-secondary {
  background: rgba(216, 184, 78, 0.08);
  color: var(--ivory);
  box-shadow: none;
}
.button-outline {
  background: transparent;
  color: var(--gold);
  box-shadow: none;
}
.plan-note {
  margin: 0.85rem 0 0;
  color: var(--quiet);
  font-size: 0.82rem;
}
.comparison-table {
  margin-top: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(30, 22, 15, 0.76);
}
.comparison-table > div {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  border-top: 1px solid rgba(216, 184, 78, 0.12);
}
.comparison-table > div:first-child { border-top: 0; }
.comparison-table span {
  padding: 0.8rem;
  color: var(--muted);
  border-left: 1px solid rgba(216, 184, 78, 0.1);
  font-size: 0.86rem;
}
.comparison-table span:first-child {
  border-left: 0;
  color: var(--ivory);
  font-weight: 800;
}
.comparison-head span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
}

.signup-section { padding: 64px 0 88px; }
.signup-inner {
  position: relative;
  max-width: 760px;
  text-align: center;
  padding: clamp(1.8rem, 5vw, 3.4rem);
  overflow: hidden;
}
.signup-inner p { margin-inline: auto; }
.final-signup {
  max-width: 610px;
  margin-inline: auto;
}

.faq-inner {
  max-width: 900px;
}

.faq-inner .section-heading h2 {
  color: var(--text-on-light);
}

.band#faq .section-heading .eyebrow {
  color: var(--accent-gold);
}

.band#faq .section-heading p:not(.eyebrow) {
  color: var(--muted-on-light);
  line-height: 1.65;
}
.faq-list { border-top: 1px solid var(--line); }
details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
summary {
  cursor: pointer;
  color: var(--ivory);
  font-weight: 800;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}
details[open] summary::after { content: "-"; }
details p { margin-bottom: 0; }

.footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 28px;
  background: #120d08;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.footer a { display: block; color: var(--muted); margin: 0.55rem 0; }
.footer a:hover { color: var(--ivory); }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 0.95rem;
}
.footer-social-link {
  display: inline-flex !important;
  margin: 0 !important;
  opacity: 0.9;
}
.footer-social-link:hover { opacity: 1; color: inherit; }
.footer-social img {
  height: 28px;
  width: auto;
  max-width: 150px;
  display: block;
  object-fit: contain;
}
.footer-disclaimer {
  margin-top: 2.1rem;
  font-size: 0.82rem;
  border-top: 1px solid rgba(216, 184, 78, 0.12);
  padding-top: 1.15rem;
}

.library-card, .education-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.library-card strong {
  display: block;
  margin-top: 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1.05;
}
.education-grid { grid-template-columns: repeat(2, 1fr); }
.library-index-grid { grid-template-columns: repeat(4, 1fr); }
.inline-signup {
  margin: 42px auto;
  padding: 1.25rem;
}
.inline-signup .signup-form {
  grid-template-columns: 1fr auto;
  margin-top: 1rem;
}
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.blog-hero .section-inner { max-width: 980px; }
.blog-index-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.blog-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(42, 31, 21, 0.94), rgba(30, 22, 15, 0.94));
  box-shadow: var(--shadow);
}
.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-right: 1px solid rgba(216, 184, 78, 0.16);
}
.blog-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.15rem, 2.2vw, 2rem);
}
.blog-card h2 {
  margin: 0.65rem 0 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
}
.blog-card p { max-width: 760px; }
.post-meta, .article-byline {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: var(--muted-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 800;
}
.article-shell {
  max-width: 920px;
}
.article-header {
  display: grid;
  gap: 1rem;
}
.article-header h1 {
  max-width: 900px;
}
.article-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 1.4rem;
}
.article-summary, .article-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.article-summary {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(216, 184, 78, 0.055);
}
.article-summary h2, .article-section h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}
.example-list {
  display: grid;
  gap: 1rem;
}
.example-card {
  padding: 1.15rem;
  border: 1px solid rgba(216, 184, 78, 0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}
.example-card span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 800;
}
.example-card h3 { margin-top: 0.55rem; }
.example-metrics {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 0.8rem 0;
}
.example-metrics strong {
  display: inline-flex;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(216, 184, 78, 0.07);
  font-size: 0.82rem;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.related-links h2 { width: 100%; }
.related-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 0.85rem;
  color: var(--gold);
  background: rgba(216, 184, 78, 0.06);
  font-weight: 800;
}

.policy-body {
  color-scheme: light;
  color: #1d1710;
  background: #f7f1e7;
}
.policy-body .navbar.is-scrolled {
  background: rgba(247, 241, 231, 0.94);
  border-color: rgba(93, 67, 34, 0.16);
}
.policy-body .brand > span:last-child span:first-child,
.policy-body h1,
.policy-body h2,
.policy-body h3 {
  color: #1d1710;
}
.policy-body .nav-links,
.policy-body p,
.policy-body ul {
  color: #5f5548;
}
.policy-body .brand-mark {
  color: #8a6a1f;
  border-color: rgba(138, 106, 31, 0.28);
}
.policy-page {
  width: min(880px, calc(100% - clamp(28px, 6vw, 96px)));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
}
.policy-hero {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(93, 67, 34, 0.16);
}
.policy-hero h1 {
  max-width: 860px;
  font-size: clamp(3rem, 6vw, 5rem);
}
.policy-date {
  margin: 1rem 0 0;
  color: #776a5a;
  font-weight: 800;
}
.policy-summary {
  margin: 1.5rem 0 2rem;
  padding: 1.25rem;
  border: 1px solid rgba(138, 106, 31, 0.24);
  border-radius: 8px;
  background: #fffaf1;
}
.policy-summary p {
  margin: 0;
  color: #473d31;
}
.policy-summary p + p {
  margin-top: 0.7rem;
  color: #7a6d5d;
}
.policy-content {
  font-size: 1rem;
}
.policy-content h2,
.policy-contact-form h2 {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(93, 67, 34, 0.14);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.25;
}
.policy-content h3 {
  margin-top: 1.45rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}
.policy-content p,
.policy-content li {
  color: #4f4639;
  line-height: 1.78;
}
.policy-content ul {
  margin: 0.8rem 0 1rem;
}
.policy-related {
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(93, 67, 34, 0.14);
}
.policy-related h2 {
  color: #1d1710;
}
.policy-related a {
  border-color: rgba(138, 106, 31, 0.24);
  color: #725714;
  background: rgba(138, 106, 31, 0.08);
}
.policy-contact-form {
  margin-top: 2rem;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1.25rem;
  border: 1px solid rgba(138, 106, 31, 0.22);
  border-radius: 8px;
  background: #fffaf1;
}
.contact-form label span {
  display: block;
  color: #5f5548;
  font-size: 0.78rem;
  margin-bottom: 0.45rem;
}
.contact-form .wide,
.contact-form button,
.contact-form .form-message {
  grid-column: 1 / -1;
}
textarea {
  width: 100%;
  border: 1px solid rgba(138, 106, 31, 0.24);
  border-radius: 6px;
  background: #fff;
  color: #1d1710;
  padding: 0.85rem;
  resize: vertical;
}
.policy-body input,
.policy-body select {
  background: #fff;
  color: #1d1710;
  border-color: rgba(138, 106, 31, 0.24);
}
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 60;
  width: min(700px, calc(100vw - 32px));
  transform: translateX(-50%);
  padding: 18px 20px;
  border: 1px solid rgba(154, 100, 27, 0.18);
  border-radius: 12px;
  background: rgba(255, 249, 239, 0.98);
  box-shadow: 0 22px 60px rgba(33, 26, 18, 0.18);
  animation: cb-rise 220ms ease both;
}
@keyframes cb-rise {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { animation: none; }
}
.cookie-banner[hidden] { display: none; }

.cb-default {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.cb-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.cb-heading {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1d1710;
  letter-spacing: 0.01em;
}
.cb-body {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: #5d5243;
}
.cb-links {
  display: block;
  font-size: 12px;
  color: #7a6c5a;
  margin-top: 3px;
}
.cb-links a { color: var(--muted-gold); }
.cb-links a:hover { color: var(--gold); }

.cb-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  align-self: center;
}
.cb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.cb-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.cb-btn--primary {
  background: #123d2a;
  color: #f7f0e3;
  border-color: rgba(18, 61, 42, 0.5);
}
.cb-btn--primary:hover {
  background: #174d28;
  box-shadow: 0 4px 16px rgba(15, 58, 30, 0.5);
}
.cb-btn--border {
  background: transparent;
  color: #675844;
  border-color: rgba(154, 100, 27, 0.24);
}
.cb-btn--border:hover {
  border-color: rgba(154, 100, 27, 0.34);
  color: #1d1710;
}
.cb-btn--ghost {
  background: transparent;
  color: #7a6c5a;
  border-color: transparent;
}
.cb-btn--ghost:hover { color: #5d5243; }

.cb-prefs {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.cb-prefs[hidden] { display: none; }
.cb-prefs__header { margin-bottom: 14px; }
.cb-prefs__header .cb-heading { margin-bottom: 5px; }

.cb-prefs__rows { margin-bottom: 14px; }
.cb-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.cb-pref-row:last-child { border-bottom: none; }
.cb-pref-row__text { flex: 1; min-width: 0; }
.cb-pref-row__title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1d1710;
  margin-bottom: 2px;
}
.cb-pref-row__desc {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: #7a6c5a;
}
.cb-pref-row__fixed {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.cb-prefs__actions { justify-content: flex-end; }

.cb-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.cb-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.cb-toggle__track {
  display: inline-block;
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: rgba(217, 181, 82, 0.12);
  border: 1px solid rgba(217, 181, 82, 0.2);
  transition: background 160ms ease, border-color 160ms ease;
  position: relative;
}
.cb-toggle__track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--quiet);
  transition: transform 160ms ease, background 160ms ease;
}
.cb-toggle__input:checked + .cb-toggle__track {
  background: rgba(15, 58, 30, 0.8);
  border-color: rgba(31, 90, 47, 0.6);
}
.cb-toggle__input:checked + .cb-toggle__track::after {
  transform: translateX(16px);
  background: #6dcf8a;
}
.cb-toggle__input:focus-visible + .cb-toggle__track {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .cookie-banner {
    width: calc(100vw - 24px);
    bottom: 12px;
    padding: 16px;
  }
  .cb-default { flex-direction: column; gap: 14px; }
  .cb-actions { width: 100%; flex-wrap: wrap; }
  .cb-btn--primary { width: 100%; order: -1; height: 42px; }
  .cb-prefs__actions { flex-wrap: wrap; }
  .cb-prefs__actions .cb-btn { flex: 1; }
  .cb-prefs__actions .cb-btn--primary { order: -1; }
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 150ms; }
.delay-3 { transition-delay: 220ms; }

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: center;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}
.cta-row.centered {
  justify-content: center;
}
.centered-text { text-align: center; }
.large-list {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.25rem;
  font-size: 1.02rem;
}
.proof-card,
.checkout-panel,
.sample-alert-card,
.preference-wizard,
.faq-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(42, 31, 21, 0.86), rgba(29, 22, 15, 0.84));
  box-shadow: var(--shadow);
}
.proof-card,
.checkout-panel,
.sample-alert-card,
.preference-wizard {
  padding: clamp(1rem, 2.5vw, 1.5rem);
}
.sample-alert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.sample-alert-card {
  display: grid;
  gap: 1rem;
}
.sample-alert-card h3 { line-height: 1.08; }
.sample-alert-card p { margin: 0; }
.inline-cta {
  display: grid;
  place-items: center;
  padding: 1.25rem;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.tag-cloud span {
  padding: 0.72rem 0.88rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 700;
}
.faq-page-list {
  display: grid;
  gap: 1rem;
}
.faq-group {
  padding: clamp(1rem, 2.2vw, 1.35rem);
}
.faq-group h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}
.faq-group details {
  border-top: 1px solid rgba(216, 184, 78, 0.16);
}
.faq-group details:first-of-type { border-top: 0; }
.wizard-shell {
  width: min(920px, calc(100% - clamp(28px, 5vw, 80px)));
}
.preference-wizard {
  min-height: 560px;
}
.wizard-progress {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-weight: 800;
}
.wizard-progress div {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.wizard-progress i {
  display: block;
  width: 16.66%;
  height: 100%;
  background: linear-gradient(135deg, #e5c95f, #b6963f);
  transition: width 180ms ease;
}
.wizard-step { display: none; }
.wizard-step.is-active { display: block; }
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.3rem;
}
.choice-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.choice-grid label,
.wizard-fields label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.9rem;
  border: 1px solid rgba(216, 184, 78, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}
.choice-grid input,
.consent-line input {
  width: auto;
  height: auto;
  margin-top: 0.18rem;
}
.choice-grid strong {
  display: block;
  color: var(--ivory);
  margin-bottom: 0.2rem;
}
.wizard-fields {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.3rem;
}
.wizard-fields label:not(.consent-line) {
  display: block;
}
.wizard-fields label span {
  display: block;
  margin-bottom: 0.4rem;
}
.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.billing-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin: 1rem 0;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}
.billing-toggle button {
  border: 0;
  border-radius: 6px;
  padding: 0.72rem;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}
.billing-toggle button.is-active {
  background: var(--gold);
  color: #17130f;
}
.billing-toggle span {
  display: block;
  font-size: 0.72rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 1ms !important; animation-duration: 1ms !important; }
}

/* V3.9: keep the old content flow, but move the visual language into the lighter catalogue palette. */
:root {
  --bg: #f7efe1;
  --bg-2: #efe3d0;
  --card: rgba(255, 251, 243, 0.86);
  --card-solid: #fffaf1;
  --gold: #9a641b;
  --muted-gold: #8f611f;
  --ivory: #172015;
  --muted: #5c4a37;
  --quiet: #786a5a;
  --line: rgba(154, 100, 27, 0.22);
  --line-strong: rgba(154, 100, 27, 0.44);
  --green: #123017;
  --amber: #9a641b;
  --red: #9b3328;
  --shadow: 0 18px 46px rgba(70, 44, 19, 0.13);
  color-scheme: light;
}

body {
  color: var(--ivory);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.82), transparent 31rem),
    linear-gradient(90deg, rgba(154, 100, 27, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(154, 100, 27, 0.03) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 46px 46px, 46px 46px, auto;
}

p, ul, .nav-links, .card-topline, .brief-row span, .plan-card small, .footer a {
  color: var(--muted);
}

.navbar {
  background: rgba(250, 246, 237, 0.9);
  border-bottom-color: rgba(154, 100, 27, 0.16);
  backdrop-filter: blur(14px);
}
.navbar.is-scrolled {
  background: rgba(250, 246, 237, 0.96);
  border-color: var(--line);
}
.nav-shell { min-height: 58px; }
.brand {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.brand-lockup {
  box-shadow: 0 10px 24px rgba(23, 19, 13, 0.12);
}
.brand > span:last-child span:first-child,
.brand > span:last-child span:last-child,
.nav-links a:not(.button):hover {
  color: var(--green);
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-color: var(--line-strong);
  border-radius: 0;
  color: var(--gold);
  background: rgba(255, 251, 244, 0.58);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.55);
}
.nav-links {
  gap: 1.1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.menu-toggle {
  border-color: var(--line);
  background: rgba(255,251,244,0.72);
}
.menu-toggle span { background: var(--green); }

.section { padding: clamp(46px, 6vw, 78px) 0; }
.hero {
  min-height: auto;
  padding-top: clamp(44px, 5.6vw, 70px);
  padding-bottom: clamp(40px, 5.2vw, 64px);
  background:
    radial-gradient(circle at 78% 16%, rgba(154, 100, 27, 0.12), transparent 25rem),
    linear-gradient(180deg, rgba(255, 251, 243, 0.72), rgba(247, 239, 225, 0));
}
.hero-grid, .brief-grid, .split-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1.5rem, 4vw, 3.6rem);
}

.hero-grid {
  align-items: start;
}
h1 { font-size: clamp(2.9rem, 5.1vw, 5.1rem); }
h2 { font-size: clamp(2.05rem, 3.7vw, 3.35rem); }
h3 { font-size: clamp(1.28rem, 1.1vw, 1.62rem); }

.button {
  min-height: 44px;
  border: 2px solid #c9a76c;
  border-radius: 0;
  background: var(--green);
  color: #f8edcf;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}
.button:hover {
  background: #19381d;
  box-shadow: 0 12px 30px rgba(70, 44, 19, 0.14);
}
.button-secondary, .button-outline {
  background: rgba(255, 251, 244, 0.52);
  color: var(--green);
  border-color: var(--line-strong);
}

input, select {
  border-color: var(--line-strong);
  border-radius: 0;
  background: rgba(255, 251, 244, 0.86);
  color: var(--ivory);
}
input::placeholder { color: rgba(92, 74, 55, 0.62); }
.category-picker {
  border-color: var(--line);
  border-radius: 0;
  background: rgba(255, 251, 244, 0.5);
}
.category-picker legend, .not-for strong, .feature-group strong, summary, .card-note strong {
  color: var(--ivory);
}

.signal-card, .opportunity-card, .brief-preview, .feature-card, .audience-card, .proof-card, .step-card, .signup-inner, .plan-card, .library-card, .education-card, .inline-signup, .test-grid div {
  border-color: var(--line);
  border-radius: 0;
  background: linear-gradient(145deg, rgba(255, 251, 244, 0.92), rgba(244, 233, 215, 0.78));
  box-shadow: var(--shadow);
}
.hero-card { max-width: 420px; }
.signal-card { padding: 0.85rem; }
.mini-hero-card {
  width: min(76%, 340px);
  background: linear-gradient(145deg, rgba(255, 251, 244, 0.98), rgba(240, 228, 209, 0.96));
}
.signal-card img {
  border-radius: 0;
  border-color: rgba(154, 100, 27, 0.16);
}
.signal-card img.lead-listing-photo {
  height: clamp(150px, 17vw, 208px);
  background: #efe3d0;
}
.signal-body { padding-top: 0.8rem; }
.signal-body h2 { font-size: clamp(1.48rem, 2.45vw, 2rem); }
.card-note { font-size: 0.88rem; }
.metric-grid div, .detail-list div, .brief-stats div,
.brief-row, .brief-block, .mini-row, .locked-panel,
.subject-line, .brief-summary, .example-card {
  border-color: rgba(154, 100, 27, 0.16);
  border-radius: 0;
  background: rgba(255, 251, 244, 0.56);
}
.metric-grid div, .detail-list div, .brief-stats div { min-height: 68px; }
.badge, .plan-badge {
  border-radius: 0;
  border-color: var(--line);
  background: rgba(154, 100, 27, 0.07);
  color: var(--gold);
}

.stats-strip { background: rgba(245, 234, 216, 0.76); }
.stats-inner strong, .pricing-logic, .brief-summary, .subject-line, .example-metrics strong { color: var(--ivory); }
.stats-inner span { color: var(--gold); }
.band {
  background: linear-gradient(180deg, rgba(244, 233, 215, 0.78), rgba(250, 246, 237, 0.58));
  border-block-color: var(--line);
}
.step-card > span { background: rgba(255, 251, 244, 0.86); }
.type-card {
  border-radius: 0;
  background: linear-gradient(145deg, rgba(255, 251, 244, 0.92), rgba(244, 233, 215, 0.78));
}
.type-card img {
  aspect-ratio: 16 / 7.6;
  max-height: 176px;
  filter: sepia(0.08) saturate(0.9) contrast(1.03);
}
.plan-card.featured {
  background: linear-gradient(145deg, rgba(255, 251, 244, 0.98), rgba(240, 228, 209, 0.94));
  box-shadow: 0 24px 58px rgba(70,44,19,0.18);
}
.pricing-panel, .comparison-table {
  border-radius: 0;
  background: rgba(250, 246, 237, 0.7);
}
.comparison-table span {
  color: var(--muted);
  border-left-color: rgba(154, 100, 27, 0.12);
}
.comparison-table span:first-child, .comparison-head span { color: var(--ivory); }
.footer { background: #efe3d0; }
.footer a:hover { color: var(--green); }
.blog-card {
  border-radius: 0;
  background: linear-gradient(145deg, rgba(255, 251, 244, 0.92), rgba(244, 233, 215, 0.78));
}
.article-summary, .related-links a {
  border-radius: 0;
  background: rgba(154, 100, 27, 0.06);
}
.cookie-banner {
  border-color: rgba(154, 100, 27, 0.18);
  border-radius: 12px;
  background: rgba(255, 249, 239, 0.98);
}
.cookie-banner .cb-toggle__track {
  background: rgba(154, 100, 27, 0.08);
  border-color: rgba(154, 100, 27, 0.18);
}
.cookie-banner .cb-btn--border {
  border-color: rgba(154, 100, 27, 0.24);
}

.catalogue-hero {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--card-solid);
}

.catalogue-hero-main {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  align-items: stretch;
  min-height: max(260px, min(52vh, 420px));
}

/* Flat centered signup strip under hero imagery */
.catalogue-hero-signup-bar {
  width: 100%;
  padding: clamp(14px, 2.2vw, 22px) clamp(22px, 4vw, 48px);
  border-top: 1px solid rgba(216, 199, 165, 0.32);
  background: linear-gradient(180deg, var(--dark-section), #14110d);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.hero-signup-bar__meta {
  max-width: min(680px, 100%);
}

.hero-signup-bar__eyebrow {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.hero-signup-bar__sub {
  margin: 0.28rem 0 0;
  font-size: clamp(0.88rem, 1.65vw, 0.98rem);
  line-height: 1.45;
  color: var(--text-on-dark);
  font-weight: 500;
}

.signup-form--hero-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem 0.6rem;
  width: min(720px, 100%);
  margin: 0;
}

.signup-form--hero-bar .hero-signup-bar__field {
  flex: 1 1 220px;
  min-width: 0;
  margin: 0;
}

.signup-form--hero-bar .hero-signup-bar__field input {
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  padding: 0.68rem 0.92rem;
  border: 1px solid rgba(216, 199, 165, 0.35);
  border-radius: 6px;
  background: rgba(247, 240, 227, 0.96);
  color: var(--text-on-light);
  font-size: 0.95rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.signup-form--hero-bar .hero-signup-bar__field input::placeholder {
  color: rgba(74, 64, 51, 0.55);
}

.signup-form--hero-bar .hero-signup-bar__field input:focus-visible {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(184, 138, 46, 0.22);
}

.signup-form--hero-bar > .button {
  flex: 0 1 auto;
  min-height: 48px;
  padding-inline: clamp(1rem, 2.5vw, 1.5rem);
  border: none;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--cta-green), var(--cta-green-hover));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.signup-form--hero-bar > .button:hover {
  filter: brightness(1.06);
}

.signup-form--hero-bar .form-message {
  flex: 1 1 100%;
  margin: 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted-on-dark);
}

.hero-signup-bar__trust {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.hero-signup-bar__trust--muted {
  margin-top: 0.55rem;
  margin-inline: auto;
  max-width: min(52ch, 92vw);
  opacity: 0.88;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.74rem;
  line-height: 1.45;
}

.faq-supporting-callout {
  margin: 0 0 1.75rem;
  padding: 1.2rem clamp(1rem, 2.8vw, 1.35rem);
  border: 1px solid rgba(216, 199, 165, 0.45);
  border-radius: 6px;
  background: rgba(255, 252, 246, 0.55);
  max-width: 72ch;
}

.band#faq .faq-supporting-callout {
  border-color: #d8c7a5;
  background: rgba(255, 251, 244, 0.85);
}

.faq-supporting-callout h3 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  color: var(--text-on-light);
  line-height: 1.15;
}

.faq-supporting-callout p {
  margin: 0;
  color: var(--muted-on-light);
  line-height: 1.65;
  font-size: 1rem;
}

.faq-next-step {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 8px;
  border: 1px solid rgba(216, 199, 165, 0.45);
  background: rgba(255, 251, 244, 0.88);
}

.band#faq .faq-next-step {
  border-color: #d8c7a5;
}

.faq-next-step .eyebrow {
  color: var(--accent-gold);
}

.faq-next-step h3 {
  margin: 0.35rem 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  color: var(--text-on-light);
  line-height: 1.12;
}

.faq-next-step > p:last-of-type {
  margin-bottom: 0;
}

.faq-next-step p {
  color: var(--muted-on-light);
  max-width: 62ch;
  line-height: 1.65;
}

.plan-landing .faq-next-step {
  border-color: rgba(216, 199, 165, 0.32);
  background: rgba(8, 7, 6, 0.55);
}

.plan-landing .faq-next-step h3 {
  color: var(--text-on-dark);
}

.plan-landing .faq-next-step p {
  color: var(--muted-on-dark);
}

.plan-landing .faq-supporting-callout {
  border-color: rgba(216, 199, 165, 0.28);
  background: rgba(23, 19, 13, 0.65);
  max-width: none;
}

.plan-landing .faq-supporting-callout h3 {
  color: var(--text-on-dark);
}

.plan-landing .faq-supporting-callout p {
  color: var(--muted-on-dark);
}

.faq-intro-block.section-heading {
  margin-bottom: 1.75rem;
}

.faq-intro-block.section-heading h2 {
  color: inherit;
}

.plan-landing .faq-intro-block.section-heading h2 {
  color: var(--text-on-dark);
}

.plan-landing .faq-intro-block.section-heading > p {
  color: var(--muted-on-dark);
}

.faq-page-list.plan-faq-section {
  gap: 0;
}

.faq-page-list.plan-faq-section > details {
  border-bottom: 1px solid rgba(216, 184, 78, 0.16);
  padding: 1.05rem 0;
}

.faq-page-list.plan-faq-section > details:last-of-type {
  border-bottom: 0;
}

.faq-page-list.plan-faq-section details p {
  max-width: 72ch;
  line-height: 1.68;
}

.band#faq .faq-list details p,
.band#faq .faq-list summary {
  color: var(--text-on-light);
}

.band#faq .faq-list details p {
  color: var(--muted-on-light);
}

.band#faq summary::after {
  color: var(--accent-gold);
}

.band#faq .faq-list details[open] {
  background: rgba(255, 251, 244, 0.35);
}

.band#faq details {
  border-color: rgba(74, 64, 51, 0.15);
}

.band#faq summary {
  color: var(--text-on-light);
}

/* Savings / value motif — aligns with refined line-icons */
.line-icon.premium-icon-money {
  transform: rotate(0deg);
  border-radius: 50%;
}

.premium-icon-money::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.premium-icon-money::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  bottom: 9px;
  width: 1px;
  background: var(--gold);
  opacity: 0.88;
  transform: translateX(-50%);
}

.signup-strip-section {
  padding: 36px clamp(24px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.55);
}

.signup-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 1.8rem;
  max-width: 1040px;
  margin: 0 auto;
}

.signup-strip-copy {
  flex: 1 1 240px;
  max-width: 520px;
}

.signup-strip-copy h2 {
  margin: 0 0 0.4rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 500;
  color: var(--text-on-light);
}

.signup-strip-copy p {
  margin: 0;
  color: var(--muted-on-light);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 46ch;
}

.signup-strip-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  flex: 1 1 280px;
  max-width: 440px;
}

.signup-strip-form .signup-strip-field {
  flex: 1 1 180px;
  min-width: 0;
}

.signup-strip-form input[type="email"] {
  width: 100%;
  padding: 0.68rem 0.78rem;
  border: 1px solid rgba(72, 58, 42, 0.16);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.95);
  font-size: 0.9rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.signup-strip-form input[type="email"]:focus-visible {
  outline: none;
  border-color: rgba(216, 184, 78, 0.5);
  box-shadow: 0 0 0 3px rgba(216, 184, 78, 0.12);
}

.signup-strip-form .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.signup-strip-form .form-message {
  flex: 1 1 100%;
  margin: 0;
}

.signup-section--integrated {
  padding: 36px 0 48px;
  background:
    linear-gradient(180deg, rgba(30, 22, 15, 0.35), rgba(18, 14, 10, 0.5)),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(216, 184, 78, 0.1), transparent 55%);
}

.signup-inner--footer-cta {
  width: min(1040px, calc(100% - clamp(28px, 5vw, 80px)));
  max-width: none;
  margin: 0 auto;
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.2rem, 3vw, 2.4rem);
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1rem 1.5rem;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(216, 184, 78, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  background: rgba(26, 20, 14, 0.55);
}

.footer-cta-copy h2 {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  font-weight: 500;
  color: #f7efe1;
}

.footer-cta-copy p {
  margin: 0;
  color: #c9bba5;
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 48ch;
}

.signup-form--footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  max-width: none;
  margin: 0;
}

.signup-form--footer-cta .brief-email-field {
  grid-column: 1 / -1;
}

.signup-form--footer-cta .brief-email-field input {
  width: 100%;
}

.signup-form--footer-cta .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.signup-form--footer-cta .form-message {
  grid-column: 1 / -1;
}

.signup-footer-micro {
  grid-column: 1 / -1;
  margin: 0;
  color: #9a8b78;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.example-compact__inner {
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.example-compact__copy h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.example-compact__copy p {
  font-size: 0.98rem;
  line-height: 1.38;
  max-width: 36ch;
}

.example-compact__card .opportunity-content h3 {
  margin-top: 0.55rem;
  font-size: 1.15rem;
}

.example-compact__card .opportunity-content h4 {
  font-size: 0.78rem;
}

.example-compact__card .opportunity-card-thumb img {
  max-height: 240px;
  width: 100%;
  object-fit: cover;
}

.example-compact .opportunity-card-thumb {
  max-height: 240px;
}

.catalogue-hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  padding: clamp(34px, 5vw, 58px) clamp(30px, 5vw, 66px);
  background: linear-gradient(90deg, var(--cream-parchment) 0%, rgba(243, 235, 221, 0.97) 78%, rgba(255, 250, 241, 0.12) 100%);
}

.catalogue-hero-copy h1 {
  margin: 0;
  color: var(--text-on-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.15rem, 3.4vw, 3.15rem);
  font-weight: 500;
  line-height: 0.98;
}

.journal-copy h2 {
  margin: 0;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.15rem, 3.4vw, 3.15rem);
  font-weight: 500;
  line-height: 0.98;
}

.catalogue-hero-copy .eyebrow {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
}

.journal-copy .eyebrow {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.catalogue-hero-copy .catalogue-hero-tagline {
  margin: 0;
  max-width: min(440px, 100%);
  color: var(--muted-on-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.38;
}

.journal-copy p,
.request-copy p {
  max-width: 340px;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.35;
}

.ornament-rule {
  width: 92px;
  height: 1px;
  margin: 22px 0 20px;
  background: var(--gold);
  position: relative;
}

.ornament-rule::after {
  content: "";
  position: absolute;
  left: 43px;
  top: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  background: var(--card-solid);
  transform: rotate(45deg);
}

.catalogue-hero-image {
  grid-column: 2;
  grid-row: 1;
  margin-left: -72px;
  min-height: 0;
  background: #eadbc3;
}

.catalogue-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.06) saturate(0.96) contrast(1.02);
}

.catalogue-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.18rem;
  border-bottom-color: rgba(18, 61, 42, 0.45);
  color: var(--cta-green);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.catalogue-hero-copy .catalogue-text-link:hover {
  color: var(--cta-green-hover);
  border-bottom-color: rgba(14, 48, 33, 0.55);
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px clamp(24px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.76);
}

.promise {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  min-height: 0;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.promise:first-child { border-left: 0; }

.promise h2 {
  margin: 0 0 0.45rem;
  color: var(--text-on-light);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promise p {
  margin: 0;
  color: var(--muted-on-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  line-height: 1.28;
}

.line-icon {
  width: 31px;
  height: 31px;
  border: 1px solid var(--gold);
  position: relative;
  margin-top: 0.2rem;
}

.book-icon::before,
.book-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 10px;
  height: 19px;
  border: 1px solid var(--gold);
}
.book-icon::before { left: 5px; transform: skewY(9deg); }
.book-icon::after { right: 5px; transform: skewY(-9deg); }
.shield-icon { clip-path: polygon(50% 0, 92% 16%, 82% 76%, 50% 100%, 18% 76%, 8% 16%); }
.globe-icon { border-radius: 50%; }
.globe-icon::before { content: ""; position: absolute; inset: 7px 0; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.globe-icon::after { content: ""; position: absolute; inset: 0 10px; border-left: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.box-icon { transform: rotate(45deg); }

.featured-catalogue {
  padding: 36px clamp(30px, 5vw, 66px) 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.66);
}

.section-title {
  text-align: center;
  margin-bottom: 22px;
}

.section-title h2 {
  margin: 0;
  color: var(--gold);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.featured-catalogue .section-title h2 {
  margin: 0;
  color: var(--text-on-light);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--gold);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.listing-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255, 251, 244, 0.78);
  box-shadow: 0 12px 30px rgba(70, 44, 19, 0.09);
}

.listing-card img {
  width: 100%;
  aspect-ratio: 1.12 / 0.84;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: sepia(0.08) saturate(0.92) contrast(1.02);
}

.listing-body {
  display: flex;
  min-height: 194px;
  flex-direction: column;
  padding: 15px 15px 16px;
}

.listing-body h3 {
  margin: 0 0 0.35rem;
  color: var(--text-on-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.18rem, 1.6vw, 1.55rem);
  font-weight: 500;
  line-height: 1;
}

.listing-body p {
  margin: 0 0 0.55rem;
  color: var(--muted-on-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.94rem;
  line-height: 1.25;
}

.listing-body .author {
  color: #5c4d38;
}

.listing-body strong {
  margin-top: auto;
  color: var(--accent-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.listing-body a {
  margin-top: 0.85rem;
  color: var(--cta-green);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.centered {
  margin-top: 18px;
  text-align: center;
}

.journal-band {
  min-height: 218px;
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--card-solid);
}

.journal-copy {
  position: relative;
  z-index: 2;
  padding: 30px clamp(30px, 5vw, 66px);
  background: linear-gradient(90deg, #fffaf1, rgba(255, 250, 241, 0.82));
}

.journal-copy h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
}

.journal-copy p {
  max-width: 280px;
  font-size: 0.98rem;
}

.journal-band > img {
  width: 100%;
  height: 100%;
  min-height: 218px;
  object-fit: cover;
  filter: sepia(0.16) contrast(1.04);
}

.request-band {
  display: grid;
  grid-template-columns: 0.26fr 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(30px, 5vw, 66px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 239, 225, 0.72);
}

.request-etching {
  width: 150px;
  height: 58px;
  opacity: 0.5;
  background:
    linear-gradient(135deg, transparent 40%, var(--gold) 41%, transparent 42%),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(154,100,27,0.32) 13px 14px),
    radial-gradient(ellipse at 40% 80%, transparent 0 28px, rgba(154,100,27,0.34) 29px 30px, transparent 31px);
  border-bottom: 1px solid var(--gold);
}

.request-copy h2 {
  margin: 0;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
}

.request-copy p {
  margin: 0.25rem 0 0;
  max-width: 370px;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .catalogue-hero-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(210px, min(38vh, 300px));
  }
  .catalogue-hero-copy {
    grid-column: 1;
    grid-row: 1;
  }
  .catalogue-hero-image {
    grid-column: 1;
    grid-row: 2;
    margin-left: 0;
    min-height: 210px;
  }
  .catalogue-hero-signup-bar {
    padding-inline: clamp(18px, 4vw, 28px);
  }
  .catalogue-hero, .journal-band, .request-band { grid-template-columns: 1fr; }
  .catalogue-hero-image { margin-left: 0; min-height: 280px; }
  .promise-strip, .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .promise:nth-child(3) { border-left: 0; }
  .request-band { justify-items: start; }
  .hero-grid, .brief-grid, .split-section, .page-hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .stats-inner, .criteria-grid, .audience-grid, .feature-grid, .plan-grid, .library-grid, .library-index-grid, .type-grid, .desk-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: 1fr; }
  .opportunity-card { max-width: none; }
  .opportunity-card img { aspect-ratio: 16 / 8; height: auto; }
  .hero-card { max-width: none; margin-left: 0; }
  .mini-hero-card { margin-left: 0; }
  .plan-card.featured { transform: none; }
}

@media (max-width: 720px) {
  body {
    background:
      linear-gradient(rgba(216, 184, 78, 0.008) 1px, transparent 1px),
      linear-gradient(90deg, rgba(216, 184, 78, 0.007) 1px, transparent 1px),
      var(--bg);
    background-size: 54px 54px, 54px 54px;
  }
  .nav-shell, .section-inner, .stats-inner, .footer-inner, .footer-disclaimer { width: min(100% - 28px, 1180px); }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 72px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(11, 10, 6, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .catalogue-hero-copy { padding: 34px 24px; }
  .catalogue-hero-copy h1 { font-size: clamp(2.2rem, 11vw, 2.75rem); }
  .catalogue-hero-image { min-height: 230px; }
  .promise-strip, .listing-grid { grid-template-columns: 1fr; }
  .promise { border-left: 0; border-top: 1px solid var(--line); padding: 18px 0; }
  .promise:first-child { border-top: 0; }
  .featured-catalogue, .promise-strip, .request-band { padding-left: 24px; padding-right: 24px; }
  .journal-copy { padding: 28px 24px; }
  .journal-band > img { min-height: 190px; }
  .request-etching { width: 130px; }
  .section { padding: 56px 0; }
  .hero { padding-top: 56px; padding-bottom: 48px; }
  h1 { font-size: clamp(2.75rem, 13vw, 3.35rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 2.8rem); }
  .hero-subhead { font-size: 1rem; }
  .signup-form, .hero-signup, .final-signup, .brief-signup, .inline-signup .signup-form { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .criteria-grid, .audience-grid, .feature-grid, .proof-grid, .plan-grid, .library-grid, .education-grid, .library-index-grid, .test-grid, .type-grid, .desk-grid, .metric-grid, .brief-stats, .detail-list, .insight-grid, .footer-inner, .contact-form, .cookie-options, .sample-alert-grid, .choice-grid, .choice-grid.compact { grid-template-columns: 1fr; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card img {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 184, 78, 0.16);
  }
  .stats-inner div, .stats-inner div:first-child { border-left: 1px solid var(--line); }
  .brief-header { align-items: flex-start; flex-direction: column; }
  .opportunity-content { padding: 1rem; }
  .signal-card .badge-row .badge:first-child { display: none; }
  .mini-hero-card { width: 100%; margin-top: 0; }
  .pricing-panel { padding: 0; border: 0; background: transparent; }
  .plan-card.featured { order: -1; }
  .comparison-table { overflow-x: auto; }
  .comparison-table > div { min-width: 680px; }
  .wizard-actions { flex-direction: column-reverse; }
}

/* Homepage repositioning — trust bar, acquisition desk tone, lighter chrome */
.site-top {
  position: sticky;
  top: 0;
  z-index: 40;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}
.site-top.is-scrolled {
  background: rgba(24, 18, 12, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.site-top .navbar {
  position: relative;
  top: auto;
}
.site-top .navbar.is-scrolled {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}
.trust-microbar {
  border-bottom: 1px solid rgba(216, 181, 82, 0.1);
  background: rgba(14, 11, 8, 0.96);
}
.trust-microbar-text {
  margin: 0;
  padding: 0.38rem clamp(18px, 4vw, 48px);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--quiet);
  font-weight: 600;
  transition: opacity 240ms ease;
}
.nav-links { gap: 1.55rem; }
.nav-shell { min-height: 64px; }
.nav-cta {
  border-width: 1px;
  box-shadow: 0 8px 22px rgba(216, 184, 78, 0.1);
  transition: transform 200ms ease, box-shadow 220ms ease, border-color 200ms ease, filter 200ms ease;
}
.nav-cta:hover {
  box-shadow: 0 10px 28px rgba(216, 184, 78, 0.18);
  filter: brightness(1.04);
}
.promise-strip--three { grid-template-columns: repeat(3, 1fr); }
.section-title .section-lede {
  max-width: 640px;
  margin: 1rem auto 0;
  color: var(--muted-on-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 500;
}
.missed-section .section-heading { margin-bottom: 1.5rem; }
.missed-disclaimer {
  margin: 0.5rem 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 0.92rem;
}
.missed-feed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  max-width: 820px;
}
.missed-feed li {
  display: grid;
  grid-template-columns: minmax(120px, 140px) 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(216, 184, 78, 0.12);
  border-radius: 8px;
  background: rgba(30, 22, 15, 0.55);
}
.missed-time {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
}
.missed-copy { color: var(--muted); margin: 0; font-size: 0.95rem; line-height: 1.45; }
.plan-tier-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.plan-tier-label--accent { color: var(--ivory); }
.opportunity-card-thumb {
  border-bottom: 1px solid rgba(216, 184, 78, 0.12);
}
.opportunity-card-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.opportunity-timing {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
}
.brief-signup--stack,
.final-signup--stack {
  grid-template-columns: 1fr;
  max-width: 520px;
  gap: 1rem;
}
.brief-signup--stack .button,
.final-signup--stack .button { width: auto; justify-self: start; }
/* Shared readable marketing email fields (Daily Brief, footer CTA, plan cards, etc.) */
.signup-input-readable,
.brief-email-field input,
.signup-strip-form input[type="email"],
.signup-form--inline input[type="email"],
.plan-signup-form input[type="email"] {
  border-radius: 999px;
  border: 1px solid #d8c4a4;
  background: #fffaf0;
  color: #1d1a14;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.signup-input-readable::placeholder,
.brief-email-field input::placeholder,
.signup-strip-form input[type="email"]::placeholder,
.signup-form--inline input[type="email"]::placeholder,
.plan-signup-form input[type="email"]::placeholder {
  color: rgba(74, 64, 51, 0.52);
}
.signup-input-readable:focus-visible,
.brief-email-field input:focus-visible,
.signup-strip-form input[type="email"]:focus-visible,
.signup-form--inline input[type="email"]:focus-visible,
.plan-signup-form input[type="email"]:focus-visible {
  outline: none;
  border-color: #9a6a22;
  box-shadow: 0 0 0 3px rgba(184, 138, 46, 0.22);
}
.signup-footnote {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--quiet);
  font-weight: 700;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.category-picker--pills {
  border-radius: 12px;
  border-color: rgba(216, 184, 78, 0.14);
  background: rgba(10, 7, 4, 0.28);
  padding: 1rem 1rem 0.85rem;
}
.category-picker--pills legend {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.category-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}
.category-pill {
  position: relative;
  cursor: pointer;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.category-pill input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.category-pill span {
  display: inline-block;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 184, 78, 0.22);
  background: rgba(255, 255, 255, 0.03);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.category-pill input:checked + span {
  border-color: rgba(216, 184, 78, 0.55);
  background: rgba(216, 184, 78, 0.12);
  color: var(--ivory);
}
.category-pill input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
@media (max-width: 900px) {
  .promise-strip--three { grid-template-columns: repeat(2, 1fr); }
  .missed-feed li { grid-template-columns: 1fr; gap: 0.35rem; }
}
@media (max-width: 720px) {
  body:has([data-site-top]) .nav-links { inset: 90px 14px auto 14px; }
}

/* --- Plan landing pages (editorial cream / deep green) --- */
body.plan-landing {
  color-scheme: light;
  --pl-bg: #f7f1e6;
  --pl-parchment: #efe4d1;
  --pl-ink: #1d1a14;
  --pl-muted: #6f604a;
  --pl-green: #102018;
  --pl-gold: #9a6a22;
  --pl-border: #d8c8a8;
  --pl-card: #fbf7ef;
  color: var(--pl-ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(143, 110, 48, 0.07), transparent 32rem),
    linear-gradient(180deg, #fcf9f3, #ede4d2);
  background-size: auto;
}

body.plan-landing:not(.pro-plan-page):not(.acquisition-desk-page) {
  background:
    linear-gradient(var(--pl-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--pl-border) 1px, transparent 1px),
    var(--pl-bg);
  background-size: 48px 48px, 48px 48px, auto;
}
body.plan-landing .navbar {
  border-bottom: 1px solid var(--pl-border);
  background: rgba(247, 241, 230, 0.92);
}
body.plan-landing .navbar.is-scrolled {
  background: rgba(251, 247, 239, 0.95);
  border-color: var(--pl-border);
  backdrop-filter: blur(12px);
}
body.plan-landing .brand > span:last-child span:first-child { color: var(--pl-green); }
body.plan-landing .brand > span:last-child span:last-child { color: var(--pl-gold); }
body.plan-landing .brand-mark {
  border-color: var(--pl-border);
  color: var(--pl-gold);
}
body.plan-landing .nav-links {
  color: var(--pl-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
body.plan-landing .nav-links a:not(.button):hover { color: var(--pl-green); }
body.plan-landing .menu-toggle {
  border-color: var(--pl-border);
  background: var(--pl-card);
}
body.plan-landing .menu-toggle span { background: var(--pl-green); }
body.plan-landing .eyebrow {
  color: var(--pl-gold);
  letter-spacing: 0.14em;
}
body.plan-landing h1,
body.plan-landing h2,
body.plan-landing h3 {
  color: var(--pl-green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}
body.plan-landing .hero-subhead,
body.plan-landing .section-inner > p,
body.plan-landing .feature-card p,
body.plan-landing .plan-note {
  color: var(--pl-muted);
}
body.plan-landing .button {
  background: var(--pl-green);
  color: var(--pl-bg);
  border: 1px solid var(--pl-gold);
  box-shadow: 0 10px 28px rgba(16, 32, 24, 0.12);
}
body.plan-landing .button:hover {
  box-shadow: 0 14px 36px rgba(16, 32, 24, 0.18);
}
body.plan-landing .button-secondary,
body.plan-landing .button-outline {
  background: transparent;
  color: var(--pl-green);
  border: 1px solid var(--pl-border);
}
body.plan-landing .button-secondary:hover,
body.plan-landing .button-outline:hover {
  border-color: var(--pl-gold);
  color: var(--pl-gold);
}
body.plan-landing .plan-hero .page-hero-grid {
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
}
body.plan-landing .plan-proof-card,
body.plan-landing .proof-card {
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  color: var(--pl-ink);
  box-shadow: 0 18px 48px rgba(29, 26, 20, 0.06);
}
body.plan-landing .plan-section.band {
  background: var(--pl-parchment);
  border-block: 1px solid var(--pl-border);
}
body.plan-landing .feature-card {
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
}
body.plan-landing .feature-card h3 { color: var(--pl-green); }
body.plan-landing .comparison-table {
  border: 1px solid var(--pl-border);
  background: var(--pl-card);
}
body.plan-landing .comparison-table > div {
  border-color: rgba(216, 200, 168, 0.7);
}
body.plan-landing .comparison-head span,
body.plan-landing .comparison-table span:first-child {
  color: var(--pl-green);
}
body.plan-landing .sample-alert-card {
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
}
body.plan-landing .sample-alert-card .detail-list strong { color: var(--pl-green); }
body.plan-landing .plan-text-link {
  color: var(--pl-gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  font-weight: 600;
}
body.plan-landing .plan-text-link:hover { color: var(--pl-green); }
body.plan-landing .plan-dual-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
body.plan-landing .criteria-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}
body.plan-landing .criteria-pill {
  margin: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--pl-border);
  background: var(--pl-card);
  color: var(--pl-muted);
}
body.plan-landing .criteria-pill:hover {
  border-color: var(--pl-gold);
  color: var(--pl-green);
}
body.plan-landing .plan-cta-band {
  background: var(--pl-green);
  color: var(--pl-bg);
  border-block: 1px solid var(--pl-gold);
}
body.plan-landing .plan-cta-band h2,
body.plan-landing .plan-cta-band .eyebrow { color: var(--pl-bg); }
body.plan-landing .plan-cta-band .plan-note { color: rgba(247, 241, 230, 0.85); }
body.plan-landing .plan-cta-band .button {
  background: var(--pl-bg);
  color: var(--pl-green);
  border-color: var(--pl-gold);
}
body.plan-landing .plan-cta-band .button-secondary {
  background: transparent;
  color: var(--pl-bg);
  border-color: rgba(247, 241, 230, 0.5);
}
body.plan-landing .acquisition-desk-form .wizard-fields {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
body.plan-landing .acquisition-desk-form label span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pl-muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
body.plan-landing .acquisition-desk-form input,
body.plan-landing .acquisition-desk-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--pl-border);
  border-radius: 6px;
  background: var(--pl-card);
  color: var(--pl-ink);
}
body.plan-landing .footer {
  background: var(--pl-parchment);
  border-top: 1px solid var(--pl-border);
  color: var(--pl-muted);
}
body.plan-landing .footer a:hover { color: var(--pl-green); }
body.plan-landing .footer-disclaimer {
  border-color: var(--pl-border);
  color: var(--pl-muted);
}
body.plan-landing .skip-link {
  background: var(--pl-green);
  color: var(--pl-bg);
}
body.plan-landing details {
  border: 1px solid var(--pl-border);
  background: var(--pl-card);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}
body.plan-landing details summary { cursor: pointer; font-weight: 600; color: var(--pl-green); }
@media (max-width: 880px) {
  body.plan-landing .plan-dual-cards { grid-template-columns: 1fr; }
}

/* Premium homepage + plan-page refinements */
.brand-premium {
  gap: 0.82rem;
  letter-spacing: 0.08em;
}
.brand-wordmark {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 0.12rem;
  align-items: baseline;
  line-height: 0.95;
}
.brand-wordmark small {
  grid-column: 1 / -1;
  margin-top: 0.18rem;
  color: var(--quiet);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.brand-mark {
  position: relative;
  background:
    radial-gradient(circle at 50% 35%, rgba(216, 184, 78, 0.18), transparent 56%),
    rgba(18, 13, 8, 0.72);
  box-shadow: inset 0 0 0 1px rgba(245, 239, 227, 0.04), 0 12px 24px rgba(0, 0, 0, 0.24);
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(216, 184, 78, 0.28);
  border-radius: inherit;
}
.signal-signup {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  max-width: 980px;
  margin: clamp(1.8rem, 4vw, 3rem) auto 0;
}
.signup-form--inline,
.plan-signup-form {
  margin-top: 0;
}
.plan-signup-form {
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
.plan-signup-form .form-message {
  grid-column: 1 / -1;
}
.step-card,
.premium-feature-card {
  position: relative;
  overflow: hidden;
}
.step-card::before,
.premium-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(216, 184, 78, 0.12), transparent 42%);
  opacity: 0.9;
}
.step-card:hover,
.listing-card:hover,
.feature-card:hover,
.plan-card:hover {
  transform: translateY(-3px);
}
.example-compact .opportunity-card {
  grid-template-columns: minmax(180px, 0.58fr) minmax(0, 1fr);
}
.example-compact .opportunity-content {
  padding: clamp(1rem, 2.6vw, 1.5rem);
}
.example-compact .detail-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.brief-preview {
  background:
    linear-gradient(145deg, rgba(245, 239, 227, 0.96), rgba(224, 211, 184, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(216, 184, 78, 0.18), transparent 38%);
}
.signup-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(216, 184, 78, 0.17), transparent 30rem),
    linear-gradient(135deg, rgba(36, 26, 17, 0.92), rgba(15, 12, 9, 0.96));
}
.signup-inner {
  width: min(1080px, calc(100% - clamp(28px, 5vw, 80px)));
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}
.faq-list details {
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.faq-list details[open] {
  border-color: var(--line-strong);
  background: rgba(42, 31, 21, 0.78);
}
.pro-hero {
  background:
    radial-gradient(circle at 78% 12%, rgba(216, 184, 78, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(24, 18, 12, 0.96), rgba(24, 18, 12, 0.82));
}
.pro-hero h1,
.pro-hero h2,
.pro-hero h3 {
  color: #f7efe1;
}
.pro-hero .hero-subhead,
.pro-hero .plan-note,
.pro-hero p {
  color: #d9cdb8;
}
.pro-hero .eyebrow {
  color: #d8b84e;
}
.pro-proof-card {
  align-self: stretch;
}
.pro-feature-grid {
  grid-template-columns: repeat( auto-fit, minmax(220px, 1fr) );
}
.feature-icon {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  margin-bottom: 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(340px, 0.9fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: start;
}
.embedded-checkout-panel {
  display: grid;
  gap: 0.9rem;
}
.embedded-checkout-panel label span,
.checkout-preferences legend {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.embedded-checkout-panel input[type="email"],
.embedded-checkout-panel input[type="text"],
.embedded-checkout-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 7, 4, 0.36);
  color: var(--ivory);
  padding: 0.82rem 0.9rem;
}
.embedded-checkout-panel textarea {
  resize: vertical;
}
.checkout-preferences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.8rem;
  margin: 0;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.checkout-preferences legend {
  padding: 0 0.35rem;
}
.checkout-preferences label {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
}
body.plan-landing.acquisition-desk-page {
  background:
    radial-gradient(circle at 78% 0%, rgba(143, 110, 48, 0.15), transparent 32rem),
    linear-gradient(180deg, #f4eddf, #ede2ce);
}
body.plan-landing .desk-hero {
  padding-top: clamp(64px, 8vw, 104px);
}
body.plan-landing .editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
body.plan-landing .image-proof-card {
  overflow: hidden;
}
body.plan-landing .image-proof-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: -1.25rem -1.25rem 1.1rem;
  max-width: calc(100% + 2.5rem);
}
body.plan-landing .embedded-checkout-panel input,
body.plan-landing .embedded-checkout-panel textarea {
  background: rgba(255, 252, 245, 0.84);
  color: var(--pl-ink);
  border-color: var(--pl-border);
}
body.plan-landing .checkout-preferences,
body.plan-landing .embedded-checkout-panel {
  border-color: var(--pl-border);
}
body.plan-landing .checkout-preferences label,
body.plan-landing .embedded-checkout-panel label span,
body.plan-landing .checkout-preferences legend {
  color: var(--pl-muted);
}

@media (max-width: 980px) {
  .signal-signup,
  .checkout-layout,
  body.plan-landing .editorial-split {
    grid-template-columns: 1fr;
  }
  .example-compact .opportunity-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand-wordmark small {
    display: none;
  }
  .signup-form,
  .signup-form--inline {
    grid-template-columns: 1fr;
  }
  .checkout-preferences {
    grid-template-columns: 1fr;
  }
  .example-compact .detail-list {
    grid-template-columns: 1fr;
  }
  .signup-inner--footer-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .signup-inner--footer-cta .footer-cta-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .signup-form--footer-cta .button {
    justify-self: center;
    width: min(420px, 100%);
  }
}

/* ==========================================================================
   ACCOUNT / AUTH PAGES
   ========================================================================== */

/* Nav auth enhancements */
.nav-plan-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  border-radius: 3px;
  padding: 1px 5px;
  margin-left: 4px;
  vertical-align: middle;
  line-height: 1.4;
}
.nav-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

/* Page shell */
.account-page #main .account-shell {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
body.account-page {
  color: #1d1710;
  background:
    linear-gradient(rgba(154, 100, 27, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 100, 27, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 20% 0%, rgba(216, 184, 78, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(255, 250, 242, 0.95), rgba(245, 237, 224, 0.98)),
    #f5ede0;
  background-size: 48px 48px, 48px 48px, auto, auto;
}
.account-shell--wide {
  max-width: 1060px !important;
}

/* Alerts */
.account-alert {
  border-radius: 6px;
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.account-alert--error {
  background: rgba(201, 121, 104, 0.15);
  border: 1px solid rgba(201, 121, 104, 0.35);
  color: #f0a898;
}
.account-alert--success {
  background: rgba(134, 184, 137, 0.13);
  border: 1px solid rgba(134, 184, 137, 0.3);
  color: #a5d4a7;
}

/* Billing banner */
.account-billing-banner {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1.5rem;
  background: rgba(185, 140, 74, 0.12);
}
.account-billing-banner--access_risk,
.account-billing-banner--payment_issue {
  background: rgba(201, 121, 104, 0.12);
  border-color: rgba(201, 121, 104, 0.25);
}
.account-billing-banner__inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
}
.account-billing-banner__inner strong {
  color: var(--ivory);
}
.account-billing-banner__cta {
  margin-left: auto;
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
  white-space: nowrap;
}

/* Auth card (login/signup/forgot) */
.account-card {
  background: rgba(255, 251, 244, 0.94);
  border: 1px solid rgba(154, 100, 27, 0.18);
  border-radius: 14px;
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 22px 60px rgba(33, 26, 18, 0.08);
}
.account-card--narrow {
  max-width: 440px;
  margin: 0 auto;
}
.account-card__header {
  margin-bottom: 1.75rem;
}
.account-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: #153223;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.account-card__subtitle {
  font-size: 0.93rem;
  color: #5f5548;
  margin: 0;
  line-height: 1.55;
}
.account-card__body {
  font-size: 0.9rem;
  color: var(--quiet);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.account-card__footer-link {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: #6c5e4d;
  text-align: center;
}
.account-card__footer-link a {
  color: var(--gold);
  text-decoration: none;
}
.account-card__footer-link a:hover {
  text-decoration: underline;
}

/* Forms */
.account-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.account-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.account-form__label {
  font-size: 0.83rem;
  font-weight: 600;
  color: #6f614f;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.account-form__label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.account-form__label-link {
  font-size: 0.8rem;
  color: #8a6420;
  text-decoration: none;
}
.account-form__label-link:hover { text-decoration: underline; }
.account-form__optional {
  font-size: 0.75rem;
  color: var(--quiet);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.account-form__input {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(154, 100, 27, 0.22);
  border-radius: 8px;
  color: #1d1710;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.65rem 0.85rem;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.account-form__input:focus {
  border-color: #a9782e;
  background: rgba(255, 255, 255, 0.95);
}
.account-form__input::placeholder { color: #8a7a66; }
.account-form__input--readonly {
  opacity: 0.6;
  cursor: not-allowed;
}
.account-form__textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ivory);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.65rem 0.85rem;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  resize: vertical;
  min-height: 100px;
}
.account-form__textarea:focus { border-color: var(--gold); }
.account-form__hint {
  font-size: 0.78rem;
  color: var(--quiet);
  margin: 0;
}
.account-form__submit {
  background: #a56f1d;
  border: none;
  border-radius: 8px;
  color: #fffaf1;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.5rem;
  transition: opacity 0.15s, background 0.15s;
  text-align: center;
  margin-top: 0.25rem;
}
.account-form__submit:hover { opacity: 0.88; }
.account-form__submit:disabled { opacity: 0.5; cursor: not-allowed; }
.account-form__submit--secondary {
  background: transparent;
  border: 1px solid rgba(154, 100, 27, 0.22);
  color: #153223;
}
.account-form__submit--secondary:hover {
  background: rgba(154, 100, 27, 0.05);
  opacity: 1;
}

/* Dashboard */
.account-dashboard__hero {
  padding: 2.5rem 0 1.5rem;
}
.account-dashboard__greeting {
  font-size: 0.9rem;
  color: var(--quiet);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.account-dashboard__plan-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.account-dashboard__plan-status {
  font-size: 0.78rem;
  color: var(--quiet);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.account-dashboard__headline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.account-dashboard__subline {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 0 1.75rem;
}

/* Plan badges */
.account-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  line-height: 1.4;
}
.account-badge--free {
  background: rgba(175, 161, 141, 0.18);
  color: var(--quiet);
  border: 1px solid rgba(175, 161, 141, 0.3);
}
.account-badge--premium {
  background: rgba(216, 184, 78, 0.18);
  color: var(--gold);
  border: 1px solid rgba(216, 184, 78, 0.35);
}
.account-badge--acquisition_desk {
  background: rgba(216, 184, 78, 0.25);
  color: var(--gold);
  border: 1px solid rgba(216, 184, 78, 0.5);
}

/* CTA button */
.account-cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}
.account-cta-button:hover { opacity: 0.88; }

/* Dashboard cards grid */
.account-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  padding-bottom: 3rem;
}
.account-cards--billing,
.account-cards--settings {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.account-card__icon {
  font-size: 1.5rem;
  color: var(--muted-gold);
  margin-bottom: 0.75rem;
}
.account-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 0.6rem;
  line-height: 1.2;
}
.account-card__cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.account-card__cta:hover { text-decoration: underline; }
.account-card__cta--primary {
  background: var(--gold);
  color: var(--bg);
  padding: 0.6rem 1.25rem;
  border-radius: 5px;
  transition: opacity 0.15s;
}
.account-card__cta--primary:hover { opacity: 0.88; text-decoration: none; }
.account-card__cta--danger {
  color: var(--red);
  background: transparent;
  border: 1px solid rgba(201, 121, 104, 0.35);
  padding: 0.55rem 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.87rem;
  font-weight: 600;
  display: inline-block;
  transition: background 0.15s;
}
.account-card__cta--danger:hover {
  background: rgba(201, 121, 104, 0.1);
}
.account-card--upgrade {
  border-color: rgba(216, 184, 78, 0.3);
  background: rgba(216, 184, 78, 0.07);
}
.account-card--desk-primary {
  border-color: rgba(216, 184, 78, 0.4);
  background: rgba(216, 184, 78, 0.1);
}
.account-card--desk-upsell {
  border-color: var(--line);
}
.account-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Page header */
.account-page-header {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}
.account-page-header__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 0.45rem;
}
.account-page-header__subtitle {
  font-size: 0.93rem;
  color: var(--quiet);
  margin: 0;
  line-height: 1.55;
}

/* Locked state */
.account-locked {
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  max-width: 480px;
  margin: 0 auto;
}
.account-locked__icon {
  font-size: 2rem;
  color: var(--muted-gold);
  margin-bottom: 1rem;
  opacity: 0.6;
}
.account-locked__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 0.75rem;
}
.account-locked__body {
  font-size: 0.9rem;
  color: var(--quiet);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

/* Listings */
.account-listings-toolbar {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.account-listings-search {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ivory);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.6rem 0.85rem;
  outline: none;
}
.account-listings-search:focus { border-color: var(--gold); }
.account-listings-sort {
  display: flex;
  gap: 0.4rem;
}
.account-listings-sort__btn {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--quiet);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  transition: all 0.15s;
}
.account-listings-sort__btn--active,
.account-listings-sort__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.account-listings-loading {
  text-align: center;
  padding: 3rem 0;
  color: var(--quiet);
  font-size: 0.9rem;
}
.account-listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.account-listing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s;
}
.account-listing-card:hover { border-color: var(--line-strong); }
.account-listing-card__image {
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.account-listing-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.account-listing-card__body {
  padding: 0.9rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.account-listing-card__badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.account-listing-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
}
.account-listing-badge--pro { background: rgba(216, 184, 78, 0.2); color: var(--gold); }
.account-listing-badge--best-pick { background: rgba(134, 184, 137, 0.2); color: #86b889; }
.account-listing-badge--sold { background: rgba(201, 121, 104, 0.2); color: var(--red); }
.account-listing-badge--ended { background: rgba(175, 161, 141, 0.15); color: var(--quiet); }
.account-listing-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.3;
  margin: 0 0 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.account-listing-card__meta {
  font-size: 0.77rem;
  color: var(--quiet);
  margin-bottom: 0.6rem;
}
.account-listing-card__prices {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}
.account-listing-price { color: var(--muted); }
.account-listing-value { color: var(--gold); font-weight: 600; }
.account-listing-profit { color: var(--green); font-weight: 600; }
.account-listing-card__actions {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.account-listing-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(216, 184, 78, 0.3);
  border-radius: 4px;
  transition: all 0.15s;
}
.account-listing-card__link:hover { background: rgba(216, 184, 78, 0.1); }
.account-listing-card__link--secondary {
  color: var(--quiet);
  border-color: var(--line);
}
.account-listing-card__link--secondary:hover { color: var(--muted); background: rgba(255,255,255,0.04); }
.account-listings-pagination {
  text-align: center;
  padding: 2rem 0;
}
.account-listings-load-more {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  padding: 0.65rem 1.5rem;
  transition: all 0.15s;
}
.account-listings-load-more:hover { border-color: var(--gold); color: var(--gold); }

/* Billing */
.account-billing-dl {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0.65rem 1rem;
  font-size: 0.88rem;
  margin: 0 0 0.25rem;
}
.account-billing-dl dt {
  color: var(--quiet);
  font-weight: 500;
}
.account-billing-dl dd {
  margin: 0;
  color: var(--ivory);
}

/* Preferences */
.account-prefs-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.account-prefs-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
}
.account-prefs-section__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 0.35rem;
}
.account-prefs-section__desc {
  font-size: 0.85rem;
  color: var(--quiet);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}
.account-prefs-toggles {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.account-prefs-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  align-items: start;
  cursor: pointer;
}
.account-prefs-toggle input[type="checkbox"] {
  grid-row: 1 / 3;
  margin-top: 3px;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.account-prefs-toggle__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.3;
}
.account-prefs-toggle__desc {
  font-size: 0.8rem;
  color: var(--quiet);
  line-height: 1.45;
}
.account-prefs-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.6rem;
}
.account-prefs-category {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  transition: all 0.15s;
}
.account-prefs-category:hover { border-color: var(--gold); color: var(--ivory); }
.account-prefs-category input[type="checkbox"] {
  accent-color: var(--gold);
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.account-prefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.account-prefs-actions {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 3rem;
}
.account-prefs-actions .account-form__submit {
  min-width: 160px;
  margin-top: 0;
}

@media (max-width: 800px) {
  .account-dashboard__headline { font-size: 1.8rem; }
  .account-cards { grid-template-columns: 1fr; }
  .account-cards--billing, .account-cards--settings { grid-template-columns: 1fr; }
  .account-prefs-grid { grid-template-columns: 1fr; }
  .account-listings-toolbar { flex-direction: column; align-items: stretch; }
  .account-billing-dl { grid-template-columns: 1fr; gap: 0.25rem; }
  .account-billing-dl dt { color: var(--quiet); font-size: 0.78rem; }
}
@media (max-width: 520px) {
  .account-page #main .account-shell { padding: 1.5rem 1rem 4rem; }
  .account-card { padding: 1.5rem 1.25rem; }
  .account-dashboard__headline { font-size: 1.6rem; }
  .account-page-header { padding: 1.5rem 0 1rem; }
  .account-page-header__title { font-size: 1.7rem; }
}

/* --- Homepage refresh: how-it-works strip (4-up), example memo, desk FAQ --- */
.promise-strip--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .promise-strip--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .promise-strip--four { grid-template-columns: 1fr; }
}

.trust-chip-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  justify-content: center;
  list-style: none;
  margin: 1.25rem auto 0;
  padding: 0 1rem;
  max-width: 52rem;
}
.trust-chip-strip li {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(42, 36, 28, 0.75);
  border: 1px solid rgba(120, 100, 70, 0.35);
  padding: 0.35rem 0.65rem;
  border-radius: 2px;
  background: rgba(255, 251, 242, 0.75);
}
.catalogue-hero .hero-microcopy {
  margin-top: 1rem;
  max-width: 46rem;
  line-height: 1.55;
  color: rgba(58, 48, 35, 0.76);
}
.plan-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .plan-teaser-grid { grid-template-columns: 1fr; }
}
.plan-callout {
  font-weight: 600;
  line-height: 1.45;
}

.example-compact__flow {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: min(1040px, 100%);
  margin-inline: auto;
}
.example-compact__intro .eyebrow {
  letter-spacing: 0.14em;
}
.example-compact__lede {
  margin: 0.35rem 0 0;
  max-width: 52ch;
  color: var(--muted-on-light);
  line-height: 1.55;
}
.example-memo-card {
  display: grid;
  grid-template-columns: minmax(200px, 0.42fr) minmax(0, 1fr);
  gap: 0;
  border-radius: 14px;
  border: 1px solid rgba(216, 199, 165, 0.55);
  background: rgba(255, 252, 246, 0.92);
  box-shadow: 0 18px 50px rgba(24, 18, 12, 0.08);
  overflow: hidden;
}
.example-memo-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 239, 225, 0.6);
  border-right: 1px solid rgba(216, 199, 165, 0.35);
}
.example-memo-card__media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.example-memo-card__body {
  padding: clamp(1rem, 2.4vw, 1.45rem);
}
.example-memo-card__body h3 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}
.example-memo-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.example-memo-rows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.42rem 0;
  border-bottom: 1px solid rgba(216, 199, 165, 0.35);
  font-size: 0.92rem;
  color: var(--muted-on-light);
}
.example-memo-rows strong {
  color: var(--text-on-light);
  font-weight: 700;
}
.example-memo-footnote {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted-on-light);
}
@media (max-width: 720px) {
  .example-memo-card {
    grid-template-columns: 1fr;
  }
  .example-memo-card__media {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 199, 165, 0.35);
    max-height: 200px;
  }
}

.desk-features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.desk-feature-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .desk-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Acquisition Desk FAQ — match homepage FAQ band */
.desk-faq-band .faq-inner {
  max-width: min(920px, 100%);
}
.desk-faq-band .desk-faq-list details {
  border-bottom: 1px solid rgba(216, 199, 165, 0.45);
  padding: 0.85rem 0;
}
.desk-faq-band .desk-faq-list summary,
.desk-faq-band .desk-faq-list details p {
  color: var(--text-on-light);
}
.desk-faq-band .desk-faq-list details p {
  color: var(--muted-on-light);
}
.desk-faq-band .desk-faq-list details[open] {
  background: rgba(255, 251, 244, 0.55);
  border-radius: 8px;
  padding-inline: 0.35rem;
}
.desk-faq-toggle {
  margin: 1rem 0 0;
  padding: 0.5rem 0;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pl-green);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.desk-faq-toggle:focus-visible {
  outline: 2px solid var(--pl-gold);
  outline-offset: 2px;
}

/* Museum example image — centered in card */
body.plan-landing #museum-example .image-proof-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
body.plan-landing #museum-example .image-proof-card img {
  width: auto;
  max-width: 100%;
  max-height: min(320px, 48vw);
  margin: 0 0 1rem;
  object-fit: contain;
  border-radius: 8px;
}

/* Pro plan editorial hero + imagery */
body.plan-landing.pro-plan-page .pro-hero--editorial {
  background: transparent;
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--pl-border);
}
body.plan-landing.pro-plan-page .pro-hero--editorial h1,
body.plan-landing.pro-plan-page .pro-hero--editorial .hero-subhead {
  color: var(--pl-green);
}
body.plan-landing.pro-plan-page .pro-hero--editorial .hero-subhead {
  color: var(--pl-muted);
}
.pro-hero-grid {
  align-items: center;
}
.pro-hero-panel {
  border-radius: 14px;
  border: 1px solid var(--pl-border);
  background: var(--pl-card);
  box-shadow: 0 16px 40px rgba(29, 26, 20, 0.07);
  padding: clamp(1rem, 2.2vw, 1.35rem);
  max-width: 400px;
}
.pro-hero-panel__chrome {
  display: flex;
  gap: 6px;
  margin-bottom: 0.75rem;
}
.pro-hero-panel__chrome span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(26, 22, 16, 0.12);
}
.pro-hero-panel__label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--pl-gold);
  margin: 0;
}
.pro-hero-panel__title {
  margin: 0.35rem 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--pl-green);
}
.pro-hero-panel__rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.pro-hero-panel__rows li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--pl-muted);
  border-bottom: 1px solid rgba(216, 200, 168, 0.55);
  padding-bottom: 0.35rem;
}
.pro-hero-panel__rows strong {
  color: var(--pl-ink);
  font-weight: 700;
}
.pro-hero-panel__note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--pl-muted);
  font-style: italic;
}
.pro-visual-strip {
  padding: 0 0 clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--pl-border);
}
.pro-visual-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 2vw, 1rem);
}
.pro-visual-strip__fig {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(216, 200, 168, 0.65);
}
.pro-visual-strip__fig img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
@media (max-width: 820px) {
  .pro-hero-grid {
    grid-template-columns: 1fr;
  }
  .pro-hero-panel {
    max-width: none;
  }
  .pro-visual-strip__inner {
    grid-template-columns: 1fr;
  }
  .pro-visual-strip__fig img {
    height: 220px;
  }
}

.pro-checkout-dialog {
  max-width: min(420px, 92vw);
  border: 1px solid var(--pl-border, #d8c8a8);
  border-radius: 12px;
  padding: 0;
  background: var(--pl-card, #fbf7ef);
  color: var(--pl-ink, #1d1a14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}
.pro-checkout-dialog::backdrop {
  background: rgba(12, 9, 6, 0.55);
}
.pro-checkout-dialog__inner {
  padding: 1.5rem 1.35rem 1.35rem;
  position: relative;
}
.pro-checkout-dialog__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--pl-muted, #6f604a);
}
.pro-checkout-dialog__hint {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--pl-muted, #6f604a);
  margin: 0.75rem 0 0;
}

.market-index-section{padding-top:24px}
.index-shell{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,1fr) minmax(220px,.72fr);gap:18px;align-items:stretch;padding:22px;border:1px solid rgba(135,108,52,.22);border-radius:24px;background:linear-gradient(135deg,rgba(248,244,235,.94),rgba(240,232,218,.86));box-shadow:0 18px 50px rgba(32,24,16,.08)}
.index-shell__primary,.index-shell__chart,.index-shell__secondary article,.index-vertical-card{border:1px solid rgba(135,108,52,.16);border-radius:18px;background:rgba(255,255,255,.6)}
.index-shell__primary{padding:22px}
.index-shell__label{margin:0 0 8px;font:700 .75rem/1.2 Arial,sans-serif;letter-spacing:.12em;text-transform:uppercase;color:#7d6842}
.index-shell__primary h3{margin:0 0 8px;font:400 clamp(1.7rem,3vw,2.5rem)/1.02 Georgia,serif;color:#1f1710}
.index-shell__value-row{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.index-shell__value-row strong{font:400 clamp(2.5rem,5vw,4rem)/1 Georgia,serif;color:#0f291f}
.index-badge{display:inline-flex;align-items:center;min-height:30px;padding:5px 12px;border-radius:999px;border:1px solid rgba(135,108,52,.22);font:700 .74rem/1 Arial,sans-serif;letter-spacing:.08em;text-transform:uppercase;color:#725d34;background:rgba(255,255,255,.72)}
.index-shell__change,.index-shell__note,.index-vertical-card p{margin:10px 0 0;color:#5b4a33;font:400 15px/1.65 Arial,sans-serif}
.index-shell__chart{padding:18px 18px 12px}
.index-range-tabs{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
.index-range-tab{border:1px solid rgba(135,108,52,.2);background:rgba(255,255,255,.72);color:#6a5634;border-radius:999px;padding:6px 12px;font:700 .74rem/1 Arial,sans-serif;letter-spacing:.06em;text-transform:uppercase;cursor:pointer}
.index-range-tab.is-active{background:#1f3d30;color:#f4ecdc;border-color:#1f3d30}
[data-index-chart]{width:100%;height:auto;display:block;overflow:visible}
[data-index-chart] path{fill:none;stroke:#1f3d30;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round}
.index-shell__secondary{display:grid;gap:12px}
.index-shell__secondary article{padding:18px}
.index-shell__secondary span,.index-vertical-card__status{display:block;margin-bottom:8px;color:#7d6842;font:700 .73rem/1.2 Arial,sans-serif;letter-spacing:.1em;text-transform:uppercase}
.index-shell__secondary strong,.index-vertical-card strong{font:400 clamp(1.5rem,3vw,2.2rem)/1.05 Georgia,serif;color:#1f1710}
.index-vertical-strip{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:14px;margin:0 0 22px}
.index-vertical-card{padding:18px}
.index-vertical-card.is-live{background:linear-gradient(180deg,rgba(246,239,225,.95),rgba(237,246,240,.9))}
.index-vertical-card p{font-size:14px}
@media (max-width:960px){.index-shell{grid-template-columns:1fr}.index-shell__secondary{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (max-width:640px){.index-shell{padding:18px;border-radius:20px}.index-shell__secondary{grid-template-columns:1fr}.index-shell__value-row strong{font-size:2.45rem}}

/* V2.26 platform homepage rebuild */
body.platform-homepage {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 243, 218, 0.78), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(215, 176, 103, 0.16), transparent 24%),
    linear-gradient(180deg, #fcf8f1 0%, #f7f2e9 42%, #f9f4ec 100%);
  color: #0e2340;
}
body.platform-homepage .vm-hero .reveal {
  opacity: 1;
  transform: none;
}

.vm-homepage {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 28px 56px;
}
.vm-header,
.vm-header__nav,
.vm-header__actions {
  display: flex;
  align-items: center;
}
.vm-header {
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0 20px;
}
.vm-brand {
  color: inherit;
  text-transform: none;
  letter-spacing: 0;
}
.vm-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.vm-brand-lockup__mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}
.vm-brand-lockup__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vm-brand-lockup__word {
  color: #10294b;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.72rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.vm-brand-lockup__text small {
  color: #d38c22;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.vm-header__nav {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.vm-header__nav a,
.vm-header__login {
  color: #0e2340;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
}
.vm-header__nav a:hover,
.vm-header__nav a:focus-visible,
.vm-header__login:hover,
.vm-header__login:focus-visible {
  color: #c98620;
}
.vm-header__actions {
  gap: 22px;
  flex: 0 0 auto;
}
.vm-header__cta {
  background: linear-gradient(180deg, #dea340 0%, #c98620 100%);
  color: #fffdf8;
  border: 0;
  white-space: nowrap;
  padding-inline: 22px;
  box-shadow: 0 14px 32px rgba(201, 134, 32, 0.18);
}
.vm-header__login {
  white-space: nowrap;
}
.vm-homepage h1,
.vm-homepage h2,
.vm-homepage .vm-index-value,
.vm-homepage .vm-opportunity-row strong,
.vm-homepage .vm-mini-panel__sale strong,
.vm-homepage .vm-quote p {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
}
.vm-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 4vw, 54px);
  align-items: start;
  padding: 20px 0 30px;
}
.vm-hero__copy h1 {
  margin: 0;
  max-width: 13.2ch;
  font-size: clamp(2.95rem, 4.9vw, 4.45rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #10294b;
}
.vm-hero__copy h1 span {
  color: #c98620;
}
.vm-hero__rule {
  width: 92px;
  height: 2px;
  margin: 26px 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c98620, rgba(201, 134, 32, 0.08));
}
.vm-hero__lede {
  max-width: 31rem;
  margin: 0 0 24px;
  font-size: 1.02rem;
  line-height: 1.68;
  color: #324860;
}
.vm-feature-list {
  list-style: none;
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
}
.vm-feature-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}
.vm-feature-list__icon,
.vm-workflow__icon,
.vm-final-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(201, 134, 32, 0.42);
  background: rgba(255, 252, 246, 0.85);
  box-shadow: 0 10px 24px rgba(201, 134, 32, 0.1);
}
.vm-feature-list__icon svg,
.vm-workflow__icon svg,
.vm-inline-icon svg,
.vm-check svg,
.vm-final-cta__icon svg {
  width: 24px;
  height: 24px;
  stroke: #c98620;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vm-feature-list strong,
.vm-workflow__step strong,
.vm-vertical-card__head strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.26rem;
  font-weight: 700;
  color: #0e2340;
}
.vm-feature-list p,
.vm-workflow__step p,
.vm-vertical-card p,
.vm-trust-point p,
.vm-final-cta__copy p,
.vm-mini-panel p,
.vm-opportunity-row span,
.vm-opportunity-row small {
  margin: 0;
  color: #41566f;
  font-size: 1rem;
  line-height: 1.68;
}
.vm-hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.vm-hero__primary,
.vm-final-cta .button {
  background: linear-gradient(180deg, #dea340 0%, #c98620 100%);
  color: #fffdf8;
  border: 0;
  min-height: 56px;
  padding-inline: 24px;
  box-shadow: 0 18px 40px rgba(201, 134, 32, 0.18);
}
.vm-hero__secondary {
  min-height: 56px;
  padding-inline: 22px;
  border-color: rgba(14, 35, 64, 0.18);
  color: #0e2340;
  background: rgba(255, 250, 242, 0.65);
}
.vm-inline-icon {
  display: inline-flex;
  margin-left: 8px;
  vertical-align: middle;
}
.vm-inline-icon svg {
  width: 18px;
  height: 18px;
}
.vm-trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}
.vm-avatar-group {
  display: flex;
  align-items: center;
}
.vm-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border-radius: 999px;
  border: 3px solid #faf4ea;
  color: #fffdf8;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.vm-avatar:first-child {
  margin-left: 0;
}
.vm-avatar--gold { background: linear-gradient(180deg, #d7a95a, #b67a1d); }
.vm-avatar--navy { background: linear-gradient(180deg, #27486c, #11233b); }
.vm-avatar--slate { background: linear-gradient(180deg, #617086, #384b63); }
.vm-avatar--paper { background: linear-gradient(180deg, #d6b27b, #8a6235); }
.vm-stars {
  color: #d49b31;
  letter-spacing: 0.18em;
  font-size: 1.1rem;
}
.vm-trust-row p {
  margin: 4px 0 0;
  color: #41566f;
}
.vm-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.vm-orb {
  position: relative;
  width: 116%;
  min-height: 560px;
  margin-top: -34px;
  margin-left: -8%;
}
.vm-orb::before,
.vm-orb::after {
  content: "";
  position: absolute;
  inset: 8% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 234, 188, 0.48) 0%, rgba(255, 234, 188, 0) 66%);
  filter: blur(18px);
}
.vm-orb::after {
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 216, 141, 0.26) 0%, rgba(255, 216, 141, 0) 72%);
  filter: blur(30px);
}
.vm-orb svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  animation: vmOrbFloat 16s ease-in-out infinite;
}
.vm-orb__halo path {
  fill: none;
  stroke: rgba(255, 215, 144, 0.84);
  stroke-width: 12;
}
.vm-orb__lines path {
  fill: none;
  stroke: url(#vm-orb-line);
  stroke-width: 1.8;
  opacity: 1;
}
.vm-orb__lines--accent path {
  stroke-width: 5;
  opacity: 1;
}
.vm-orb__dots circle {
  fill: rgba(255, 214, 139, 0.92);
}

.vm-dashboard,
.vm-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.93fr);
  gap: 18px;
  margin-top: 18px;
}
.vm-card,
.vm-block {
  border: 1px solid rgba(14, 35, 64, 0.12);
  border-radius: 20px;
  background: rgba(255, 251, 244, 0.66);
  box-shadow: 0 18px 38px rgba(34, 43, 57, 0.05);
  backdrop-filter: blur(14px);
}
.vm-card {
  padding: 18px 18px 16px;
}
.vm-card__head,
.vm-index-grid,
.vm-index-detail-grid,
.vm-opportunity-row,
.vm-vertical-card__head,
.vm-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.vm-card__eyebrow,
.vm-mini-panel__title,
.vm-index-label,
.vm-opportunity-row small,
.vm-vertical-card__head span,
.vm-workflow__step strong,
.vm-trust-grid p {
  font-family: "Inter", Arial, sans-serif;
}
.vm-card__eyebrow,
.vm-mini-panel__title,
.vm-index-label {
  margin: 0;
  color: #44566d;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vm-info-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  border-radius: 999px;
  border: 1px solid rgba(14, 35, 64, 0.18);
  color: #617086;
  font-size: 0.7rem;
  vertical-align: text-top;
}
.vm-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.vm-tabs button {
  min-width: 42px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: #617086;
  font-size: 0.8rem;
  font-weight: 700;
}
.vm-tabs button.is-active {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(14, 35, 64, 0.14);
  color: #0e2340;
  box-shadow: 0 8px 18px rgba(14, 35, 64, 0.08);
}
.vm-index-grid {
  align-items: flex-end;
  margin-top: 10px;
}
.vm-index-grid__summary {
  min-width: 160px;
}
.vm-index-value {
  color: #0e2340;
  font-size: clamp(2.5rem, 4vw, 3.7rem);
  line-height: 1;
}
.vm-index-value span {
  margin-left: 10px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #138a57;
}
.vm-index-grid__chart {
  flex: 1;
}
.vm-index-grid__chart svg {
  width: 100%;
  height: auto;
}
.vm-chart-line {
  fill: none;
  stroke: url(#vm-chart-line);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vm-index-detail-grid {
  align-items: stretch;
  margin-top: 14px;
}
.vm-mini-panel {
  flex: 1 1 0;
  min-height: 174px;
  padding: 14px 14px 10px;
  border-top: 1px solid rgba(14, 35, 64, 0.08);
}
.vm-mini-panel + .vm-mini-panel {
  border-left: 1px solid rgba(14, 35, 64, 0.08);
}
.vm-market-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
}
.vm-market-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
  color: #0e2340;
}
.vm-market-list strong.is-up {
  color: #138a57;
}
.vm-market-list strong.is-down {
  color: #b94a48;
}
.vm-mini-panel__sale {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 10px 0 12px;
}
.vm-mini-panel__sale img {
  width: 68px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(14, 35, 64, 0.1);
}
.vm-mini-panel__sale small {
  display: block;
  margin-top: 8px;
  color: #7b8795;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}
.vm-mini-panel__sale span {
  display: block;
  margin-top: 4px;
  color: #0e2340;
  font-size: 1.85rem;
  line-height: 1;
}
.vm-market-insight {
  max-width: 19ch;
  margin: 10px 0 14px;
}
.vm-mini-panel a,
.vm-card__footer-link,
.vm-vertical-card a {
  color: #c98620;
  font-weight: 700;
  text-decoration: none;
}
.vm-opportunity-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.vm-opportunity-row {
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(14, 35, 64, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
}
.vm-opportunity-row img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(14, 35, 64, 0.1);
}
.vm-opportunity-row__copy {
  flex: 1;
}
.vm-opportunity-row__copy strong {
  display: block;
  font-size: 1.42rem;
  line-height: 1.02;
  color: #0e2340;
}
.vm-opportunity-row__score,
.vm-opportunity-row__price {
  text-align: right;
}
.vm-opportunity-row__score strong {
  display: block;
  color: #c98620;
  font-size: 2rem;
  line-height: 1;
}
.vm-opportunity-row__price strong {
  display: block;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.5rem;
  color: #0e2340;
}
.vm-card__footer-link {
  display: inline-block;
  margin-top: 14px;
}

.vm-block {
  margin-top: 18px;
  padding: 18px;
}
.vm-section-heading {
  text-align: center;
  margin-bottom: 18px;
}
.vm-section-heading--left {
  text-align: left;
  margin-bottom: 14px;
}
.vm-section-heading h2 {
  margin: 0;
  color: #0e2340;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.vm-section-heading p {
  margin: 6px 0 0;
  color: #41566f;
}
.vm-vertical-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}
.vm-vertical-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(14, 35, 64, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}
.vm-vertical-card img {
  width: calc(100% - 16px);
  height: 128px;
  margin: 8px;
  border-radius: 12px;
  object-fit: cover;
  background: #f6ead6;
}
.vm-vertical-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 0 12px 14px;
}
.vm-vertical-card__head {
  align-items: baseline;
  gap: 8px;
}
.vm-vertical-card__head span {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(14, 35, 64, 0.12);
  color: #617086;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vm-vertical-card a {
  margin-top: auto;
}

.vm-workflow {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.vm-workflow__step {
  text-align: left;
}
.vm-workflow__icon {
  margin-bottom: 12px;
}
.vm-workflow__arrow {
  align-self: center;
  color: #c98620;
  font-size: 2rem;
}

.vm-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
}
.vm-trust-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.vm-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 999px;
  border: 1px solid rgba(201, 134, 32, 0.34);
}
.vm-check svg {
  width: 14px;
  height: 14px;
}
.vm-quote {
  position: relative;
  margin: 18px 0 0;
  padding: 18px 20px 18px 24px;
  border: 1px solid rgba(14, 35, 64, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
}
.vm-quote__mark {
  position: absolute;
  left: 16px;
  top: 10px;
  color: #c98620;
  font-size: 2.4rem;
  line-height: 1;
}
.vm-quote p {
  margin: 0 0 8px 18px;
  max-width: 24ch;
  color: #0e2340;
  font-size: 1.7rem;
  line-height: 1.15;
}
.vm-quote footer {
  margin-left: 18px;
  color: #41566f;
  font-size: 0.92rem;
}
.vm-trust-mark {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}
.vm-trust-mark img {
  width: 84px;
  height: 84px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(201, 134, 32, 0.28);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(14, 35, 64, 0.08);
}

.vm-final-cta {
  min-height: 132px;
  padding: 20px 24px;
}
.vm-final-cta__copy {
  flex: 1;
}
.vm-final-cta__copy h2 {
  margin: 0;
  color: #0e2340;
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  font-weight: 500;
}
.vm-site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(340px, 1.2fr) minmax(220px, 0.95fr);
  gap: 26px;
  align-items: end;
  margin-top: 20px;
  padding: 8px 2px 0;
}
.vm-site-footer__brand-block p,
.vm-site-footer__social-block p,
.vm-site-footer__columns a,
.vm-site-footer__columns h3 {
  margin: 0;
}
.vm-brand--footer .vm-brand-lockup__mark {
  width: 44px;
  height: 44px;
}
.vm-brand--footer .vm-brand-lockup__word {
  font-size: 1.65rem;
  letter-spacing: 0.14em;
}
.vm-brand--footer .vm-brand-lockup__text small {
  font-size: 0.72rem;
}
.vm-site-footer__brand-block p {
  margin-top: 10px;
  color: #d38c22;
  font-size: 0.88rem;
}
.vm-site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.vm-site-footer__columns h3 {
  margin-bottom: 10px;
  color: #c98620;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.vm-site-footer__columns a {
  display: block;
  color: #41566f;
  font-size: 0.92rem;
  line-height: 1.9;
  text-decoration: none;
}
.vm-site-footer__social-block {
  text-align: right;
}
.vm-site-footer__social-block p {
  color: #41566f;
  font-size: 1rem;
  line-height: 1.5;
}
.vm-social-row {
  display: inline-flex;
  gap: 12px;
  margin-top: 14px;
}
.vm-social-row > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(14, 35, 64, 0.18);
  color: #41566f;
  background: rgba(255, 255, 255, 0.72);
}
.vm-social-row svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

@media (max-width: 1200px) {
  .vm-vertical-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 920px) {
  .vm-hero,
  .vm-dashboard,
  .vm-lower-grid {
    grid-template-columns: 1fr;
  }
  .vm-orb {
    min-height: 420px;
  }
  .vm-index-detail-grid {
    flex-direction: column;
  }
  .vm-mini-panel + .vm-mini-panel {
    border-left: 0;
    border-top: 1px solid rgba(14, 35, 64, 0.08);
  }
  .vm-workflow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .vm-workflow__arrow {
    display: none;
  }
}
@media (max-width: 820px) {
  .vm-homepage {
    padding-inline: 16px;
  }
  .vm-header,
  .vm-header__actions {
    flex-wrap: wrap;
  }
  .vm-header__nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 14px 18px;
  }
  .vm-hero__copy h1 {
    max-width: 10ch;
    font-size: clamp(3.2rem, 13vw, 4.6rem);
  }
  .vm-vertical-grid,
  .vm-workflow,
  .vm-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vm-final-cta,
  .vm-card__head,
  .vm-opportunity-row,
  .vm-index-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .vm-opportunity-row__score,
  .vm-opportunity-row__price {
    text-align: left;
  }
  .vm-site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .vm-site-footer__social-block {
    text-align: left;
  }
  .vm-site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .vm-header__actions {
    width: 100%;
    justify-content: space-between;
  }
  .vm-feature-list li {
    grid-template-columns: 1fr;
  }
  .vm-hero__actions,
  .vm-trust-row {
    align-items: stretch;
  }
  .vm-hero__actions a,
  .vm-final-cta .button {
    width: 100%;
    justify-content: center;
  }
  .vm-vertical-grid,
  .vm-workflow,
  .vm-trust-grid {
    grid-template-columns: 1fr;
  }
  .vm-opportunity-row img {
    width: 88px;
    height: 88px;
  }
  .vm-orb {
    min-height: 300px;
  }
  .vm-brand-lockup {
    gap: 10px;
  }
  .vm-brand-lockup__mark {
    width: 46px;
    height: 46px;
  }
  .vm-brand-lockup__word {
    font-size: 1.7rem;
    letter-spacing: 0.12em;
  }
  .vm-brand-lockup__text small {
    font-size: 0.66rem;
  }
  .vm-site-footer__columns {
    grid-template-columns: 1fr;
  }
}
