/* =============================================================
   palisades.fund — palisades-collection palette
   Cormorant Garamond (display) + Fraunces (body) + JetBrains Mono (tabular)
   ============================================================= */

:root {
  /* Core palette — drawn from the Palisades Collection logo */
  --ink-deepest: #0a1929;      /* darkest navy of the shield */
  --ink-deep: #0f2236;          /* brushed-navy background */
  --ink: #152b42;               /* body navy */
  --ink-soft: #1f3955;          /* raised navy */
  --ink-border: rgba(212, 175, 105, 0.12);

  --gold: #c9a254;              /* primary gold, the sun on the logo */
  --gold-bright: #e0bd75;       /* highlight gold */
  --gold-warm: #d4af69;         /* wordmark gold */
  --gold-deep: #8a6a32;         /* shadow gold */
  --gold-haze: rgba(212, 175, 105, 0.08);

  --parchment: #f6f1e6;         /* cream background for light surfaces */
  --parchment-warm: #ebe0c9;    /* warmer cream */
  --paper: #faf6ed;             /* lightest cream */
  --bone: #e3d8bf;              /* soft bone for rules */

  --text-on-dark: #e8dfc9;       /* cream on navy */
  --text-on-dark-dim: #b8a884;   /* muted cream on navy */
  --text-on-dark-faint: #6d6148; /* faint cream on navy */

  --text-on-light: #152b42;      /* navy on cream */
  --text-on-light-dim: #46556a;
  --text-on-light-faint: #7a8192;

  --danger: #a8412b;
  --success: #3c6d4a;

  /* Typography */
  --font-display: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --font-body: "Fraunces", "Georgia", "Times", serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section-pad: clamp(5rem, 10vw, 9rem);
  --max-width: 1320px;
  --max-width-read: 960px;
}

/* ========== RESET ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 4rem; }
body {
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-on-dark);
  background: var(--ink-deepest);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-warm); text-decoration: none; transition: color 160ms ease; }
a:hover { color: var(--gold-bright); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
table { border-collapse: collapse; width: 100%; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
}

/* ========== DISCLOSURE STRIP ========== */
.disclosure-strip {
  background: var(--ink-deepest);
  color: var(--gold-warm);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem var(--gutter);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--ink-border);
  text-align: center;
}
.strip-mark {
  color: var(--gold);
  font-size: 0.5rem;
  transform: translateY(-1px);
}

/* ========== NAVIGATION ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 25, 41, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-on-dark);
}
.nav-logo {
  width: auto;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.35));
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold-warm);
  letter-spacing: 0.01em;
}
.nav-brand-sub {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
  margin-top: 0.15rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-on-dark-dim);
  letter-spacing: 0.01em;
  transition: color 160ms ease;
}
.nav-links a:hover { color: var(--gold-warm); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  color: var(--gold-warm) !important;
  font-family: var(--font-mono) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  transition: all 180ms ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--ink-deepest) !important;
}

@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter) clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(201, 162, 84, 0.10), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(31, 57, 85, 0.6), transparent 60%),
    linear-gradient(180deg, var(--ink-deepest) 0%, var(--ink-deep) 60%, var(--ink-deepest) 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201, 162, 84, 0.055) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.8;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}
.hero-inner {
  max-width: var(--max-width-read);
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin-bottom: 2.5rem;
}
.eyebrow-rule {
  height: 1px;
  flex: 0 0 3.5rem;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--text-on-dark);
  margin-bottom: 2rem;
}
.hero-line-1 {
  display: block;
  color: var(--text-on-dark-dim);
  font-weight: 300;
}
.hero-line-2 {
  display: block;
  color: var(--gold-warm);
  margin-top: 0.3rem;
}
.hero-line-2 em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--gold-bright);
}
.hero-lede {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-on-dark-dim);
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}
.hero-lede strong {
  color: var(--text-on-dark);
  font-weight: 500;
}

.hero-metrics {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 0 auto 3rem;
  max-width: 52rem;
  flex-wrap: wrap;
}
.metric {
  flex: 1;
  min-width: 10rem;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}
.metric-value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 500;
  color: var(--gold-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}
.metric-value .metric-sub {
  font-size: 0.55em;
  color: var(--gold-warm);
  font-weight: 400;
  margin-left: 0.05em;
}
.metric-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-on-dark);
  letter-spacing: 0.01em;
  margin-top: 0.5rem;
}
.metric-source {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
}
.metric-rule {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--ink-border), transparent);
  flex: 0 0 1px;
}
@media (max-width: 720px) {
  .metric-rule { display: none; }
  .metric { padding: 1.25rem 1rem; border-bottom: 1px solid var(--ink-border); }
  .metric:last-child { border-bottom: none; }
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-on-dark-faint);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}
.hero-note a { color: var(--gold-warm); border-bottom: 1px dotted var(--gold-deep); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 2px;
  transition: all 200ms ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink-deepest);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  color: var(--ink-deepest);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 162, 84, 0.25);
}
.btn-ghost {
  border: 1px solid var(--ink-border);
  color: var(--text-on-dark);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-warm);
}
.btn-outline {
  border: 1px solid var(--gold-deep);
  color: var(--gold-warm);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-haze);
}
.btn-arrow { font-size: 1em; }

/* ========== PLATFORM BAND ========== */
.platform-band {
  background: var(--ink-deep);
  border-top: 1px solid var(--ink-border);
  border-bottom: 1px solid var(--ink-border);
  padding: 1.75rem var(--gutter);
}
.band-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.band-node {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
  min-width: 9rem;
}
.band-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
}
.band-entity {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text-on-dark);
}
.band-role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-on-dark-dim);
  font-style: italic;
}
.band-node-primary .band-entity { color: var(--gold-warm); }
.band-connector {
  font-family: var(--font-mono);
  color: var(--gold-deep);
  font-size: 1.2rem;
  padding: 0 0.25rem;
}
@media (max-width: 900px) {
  .band-connector { display: none; }
  .band-node { padding: 0.5rem 0; }
}

/* ========== SECTIONS ========== */
.section {
  padding: var(--section-pad) var(--gutter);
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-fund { background: var(--ink-deepest); }
.section-strategy {
  background: linear-gradient(180deg, var(--ink-deepest), var(--ink-deep), var(--ink-deepest));
}
.section-pipeline { background: var(--ink-deepest); }
.section-market { background: var(--ink-deep); }
.section-team { background: var(--ink-deepest); }
.section-terms {
  background: linear-gradient(180deg, var(--ink-deepest), var(--ink-deep));
}
.section-scarce { background: var(--ink-deep); }
.section-documents { background: var(--ink-deepest); }
.section-risks { background: var(--ink-deep); }
.section-subscribe { background: var(--ink-deepest); }

.section-header {
  max-width: var(--max-width-read);
  margin: 0 auto 4rem;
  text-align: center;
  position: relative;
}
.section-number {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.section-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-on-dark-dim);
  font-style: italic;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.55;
}

.inline-link {
  color: var(--gold-warm);
  border-bottom: 1px dotted var(--gold-deep);
}

/* ========== FUND SECTION ========== */
.fund-lede {
  max-width: var(--max-width-read);
  margin: 0 auto 5rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-on-dark);
  text-align: left;
}
.fund-lede p + p { margin-top: 1.25rem; }
.fund-lede strong { color: var(--gold-warm); font-weight: 500; }

/* Pillars */
.pillars {
  margin-bottom: 5rem;
}
.pillars-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-warm);
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}
.pillars-rule {
  height: 1px;
  flex: 0 0 3rem;
  background: linear-gradient(90deg, transparent, var(--gold-deep));
}
.pillars-title .pillars-rule:last-child {
  background: linear-gradient(90deg, var(--gold-deep), transparent);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 2rem;
}
.pillar {
  border: 1px solid var(--ink-border);
  padding: 2rem 1.75rem;
  background: linear-gradient(180deg, rgba(31, 57, 85, 0.3), rgba(31, 57, 85, 0.05));
  border-radius: 3px;
  transition: all 240ms ease;
  position: relative;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 2.5rem; height: 1px;
  background: var(--gold);
}
.pillar:hover {
  border-color: var(--gold-deep);
  transform: translateY(-2px);
}
.pillar-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.pillar-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-on-dark);
}
.pillar-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-on-dark-dim);
}

/* Playbook */
.playbook {
  max-width: var(--max-width-read);
  margin: 0 auto;
}
.playbook-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-style: italic;
  color: var(--gold-warm);
  margin-bottom: 3rem;
  font-weight: 400;
}
.playbook-steps {
  list-style: none;
  display: grid;
  gap: 1.5rem;
}
.playbook-step {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--ink-border);
}
.playbook-step:last-child { border-bottom: 1px solid var(--ink-border); }
.step-num {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.step-content h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
}
.step-content p {
  color: var(--text-on-dark-dim);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ========== SENSITIVITY TABLE ========== */
.sensitivity-table-wrap {
  max-width: var(--max-width-read);
  margin: 0 auto 5rem;
  overflow-x: auto;
}
.sensitivity-table {
  font-family: var(--font-body);
  border: 1px solid var(--ink-border);
  background: rgba(31, 57, 85, 0.15);
}
.sensitivity-table th,
.sensitivity-table td {
  padding: 1.1rem 1.4rem;
  text-align: left;
  border-bottom: 1px solid var(--ink-border);
}
.sensitivity-table thead th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
  font-weight: 400;
  background: rgba(10, 25, 41, 0.5);
  border-bottom: 1px solid var(--gold-deep);
}
.sensitivity-table tbody th {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-on-dark);
  white-space: nowrap;
}
.sensitivity-table td.num,
.sensitivity-table th.num {
  font-family: var(--font-mono);
  font-size: 1rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--text-on-dark);
}
.sensitivity-table tbody tr:last-child th,
.sensitivity-table tbody tr:last-child td { border-bottom: none; }
.sensitivity-table td:last-child {
  font-size: 0.9rem;
  color: var(--text-on-dark-dim);
  font-style: italic;
}
.row-base {
  background: linear-gradient(90deg, rgba(201, 162, 84, 0.08), rgba(201, 162, 84, 0.02));
}
.row-base th, .row-base td {
  color: var(--gold-bright) !important;
  font-weight: 500;
}
.row-base td:last-child {
  color: var(--gold-warm) !important;
  font-style: italic;
  font-weight: 400;
}
.row-base td.num {
  font-size: 1.25rem;
  color: var(--gold-bright) !important;
}
.row-tag {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.18rem 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink-deepest);
  border-radius: 2px;
  vertical-align: middle;
  font-weight: 500;
}
.table-source {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-on-dark-faint);
  padding: 1rem 1.4rem;
  line-height: 1.6;
}
.table-source strong { color: var(--text-on-dark-dim); }

/* ========== WHY NOW ========== */
.why-now {
  max-width: var(--max-width-read);
  margin: 0 auto;
}
.whynow-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold-warm);
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.whynow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 3rem;
}
@media (max-width: 720px) {
  .whynow-grid { grid-template-columns: 1fr; }
}
.whynow-card {
  border: 1px solid var(--ink-border);
  background: rgba(31, 57, 85, 0.25);
  padding: 2rem 1.75rem;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.whynow-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
}
.whynow-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
  line-height: 1;
}
.whynow-value .unit {
  font-size: 0.4em;
  color: var(--text-on-dark-dim);
  font-weight: 300;
}
.whynow-detail {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-on-dark-dim);
  font-style: italic;
}
.whynow-card-highlight {
  background: linear-gradient(180deg, rgba(201, 162, 84, 0.12), rgba(201, 162, 84, 0.02));
  border-color: var(--gold-deep);
}
.whynow-card-highlight .whynow-value { color: var(--gold-bright); }
.whynow-card-highlight .whynow-value .unit { color: var(--gold-warm); }

.whynow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-width: 6rem;
}
.arrow-label {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-bright);
  font-weight: 500;
  font-style: italic;
}
.arrow-rule {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--gold-deep);
  line-height: 1;
}
.arrow-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
}

.same-asset {
  border: 1px solid var(--gold-deep);
  padding: 2rem;
  background: rgba(201, 162, 84, 0.04);
  border-radius: 3px;
  position: relative;
}
.same-asset::before {
  content: "◆";
  position: absolute;
  top: -0.65rem;
  left: 2rem;
  background: var(--ink-deep);
  padding: 0 0.5rem;
  color: var(--gold);
}
.same-asset-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-warm);
  font-weight: 500;
  margin-bottom: 1rem;
}
.same-asset p {
  color: var(--text-on-dark);
  font-size: 1.05rem;
  line-height: 1.65;
}
.same-asset p strong {
  color: var(--gold-bright);
  font-weight: 500;
}
.same-asset-source {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-on-dark-faint);
  margin-top: 0.75rem;
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ========== PIPELINE TABLE ========== */
.pipeline-table-wrap {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  overflow-x: auto;
}
.pipeline-table {
  border: 1px solid var(--ink-border);
  background: rgba(31, 57, 85, 0.15);
}
.pipeline-table th,
.pipeline-table td {
  padding: 1.25rem 1.4rem;
  text-align: left;
  border-bottom: 1px solid var(--ink-border);
  vertical-align: middle;
}
.pipeline-table thead th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
  font-weight: 400;
  background: rgba(10, 25, 41, 0.5);
  border-bottom: 1px solid var(--gold-deep);
}
.pipeline-table td.num,
.pipeline-table th.num {
  font-family: var(--font-mono);
  font-size: 1rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.tier-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-on-dark);
}
.tier-desc {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-on-dark-dim);
  font-style: italic;
  margin-top: 0.2rem;
}
.pipeline-table tbody tr:hover { background: rgba(201, 162, 84, 0.03); }
.pipe-core { border-left: 3px solid var(--gold); }
.pipe-core .tier-name { color: var(--gold-bright); }
.pipe-t1 { border-left: 3px solid var(--gold-deep); }
.pipe-t2 { border-left: 3px solid rgba(201, 162, 84, 0.35); }
.pipe-t3 { border-left: 3px solid rgba(201, 162, 84, 0.15); }
.pipe-total {
  background: rgba(10, 25, 41, 0.45);
  border-top: 1px solid var(--gold-deep) !important;
}
.pipe-total th, .pipe-total td {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-on-dark);
  font-size: 1.1rem;
}
.pipe-total td.num {
  font-family: var(--font-mono);
  color: var(--gold-warm);
}

.pipeline-implications {
  max-width: var(--max-width-read);
  margin: 0 auto 3rem;
}
.impl-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.625rem;
  color: var(--gold-warm);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 400;
}
.impl-list {
  list-style: none;
  display: grid;
  gap: 1.5rem;
}
.impl-list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(31, 57, 85, 0.2);
  border-left: 2px solid var(--gold-deep);
}
.impl-num {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 300;
}
.impl-list p {
  font-size: 1rem;
  color: var(--text-on-dark);
  line-height: 1.65;
}
.impl-list strong { color: var(--gold-bright); font-weight: 500; }

.pipeline-disclosure {
  max-width: var(--max-width-read);
  margin: 0 auto;
  padding: 1.5rem 1.75rem;
  background: rgba(168, 65, 43, 0.08);
  border: 1px solid rgba(168, 65, 43, 0.25);
  border-left: 3px solid var(--danger);
  border-radius: 2px;
}
.pipeline-disclosure p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-on-dark-dim);
  font-style: italic;
}
.pipeline-disclosure strong {
  color: var(--text-on-dark);
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 0.35rem;
}

/* ========== MARKETS ========== */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.market-card {
  border: 1px solid var(--ink-border);
  background: var(--ink-deepest);
  border-radius: 3px;
  overflow: hidden;
  transition: all 260ms ease;
  display: flex;
  flex-direction: column;
}
.market-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-deep);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.market-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.market-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 25, 41, 0.6));
}
/* CSS-drawn generative scenes — each market gets its own mood */
.market-pac {
  background:
    radial-gradient(ellipse at 70% 35%, rgba(224, 189, 117, 0.55), transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(60, 109, 74, 0.5), transparent 55%),
    linear-gradient(160deg, #1a3a5a 0%, #2c5c82 40%, #8a6a42 80%, #c9a254 100%);
}
.market-aspen {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(250, 246, 237, 0.4), transparent 60%),
    linear-gradient(180deg, #0f2a4a 0%, #3a5a82 50%, #c4d4e8 85%, #faf6ed 100%);
}
.market-hamptons {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(224, 189, 117, 0.3), transparent 50%),
    linear-gradient(170deg, #4a6a8a 0%, #8aa5bc 45%, #d8c9a8 75%, #ebe0c9 100%);
}
.market-pb {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(224, 189, 117, 0.65), transparent 45%),
    linear-gradient(175deg, #1a4a6a 0%, #2a7a9c 35%, #6ac5d9 65%, #e0bd75 100%);
}
.market-card-active .market-photo::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-top: 3rem solid var(--gold);
  border-left: 3rem solid transparent;
  z-index: 2;
}
.market-card-active .market-photo::after {
  background:
    linear-gradient(180deg, transparent 50%, rgba(10, 25, 41, 0.6));
}
.market-body {
  padding: 1.5rem 1.5rem 1.75rem;
}
.market-body h3 {
  font-size: 1.5rem;
  color: var(--text-on-dark);
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.market-status {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 0.9rem;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--gold-deep);
  border-radius: 2px;
}
.market-card-active .market-status {
  background: var(--gold);
  color: var(--ink-deepest);
  border-color: var(--gold);
}
.market-body p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-on-dark-dim);
}
.markets-note {
  max-width: var(--max-width-read);
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-on-dark-dim);
  line-height: 1.65;
}

/* ========== TEAM ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.team-card {
  padding: 1.75rem;
  border: 1px solid var(--ink-border);
  background: rgba(31, 57, 85, 0.2);
  border-radius: 3px;
  transition: all 220ms ease;
}
.team-card:hover {
  border-color: var(--gold-deep);
  background: rgba(31, 57, 85, 0.35);
}
.team-head {
  margin-bottom: 1rem;
  position: relative;
}
.team-head h3 {
  font-size: 1.35rem;
  color: var(--text-on-dark);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.team-role {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--gold-warm);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.team-status {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 2px;
  border: 1px solid;
}
.team-status-serving {
  background: rgba(60, 109, 74, 0.15);
  color: #7fb08f;
  border-color: rgba(60, 109, 74, 0.6);
}
.team-status-pending {
  background: rgba(201, 162, 84, 0.1);
  color: var(--gold-warm);
  border-color: var(--gold-deep);
}
.team-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-on-dark-dim);
}

.team-ic, .team-counsel {
  max-width: var(--max-width-read);
  margin: 0 auto;
  padding: 1.75rem 2rem;
  background: rgba(31, 57, 85, 0.2);
  border-left: 2px solid var(--gold-deep);
  margin-bottom: 1.5rem;
}
.team-ic h3, .team-counsel h4 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--gold-warm);
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.team-ic p {
  color: var(--text-on-dark);
  font-size: 0.98rem;
  line-height: 1.65;
}
.counsel-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}
.counsel-list li {
  font-size: 0.92rem;
  color: var(--text-on-dark-dim);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}
.counsel-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-size: 0.6rem;
  top: 0.5rem;
}
.counsel-list strong {
  color: var(--text-on-dark);
  font-weight: 500;
}

/* ========== TERMS TABLE ========== */
.terms-table-wrap {
  max-width: var(--max-width-read);
  margin: 0 auto 2rem;
}
.terms-table {
  border: 1px solid var(--ink-border);
  background: rgba(31, 57, 85, 0.15);
}
.terms-table tr { border-bottom: 1px solid var(--ink-border); }
.terms-table tr:last-child { border-bottom: none; }
.terms-table th,
.terms-table td {
  padding: 1rem 1.4rem;
  text-align: left;
  vertical-align: top;
}
.terms-table th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
  font-weight: 400;
  width: 30%;
  background: rgba(10, 25, 41, 0.3);
}
.terms-table td {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-on-dark);
  line-height: 1.55;
}
.terms-table td strong {
  color: var(--gold-warm);
  font-weight: 500;
}

.terms-footnote {
  max-width: var(--max-width-read);
  margin: 0 auto;
  padding: 1.75rem 2rem;
  background: rgba(201, 162, 84, 0.05);
  border: 1px solid var(--gold-deep);
  border-radius: 3px;
}
.terms-footnote p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-on-dark);
}
.terms-footnote strong { color: var(--gold-bright); font-weight: 500; }

/* ========== SCARCE ========== */
.scarce-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width-read);
  margin: 0 auto 4rem;
  align-items: start;
}
@media (max-width: 820px) {
  .scarce-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.scarce-body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-on-dark);
  margin-bottom: 1.25rem;
}
.scarce-body .btn { margin-top: 0.5rem; }
.scarce-disclosure {
  padding: 2rem;
  background: var(--ink-deepest);
  border: 1px solid var(--gold-deep);
  border-radius: 3px;
}
.scarce-disclosure h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-warm);
  font-style: italic;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.disclosure-list {
  list-style: none;
  counter-reset: discl;
  display: grid;
  gap: 1rem;
}
.disclosure-list li {
  counter-increment: discl;
  padding-left: 2rem;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-on-dark-dim);
}
.disclosure-list li::before {
  content: "0" counter(discl);
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  top: 0.2rem;
  letter-spacing: 0.08em;
}
.disclosure-list strong {
  color: var(--gold-warm);
  font-weight: 500;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  margin-right: 0.25rem;
}

.scarce-comparables {
  max-width: var(--max-width);
  margin: 0 auto;
}
.scarce-comparables h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-warm);
  font-style: italic;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 400;
}
.comparables-table {
  border: 1px solid var(--ink-border);
  background: rgba(10, 25, 41, 0.4);
  margin-bottom: 2rem;
}
.comparables-table th,
.comparables-table td {
  padding: 1rem 1.3rem;
  text-align: left;
  border-bottom: 1px solid var(--ink-border);
  vertical-align: top;
}
.comparables-table thead th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
  background: var(--ink-deepest);
  border-bottom: 1px solid var(--gold-deep);
  font-weight: 400;
}
.comparables-table td {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-on-dark-dim);
}
.comparables-table tbody tr:first-child td { color: var(--text-on-dark); font-weight: 400; }
.comparables-table td:first-child {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-on-dark);
  white-space: nowrap;
}
.comparables-table td.num,
.comparables-table th.num {
  font-family: var(--font-mono);
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--gold-warm);
}
.comparables-note {
  font-family: var(--font-body);
  font-style: italic;
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
  padding: 1.5rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-on-dark-dim);
}
.comparables-note strong {
  color: var(--gold-bright);
  font-weight: 500;
  font-style: normal;
}

/* ========== DOCUMENTS ========== */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.doc-card {
  padding: 1.75rem;
  border: 1px solid var(--ink-border);
  background: rgba(31, 57, 85, 0.2);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 220ms ease;
  position: relative;
}
.doc-card:hover {
  border-color: var(--gold-deep);
  background: rgba(31, 57, 85, 0.3);
}
.doc-badge {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-warm);
  align-self: flex-start;
  padding: 0.22rem 0.55rem;
  background: rgba(201, 162, 84, 0.08);
  border: 1px solid var(--gold-deep);
  border-radius: 2px;
}
.doc-card h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-on-dark);
  margin-top: 0.25rem;
}
.doc-card p {
  font-size: 0.88rem;
  color: var(--text-on-dark-dim);
  line-height: 1.5;
  flex: 1;
}
.doc-status {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.doc-avail { color: #7fb08f; }
.doc-draft { color: var(--gold-warm); }

/* ========== RISKS ========== */
.risks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.risk-card {
  padding: 1.5rem 1.5rem 1.75rem;
  background: rgba(10, 25, 41, 0.35);
  border: 1px solid var(--ink-border);
  border-top: 2px solid var(--danger);
  border-radius: 2px;
}
.risk-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-warm);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.risk-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-on-dark-dim);
}

/* ========== SUBSCRIBE FORM ========== */
.inquiry-form {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2.5rem clamp(1.5rem, 3vw, 3rem);
  background: rgba(31, 57, 85, 0.25);
  border: 1px solid var(--gold-deep);
  border-radius: 3px;
  position: relative;
}
.inquiry-form::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 3rem; height: 3rem;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.inquiry-form::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 3rem; height: 3rem;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.field-full { grid-column: 1 / -1; }
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
}
.field-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
}
.req { color: var(--gold); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: var(--ink-deepest);
  border: 1px solid var(--ink-border);
  color: var(--text-on-dark);
  border-radius: 2px;
  transition: border-color 160ms ease;
  width: 100%;
  font-optical-sizing: auto;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; font-family: var(--font-body); }
.field select { cursor: pointer; }

.consent-block {
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem;
  background: rgba(10, 25, 41, 0.45);
  border: 1px solid var(--ink-border);
  border-radius: 2px;
}
.consent {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.7rem;
  align-items: start;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-on-dark-dim);
}
.consent input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  accent-color: var(--gold);
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.btn-submit {
  min-width: 14rem;
  justify-content: center;
  position: relative;
}
.btn-submit .btn-loading { display: none; }
.btn-submit.loading .btn-label { display: none; }
.btn-submit.loading .btn-loading { display: inline; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-on-dark-faint);
  text-align: center;
  max-width: 38rem;
  line-height: 1.6;
}

.form-result {
  margin-top: 2rem;
  padding: 1.75rem;
  border-radius: 3px;
  text-align: center;
}
.form-result h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-result p {
  color: var(--text-on-dark);
  font-size: 0.98rem;
  line-height: 1.55;
}
.form-result-success {
  background: rgba(60, 109, 74, 0.12);
  border: 1px solid #3c6d4a;
}
.form-result-success h3 { color: #7fb08f; }
.form-result-error {
  background: rgba(168, 65, 43, 0.12);
  border: 1px solid var(--danger);
}
.form-result-error h3 { color: #d88776; }

/* ========== FOOTER ========== */
.footer {
  background: #050f1a;
  padding: 5rem var(--gutter) 2rem;
  border-top: 1px solid var(--ink-border);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
}
.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.footer-logo {
  width: auto;
  height: 96px;
  object-fit: contain;
  flex: 0 0 auto;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-entity {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold-warm);
}
.footer-sub,
.footer-gp,
.footer-im,
.footer-sponsor {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-faint);
  line-height: 1.5;
}
.footer-sponsor a { color: var(--gold-warm); border-bottom: 1px dotted var(--gold-deep); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 620px) {
  .footer-cols { grid-template-columns: 1fr; }
}
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.footer-col a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-on-dark-dim);
  transition: color 160ms ease;
}
.footer-col a:hover { color: var(--gold-warm); }

/* FIX for the aprisa.llc footer Contact column rendering bug:
   contact-static class explicitly opts out of link styling */
.contact-line {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-on-dark-dim);
  line-height: 1.4;
  display: block;
}
.contact-line.contact-static {
  color: var(--text-on-dark-dim) !important;
  font-size: 0.88rem !important;
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}
.contact-line a {
  color: var(--gold-warm);
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal {
  border-top: 1px solid var(--ink-border);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-legal p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-on-dark-faint);
}
.footer-legal strong {
  color: var(--gold-warm);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.footer-pdfs {
  padding: 1.25rem 0;
  border-top: 1px solid var(--ink-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.pdf-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
  transition: color 160ms ease;
}
.pdf-link:hover { color: var(--gold-warm); }
.pdf-sep { color: var(--gold-deep); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-faint);
}
.footer-version { font-style: italic; }

/* ========== ANIMATIONS ========== */
@media (prefers-reduced-motion: no-preference) {
  .hero-title, .hero-lede, .hero-metrics, .hero-ctas, .hero-note {
    opacity: 0;
    animation: fadeUp 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .hero-title { animation-delay: 80ms; }
  .hero-lede { animation-delay: 220ms; }
  .hero-metrics { animation-delay: 360ms; }
  .hero-ctas { animation-delay: 500ms; }
  .hero-note { animation-delay: 640ms; }

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

/* ========== PRINT ========== */
@media print {
  .nav, .disclosure-strip, .footer, .hero-ctas, .inquiry-form, .section-subscribe { display: none; }
  body { background: white; color: black; }
  .section { padding: 2rem 1rem; break-inside: avoid; }
}
