/* =========================================================
   BBNA — Design Tokens
   Palette: Ink Black · Bone White · Champagne Gold · Walnut
   ========================================================= */

:root {
  /* Palette — Warm ink, layered antique gold. No metallic gradients. */
  --ink: #08080A;              /* Very slightly warm-tinted charcoal (was #0A0A0A) */
  --ink-90: #16161A;
  --ink-70: #3A3A38;
  --ink-50: #6B6B67;
  --ink-30: #A3A29D;
  --ink-10: #D8D6D0;
  --bone: #FAF8F3;
  --bone-alt: #F3F0E8;
  --stone: #E8E5DD;
  --walnut: #4A3826;
  --walnut-light: #7A5B3E;
  --cognac: #B87333;

  /* Gold system — antique, layered, never shiny.
     - --gold-deep for structural (dividers, quiet borders)
     - --gold for accents (labels, single strokes)
     - --gold-bright for peak moments (once per screen) */
  --gold-deep: #8B6D3A;
  --gold: #B8934E;
  --gold-bright: #D4A85E;
  --gold-dark: #6B5028;         /* deepest — use sparingly for hover */

  /* Hairline gold variants — use with rgba() at low opacity for dividers */
  --gold-rgb: 184, 147, 78;
  --gold-bright-rgb: 212, 168, 94;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.375rem, 2vw, 1.75rem);
  --text-2xl: clamp(1.75rem, 3vw, 2.5rem);
  --text-3xl: clamp(2.25rem, 4.5vw, 3.75rem);
  --text-hero: clamp(2.5rem, 6.5vw, 5.5rem);

  /* Space */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-7: 1.75rem;
  --sp-8: 2rem;
  --sp-9: 2.25rem;
  --sp-10: 2.5rem;
  --sp-11: 2.75rem;
  --sp-12: 3rem;
  --sp-14: 3.5rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Type families — Inter for everything. */
  --font-serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Motion — slower, more deliberate. Luxury sites don't rush. */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.4s;
  --dur-med: 0.8s;
  --dur-slow: 1.2s;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
}
/* Inter display defaults — uppercase, tight negative tracking, regular weight only. */
h1, h2, h3, .hero__headline, .section__title, .page-hero__title, .apply-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
}
/* Emphasis words in headlines: no italic, no color — just weight or scale */
h1 em, h2 em, h3 em,
.hero__headline em, .section__title em, .page-hero__title em, .apply-hero__title em {
  font-style: normal;
  color: inherit;
  font-weight: inherit;
}
/* Gold accent moment — opt-in via .gold-emphasis class only */
.gold-emphasis {
  color: var(--gold);
  font-style: normal;
}
/* Numbers get the tightest tracking */
.tabular-nums, .stat__value, .foundation-stat__value, .directory-stat__value {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}
/* DM Sans body defaults — slightly more open than default */
p, li, label, input, select, textarea, button {
  font-optical-sizing: auto;
}

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--sp-8); }
}
@media (min-width: 1200px) {
  .container { padding: 0 var(--sp-12); }
}

.gold { color: var(--gold); }

/* =========================================================
   TYPOGRAPHY BASICS
   ========================================================= */

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: var(--sp-6);
}
.eyebrow.gold { color: var(--gold); }

/* Global em: no more italic-serif emphasis. em becomes a subtle inline emphasis.
   Headlines override em to be normal-style via the h1/h2/h3 em rule above. */
em { font-style: normal; font-weight: 500; }

/* =========================================================
   FOUNDATION TOP BAR
   ========================================================= */

/* Recruitment page banner — only on /join/ pages. Signals audience context. */
.recruitment-banner {
  position: relative;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  border-bottom: 1px solid var(--gold-dark);
  font-size: var(--text-xs);
  letter-spacing: 0.02em;
}
.recruitment-banner__inner {
  padding: var(--sp-2) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.recruitment-banner__pill {
  background: var(--ink);
  color: var(--gold-bright);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
}
.recruitment-banner__text a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.recruitment-banner__text a:hover { color: var(--walnut); }
@media (max-width: 640px) {
  .recruitment-banner__inner { gap: var(--sp-2); padding: var(--sp-2) var(--sp-4); }
  .recruitment-banner__text { text-align: center; }
}

.foundation-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--bone);
  font-size: var(--text-xs);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--ink-70);
}
.foundation-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-3) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  justify-content: center;
  flex-wrap: wrap;
}
.foundation-bar__label {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.foundation-bar__text { color: var(--ink-10); }
.foundation-bar__count { color: var(--ink-30); font-variant-numeric: tabular-nums; }
.foundation-bar__cta {
  color: var(--bone);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.45s var(--ease-out);
}
.foundation-bar__cta:hover { color: var(--gold-bright); }

@media (max-width: 720px) {
  .foundation-bar__count { display: none; }
  .foundation-bar__inner { gap: var(--sp-3); font-size: 0.68rem; padding: var(--sp-2) var(--sp-4); }
}
@media (max-width: 500px) {
  .foundation-bar__label { display: none; }
  .foundation-bar__text { font-size: 0.68rem; text-align: center; }
  .foundation-bar__inner { padding: var(--sp-2) var(--sp-3); }
}

/* =========================================================
   HEADER
   ========================================================= */

.header {
  position: sticky;
  /* JS sets --foundation-bar-height to the foundation bar's real height on pages
     that have one, and to 0 on pages that don't. Default to 0 so the header
     sticks flush to the viewport top before JS runs. */
  top: var(--foundation-bar-height, 0px);
  z-index: 90;
  /* Near-opaque bone — needs to fully block hero content that scrolls behind it.
     Blur remains for polish. */
  background: rgba(250, 248, 243, 0.98);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.45s var(--ease-out), background-color 0.45s var(--ease-out);
}
/* Once scrolled past hero, make header fully opaque with a hairline gold border. */
.header.is-scrolled {
  background: var(--bone);
  border-bottom-color: rgba(var(--gold-rgb), 0.2);
}
.header.is-scrolled { border-color: var(--stone); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-6);
}
@media (min-width: 768px) {
  .header__inner { padding: var(--sp-6) var(--sp-8); }
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.45s var(--ease-out);
  line-height: 0;
}
.logo:hover { opacity: 0.75; }
.logo__img {
  height: 42px;
  width: auto;
  display: block;
}
.logo--footer .logo__img { height: 48px; }
@media (max-width: 900px) {
  .logo__img { height: 36px; }
}

.nav {
  display: none;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  color: var(--ink-70);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.45s var(--ease-out);
}
.nav a:hover { color: var(--ink); }
.nav__cta {
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--ink) !important;
  transition: all 0.45s var(--ease-out);
}
.nav__cta:hover { background: var(--ink); color: var(--bone) !important; }

/* Phone chip in primary nav — sitewide legitimate-brokerage trust signal.
   Uses tabular numerals + gold accent so the number reads as intentional. */
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold) !important;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out);
  white-space: nowrap;
}
.nav__phone:hover {
  background: var(--gold);
  color: var(--ink) !important;
}
.nav__phone-icon {
  font-size: 12px;
  line-height: 1;
  transform: rotate(90deg);
  display: inline-block;
}
.nav__phone-num {
  font-size: var(--text-sm);
}
.header--over-hero .nav__phone {
  color: var(--gold-bright) !important;
  border-color: rgba(240, 200, 130, 0.65);
}
.header--over-hero .nav__phone:hover {
  background: var(--gold-bright);
  color: var(--ink) !important;
}
/* Hide phone chip on tablet widths where it competes with nav space */
@media (max-width: 1100px) {
  .nav__phone { padding: 4px 10px; }
  .nav__phone-num { font-size: 13px; }
}
@media (max-width: 960px) {
  .nav__phone-num { display: none; }
}

/* Mobile-nav phone item — full-width gold-bordered chip */
.nav__phone--mobile {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-top: 8px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold) !important;
  font-family: var(--font-body) !important;
  font-size: var(--text-sm) !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  font-variant-numeric: tabular-nums;
  align-self: stretch !important;
  justify-content: center;
}
.nav__phone--mobile .nav__phone-icon {
  font-size: 14px;
  transform: rotate(90deg);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 22px;
  background: transparent;
  border: 0;
  padding: 0;
  justify-content: center;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.55s var(--ease-out), opacity 0.3s var(--ease-out);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 900px) { .hamburger { display: none; } }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-6) var(--sp-8);
  background: var(--bone);
  border-top: 1px solid var(--stone);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: var(--text-xl);
}
.mobile-nav .nav__cta {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: var(--text-sm);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-block;
  padding: var(--sp-3) var(--sp-8);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  border-radius: 2px;
  transition: all 0.45s var(--ease-out);
  border: 1px solid transparent;
  cursor: pointer;
}
.button--primary {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.button--primary:hover {
  background: var(--walnut);
  border-color: var(--walnut);
  transform: translateY(-1px);
}
.button--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.button--ghost:hover {
  background: var(--ink);
  color: var(--bone);
}
.button--wide {
  padding: var(--sp-4) var(--sp-12);
  font-size: var(--text-base);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-32) 0 var(--sp-20);
  overflow: hidden;
  color: var(--bone);
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10, 10, 10, 0.85) 0%,
      rgba(10, 10, 10, 0.72) 30%,
      rgba(10, 10, 10, 0.45) 60%,
      rgba(10, 10, 10, 0.15) 100%),
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.28) 0%,
      rgba(10, 10, 10, 0.38) 50%,
      rgba(10, 10, 10, 0.9) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1024px;
}
.hero__content .eyebrow {
  color: var(--gold-bright);
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-hero);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0 0 var(--sp-8);
  color: var(--bone);
}
.hero__line { display: block; color: var(--bone); }
.hero__line--accent { color: var(--gold-bright); }
/* Legacy classes kept for other pages that may still reference them */
.hero__line-a { display: block; color: var(--ink-10); opacity: 0.72; }
.hero__line-b { display: block; }
.hero__line-b em { color: var(--gold-bright); }

.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-10);
  max-width: 620px;
  margin: 0 0 var(--sp-12);
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}
/* Hero CTA row — keep the three buttons visually uniform in height and width.
   Widths track content but never dip below the anchor size, so short labels don't shrink. */
.hero__actions .button {
  min-width: 220px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  margin-top: 0 !important;
  white-space: nowrap;
}
.hero .button--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.hero .button--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}
.hero .button--ghost {
  color: var(--bone);
  border-color: var(--ink-30);
}
.hero .button--ghost:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}

.hero__meta {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-30);
}

/* =========================================================
   STAT STRIP
   ========================================================= */

.stat-strip {
  background: var(--ink);
  color: var(--bone);
  padding: var(--sp-16) 0;
  border-top: 1px solid var(--ink-70);
  border-bottom: 1px solid var(--ink-70);
}
.stat-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
}
@media (max-width: 900px) { .stat-strip__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .stat-strip__inner { grid-template-columns: 1fr; } }
.stat { text-align: left; }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  white-space: nowrap;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
  font-variant-numeric: tabular-nums;
}
.stat__value .gold { color: var(--gold); }
.stat__small {
  font-size: 0.55em;
  vertical-align: 0.2em;
  color: var(--ink-30);
}

/* =========================================================
   LIVE MOMENTUM STRIP
   ========================================================= */

.momentum {
  background: var(--bone);
  border-bottom: 1px solid var(--stone);
  padding: var(--sp-6) 0;
}
.momentum__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.momentum__pulse {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding-right: var(--sp-6);
  border-right: 1px solid var(--stone);
  flex-shrink: 0;
}
.momentum__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 rgba(184, 147, 78, 0.7);
  animation: momentumPulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes momentumPulse {
  0%   { box-shadow: 0 0 0 0 rgba(184, 147, 78, 0.55); transform: scale(1); }
  70%  { box-shadow: 0 0 0 14px rgba(184, 147, 78, 0); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(184, 147, 78, 0); transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .momentum__dot { animation: none; box-shadow: 0 0 0 4px rgba(184, 147, 78, 0.15); }
}
.momentum__label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  white-space: nowrap;
}
.momentum__facts {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  flex-grow: 1;
  align-items: baseline;
}
@media (min-width: 1100px) {
  .momentum__facts { gap: var(--sp-8); }
}
.momentum__fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 120px;
  max-width: 200px;
}
.momentum__fact-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.momentum__fact--last .momentum__fact-value {
  color: var(--gold-dark);
}
.momentum__fact--closes .momentum__fact-value {
  color: var(--gold-dark);
}
.momentum__fact-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-50);
  text-transform: none;
  font-weight: 400;
}
.momentum__cta {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.45s var(--ease-out);
  flex-shrink: 0;
}
.momentum__cta:hover {
  color: var(--gold-dark);
}

@media (max-width: 1000px) {
  .momentum__inner { gap: var(--sp-5); }
  .momentum__facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4) var(--sp-6);
    width: 100%;
  }
  .momentum__fact { min-width: 0; max-width: none; }
  .momentum__pulse { padding-right: var(--sp-4); }
}
@media (max-width: 700px) {
  .momentum { padding: var(--sp-5) 0; }
  .momentum__pulse {
    border-right: none;
    padding-right: 0;
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid var(--stone);
    width: 100%;
  }
  .momentum__facts { gap: var(--sp-4); }
  .momentum__fact-value { font-size: 19px; }
  .momentum__cta { width: 100%; text-align: center; padding: var(--sp-3) 0; }
}
.stat__gst {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: var(--sp-2);
  font-weight: 500;
}
.stat__label {
  font-size: var(--text-sm);
  color: var(--ink-30);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* =========================================================
   SECTION SHELL
   ========================================================= */

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}
.section__intro {
  max-width: 780px;
  margin: 0 auto var(--sp-16);
  text-align: center;
}
.section__intro--tight { margin-bottom: var(--sp-12); }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-3xl);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 var(--sp-6);
}
.section__title em { color: var(--gold); font-style: normal; font-weight: inherit; }

/* Brand section — keep each phrase on one line at desktop */
.section__title--brand {
  max-width: none;
}
.section--brand .section__intro { max-width: 1100px; }
.nowrap-line { display: inline-block; white-space: nowrap; }
@media (max-width: 720px) {
  .nowrap-line { white-space: normal; display: inline; }
}
.section__lede {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0;
}

.footnote {
  font-size: var(--text-xs);
  color: var(--ink-50);
  text-align: center;
  margin-top: var(--sp-8);
  letter-spacing: 0.02em;
}

/* =========================================================
   DILEMMA
   ========================================================= */

.section--dilemma { background: var(--bone); }

.dilemma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
  max-width: 1100px;
  margin: 0 auto;
}
.dilemma-card {
  background: var(--bone-alt);
  border: 1px solid var(--stone);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  min-height: 320px;
  transition: transform 0.55s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.dilemma-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px -30px rgba(10,10,10,0.25); }
.dilemma-card--featured {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
  position: relative;
}
.dilemma-card__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.dilemma-card--featured .dilemma-card__eyebrow { color: var(--gold-bright); }
.dilemma-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--ink);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.dilemma-card--featured .dilemma-card__title { color: var(--bone); }
.dilemma-card__body {
  font-size: var(--text-base);
  color: var(--ink-70);
  line-height: 1.6;
  flex-grow: 1;
}
.dilemma-card__body strong {
  color: var(--ink);
  font-weight: 500;
}
.dilemma-card--featured .dilemma-card__body { color: var(--ink-10); }
.dilemma-card--featured .dilemma-card__body strong { color: var(--bone); }
.dilemma-card__verdict {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--ink-50);
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--stone);
}
.dilemma-card--featured .dilemma-card__verdict {
  border-top-color: var(--ink-70);
  color: var(--gold);
}
/* Style anchors inside dilemma verdicts sitewide so they inherit
   the gold accent and lose browser-default underline/colour. */
.dilemma-card__verdict a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}
.dilemma-card__verdict a:hover { color: var(--gold-bright); }
.dilemma-card--featured .dilemma-card__verdict a { color: var(--gold-bright); }
.dilemma-card--featured .dilemma-card__verdict a:hover { color: var(--bone); }

/* =========================================================
   COMMISSION BARS
   ========================================================= */

.section--commission { background: var(--bone-alt); }
.commission-bars {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.commission-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-6);
  align-items: center;
}
@media (max-width: 720px) {
  .commission-row { grid-template-columns: 1fr; }
}
.commission-row__label { display: flex; flex-direction: column; gap: var(--sp-1); }
.commission-row__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--ink);
}
.commission-row__desc {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.commission-row__bar {
  height: 48px;
  background: var(--stone);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.commission-bar {
  height: 100%;
  background: var(--ink);
  width: 0;
  transition: width 1.2s var(--ease-out);
  display: flex;
  align-items: center;
  padding-left: var(--sp-4);
  color: var(--bone);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.commission-bar.is-animated { width: var(--fill); }
.commission-bar--gold {
  background: var(--gold);
  color: var(--ink);
}
.commission-row--featured .commission-row__name { color: var(--gold-dark); }

/* =========================================================
   COMPARISON TABLE (Three Options)
   ========================================================= */

.section--compare { background: var(--bone); }

.compare-table-wrap {
  max-width: 1200px;
  margin: var(--sp-12) auto var(--sp-8);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
  font-family: var(--font-body);
  font-size: 15px;
}

.compare-table thead th {
  background: transparent;
  padding: var(--sp-6) var(--sp-6) var(--sp-5);
  text-align: left;
  font-weight: 400;
  vertical-align: bottom;
  border-bottom: 1px solid var(--stone);
}
.compare-table thead th.compare-table__col--featured {
  background: var(--ink);
  border-radius: 2px 2px 0 0;
  border-bottom: 1px solid var(--ink);
  padding-left: var(--sp-8);
  padding-right: var(--sp-8);
}
.compare-table__col-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: var(--sp-2);
}
.compare-table__col--featured .compare-table__col-eyebrow {
  color: var(--gold);
}
.compare-table__col-name {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.compare-table__col--featured .compare-table__col-name {
  color: var(--bone);
}

.compare-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--ink);
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--stone);
  width: 25%;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0;
  vertical-align: top;
  background: var(--bone-alt);
}

.compare-table tbody td {
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--stone);
  color: var(--ink-70);
  vertical-align: top;
  width: 25%;
}

.compare-table tbody td.compare-table__featured {
  padding-left: var(--sp-8);
  padding-right: var(--sp-8);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table__featured {
  background: var(--ink);
  color: var(--bone) !important;
  border-bottom-color: rgba(250, 248, 243, 0.08) !important;
}
.compare-table__featured strong {
  color: var(--gold-bright);
  font-weight: 600;
}
.compare-table tbody tr:last-child .compare-table__featured {
  border-radius: 0 0 2px 2px;
}

.compare-table__yes {
  color: var(--ink);
  font-weight: 500;
}
.compare-table__no {
  color: var(--ink-50);
  font-style: italic;
}
.compare-table__cell-note {
  display: block;
  font-size: 12px;
  color: var(--ink-30);
  margin-top: 2px;
  font-style: normal;
  letter-spacing: 0;
}
.compare-table__featured .compare-table__cell-note {
  color: rgba(250, 248, 243, 0.5);
}

.compare-table__row-label {
  background: transparent !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.compare-footnote {
  max-width: 1000px;
  margin: 0 auto var(--sp-10);
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-50);
  padding: 0 var(--sp-4);
}

.compare-cta {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.compare-cta .button--wide {
  width: 100%;
}

@media (max-width: 900px) {
  .compare-table { min-width: 640px; font-size: 14px; }
  .compare-table__col-name { font-size: 17px; }
  .compare-table thead th,
  .compare-table tbody th,
  .compare-table tbody td { padding: var(--sp-4) var(--sp-5); }
}
@media (max-width: 720px) {
  .compare-table thead th,
  .compare-table tbody th,
  .compare-table tbody td { padding: var(--sp-4) var(--sp-5); }
  .compare-table__featured,
  .compare-table thead th.compare-table__col--featured { padding-left: var(--sp-6); padding-right: var(--sp-6); }
}
@media (max-width: 720px) {
  .compare-table-wrap {
    margin-left: calc(-1 * var(--sp-4));
    margin-right: calc(-1 * var(--sp-4));
    padding-left: var(--sp-4);
    padding-right: var(--sp-4);
  }
  .compare-table-wrap::after {
    content: 'Swipe →';
    display: block;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-30);
    padding-top: var(--sp-3);
  }
}

/* =========================================================
   EDITORIAL SPLIT (Network / Pullquote)
   ========================================================= */

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 60vh;
}
@media (max-width: 900px) {
  .editorial-split { grid-template-columns: 1fr; min-height: 0; }
}
.editorial-split__image { position: relative; overflow: hidden; }
.editorial-split__image img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 400px;
}
@media (max-width: 900px) {
  .editorial-split__image img { min-height: 280px; height: 280px; }
}
.editorial-split__text {
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bone);
}
.editorial-split .section__title { margin-bottom: var(--sp-6); }
.editorial-split__text p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink-70);
  margin: 0 0 var(--sp-4);
}
.editorial-split--reverse .editorial-split__image { order: 2; }
@media (max-width: 900px) {
  .editorial-split--reverse .editorial-split__image { order: 0; }
}

.section--network { padding: 0; background: var(--ink); }
.section--network .editorial-split__text { background: var(--ink); color: var(--bone); }
.section--network .section__title { color: var(--bone); }
.section--network .editorial-split__text p { color: var(--ink-10); }

.network-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin: var(--sp-8) 0;
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--ink-70);
  border-bottom: 1px solid var(--ink-70);
}
@media (max-width: 600px) { .network-stats { grid-template-columns: 1fr; gap: var(--sp-4); } }
.network-stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--sp-2);
}
.network-stat__label {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: var(--ink-30);
  line-height: 1.4;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-8) 0 0;
  border-top: 1px solid var(--ink-70);
}
.feature-list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-6);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--ink-70);
  font-size: var(--text-sm);
}
.feature-list li span:first-child {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: var(--text-base);
}
.feature-list li span:last-child { color: var(--ink-30); }

@media (max-width: 600px) {
  .feature-list li { grid-template-columns: 1fr; gap: var(--sp-1); }
}

/* Pullquote section */
.section--pullquote { padding: 0; background: var(--bone-alt); }
.section--pullquote .editorial-split { grid-template-columns: 1.35fr 1fr; }
.section--pullquote .editorial-split__text { background: var(--bone-alt); }
@media (max-width: 900px) {
  .section--pullquote .editorial-split { grid-template-columns: 1fr; }
}
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 var(--sp-8);
  padding: 0;
  border: 0;
}
.pullquote p { margin: 0 0 1.25em; }
.pullquote em {
  font-style: normal;
  color: var(--gold);
}
.pullquote a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(184, 147, 78, 0.4);
}
.pullquote a:hover { color: var(--walnut); }
.pullquote p:last-child { margin-bottom: 0; }
.pullquote__attribution {
  padding-top: var(--sp-6);
  border-top: 1px solid var(--stone);
}
.pullquote__name {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--gold);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.pullquote__role {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: var(--sp-1);
}

/* =========================================================
   YOUR BRAND, AMPLIFIED
   ========================================================= */

.section--brand { background: var(--bone); }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 780px) { .brand-grid { grid-template-columns: 1fr; } }

.brand-card {
  background: var(--bone-alt);
  border: 1px solid var(--stone);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  transition: transform 0.55s var(--ease-out), border-color 0.3s var(--ease-out);
}
.brand-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.brand-card__number {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: var(--text-xl);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.brand-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--ink);
  margin: 0 0 var(--sp-2);
  line-height: 1.2;
}
.brand-card p {
  color: var(--ink-70);
  font-size: var(--text-base);
  line-height: 1.6;
  margin: 0;
}
.brand-card em { color: var(--gold-dark); font-style: normal; font-weight: 500; }

.brand-manifesto {
  max-width: 780px;
  margin: var(--sp-16) auto 0;
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
.brand-manifesto p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}

/* Brand lockup demo — signage/email/web mockups */
.brand-lockup {
  max-width: 1200px;
  margin: var(--sp-20) auto 0;
}
.brand-lockup__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-12);
}
.brand-lockup__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--sp-4) 0 var(--sp-4);
  font-weight: 500;
}
.brand-lockup__lede {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-70);
  margin: 0;
}
.brand-lockup__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}
@media (max-width: 900px) {
  .brand-lockup__cards { grid-template-columns: 1fr; gap: var(--sp-4); }
}
.brand-lockup__card {
  display: flex;
  flex-direction: column;
}
.brand-lockup__card-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: var(--sp-3);
  padding-left: var(--sp-1);
}
.brand-lockup__mock {
  background: var(--bone-alt);
  border: 1px solid var(--stone);
  border-radius: 2px;
  padding: var(--sp-8) var(--sp-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  position: relative;
}

/* Signage mock */
.brand-lockup__mock--signage {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
  text-align: center;
  align-items: center;
  justify-content: center;
}
.brand-lockup__mock-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--bone);
  margin-bottom: var(--sp-4);
}
.brand-lockup__mock-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto var(--sp-4);
}
.brand-lockup__mock-endorse {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.brand-lockup__mock-endorse-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.55);
  font-family: var(--font-body);
}
.brand-lockup__mock-endorse-brand {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold-bright);
  letter-spacing: 0.14em;
  font-weight: 500;
}

/* Email signature mock */
.brand-lockup__mock--email {
  background: var(--bone);
  padding: var(--sp-6);
  justify-content: flex-start;
}
.brand-lockup__mock-sig-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 2px;
}
.brand-lockup__mock-sig-title {
  font-size: 13px;
  color: var(--ink-70);
  margin-bottom: var(--sp-2);
}
.brand-lockup__mock-sig-contact {
  font-size: 12px;
  color: var(--ink-50);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--stone);
}
.brand-lockup__mock-sig-endorse {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-weight: 500;
}

/* Website footer mock */
.brand-lockup__mock--web {
  background: var(--bone);
  padding: var(--sp-6);
  justify-content: space-between;
  align-items: flex-start;
}
.brand-lockup__mock-web-brand {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.brand-lockup__mock-web-tag {
  font-size: 12px;
  color: var(--ink-50);
}
.brand-lockup__mock-web-endorse {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 11px;
  color: var(--ink-70);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--stone);
  width: 100%;
  margin-top: var(--sp-6);
}
.brand-lockup__mock-web-badge {
  color: var(--gold);
  font-size: 10px;
}

.brand-lockup__footnote {
  text-align: center;
  font-size: 13px;
  color: var(--ink-50);
  margin: 0;
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
}

/* =========================================================
   BBNA EXCHANGE 2027
   ========================================================= */

.section--exchange {
  padding: 0;
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--bone);
  overflow: hidden;
}
.exchange-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.exchange-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.exchange-image__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10, 10, 10, 0.85) 0%,
      rgba(10, 10, 10, 0.65) 40%,
      rgba(10, 10, 10, 0.30) 75%,
      rgba(10, 10, 10, 0.15) 100%),
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.25) 0%,
      rgba(10, 10, 10, 0.15) 50%,
      rgba(10, 10, 10, 0.55) 100%);
}
.exchange-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: var(--sp-32);
  padding-bottom: var(--sp-32);
}
.exchange-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin: 0 0 var(--sp-4);
}
.exchange-year {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.exchange-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--ink-10);
  margin: 0 0 var(--sp-8);
  line-height: 1.35;
  max-width: 720px;
}
.exchange-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
  padding: var(--sp-6) 0;
  border-top: 1px solid rgba(var(--gold-rgb), 0.22);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.22);
}
@media (max-width: 640px) {
  .exchange-meta { grid-template-columns: 1fr; gap: var(--sp-6); }
}
.exchange-meta__label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.exchange-meta__value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--bone);
  line-height: 1.3;
}
.exchange-body {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink-10);
  margin: 0 0 var(--sp-6);
  max-width: 620px;
}
.exchange-body--lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.5;
  color: var(--bone);
  margin-bottom: var(--sp-8);
  max-width: 640px;
}

/* Exchange manifesto block — poetic beat before the meta card */
.exchange-manifesto {
  max-width: 640px;
  margin: var(--sp-4) 0 var(--sp-12);
  padding: var(--sp-8) 0;
  border-top: 1px solid rgba(var(--gold-rgb), 0.22);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.22);
}
.exchange-manifesto__line {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.35;
  color: var(--bone);
  margin: 0 0 var(--sp-2);
  letter-spacing: -0.01em;
}
.exchange-manifesto__line:last-child { margin-bottom: 0; }
.exchange-manifesto__line--accent {
  color: var(--gold-bright);
  font-style: italic;
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(var(--gold-rgb), 0.15);
}

/* Exchange closing invitation — the founders line */
.exchange-close {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-10);
  margin: 0 0 var(--sp-8);
  max-width: 640px;
  padding-left: var(--sp-5);
  border-left: 2px solid var(--gold);
}
.exchange-close strong { color: var(--gold-bright); font-weight: 500; }
.button--gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  margin-top: var(--sp-4);
}
.button--gold-outline:hover {
  background: var(--gold);
  color: var(--ink);
}
.button--ghost-light {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--ink-30);
  margin-top: var(--sp-4);
}
.button--ghost-light:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}
.exchange-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* =========================================================
   PLATFORM (Bento)
   ========================================================= */

.section--platform { background: var(--bone); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bento-grid { grid-template-columns: 1fr; } }
.bento {
  background: var(--bone-alt);
  border: 1px solid var(--stone);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform 0.55s var(--ease-out), border-color 0.3s var(--ease-out);
  min-height: 240px;
}
.bento:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.bento--large,
.bento--wide {
  grid-column: span 2;
}
.bento--large {
  background: linear-gradient(135deg, var(--bone-alt) 0%, var(--stone) 100%);
}
@media (max-width: 900px) {
  .bento--large, .bento--wide { grid-column: 1 / -1; }
}
.bento--dark {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.bento__label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.bento--dark .bento__label { color: var(--gold-bright); }
.bento__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-xl);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.bento--dark .bento__title { color: var(--bone); }
.bento p {
  color: var(--ink-70);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}
.bento--dark p { color: var(--ink-10); }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento--large, .bento--wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento--large, .bento--wide { grid-column: span 1; }
}

/* Platform credentials row */
.platform-credentials {
  margin-top: var(--sp-16);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--stone);
  text-align: center;
}
.platform-credentials__label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--ink-70);
  margin-bottom: var(--sp-6);
}
.platform-credentials__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-8) var(--sp-12);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.platform-credentials__row span {
  position: relative;
}
.platform-credentials__row span:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  right: -1.75rem;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
@media (max-width: 720px) {
  .platform-credentials__row { gap: var(--sp-4); flex-direction: column; }
  .platform-credentials__row span::after { display: none !important; }
}

/* =========================================================
   PRICING
   ========================================================= */

.section--pricing { background: var(--bone-alt); }

.pricing-primary {
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
  padding: clamp(2.5rem, 5vw, 4rem);
  max-width: 900px;
  margin: 0 auto var(--sp-16);
  text-align: center;
  position: relative;
}

.pricing-primary__label {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.pricing-primary__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  font-family: var(--font-display);
  color: var(--bone);
}
.pricing-primary__currency { font-size: var(--text-2xl); color: var(--ink-30); }
.pricing-primary__figure {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.pricing-primary__unit {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ink-30);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-primary__terms {
  font-size: 13px;
  color: rgba(250, 248, 243, 0.55);
  margin-bottom: var(--sp-6);
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}
.pricing-primary__foundation {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--ink-10);
  margin-bottom: var(--sp-8);
}
.pricing-primary__list {
  list-style: none;
  padding: 0;
  margin: 0 auto var(--sp-8);
  max-width: 640px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.pricing-primary__list li {
  color: var(--ink-10);
  font-size: var(--text-sm);
  line-height: 1.6;
  padding-left: var(--sp-6);
  position: relative;
}
.pricing-primary__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.pricing-primary__list strong { color: var(--gold); font-weight: 500; }
.pricing-primary .button--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.pricing-primary .button--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

/* Advertising tiers */
.pricing-secondary, .pricing-tertiary {
  max-width: 1100px;
  margin: 0 auto var(--sp-16);
}
.pricing-tertiary { margin-bottom: 0; }
.pricing-secondary__title {
  text-align: center;
  margin-bottom: var(--sp-10);
}
/* Optional badge - make it clearly visible above these secondary
   pricing sections. Overrides the muted default .eyebrow color. */
.pricing-secondary__title > .eyebrow,
.pricing-tertiary .pricing-secondary__title > .eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold-deep);
  background: rgba(184, 147, 78, 0.14);
  border: 1px solid rgba(184, 147, 78, 0.32);
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.16em;
  margin-bottom: var(--sp-4);
}
.pricing-secondary__title h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 var(--sp-3);
  line-height: 1.15;
}
.pricing-secondary__title p {
  color: var(--ink-70);
  margin: 0;
  font-size: var(--text-base);
}

.advertising-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
@media (max-width: 900px) { .advertising-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .advertising-grid { grid-template-columns: 1fr; } }

.ad-tier {
  background: var(--bone);
  border: 1px solid var(--stone);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color 0.45s var(--ease-out);
}
.ad-tier:hover { border-color: var(--gold); }
.ad-tier__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--ink);
}
.ad-tier__listings {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.ad-tier__price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: auto;
  font-variant-numeric: tabular-nums;
}
.ad-tier__price span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: var(--sp-1);
}
.ad-tier--featured {
  background: var(--ink);
  border-color: var(--ink);
}
.ad-tier--featured .ad-tier__name,
.ad-tier--featured .ad-tier__price { color: var(--bone); }
.ad-tier--featured .ad-tier__listings { color: var(--gold); }
.ad-tier--featured .ad-tier__price span { color: var(--ink-30); }

/* Add-ons */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
.addon--wide { grid-column: span 2; }
@media (max-width: 720px) {
  .addon-grid { grid-template-columns: 1fr; }
  .addon--wide { grid-column: span 1; }
}
.addon {
  background: var(--bone);
  border: 1px solid var(--stone);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.addon__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--ink);
}
.addon__provider {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.addon__desc { color: var(--ink-70); font-size: var(--text-sm); margin-top: var(--sp-2); line-height: 1.55; }

/* =========================================================
   CALCULATOR
   ========================================================= */

.section--calculator { background: var(--bone); }

.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--stone);
  background: var(--bone-alt);
  padding: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 900px) {
  .calculator { grid-template-columns: 1fr; }
}
.calculator__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}
@media (max-width: 600px) { .calculator__inputs { grid-template-columns: 1fr; } }

.calc-field { display: flex; flex-direction: column; gap: var(--sp-2); }
.calc-field label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-50);
  font-weight: 500;
}
.calc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bone);
  border: 1px solid var(--stone);
  border-radius: 2px;
  transition: border-color 0.45s var(--ease-out);
}
.calc-input-wrap:focus-within { border-color: var(--gold); }
.calc-input-prefix, .calc-input-suffix {
  padding: 0 var(--sp-3);
  color: var(--ink-50);
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.calc-input-wrap input {
  flex-grow: 1;
  border: 0;
  background: transparent;
  padding: var(--sp-3) var(--sp-3) var(--sp-3) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  min-width: 0;
  outline: none;
}
.calc-hint {
  font-size: 0.7rem;
  color: var(--ink-50);
  letter-spacing: 0.02em;
}

.calculator__results {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.calc-result {
  padding: var(--sp-6);
  background: var(--bone);
  border: 1px solid var(--stone);
}
.calc-result__label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
  display: block;
  margin-bottom: var(--sp-4);
}
.calc-result__value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  line-height: 1;
  color: var(--ink);
  margin-bottom: var(--sp-4);
  font-variant-numeric: tabular-nums;
}
.calc-result__value--muted .calc-result__figure { color: var(--ink-50); }
.calc-result__breakdown {
  font-size: var(--text-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.calc-result__breakdown > div {
  display: flex;
  justify-content: space-between;
  color: var(--ink-70);
  font-variant-numeric: tabular-nums;
}
.calc-result__breakdown > div span:last-child { color: var(--ink); font-weight: 500; }
.calc-result__total {
  padding-top: var(--sp-2);
  margin-top: var(--sp-2);
  border-top: 1px solid var(--stone);
  font-weight: 600;
}
.calc-result__total span:last-child { color: var(--ink) !important; }

.calc-result--featured {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
  position: relative;
}
.calc-result--featured .calc-result__label { color: var(--gold); }
.calc-result--featured .calc-result__value { color: var(--bone); }
.calc-result--featured .calc-result__breakdown > div { color: var(--ink-30); }
.calc-result--featured .calc-result__breakdown > div span:last-child { color: var(--bone); }
.calc-result--featured .calc-result__total { border-top-color: var(--ink-70); }
.calc-result--featured .calc-result__total span:last-child { color: var(--gold) !important; }

.calc-delta {
  background: var(--gold);
  color: var(--ink);
  padding: var(--sp-8);
  text-align: center;
  border: 1px solid var(--gold);
  grid-column: 1 / -1;
  margin-top: var(--sp-6);
}
.calc-delta__label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
  color: var(--walnut);
}
.calc-delta__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  margin-bottom: var(--sp-2);
  font-variant-numeric: tabular-nums;
}
.calc-delta__note {
  font-size: var(--text-xs);
  color: var(--walnut);
  letter-spacing: 0.04em;
}

/* =========================================================
   FOUNDATION PANEL
   ========================================================= */

.section--foundation { background: var(--ink); color: var(--bone); position: relative; overflow: hidden; }

.foundation-panel {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--sp-4);
}
.foundation-panel__mark {
  color: var(--gold);
  width: 90px;
  height: 90px;
  margin: 0 auto var(--sp-8);
}
.foundation-panel__mark svg { width: 100%; height: 100%; }
.foundation-panel__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin: 0 0 var(--sp-8);
}
.foundation-panel__title em { color: var(--gold); font-style: normal; font-weight: inherit; }
.foundation-panel__body {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--ink-10);
  margin: 0 auto var(--sp-6);
  max-width: 640px;
}
.foundation-panel__body--sub {
  font-size: var(--text-base);
  color: rgba(250, 248, 243, 0.72);
  margin-bottom: var(--sp-10);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(184, 147, 78, 0.15);
}
.foundation-panel__body--sub strong { color: var(--gold-bright); font-weight: 500; }

/* Founding Member onboarding conditions block — sits on ink background */
.foundation-conditions {
  max-width: 640px;
  margin: 0 auto var(--sp-10);
  padding: var(--sp-6) var(--sp-8);
  background: rgba(var(--gold-rgb), 0.05);
  border-left: 1px solid rgba(var(--gold-bright-rgb), 0.5);
  text-align: left;
}
.foundation-conditions__label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: var(--sp-4);
}
.foundation-conditions__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.foundation-conditions__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(250, 248, 243, 0.88);
}
.foundation-conditions__list li strong { color: var(--bone); font-weight: 600; }
.foundation-conditions__num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 1px;
}
.foundation-conditions__note {
  margin: 0;
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(var(--gold-rgb), 0.2);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(250, 248, 243, 0.55);
  font-style: italic;
}
@media (max-width: 600px) {
  .foundation-conditions { padding: var(--sp-5) var(--sp-5); }
}

.foundation-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  max-width: 640px;
  margin: var(--sp-12) auto;
  padding: var(--sp-8) 0;
  border-top: 1px solid rgba(var(--gold-rgb), 0.22);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.22);
}
@media (max-width: 600px) { .foundation-panel__stats { grid-template-columns: 1fr; gap: var(--sp-8); } }
.foundation-stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--gold);
  line-height: 1.05;
  margin-bottom: var(--sp-2);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.foundation-stat__unit {
  font-size: 0.55em;
  color: rgba(184, 147, 78, 0.75);
  font-weight: 400;
  margin-left: 2px;
  letter-spacing: 0.02em;
}
.foundation-stat__label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-30);
}
.foundation-panel .button--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  margin-top: var(--sp-4);
}
.foundation-panel .button--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}
.foundation-panel__disclaimer {
  font-size: var(--text-xs);
  color: var(--ink-30);
  letter-spacing: 0.04em;
  margin-top: var(--sp-6);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   FIT / ELIGIBILITY
   ========================================================= */

.section--fit { background: var(--bone-alt); }

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 780px) { .fit-grid { grid-template-columns: 1fr; gap: var(--sp-12); } }
.fit-column__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--ink);
  margin: 0 0 var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--stone);
}
.fit-column__title em { color: var(--gold); font-style: normal; font-weight: inherit; }
.fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.fit-list li {
  padding-left: var(--sp-8);
  position: relative;
  color: var(--ink);
  line-height: 1.5;
  font-size: var(--text-base);
}
.fit-list--yes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}
.fit-list--no li { color: var(--ink-70); }
.fit-list--no li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: -0.05em;
  color: var(--ink-30);
  font-size: var(--text-xl);
  font-family: var(--font-display);
}

/* =========================================================
   APPLY
   ========================================================= */

.section--apply { background: var(--bone); }

.apply-panel {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.apply-panel__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-3xl);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: var(--sp-2) 0 var(--sp-6);
}
.apply-panel__body {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-70);
  margin: 0 auto var(--sp-4);
  max-width: 640px;
}

.apply-form {
  max-width: 640px;
  margin: var(--sp-12) auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.apply-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 600px) { .apply-form__row { grid-template-columns: 1fr; } }
.apply-form__field { display: flex; flex-direction: column; gap: var(--sp-2); }
.apply-form__field label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-50);
  font-weight: 500;
}
.apply-form input, .apply-form select, .apply-form textarea {
  background: var(--bone-alt);
  border: 1px solid var(--stone);
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.45s var(--ease-out);
}
.apply-form input:focus, .apply-form select:focus, .apply-form textarea:focus {
  border-color: var(--gold);
}
.apply-form textarea { resize: vertical; font-family: var(--font-body); }
.apply-form .button { margin-top: var(--sp-4); }
.apply-form__note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--ink-50);
  margin: var(--sp-2) 0 0;
}

.apply-thanks {
  display: none;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--gold);
  color: var(--ink);
  margin-top: var(--sp-4);
}
.apply-thanks.is-visible { display: flex; }
.apply-thanks__mark {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  flex-shrink: 0;
}
.apply-thanks__title { font-family: var(--font-display); font-size: var(--text-lg); }
.apply-thanks__body { font-size: var(--text-sm); }

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: var(--ink);
  color: var(--ink-30);
  padding: var(--sp-20) 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid var(--ink-70);
}
@media (max-width: 1100px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}

.footer__brand { display: flex; flex-direction: column; gap: var(--sp-4); }

.footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--ink-30);
  line-height: 1.5;
  margin: 0;
}
.footer__col { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__col-title {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.footer__col a {
  color: var(--ink-30);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.45s var(--ease-out);
}
.footer__col a:hover { color: var(--bone); }

.footer__meta {
  padding: var(--sp-6) 0;
  font-size: var(--text-xs);
  color: var(--ink-50);
}
.footer__meta .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
/* Defensive: iOS Safari sometimes auto-detects ABN / phone / address
   strings as tappable data-detector links even when format-detection
   meta is set. Force gold + no underline so any auto-linked span
   inherits the site's link language instead of the browser default. */
.footer__meta,
.footer__meta * {
  -webkit-touch-callout: none;
}
.footer__meta a[href^="tel:"],
.footer__meta a[href^="mailto:"],
.footer__meta a[href*="abn.business"],
.footer__meta [style*="color: rgb(0, 0, 238)"],
.footer__meta span[style],
.footer__meta [data-tap-name],
.footer__meta [x-apple-data-detectors] {
  color: var(--ink-50) !important;
  text-decoration: none !important;
  -webkit-text-fill-color: var(--ink-50) !important;
}

/* =========================================================
   ANIMATIONS
   Elements are visible by default. JS adds .js-fade to arm the
   scroll reveal; IntersectionObserver then adds .is-visible.
   This prevents blank-until-scroll behaviour when JS is slow.
   ========================================================= */

.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.js-fade.is-visible { opacity: 1; transform: translateY(0); }

/* Commission bars: visible track by default; JS animates the fill */
.commission-bar {
  /* base state: display 100% instantly so the number is always visible */
  width: var(--fill);
}
.js-bar .commission-bar { width: 0; }
.js-bar .commission-bar.is-animated { width: var(--fill); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .js-fade { opacity: 1 !important; transform: none !important; }
  .commission-bar { width: var(--fill) !important; }
}

/* =========================================================
   HERO — MANIFESTO VARIANT (UrbanX-inspired)
   Solid black, massive typography, animated brand mark.
   ========================================================= */

.hero--manifesto {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--bone);
  padding: var(--sp-32) 0 var(--sp-16);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle gradient wash from top-right to bottom-left to give depth without an image */
.hero--manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 78% 32%, rgba(184, 147, 78, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 20% 85%, rgba(74, 56, 38, 0.5) 0%, transparent 55%);
  z-index: 0;
}

/* Animated chevron mark — sits behind and to the right of the type */
.hero-mark {
  position: absolute;
  top: 50%;
  right: -10%;
  width: min(700px, 55vw);
  height: min(700px, 55vw);
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.85;
  pointer-events: none;
}
.hero-mark__svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 60px rgba(184, 147, 78, 0.25));
}

/* Rotations — different speeds create depth */
.hero-mark__ghost {
  transform-origin: 200px 200px;
  animation: chevron-rotate-cw 60s linear infinite;
}
.hero-mark__mid {
  transform-origin: 200px 200px;
  animation: chevron-rotate-ccw 45s linear infinite;
}
.hero-mark__inner {
  transform-origin: 200px 220px;
  animation: chevron-pulse 6s ease-in-out infinite;
}

@keyframes chevron-rotate-cw {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes chevron-rotate-ccw {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes chevron-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%      { transform: scale(1.05); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mark__ghost,
  .hero-mark__mid,
  .hero-mark__inner {
    animation: none;
  }
}

/* Manifesto content sits on top of everything */
.hero__content--manifesto {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.hero__eyebrow-manifesto {
  color: var(--gold-bright) !important;
  margin-bottom: var(--sp-8);
}

/* The manifesto headline — massive scale, ultra-tight tracking, uppercase */
.hero__headline--manifesto {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8.2vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 5.5rem;
  color: var(--bone);
}
.hero__headline--manifesto .hero__line { display: block; white-space: nowrap; }
.hero__headline--manifesto .hero__line--accent {
  color: var(--gold-bright);
}

.hero__lede--manifesto {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: rgba(250, 248, 243, 0.72);
  max-width: 620px;
  margin: 0 0 var(--sp-16);
  font-weight: 400;
}

.hero--manifesto .hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.hero--manifesto .hero__meta {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.5);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(250, 248, 243, 0.1);
  max-width: 620px;
}

/* Mobile: chevron mark shrinks and repositions to top */
@media (max-width: 900px) {
  .hero--manifesto {
    padding: var(--sp-24) 0 var(--sp-16);
    min-height: auto;
  }
  .hero-mark {
    top: 8%;
    right: -25%;
    width: 80vw;
    height: 80vw;
    opacity: 0.5;
    transform: none;
  }
  .hero__headline--manifesto {
    font-size: clamp(2rem, 9vw, 5rem);
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: var(--sp-8);
  }
  /* Allow long words like "BUSINESS BROKERS" to wrap on narrow screens
     instead of overflowing the viewport. */
  .hero__headline--manifesto .hero__line {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
  }
}

/* Extra-narrow mobile (< 400px): shrink further so 3-word lines fit */
@media (max-width: 400px) {
  .hero__headline--manifesto {
    font-size: clamp(1.75rem, 8.2vw, 2.6rem);
  }
}
/* Reset margin-top on ghost-light in manifesto hero context */
.hero--manifesto .button--ghost-light { margin-top: 0; }
/* Ghost-light border needs to be visible on the deep-black background */
.hero--manifesto .button--ghost-light {
  border-color: rgba(250, 248, 243, 0.28);
}

/* =========================================================
   HERO --with-image variant: layer photograph behind manifesto
   ========================================================= */
.hero--with-image .hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero--with-image .hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.62) contrast(1.05) saturate(0.92);
}
.hero--with-image .hero__gradient {
  position: absolute;
  inset: 0;
  background:
    /* Strong dark wash on left where the manifesto sits */
    linear-gradient(90deg,
      rgba(10, 10, 10, 0.92) 0%,
      rgba(10, 10, 10, 0.78) 30%,
      rgba(10, 10, 10, 0.45) 60%,
      rgba(10, 10, 10, 0.25) 100%),
    /* Vertical wash to darken top and bottom */
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.35) 0%,
      rgba(10, 10, 10, 0.25) 50%,
      rgba(10, 10, 10, 0.7) 100%);
}
/* When the image is present, dial back the radial glow to keep depth without noise */
.hero--with-image::before {
  background:
    radial-gradient(ellipse 800px 600px at 78% 32%, rgba(184, 147, 78, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 20% 85%, rgba(74, 56, 38, 0.35) 0%, transparent 55%);
}
/* Chevron mark: opacity down slightly so it doesn't fight the photo */
.hero--with-image .hero-mark {
  opacity: 0.55;
  mix-blend-mode: screen;
}

@media (max-width: 900px) {
  .hero--with-image .hero__image img { object-position: 65% 40%; }
  .hero--with-image .hero__gradient {
    background:
      linear-gradient(180deg,
        rgba(10, 10, 10, 0.55) 0%,
        rgba(10, 10, 10, 0.45) 30%,
        rgba(10, 10, 10, 0.78) 70%,
        rgba(10, 10, 10, 0.92) 100%);
  }
}

/* Brand grid: 3 columns for the refined section */
.brand-grid--three {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .brand-grid--three { grid-template-columns: 1fr; } }

/* Brand manifesto — bold typographic statement replacing the italic pullquote */
.brand-manifesto--bold {
  max-width: 1000px;
  margin: var(--sp-16) auto 0;
  padding: var(--sp-12) 0 var(--sp-8);
  text-align: center;
  border-top: 1px solid var(--stone);
  border-bottom: none;
}
.brand-manifesto__line {
  font-family: var(--font-display);
  font-style: normal !important;
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.brand-manifesto__line + .brand-manifesto__line {
  margin-top: var(--sp-4);
}
.brand-manifesto p.brand-manifesto__line--accent,
.brand-manifesto__line.brand-manifesto__line--accent {
  color: var(--gold);
}

/* Closing manifesto CTA — echoes the hero */
.section--apply {
  background: var(--ink);
  color: var(--bone);
  padding: var(--sp-32) 0;
}
.apply-close {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.apply-close__manifesto {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: var(--sp-10);
}
.apply-close__manifesto .hero__line { display: block; }
.apply-close__manifesto .hero__line--accent { color: var(--gold-bright); }
.apply-close__lede {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 248, 243, 0.75);
  max-width: 640px;
  margin: 0 auto var(--sp-8);
}
.apply-close .button {
  padding: 16px 32px;
  font-size: 15px;
}
/* Closing CTA button — gold-filled for legibility on ink background */
.section--apply .button--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.section--apply .button--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--ink);
}

/* Inline GST label in stat strip */
.stat__gst-inline {
  color: var(--gold);
  font-size: 0.85em;
  letter-spacing: 0.05em;
}

/* Platform video demo */
.platform-video {
  max-width: 1100px;
  margin: 0 auto var(--sp-16);
  position: relative;
}
.platform-video__player {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  background: var(--ink);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 20px 60px -20px rgba(10, 10, 10, 0.3), 0 1px 0 rgba(184, 147, 78, 0.15);
}
.platform-video__caption {
  margin: var(--sp-4) 0 0;
  font-size: 13px;
  color: var(--ink-50);
  line-height: 1.55;
  text-align: center;
  font-style: italic;
}

/* Platform proof stats — hero-scale numbers */
.platform-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: var(--sp-16) 0 var(--sp-20);
  padding: var(--sp-12) 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
@media (max-width: 900px) { .platform-proof { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .platform-proof { grid-template-columns: 1fr; } }
.platform-proof__stat {
  text-align: center;
  padding: 0 var(--sp-6);
  border-right: 1px solid var(--stone);
}
.platform-proof__stat:last-child { border-right: none; }
@media (max-width: 900px) {
  .platform-proof__stat:nth-child(2) { border-right: none; }
  .platform-proof__stat:nth-child(1), .platform-proof__stat:nth-child(2) {
    padding-bottom: var(--sp-8);
    margin-bottom: var(--sp-8);
    border-bottom: 1px solid var(--stone);
  }
}
@media (max-width: 500px) {
  .platform-proof__stat { border-right: none !important; }
  .platform-proof__stat:not(:last-child) {
    padding-bottom: var(--sp-6);
    margin-bottom: var(--sp-6);
    border-bottom: 1px solid var(--stone);
  }
}
.platform-proof__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--sp-4);
  white-space: nowrap;
}
.platform-proof__plus {
  color: var(--gold);
  font-size: 0.55em;
  font-weight: 500;
  letter-spacing: 0;
}
.platform-proof__label {
  font-size: 13px;
  color: var(--walnut);
  opacity: 0.75;
  line-height: 1.4;
  letter-spacing: 0.01em;
  max-width: 200px;
  margin: 0 auto;
}

/* Platform value pillars — 2×2 with real presence */
.platform-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-20);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) { .platform-pillars { grid-template-columns: 1fr; } }
.platform-pillar {
  padding: var(--sp-8);
  background: var(--bone-alt);
  border: 1px solid var(--stone);
  border-left: 3px solid var(--gold);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.platform-pillar:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 10, 10, 0.05);
}
.platform-pillar__label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: var(--sp-3);
  padding-bottom: 0;
  border-bottom: none;
  line-height: 1.2;
}
.platform-pillar p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.78;
  margin: 0;
}

/* Direct address panel — "if you're at a franchise" */
.section--direct {
  background: var(--ink);
  color: var(--bone);
  padding: var(--sp-32) 0;
}
.direct-panel {
  max-width: 1200px;
  margin: 0 auto;
}
.direct-panel > .eyebrow {
  text-align: center;
  display: block;
  margin-bottom: var(--sp-6);
}
.direct-panel__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bone);
  text-align: center;
  margin: 0 0 var(--sp-16);
}
.direct-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: stretch;
}
@media (max-width: 800px) { .direct-panel__grid { grid-template-columns: 1fr; } }
.direct-panel__col {
  padding: var(--sp-10);
  background: rgba(250, 248, 243, 0.03);
  border: none;
  display: flex;
  flex-direction: column;
}
.direct-panel__col--gold {
  background: linear-gradient(180deg, rgba(184, 147, 78, 0.14) 0%, rgba(184, 147, 78, 0.05) 100%);
  border: none;
  border-left: 2px solid var(--gold);
}
.direct-panel__subhead {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin: 0 0 var(--sp-6);
}
.direct-panel__col--gold .direct-panel__subhead {
  color: var(--gold-bright);
}
.direct-panel__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-8);
  flex-grow: 1;
}
.direct-panel__list li {
  padding: var(--sp-3) 0;
  padding-left: var(--sp-5);
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(250, 248, 243, 0.85);
  border-bottom: 1px solid rgba(250, 248, 243, 0.07);
}
.direct-panel__list li:last-child { border-bottom: none; }
.direct-panel__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.7;
}
.direct-panel__col--gold .direct-panel__list li strong { color: var(--gold-bright); }
.direct-panel__col--gold .button {
  margin-top: auto;
  align-self: flex-start;
}
/* Direct panel button — gold-on-ink so it's legible in the dark section */
.section--direct .button--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.section--direct .button--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--ink);
}

/* Calculator: muted line for "quoted separately" */
.calc-line--muted {
  opacity: 0.6;
  font-style: normal;
}
.calc-line--muted span:last-child {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* Inline gold link */
.link-gold {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 147, 78, 0.3);
  transition: border-color 0.45s var(--ease-out);
}
.link-gold:hover {
  border-bottom-color: var(--gold);
}

/* Calculator delta CTA */
.calc-delta__cta {
  display: inline-block;
  margin-top: var(--sp-5);
  padding: var(--sp-3) var(--sp-6);
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.calc-delta__cta:hover {
  background: var(--walnut);
  transform: translateY(-1px);
}

/* Platform voices — editorial testimonial cards */
.platform-voices {
  margin-top: var(--sp-20);
  padding: var(--sp-16) var(--sp-8);
  background: linear-gradient(180deg, rgba(74, 56, 38, 0.03) 0%, rgba(74, 56, 38, 0.06) 100%);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  margin-left: calc(-1 * var(--sp-8));
  margin-right: calc(-1 * var(--sp-8));
}
@media (max-width: 640px) {
  .platform-voices {
    margin-left: 0;
    margin-right: 0;
    padding: var(--sp-12) var(--sp-5);
  }
}
.platform-voices__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--sp-12);
}
.platform-voices__header .eyebrow {
  display: block;
  margin-bottom: var(--sp-4);
}
.platform-voices__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.platform-voices__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-5);
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .platform-voices__grid { grid-template-columns: 1fr 1fr; }
  .platform-voice--featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .platform-voices__grid { grid-template-columns: 1fr; }
  .platform-voice--featured { grid-column: span 1; }
}
.platform-voice {
  margin: 0;
  padding: var(--sp-8);
  background: var(--bone);
  border: 1px solid rgba(74, 56, 38, 0.10);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}
.platform-voice:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(10, 10, 10, 0.06);
  border-color: rgba(184, 147, 78, 0.35);
}
.platform-voice--featured {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
  padding: var(--sp-8);
}
.platform-voice--featured:hover { border-color: var(--gold); }
.platform-voice__mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 84px;
  font-weight: 400;
  line-height: 0.6;
  color: var(--gold);
  height: 40px;
  margin-bottom: var(--sp-2);
  user-select: none;
  opacity: 0.6;
}
.platform-voice--featured .platform-voice__mark { color: var(--gold-bright); font-size: 96px; height: 44px; opacity: 0.8; }
.platform-voice__quote {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 var(--sp-6);
  font-weight: 400;
  flex-grow: 1;
}
.platform-voice--featured .platform-voice__quote {
  color: var(--bone);
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: var(--sp-6);
}
.platform-voice__quote strong {
  color: var(--walnut);
  font-weight: 500;
}
.platform-voice--featured .platform-voice__quote strong { color: var(--gold-bright); }
.platform-voice__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(74, 56, 38, 0.12);
}
.platform-voice--featured .platform-voice__footer {
  border-top-color: rgba(250, 248, 243, 0.15);
}
.platform-voice__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.platform-voice--featured .platform-voice__avatar {
  background: var(--gold-bright);
}
.platform-voice__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.platform-voice__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.platform-voice--featured .platform-voice__name { color: var(--bone); }
.platform-voice__role {
  font-size: 12px;
  color: var(--walnut);
  letter-spacing: 0.01em;
}
.platform-voice--featured .platform-voice__role { color: var(--gold-bright); opacity: 0.9; }
.platform-voice__firm {
  font-size: 11px;
  color: var(--walnut);
  opacity: 0.65;
  letter-spacing: 0.01em;
}
.platform-voice--featured .platform-voice__firm { color: var(--bone); opacity: 0.55; }
.platform-voices__disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--walnut);
  opacity: 0.55;
  letter-spacing: 0.02em;
  margin-top: var(--sp-10);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Week One — editorial timeline */
.section--week-one {
  background: linear-gradient(180deg, var(--bone) 0%, rgba(74, 56, 38, 0.04) 100%);
  padding: var(--sp-32) 0;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: var(--sp-16) auto 0;
  max-width: 1140px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}
/* Horizontal connecting line behind the nodes */
.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(74, 56, 38, 0.15) 0%,
    rgba(184, 147, 78, 0.35) 50%,
    var(--gold) 100%);
  z-index: 0;
}
@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before {
    top: 32px;
    bottom: 32px;
    left: 32px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg,
      rgba(74, 56, 38, 0.15) 0%,
      rgba(184, 147, 78, 0.35) 50%,
      var(--gold) 100%);
  }
}
.timeline__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-5);
}
@media (max-width: 900px) {
  .timeline__step {
    flex-direction: row;
    padding-bottom: var(--sp-8);
    gap: var(--sp-6);
  }
  .timeline__step:last-child { padding-bottom: 0; }
}
.timeline__node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bone);
  border: 1px solid rgba(74, 56, 38, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.55s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 2;
}
.timeline__node::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(184, 147, 78, 0.15);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.timeline__step:hover .timeline__node {
  border-color: var(--gold);
  transform: scale(1.05);
}
.timeline__step:hover .timeline__node::before {
  opacity: 1;
}
.timeline__node--payoff {
  background: var(--ink);
  border-color: var(--ink);
}
.timeline__number {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.timeline__node--payoff .timeline__number {
  color: var(--gold-bright);
}
.timeline__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-right: var(--sp-4);
}
@media (max-width: 900px) {
  .timeline__content { padding-right: 0; padding-top: var(--sp-2); flex: 1; }
}
.timeline__day {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut);
  opacity: 0.75;
}
.timeline__day.gold {
  color: var(--gold);
  opacity: 1;
}
.timeline__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--sp-1) 0 var(--sp-2);
}
.timeline__body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.72;
  margin: 0;
}

/* Timeline footnote — reassurance strip */
.timeline-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin: var(--sp-16) auto 0;
  max-width: 780px;
  padding: var(--sp-6) var(--sp-8);
  background: var(--bone);
  border: 1px solid rgba(74, 56, 38, 0.12);
  border-left: 3px solid var(--gold);
}
.timeline-footnote__mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
}
.timeline-footnote p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}
.timeline-footnote__aside {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--walnut);
  opacity: 0.75;
  margin-top: 4px;
}
@media (max-width: 640px) {
  .timeline-footnote {
    padding: var(--sp-5) var(--sp-6);
  }
  .timeline-footnote p { font-size: 13px; }
}

/* Business For Good — B1G1 section */
.section--good {
  background: linear-gradient(180deg, var(--bone) 0%, rgba(184, 147, 78, 0.08) 100%);
  padding: var(--sp-32) 0;
  position: relative;
}
.section--good::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.good-panel {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-8);
}
.good-panel__mark {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--sp-6);
  color: var(--gold);
}
.good-panel__mark svg {
  width: 100%;
  height: 100%;
}
.good-panel__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: var(--sp-4) 0 var(--sp-8);
}
.good-panel__title em {
  font-style: normal;
  color: var(--gold);
}
.good-panel__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.85;
  max-width: 680px;
  margin: 0 auto var(--sp-6);
}
.good-panel__body + .good-panel__body { margin-top: calc(-1 * var(--sp-3)); }
.good-panel__body a {
  color: var(--walnut);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: color 0.45s var(--ease-out);
}
.good-panel__body a:hover {
  color: var(--gold);
}

/* Impact stats */
.good-impacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin: var(--sp-12) 0;
  padding: var(--sp-8) 0;
  border-top: 1px solid rgba(74, 56, 38, 0.15);
  border-bottom: 1px solid rgba(74, 56, 38, 0.15);
}
@media (max-width: 640px) {
  .good-impacts { grid-template-columns: 1fr; gap: var(--sp-6); }
}
.good-impact__figure {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.good-impact__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--walnut);
  opacity: 0.85;
  line-height: 1.4;
  max-width: 220px;
  margin: 0 auto;
}

/* Impact moments list */
.good-moments {
  background: var(--bone);
  border: 1px solid rgba(74, 56, 38, 0.12);
  padding: var(--sp-8);
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}
.good-moments__title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-5);
  text-align: center;
}
.good-moments__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.good-moments__list li {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.good-moments__mark {
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.good-moments__list strong {
  font-weight: 600;
  color: var(--ink);
}
.good-moments__footnote {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--walnut);
  opacity: 0.65;
  line-height: 1.5;
  text-align: center;
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(74, 56, 38, 0.10);
  margin: 0;
}

/* Quote from the Compact */
.good-quote {
  margin: var(--sp-12) auto 0;
  max-width: 720px;
  padding: 0 var(--sp-6);
  border: none;
}
.good-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.375rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 var(--sp-4);
  opacity: 0.92;
}
.good-quote__attr {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.good-panel__link {
  display: inline-block;
  margin-top: var(--sp-8);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(184, 147, 78, 0.4);
  transition: border-color 0.45s var(--ease-out), color 0.2s ease;
}
.good-panel__link:hover {
  color: var(--walnut);
  border-color: var(--walnut);
}

/* Pricing card pledge line */
.pricing-primary__pledge {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(184, 147, 78, 0.2);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(250, 248, 243, 0.75);
  text-align: left;
}
.pricing-primary__pledge-mark {
  color: var(--gold-bright);
  font-size: 14px;
  flex-shrink: 0;
}
.pricing-primary__pledge strong {
  color: var(--gold-bright);
  font-weight: 600;
}
.pricing-primary__pledge a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pricing-primary__pledge + .button--primary,
.pricing-primary .pricing-primary__pledge + .button {
  margin-top: var(--sp-6);
}

/* Closing manifesto pledge */
.apply-close__pledge {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gold);
  opacity: 0.9;
  margin: var(--sp-5) 0 var(--sp-12);
  letter-spacing: 0.01em;
}
@media (max-width: 720px) {
  .apply-close__pledge { margin: var(--sp-6) 0 var(--sp-16); }
}
.apply-close__pledge a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer B1G1 link */
.footer__b1g1 {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 147, 78, 0.3);
  padding-bottom: 1px;
  transition: color 0.45s var(--ease-out), border-color 0.2s ease;
}
.footer__b1g1:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

/* Impact nav link — subtle gold accent */
.nav__impact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__impact-mark {
  color: var(--gold);
  font-size: 0.9em;
  line-height: 1;
  transition: transform 0.2s ease;
}
.nav__impact:hover .nav__impact-mark {
  transform: scale(1.15);
}
.mobile-nav .nav__impact-mark {
  margin-right: 4px;
}

/* Sell-your-business nav link — subtle gold underline draws seller attention */
.nav__sell {
  position: relative;
  color: var(--gold-deep) !important;
  font-weight: 500;
}
.nav__sell::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
  transition: opacity 0.45s var(--ease-out);
}
.nav__sell:hover::after {
  opacity: 1;
}
.nav__sell:hover {
  color: var(--gold) !important;
}

/* =========================================================
   HOMEPAGE — POWERED BY CIM-PRO 4-pillar strip
   ========================================================= */
.home-platform {
  padding: 120px 0;
  background: var(--bone);
  border-top: 1px solid var(--stone);
}
.home-platform__intro {
  max-width: 780px;
  margin: 0 auto var(--sp-10);
  text-align: center;
}
.home-platform__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: var(--sp-4) 0 var(--sp-5);
}
.home-platform__title strong {
  color: var(--gold);
  font-weight: 500;
}
.home-platform__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-70);
  margin: 0;
}
.home-platform__lede a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 147, 78, 0.35);
  transition: border-color 0.3s var(--ease-out);
}
.home-platform__lede a:hover { border-bottom-color: var(--gold); }

.home-platform__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 1100px) { .home-platform__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .home-platform__grid { grid-template-columns: 1fr; } }

.home-platform__card {
  display: block;
  padding: var(--sp-6);
  background: #FFFFFF;
  border: 1px solid rgba(74, 56, 38, 0.10);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  position: relative;
}
.home-platform__card:hover {
  border-color: rgba(184, 147, 78, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.06);
}
.home-platform__card-mark {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
  opacity: 0.85;
}
.home-platform__card-title {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 var(--sp-3);
  letter-spacing: -0.01em;
}
.home-platform__card-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0 0 var(--sp-4);
}
.home-platform__card-more {
  display: inline-block;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(184, 147, 78, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.3s var(--ease-out);
}
.home-platform__card:hover .home-platform__card-more {
  border-bottom-color: var(--gold);
}

/* =========================================================
   CIM-PRO INLINE BRAND LINK
   Wraps every 'CIM-PRO' mention on public pages so the platform
   name always deep-links to cim-pro.co. Subtle gold underline that
   inherits colour from parent context (works on light + dark sections).
   ========================================================= */
.cimpro-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(184, 147, 78, 0.55);
  transition: border-bottom-color 0.25s var(--ease-out),
              color 0.25s var(--ease-out);
  padding-bottom: 1px;
}
.cimpro-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
  border-bottom-style: solid;
}
/* On dark sections (ink background), use gold-bright */
.section--good .cimpro-link,
.sell-platform .cimpro-link,
.how-close .cimpro-link,
.footer .cimpro-link {
  border-bottom-color: rgba(240, 200, 130, 0.5);
}
.section--good .cimpro-link:hover,
.sell-platform .cimpro-link:hover,
.how-close .cimpro-link:hover,
.footer .cimpro-link:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

/* Stat-strip caption - the network-effect one-liner above the numbers */
.stat-strip__caption {
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(250, 248, 243, 0.75);
  max-width: 780px;
  margin: 0 auto var(--sp-8);
  letter-spacing: 0.01em;
}
.stat-strip__caption strong {
  color: var(--gold-bright);
  font-weight: 500;
}

/* Inline "Powered by" + BBNA logo lockup - sits INSIDE each brand-lockup
   mock in place of the previous endorsement text. Centered stack: eyebrow
   label on top, logo directly beneath. */
.brand-lockup__inline-poweredby {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-3);
}
.brand-lockup__inline-poweredby-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.brand-lockup__inline-poweredby-logo {
  height: 28px;
  width: auto;
  display: block;
}
/* Dark-background variant (signage mock) - light label + dark-bg logo. */
.brand-lockup__inline-poweredby--dark .brand-lockup__inline-poweredby-label {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Founding Member 3-year pricing timeline (inside dark pricing card) ===== */
.pricing-timeline {
  margin: var(--sp-6) 0 var(--sp-4);
  padding: 0;
}
.pricing-timeline__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 720px) {
  .pricing-timeline__grid { grid-template-columns: 1fr; gap: 10px; }
}

.pricing-timeline__year {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
  text-align: center;
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

/* Year 1 - the discount year, gold-accent lift */
.pricing-timeline__year--discount {
  background: linear-gradient(180deg, rgba(184, 147, 78, 0.13) 0%, rgba(184, 147, 78, 0.06) 100%);
  border-color: rgba(184, 147, 78, 0.55);
  box-shadow: 0 4px 24px -12px rgba(184, 147, 78, 0.5);
}
.pricing-timeline__year--discount:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 147, 78, 0.85);
}

/* Year 2 & 3 - standard, quieter */
.pricing-timeline__year--locked { }

.pricing-timeline__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.pricing-timeline__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.pricing-timeline__year--discount .pricing-timeline__label {
  color: var(--gold);
}

.pricing-timeline__price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--bone);
  font-variant-numeric: tabular-nums lining-nums;
  margin: 4px 0 2px;
}
.pricing-timeline__year--discount .pricing-timeline__price {
  color: var(--gold-bright, var(--gold));
}

.pricing-timeline__unit {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--sp-3);
}

.pricing-timeline__monthly {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-variant-numeric: tabular-nums lining-nums;
}
.pricing-timeline__year--discount .pricing-timeline__monthly {
  color: rgba(255, 255, 255, 0.8);
  border-top-color: rgba(184, 147, 78, 0.25);
}

/* Rate-lock band sits below the grid */
.pricing-timeline__lockband {
  margin-top: var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.pricing-timeline__lockband-mark {
  color: rgba(184, 147, 78, 0.5);
  letter-spacing: -0.05em;
  user-select: none;
}
.pricing-timeline__lockband-text {
  white-space: nowrap;
}
@media (max-width: 720px) {
  .pricing-timeline__lockband {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 9px;
    text-align: center;
  }
  .pricing-timeline__lockband-text {
    white-space: normal;
    line-height: 1.5;
  }
}

/* Founding Member disclosure - below the timeline lockband */
.pricing-timeline__disclosure {
  margin: var(--sp-3) 0 0;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-timeline__disclosure a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 147, 78, 0.4);
  padding-bottom: 1px;
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.pricing-timeline__disclosure a:hover {
  color: var(--gold-bright, var(--gold));
  border-bottom-color: var(--gold-bright, var(--gold));
}

/* Compact hero on the pricing card - replaces the previous massive
   $15,000 figure now that the timeline visual carries the numbers. */
.pricing-primary__hero {
  text-align: center;
  margin-bottom: var(--sp-4);
}
.pricing-primary__hero-from {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}
.pricing-primary__hero-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-primary__hero-currency {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.pricing-primary__hero-figure {
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums lining-nums;
}
.pricing-primary__hero-unit {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(184, 147, 78, 0.85);
  margin-left: 4px;
}
.pricing-primary__hero-caption {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

/* Platform feature chips inside the pricing card's "The Platform" bullet.
   Compact, subtle pills - reads as a feature list without dominating. */
.platform-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  padding-left: 0;
}
.platform-feature {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

/* Foundation-panel eligibility prompt — one-liner above the numbered
   conditions list. Small, subtle, gold-accented so it reads as a
   precondition, not a call-out. */
.foundation-eligibility {
  max-width: 640px;
  margin: 0 auto var(--sp-4);
  padding: 10px var(--sp-5);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(var(--gold-rgb), 0.04);
  border: 1px solid rgba(var(--gold-bright-rgb), 0.25);
  border-radius: 2px;
}
.foundation-eligibility__mark {
  color: var(--gold-bright);
  font-size: 12px;
  line-height: 1.5;
  flex-shrink: 0;
}
.foundation-eligibility__text {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(250, 248, 243, 0.85);
}
.foundation-eligibility__text strong {
  color: var(--gold-bright);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =========================================================
   FOR BROKERS — utility nav link (temporary Cairns-week addition)
   Subtle, professional, sits before the phone chip. Not primary.
   ========================================================= */
.nav__brokers {
  font-size: 13px;
  color: var(--ink-50);
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border: 1px solid rgba(184, 147, 78, 0.35);
  border-radius: 2px;
  text-decoration: none;
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
  white-space: nowrap;
  margin-right: 4px;
}
.nav__brokers:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  background: rgba(184, 147, 78, 0.05);
}
/* Mobile - appears in the mobile nav */
.nav__brokers--mobile {
  color: var(--gold);
  font-weight: 500;
}
/* On smaller viewports, hide the desktop version so it doesn't crowd */
@media (max-width: 900px) {
  .nav__brokers {
    display: none;
  }
}
