/* ============================================================
   iNETrepreneur Network — Site 2 (robert-w-jones engagement)
   Design: taste-skill driver. Palette + type continuous with Site 1.
   Static HTML/CSS/JS. No build step.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:           #FBFAF7;   /* off-white page */
  --bg-warm:      #F3EFE6;   /* deeper warm panel */
  --bg-warm-2:    #EFEADD;
  --ink:          #0E0E0F;   /* near-black text on light */
  --ink-soft:     #5C5A53;   /* muted text on light */
  --ink-faint:    #8A887F;   /* faint text on light */
  --surface-dark: #0A0A0B;   /* black surface */
  --surface-dk-2: #101012;   /* slightly raised dark */
  --surface-dk-3: #16161A;
  --on-dark:      #F4F1EA;   /* text on dark */
  --on-dark-soft: rgba(244,241,234,0.66);
  --on-dark-faint:rgba(244,241,234,0.40);
  --gold:         #9A7B3C;   /* accent on light */
  --gold-bright:  #C9A24B;   /* accent on dark */
  --gold-deep:    #7E6430;
  --gold-wash:    rgba(154,123,60,0.10);
  --gold-wash-dk: rgba(201,162,75,0.12);
  --line:         rgba(14,14,15,0.13);
  --line-soft:    rgba(14,14,15,0.07);
  --line-strong:  rgba(14,14,15,0.22);
  --line-dark:    rgba(244,241,234,0.16);
  --line-dark-soft:rgba(244,241,234,0.08);

  --wrap:         1180px;
  --wrap-wide:    1320px;
  --wrap-narrow:  760px;

  --pad-x:        clamp(1.25rem, 5vw, 3rem);
  --sec-y:        clamp(4.5rem, 9vw, 8rem);

  --ff-display:   "Fraunces", Georgia, "Times New Roman", serif;
  --ff-sans:      "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft:  0 24px 60px -28px rgba(20,16,8,0.28);
  --shadow-card:  0 18px 42px -24px rgba(20,16,8,0.22);

  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: #fff; }

/* subtle paper noise on the page, fixed + pointer-events-none */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
main, header, footer { position: relative; z-index: 1; }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad-x); }
.wrap--wide { max-width: var(--wrap-wide); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--sec-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--warm { background: var(--bg-warm); }
.section--dark { background: var(--surface-dark); color: var(--on-dark); }
.section--dark .muted { color: var(--on-dark-soft); }
.section--line-top { border-top: 1px solid var(--line); }
.section--dark.section--line-top { border-top: 1px solid var(--line-dark); }

.muted { color: var(--ink-soft); }
.faint { color: var(--ink-faint); }
.center { text-align: center; }
.nowrap { white-space: nowrap; }
.hidden { display: none !important; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.012em;
  font-optical-sizing: auto;
}
.h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); }
.h2 { font-size: clamp(2.05rem, 4.6vw, 3.5rem); }
.h3 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
.h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
.lede {
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
}
.section--dark .lede { color: var(--on-dark-soft); }
.serif-italic { font-family: var(--ff-display); font-style: italic; font-weight: 400; }
.balance { text-wrap: balance; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--ff-sans);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 1.7rem; height: 1px; background: currentColor; opacity: 0.7;
}
.eyebrow--plain::before { display: none; }
.section--dark .eyebrow { color: var(--gold-bright); }

/* section header block */
.s-head { max-width: 62ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.s-head--wide { max-width: 78ch; }
.s-head--center { margin-inline: auto; text-align: center; }
.s-head .eyebrow { margin-bottom: 1.1rem; }
.s-head .h2 { margin-bottom: 1.1rem; }
.s-head p { color: var(--ink-soft); font-size: 1.06rem; }
.section--dark .s-head p { color: var(--on-dark-soft); }

.kicker-rule {
  width: 100%; max-width: var(--wrap); margin: 0 auto;
  border: 0; border-top: 1px solid var(--line); padding: 0;
}

/* mantra ribbon */
.mantra {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--gold-deep);
  letter-spacing: 0.01em;
}
.section--dark .mantra { color: var(--gold-bright); }

/* ---------- Buttons ---------- */
.btn {
  --b-bg: var(--ink); --b-fg: #fff; --b-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--ff-sans); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.005em;
  padding: 0.95em 1.6em; border-radius: 999px;
  background: var(--b-bg); color: var(--b-fg);
  border: 1px solid var(--b-bd);
  cursor: pointer; text-align: center; line-height: 1.2;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(14,14,15,0.45); }
.btn:active { transform: translateY(0); }
.btn .ar { transition: transform 0.25s var(--ease); }
.btn:hover .ar { transform: translateX(3px); }

.btn--gold { --b-bg: var(--gold); --b-fg: #fff; --b-bd: var(--gold); }
.btn--gold:hover { --b-bg: var(--gold-deep); --b-bd: var(--gold-deep); }
.btn--ghost {
  --b-bg: transparent; --b-fg: var(--ink); --b-bd: var(--line-strong);
}
.btn--ghost:hover { --b-bg: var(--ink); --b-fg: #fff; --b-bd: var(--ink); box-shadow: none; transform: translateY(-2px); }
.btn--on-dark { --b-bg: var(--on-dark); --b-fg: var(--surface-dark); --b-bd: var(--on-dark); }
.btn--on-dark:hover { --b-bg: #fff; --b-bd: #fff; }
.btn--ghost-dark { --b-bg: transparent; --b-fg: var(--on-dark); --b-bd: var(--line-dark); }
.btn--ghost-dark:hover { --b-bg: rgba(244,241,234,0.1); --b-bd: var(--line-dark); color: var(--on-dark); transform: translateY(-2px); }
.btn--sm { padding: 0.7em 1.2em; font-size: 0.86rem; }
.btn--lg { padding: 1.05em 1.9em; font-size: 1rem; }
.btn--block { width: 100%; }

/* text link with arrow */
.tlink {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-weight: 600; font-size: 0.96rem; color: var(--ink);
  border-bottom: 1px solid var(--line-strong); padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), gap 0.25s var(--ease);
}
.tlink .ar { transition: transform 0.25s var(--ease); }
.tlink:hover { color: var(--gold-deep); border-color: var(--gold); gap: 0.7em; }
.tlink:hover .ar { transform: translateX(3px); }
.tlink--gold { color: var(--gold-deep); border-color: var(--gold); }
.section--dark .tlink { color: var(--on-dark); border-color: var(--line-dark); }
.section--dark .tlink:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem 1rem; align-items: center; }
.fud {
  margin-top: 0.95rem; font-size: 0.86rem; color: var(--ink-faint);
  display: flex; align-items: flex-start; gap: 0.5em; max-width: 46ch; line-height: 1.5;
}
.section--dark .fud { color: var(--on-dark-faint); }
.fud .dot { color: var(--gold); margin-top: 0.05em; flex: none; }
.section--dark .fud .dot { color: var(--gold-bright); }

/* ---------- Icon arrow (inline svg sizing helper) ---------- */
.ar { width: 0.95em; height: 0.95em; display: inline-block; flex: none; }
.ic { width: 1.4rem; height: 1.4rem; display: block; flex: none; }
.ic-lg { width: 1.7rem; height: 1.7rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,250,247,0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(251,250,247,0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(20,16,8,0.2);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  height: 76px;
  transition: height 0.3s var(--ease);
}
.is-stuck .nav { height: 64px; }
.brand {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  font-family: var(--ff-display); font-weight: 600;
  font-size: 1.18rem; letter-spacing: -0.01em; color: var(--ink);
  flex: none;
}
.brand .b-i { color: var(--gold-deep); }
.brand .b-net { letter-spacing: 0.04em; font-variant-caps: all-small-caps; font-weight: 650; }
.brand .b-rest { }
.brand small {
  display: block; font-family: var(--ff-sans); font-weight: 600;
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 0.1rem;
}
.brand-wrap { display: flex; flex-direction: column; line-height: 1; }

.nav-links { display: flex; align-items: center; gap: clamp(0.5rem, 1.6vw, 1.5rem); }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  padding: 0.4rem 0.1rem; position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -0.1rem; height: 1.5px;
  background: var(--gold); transition: right 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; flex: none; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 12px; background: transparent; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 19px; height: 1.6px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 55; display: none;
  background: rgba(10,10,11,0.4);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.drawer.is-open { display: block; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 380px);
  background: var(--bg); padding: 1.2rem var(--pad-x) 2rem; overflow-y: auto;
  display: flex; flex-direction: column; gap: 0.3rem;
  box-shadow: -30px 0 60px -20px rgba(10,10,11,0.4);
  transform: translateX(100%); transition: transform 0.4s var(--ease);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; padding-block: 0.5rem; }
.drawer__close {
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
  background: transparent; cursor: pointer; font-size: 1.2rem; line-height: 1; color: var(--ink);
}
.drawer .btn { margin-bottom: 1.4rem; }
.drawer__links a {
  display: block; padding: 0.85rem 0.2rem; font-family: var(--ff-display);
  font-size: 1.4rem; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.drawer__links a:last-child { border-bottom: 0; }
.drawer__links a[aria-current="page"] { color: var(--gold-deep); }
.drawer__foot { margin-top: auto; padding-top: 1.4rem; font-size: 0.82rem; color: var(--ink-faint); }
.drawer__foot a { border-bottom: 1px solid var(--line); }

/* ============================================================
   PLACEHOLDER MEDIA BLOCKS (no real images yet — labeled slots)
   ============================================================ */
.ph {
  position: relative; width: 100%; border-radius: 14px; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(154,123,60,0.07), rgba(14,14,15,0.04)),
    var(--bg-warm);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.1rem 1.2rem; min-height: 200px;
  color: var(--ink-soft);
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 11px, rgba(14,14,15,0.025) 11px 12px);
  pointer-events: none;
}
.ph__corner { position: absolute; width: 16px; height: 16px; border: 1.5px solid var(--gold); opacity: 0.55; }
.ph__corner.tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.ph__corner.tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.ph__corner.bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.ph__corner.br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }
.ph__mark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--ff-display); font-weight: 600; font-size: 1.6rem; letter-spacing: 0.04em;
  color: rgba(154,123,60,0.4);
}
.ph__caption {
  position: relative; font-size: 0.74rem; line-height: 1.45; letter-spacing: 0.01em;
  color: var(--ink-soft); max-width: 30ch; background: rgba(251,250,247,0.7);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  padding: 0.45rem 0.6rem; border-radius: 7px; border: 1px solid var(--line-soft);
}
.ph__caption b { color: var(--ink); font-weight: 700; }
.ph--portrait { aspect-ratio: 4 / 5; min-height: 0; }
.ph--square { aspect-ratio: 1 / 1; min-height: 0; }
.ph--wide { aspect-ratio: 16 / 10; min-height: 0; }
.ph--video { aspect-ratio: 16 / 9; min-height: 0; }
.ph--room { aspect-ratio: 5 / 4; min-height: 0; }
.ph--book { aspect-ratio: 2 / 3; min-height: 0; border-radius: 4px; }
.ph--tall { aspect-ratio: 3 / 4.4; min-height: 0; }

.section--dark .ph {
  background: linear-gradient(135deg, rgba(201,162,75,0.10), rgba(255,255,255,0.02)), var(--surface-dk-2);
  border-color: var(--line-dark); color: var(--on-dark-soft);
}
.section--dark .ph::before { background-image: repeating-linear-gradient(135deg, transparent 0 11px, rgba(255,255,255,0.022) 11px 12px); }
.section--dark .ph__mark { color: rgba(201,162,75,0.4); }
.section--dark .ph__caption { background: rgba(10,10,11,0.55); border-color: var(--line-dark-soft); color: var(--on-dark-soft); }
.section--dark .ph__caption b { color: var(--on-dark); }
.section--dark .ph__corner { border-color: var(--gold-bright); }

.ph__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%; border: 1.5px solid var(--gold);
  display: grid; place-items: center;
}
.ph__play::after {
  content: ""; width: 0; height: 0; margin-left: 4px;
  border-left: 16px solid var(--gold); border-top: 10px solid transparent; border-bottom: 10px solid transparent;
}
.section--dark .ph__play { border-color: var(--gold-bright); }
.section--dark .ph__play::after { border-left-color: var(--gold-bright); }

/* ============================================================
   HERO (asymmetric)
   ============================================================ */
.hero { position: relative; padding-block: clamp(3rem, 7vw, 6.5rem) clamp(2.4rem, 5vw, 4rem); overflow: hidden; }
.hero--dark { background: var(--surface-dark); color: var(--on-dark); }
.hero--warm { background: var(--bg-warm); }
.hero__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
.hero__copy { max-width: 40rem; }
.hero__copy .eyebrow { margin-bottom: 1.3rem; }
.hero__title { margin-bottom: 1.5rem; }
.hero__title em { font-style: italic; color: var(--gold-deep); }
.hero--dark .hero__title em { color: var(--gold-bright); }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.26rem); line-height: 1.62; color: var(--ink-soft); max-width: 52ch; margin-bottom: 1.9rem; }
.hero--dark .hero__sub { color: var(--on-dark-soft); }
.hero__proof {
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.65rem; margin-bottom: 1.9rem;
}
.hero__proof .pill {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.42em 0.85em; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.5); color: var(--ink-soft);
}
.hero--dark .hero__proof .pill { border-color: var(--line-dark); background: rgba(255,255,255,0.04); color: var(--on-dark-soft); }
.hero__proof .pill .star { color: var(--gold); }
.hero--dark .hero__proof .pill .star { color: var(--gold-bright); }

.hero__media { position: relative; }
.hero__media .ph { box-shadow: var(--shadow-soft); }
.hero__ribbon {
  display: flex; align-items: center; gap: 0.8rem; margin-top: 1.6rem;
  font-family: var(--ff-display); font-style: italic; font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  color: var(--gold-deep);
}
.hero--dark .hero__ribbon { color: var(--gold-bright); }
.hero__ribbon::before { content: ""; flex: none; width: clamp(2rem, 6vw, 4rem); height: 1px; background: currentColor; opacity: 0.6; }

/* ============================================================
   PROOF / TRUST STRIP
   ============================================================ */
.proofbar { padding-block: clamp(2.2rem, 4vw, 3.2rem); border-block: 1px solid var(--line); background: var(--bg-warm); }
.proofbar.section--dark { border-block-color: var(--line-dark); background: var(--surface-dk-2); }
.proofbar__lead { font-size: 0.9rem; color: var(--ink-faint); margin-bottom: 1.3rem; letter-spacing: 0.01em; }
.section--dark .proofbar__lead { color: var(--on-dark-faint); }
.proofbar__row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1.6rem;
}
.proofbar__item { display: flex; flex-direction: column; gap: 0.2rem; }
.proofbar__num {
  font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1; color: var(--ink);
}
.section--dark .proofbar__num { color: var(--on-dark); }
.proofbar__num .gold { color: var(--gold-deep); }
.section--dark .proofbar__num .gold { color: var(--gold-bright); }
.proofbar__lbl { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.4; letter-spacing: 0.01em; }
.section--dark .proofbar__lbl { color: var(--on-dark-soft); }

/* logo / institution word-row (rendered text, not images) */
.wordrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 0.5rem; row-gap: 0.7rem;
}
.wordrow span {
  font-family: var(--ff-display); font-weight: 500; font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  color: var(--ink-soft); padding: 0.3rem 0.85rem; border: 1px solid var(--line); border-radius: 8px;
  background: rgba(255,255,255,0.45); white-space: nowrap;
}
.section--dark .wordrow span { color: var(--on-dark-soft); border-color: var(--line-dark); background: rgba(255,255,255,0.03); }

/* ============================================================
   STAT TILES (organic numbers, divided not boxed where possible)
   ============================================================ */
.stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
.stats--4 { grid-template-columns: 1fr 1fr; }
.stat {
  padding: 1.6rem 1.4rem 1.6rem 0; border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.3rem;
}
.stat:nth-child(2n) { padding-left: 1.4rem; border-left: 1px solid var(--line); }
.stat__n { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1; color: var(--ink); }
.stat__n .gold { color: var(--gold-deep); }
.stat__l { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.45; }
.section--dark .stats { border-top-color: var(--line-dark); }
.section--dark .stat { border-bottom-color: var(--line-dark); }
.section--dark .stat:nth-child(2n) { border-left-color: var(--line-dark); }
.section--dark .stat__n { color: var(--on-dark); }
.section--dark .stat__n .gold { color: var(--gold-bright); }
.section--dark .stat__l { color: var(--on-dark-soft); }

/* ============================================================
   "WHY DIFFERENT" — offset feature blocks (NOT 3-equal cards)
   ============================================================ */
.feat-list { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.feat {
  background: var(--bg); padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem 1.5rem; align-items: start;
  transition: background 0.3s var(--ease);
}
.feat:hover { background: var(--bg-warm); }
.feat__n {
  font-family: var(--ff-display); font-weight: 500; font-size: 1.4rem; color: var(--gold-deep);
  width: 2.6rem; height: 2.6rem; border: 1px solid var(--line-strong); border-radius: 50%;
  display: grid; place-items: center; flex: none;
}
.feat__body h3 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.feat__body p { color: var(--ink-soft); font-size: 0.98rem; max-width: 56ch; }
.feat__body p em { font-style: italic; color: var(--ink); }
.section--dark .feat-list { background: var(--line-dark); border-color: var(--line-dark); }
.section--dark .feat { background: var(--surface-dark); }
.section--dark .feat:hover { background: var(--surface-dk-2); }
.section--dark .feat__n { color: var(--gold-bright); border-color: var(--line-dark); }
.section--dark .feat__body p { color: var(--on-dark-soft); }
.section--dark .feat__body p em { color: var(--on-dark); }

/* zig-zag feature rows (alternating media side) */
.zig { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); }
.zig__row { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 3vw, 2.6rem); align-items: center; }
.zig__media .ph { box-shadow: var(--shadow-card); }
.zig__copy h3 { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.9rem; letter-spacing: -0.01em; line-height: 1.12; }
.zig__copy .eyebrow { margin-bottom: 1rem; }
.zig__copy p { color: var(--ink-soft); margin-bottom: 0.9rem; }
.zig__copy p:last-of-type { margin-bottom: 1.4rem; }
.zig__list { margin: 0 0 1.4rem; display: grid; gap: 0.5rem; }
.zig__list li { display: flex; gap: 0.6em; align-items: flex-start; font-size: 0.96rem; color: var(--ink-soft); }
.zig__list li .tick { color: var(--gold); flex: none; margin-top: 0.18em; }
.section--dark .zig__copy p, .section--dark .zig__list li { color: var(--on-dark-soft); }
.section--dark .zig__list li .tick { color: var(--gold-bright); }

/* ============================================================
   NUMBERED EDITORIAL LIST (5 pillars, meeting format)
   ============================================================ */
.numlist { display: grid; gap: 0; border-top: 1px solid var(--line); }
.numlist__item {
  display: grid; grid-template-columns: 3.2rem 1fr; gap: 1.4rem;
  padding: clamp(1.2rem, 2.4vw, 1.9rem) 0; border-bottom: 1px solid var(--line);
  align-items: baseline; transition: padding-left 0.3s var(--ease);
}
.numlist__item:hover { padding-left: 0.6rem; }
.numlist__n {
  font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--gold-deep); line-height: 1;
}
.numlist__c h3 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.15rem, 1.9vw, 1.45rem); margin-bottom: 0.35rem; }
.numlist__c p { color: var(--ink-soft); font-size: 0.97rem; max-width: 64ch; }
.numlist--inline .numlist__item { grid-template-columns: 3.2rem 1fr; align-items: center; }
.numlist--inline .numlist__c { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.2rem 0.6rem; }
.numlist--inline .numlist__c h3 { margin-bottom: 0; }
.section--dark .numlist { border-top-color: var(--line-dark); }
.section--dark .numlist__item { border-bottom-color: var(--line-dark); }
.section--dark .numlist__n { color: var(--gold-bright); }
.section--dark .numlist__c p { color: var(--on-dark-soft); }

/* meeting format — horizontal stepper */
.steps { display: flex; flex-wrap: wrap; gap: 0.7rem; counter-reset: stp; }
.step {
  flex: 1 1 140px; min-width: 140px; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg); position: relative;
}
.step::before {
  counter-increment: stp; content: counter(stp);
  font-family: var(--ff-display); font-weight: 600; font-size: 0.8rem;
  width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--gold-wash); color: var(--gold-deep);
  display: grid; place-items: center; margin-bottom: 0.6rem;
}
.step b { display: block; font-family: var(--ff-display); font-weight: 600; font-size: 0.98rem; margin-bottom: 0.15rem; }
.step span { font-size: 0.82rem; color: var(--ink-soft); }
.section--dark .step { background: var(--surface-dk-2); border-color: var(--line-dark); }
.section--dark .step::before { background: var(--gold-wash-dk); color: var(--gold-bright); }
.section--dark .step span { color: var(--on-dark-soft); }

/* ============================================================
   ECOSYSTEM GRID (bento-ish, varied sizes — not 3 equal cards)
   ============================================================ */
.eco-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.eco-card {
  display: flex; flex-direction: column; gap: 0.8rem;
  padding: clamp(1.4rem, 2.6vw, 2rem); border: 1px solid var(--line); border-radius: 16px;
  background: var(--bg); transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  min-height: 100%;
}
.eco-card:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow-card); }
.eco-card__k { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); }
.eco-card h3 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
.eco-card p { font-size: 0.94rem; color: var(--ink-soft); flex: 1; }
.eco-card .tlink { margin-top: auto; align-self: flex-start; }
.eco-card--feature { background: var(--surface-dark); color: var(--on-dark); border-color: var(--surface-dark); }
.eco-card--feature .eco-card__k { color: var(--gold-bright); }
.eco-card--feature p { color: var(--on-dark-soft); }
.eco-card--feature .tlink { color: var(--on-dark); border-color: var(--line-dark); }
.eco-card--feature .tlink:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.section--dark .eco-card { background: var(--surface-dk-2); border-color: var(--line-dark); color: var(--on-dark); }
.section--dark .eco-card p { color: var(--on-dark-soft); }
.section--dark .eco-card .tlink { color: var(--on-dark); border-color: var(--line-dark); }
.section--dark .eco-card .tlink:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* ============================================================
   BENEFIT LIST (what members get — divided rows, not 10 boxes)
   ============================================================ */
.benefits { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.benefit {
  display: grid; grid-template-columns: 1.6rem 1fr; gap: 0.9rem 1.1rem; align-items: start;
  padding: 1rem 0; border-bottom: 1px solid var(--line-soft);
}
.benefit .tick { color: var(--gold); margin-top: 0.18em; }
.benefit b { font-family: var(--ff-sans); font-weight: 700; color: var(--ink); }
.benefit span { color: var(--ink-soft); font-size: 0.96rem; }
.benefit b + span::before { content: " — "; color: var(--ink-faint); }
.section--dark .benefits { border-top-color: var(--line-dark); }
.section--dark .benefit { border-bottom-color: var(--line-dark-soft); }
.section--dark .benefit b { color: var(--on-dark); }
.section--dark .benefit span { color: var(--on-dark-soft); }
.section--dark .benefit .tick { color: var(--gold-bright); }

/* ============================================================
   MEMBER CARDS (people grid — allowed; this is a roster, not a feature row)
   ============================================================ */
.member-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.member-grid--lg { grid-template-columns: 1fr; }
.member {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--bg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.member:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.member__media .ph { border-radius: 0; border: 0; border-bottom: 1px solid var(--line); }
.member__body { padding: 1rem 1.1rem 1.2rem; }
.member__name { font-family: var(--ff-display); font-weight: 600; font-size: 1.12rem; }
.member__biz { color: var(--gold-deep); font-size: 0.86rem; font-weight: 600; margin-top: 0.1rem; }
.member__role { color: var(--ink-soft); font-size: 0.86rem; margin-top: 0.1rem; }
.member__note { color: var(--ink-soft); font-size: 0.9rem; margin-top: 0.6rem; line-height: 1.5; }
.member-grid--lg .member { display: grid; grid-template-columns: 1fr; }
@media (min-width: 620px) {
  .member-grid--lg .member { grid-template-columns: 240px 1fr; }
  .member-grid--lg .member__media .ph { border-bottom: 0; border-right: 1px solid var(--line); height: 100%; }
}
.section--dark .member { background: var(--surface-dk-2); border-color: var(--line-dark); }
.section--dark .member__role, .section--dark .member__note { color: var(--on-dark-soft); }
.section--dark .member__biz { color: var(--gold-bright); }

/* small collaborator chips row */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem 0.6rem; }
.chip {
  display: inline-flex; flex-direction: column; gap: 0.05rem;
  padding: 0.55rem 0.9rem; border: 1px solid var(--line); border-radius: 10px; background: var(--bg);
}
.chip b { font-family: var(--ff-display); font-weight: 600; font-size: 0.96rem; }
.chip span { font-size: 0.76rem; color: var(--ink-soft); }
.section--dark .chip { background: var(--surface-dk-2); border-color: var(--line-dark); }
.section--dark .chip span { color: var(--on-dark-soft); }

/* ============================================================
   FOUNDERS / TWO-UP BIO
   ============================================================ */
.twoup { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 3.5vw, 3rem); }
.bio { display: grid; grid-template-columns: 1fr; gap: 1.2rem; align-items: start; }
@media (min-width: 560px) { .bio { grid-template-columns: 150px 1fr; } }
.bio__media .ph { border-radius: 12px; }
.bio__photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border-radius: 12px; border: 1px solid var(--line); display: block; }
.section--dark .bio__photo { border-color: var(--line-dark); }

/* white logo card — for a black-on-white logo placed on a dark section */
.logo-card {
  display: flex; width: -moz-fit-content; width: fit-content; align-items: center; justify-content: center;
  background: #fff; border-radius: 14px; padding: 0.9rem 1.3rem;
  box-shadow: 0 16px 40px -22px rgba(0,0,0,0.5); margin-bottom: 1.4rem;
}
.logo-card img { display: block; height: clamp(42px, 6.5vw, 60px); width: auto; }
.bio__name { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.bio__title { color: var(--gold-deep); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.01em; margin-top: 0.15rem; }
.bio__text { color: var(--ink-soft); font-size: 0.97rem; margin-top: 0.8rem; line-height: 1.6; }
.bio__text + .tlink { margin-top: 0.9rem; }
.section--dark .bio__title { color: var(--gold-bright); }
.section--dark .bio__text { color: var(--on-dark-soft); }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { display: grid; gap: 0; border-left: 1.5px solid var(--line); margin-left: 0.4rem; }
.tl-item { position: relative; padding: 0 0 clamp(1.6rem, 3vw, 2.4rem) 1.8rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -0.46rem; top: 0.35rem; width: 0.8rem; height: 0.8rem;
  border-radius: 50%; background: var(--gold); border: 2px solid var(--bg);
}
.tl-year { font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; color: var(--gold-deep); }
.tl-item h3 { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.15rem, 2vw, 1.5rem); margin: 0.2rem 0 0.4rem; }
.tl-item p { color: var(--ink-soft); font-size: 0.96rem; max-width: 60ch; }
.section--dark .timeline { border-left-color: var(--line-dark); }
.section--dark .tl-item::before { border-color: var(--surface-dark); background: var(--gold-bright); }
.section--dark .tl-year { color: var(--gold-bright); }
.section--dark .tl-item p { color: var(--on-dark-soft); }

/* big pull quote */
.pullquote {
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.25; letter-spacing: -0.005em;
  color: var(--ink); max-width: 22ch; position: relative; padding-left: 0;
}
.pullquote::before { content: ""; display: block; width: 3rem; height: 1.5px; background: var(--gold); margin-bottom: 1.2rem; }
.pullquote cite { display: block; font-style: normal; font-family: var(--ff-sans); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; color: var(--ink-faint); margin-top: 1.2rem; }
.section--dark .pullquote { color: var(--on-dark); }
.section--dark .pullquote::before { background: var(--gold-bright); }
.section--dark .pullquote cite { color: var(--on-dark-faint); }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; -webkit-overflow-scrolling: touch; }
.cmp { width: 100%; border-collapse: collapse; min-width: 560px; }
.cmp th, .cmp td { text-align: left; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line-soft); font-size: 0.94rem; vertical-align: top; }
.cmp thead th { font-family: var(--ff-sans); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); background: var(--bg-warm); }
.cmp thead th.us { color: var(--gold-deep); }
.cmp tbody th { font-weight: 700; color: var(--ink); width: 34%; }
.cmp td.us { font-weight: 600; color: var(--ink); background: var(--gold-wash); }
.cmp td.them { color: var(--ink-soft); }
.cmp tr:last-child th, .cmp tr:last-child td { border-bottom: 0; }
.cmp .yes { color: var(--gold-deep); font-weight: 700; }
.cmp .no { color: var(--ink-faint); }
.cmp-cap { font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.8rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  padding: 1.25rem 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--ink);
}
.faq__q .pm { flex: none; width: 1.5rem; height: 1.5rem; position: relative; margin-top: 0.2rem; }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; background: var(--gold-deep); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.faq__q .pm::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq__q .pm::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq__item[open] .faq__q .pm::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq__a { padding: 0 0 1.4rem; color: var(--ink-soft); font-size: 0.99rem; line-height: 1.65; max-width: 70ch; }
.faq__a p + p { margin-top: 0.8rem; }
/* native <details> styling */
details.faq__item > summary { list-style: none; }
details.faq__item > summary::-webkit-details-marker { display: none; }

/* ============================================================
   CTA BANDS
   ============================================================ */
.cta-band { background: var(--surface-dark); color: var(--on-dark); text-align: center; }
.cta-band--gold { background: var(--bg-warm); color: var(--ink); }
.cta-band .eyebrow { margin-bottom: 1.2rem; }
.cta-band h2 { font-family: var(--ff-display); font-weight: 500; font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.08; margin-bottom: 1rem; letter-spacing: -0.01em; }
.cta-band h2 em { font-style: italic; color: var(--gold-bright); }
.cta-band--gold h2 em { color: var(--gold-deep); }
.cta-band p { color: var(--on-dark-soft); max-width: 56ch; margin: 0 auto 1.8rem; font-size: 1.06rem; }
.cta-band--gold p { color: var(--ink-soft); }
.cta-band .cta-row { justify-content: center; }
.cta-band .fud { margin-inline: auto; justify-content: center; text-align: center; }

/* ============================================================
   TESTIMONIAL WALL (grid, not carousel)
   ============================================================ */
.tw-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.2rem; margin-bottom: 2.4rem; }
.tw-source { display: inline-flex; flex-wrap: wrap; gap: 0.5rem; }
.tw-source span {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.4em 0.8em; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-soft); background: rgba(255,255,255,0.5);
}
.tw-source span .star { color: var(--gold); }
.section--dark .tw-source span { border-color: var(--line-dark); color: var(--on-dark-soft); background: rgba(255,255,255,0.04); }
.section--dark .tw-source span .star { color: var(--gold-bright); }
.tw-grid { columns: 1; column-gap: 1.1rem; }
.tw {
  break-inside: avoid; margin-bottom: 1.1rem;
  border: 1px solid var(--line); border-radius: 14px; padding: 1.3rem 1.4rem; background: var(--bg);
}
.tw__h { font-family: var(--ff-display); font-weight: 600; font-size: 1.08rem; margin-bottom: 0.6rem; line-height: 1.3; }
.tw__q { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; }
.tw__by { display: flex; align-items: center; gap: 0.7rem; }
.tw__avatar {
  width: 2.3rem; height: 2.3rem; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--gold-wash), rgba(14,14,15,0.06)); border: 1px solid var(--line);
  display: grid; place-items: center; font-family: var(--ff-display); font-weight: 600; font-size: 0.85rem; color: var(--gold-deep);
}
.tw__meta b { display: block; font-size: 0.88rem; font-weight: 700; }
.tw__meta span { font-size: 0.76rem; color: var(--ink-faint); }
.section--dark .tw { background: var(--surface-dk-2); border-color: var(--line-dark); }
.section--dark .tw__q { color: var(--on-dark-soft); }
.section--dark .tw__avatar { border-color: var(--line-dark); color: var(--gold-bright); }
.section--dark .tw__meta span { color: var(--on-dark-faint); }

/* ============================================================
   CHAPTER CARDS
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn {
  font-family: var(--ff-sans); font-weight: 600; font-size: 0.85rem;
  padding: 0.5em 1.1em; border-radius: 999px; border: 1px solid var(--line-strong); background: transparent; color: var(--ink-soft); cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.filter-btn:hover { color: var(--ink); }
.filter-btn[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.chapter-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.chapter {
  border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem 1.6rem; background: var(--bg);
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.chapter:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.chapter.is-hidden { display: none; }
.chapter__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.chapter__name { font-family: var(--ff-display); font-weight: 600; font-size: 1.3rem; line-height: 1.15; }
.chapter__tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--line); border-radius: 999px; padding: 0.3em 0.7em; white-space: nowrap; flex: none; }
.chapter__tag.virtual { color: var(--ink); background: var(--gold-wash); border-color: transparent; }
.chapter__tag.break { color: var(--ink-faint); }
.chapter__rows { display: grid; gap: 0.4rem; }
.chapter__rows div { display: grid; grid-template-columns: 5.5rem 1fr; gap: 0.5rem; font-size: 0.9rem; }
.chapter__rows dt { color: var(--ink-faint); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; padding-top: 0.15rem; }
.chapter__rows dd { color: var(--ink-soft); }
.chapter__rows dd b { color: var(--ink); font-weight: 600; }
.chapter .tlink { align-self: flex-start; margin-top: auto; }

/* ============================================================
   STORY BLOCKS (success stories — narrative)
   ============================================================ */
.story-block { display: grid; gap: clamp(1.6rem, 3vw, 2.4rem); }
.story-item { display: grid; grid-template-columns: 1fr; gap: 1rem; padding-bottom: clamp(1.6rem, 3vw, 2.4rem); border-bottom: 1px solid var(--line); }
.story-item:last-child { border-bottom: 0; padding-bottom: 0; }
@media (min-width: 720px) { .story-item { grid-template-columns: 1fr 1.8fr; gap: 2.2rem; align-items: start; } }
.story-item__k { font-family: var(--ff-display); font-style: italic; font-size: 1.5rem; color: var(--gold-deep); }
.story-item__c h3 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 0.6rem; }
.story-item__c p { color: var(--ink-soft); }

/* directory placeholder */
.dir-shell { border: 1px dashed var(--line-strong); border-radius: 16px; padding: clamp(1.6rem, 3vw, 2.4rem); background: rgba(255,255,255,0.4); }
.dir-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.4rem; }
.dir-bar input, .dir-bar select { padding: 0.7em 1em; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); font-size: 0.9rem; }
.dir-bar input { flex: 1 1 220px; }
.dir-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.dir-cell { border: 1px solid var(--line-soft); border-radius: 10px; padding: 0.9rem; display: flex; gap: 0.7rem; align-items: center; }
.dir-cell .av { width: 2rem; height: 2rem; border-radius: 6px; background: var(--gold-wash); flex: none; }
.dir-cell .ln1 { height: 0.6rem; width: 70%; background: var(--line); border-radius: 3px; margin-bottom: 0.35rem; }
.dir-cell .ln2 { height: 0.5rem; width: 45%; background: var(--line-soft); border-radius: 3px; }
.dir-note { margin-top: 1.2rem; font-size: 0.85rem; color: var(--ink-faint); display: flex; gap: 0.5em; align-items: flex-start; }
.dir-note .dot { color: var(--gold); margin-top: 0.05em; }

/* ============================================================
   FORMS
   ============================================================ */
.form-wrap { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.2rem); align-items: start; }
.form-aside h3 { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; line-height: 1.15; }
.form-aside .expect { display: grid; gap: 0.7rem; margin: 1.4rem 0; }
.form-aside .expect li { display: flex; gap: 0.6em; align-items: flex-start; font-size: 0.96rem; color: var(--ink-soft); }
.form-aside .expect li .tick { color: var(--gold); flex: none; margin-top: 0.18em; }
.form-aside .contact-direct { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); display: grid; gap: 0.4rem; font-size: 0.94rem; color: var(--ink-soft); }
.form-aside .contact-direct a { color: var(--gold-deep); font-weight: 600; }
.form-aside .contact-direct b { color: var(--ink); }
.section--dark .form-aside .expect li, .section--dark .form-aside .contact-direct { color: var(--on-dark-soft); }
.section--dark .form-aside .contact-direct { border-top-color: var(--line-dark); }
.section--dark .form-aside .contact-direct b { color: var(--on-dark); }
.section--dark .form-aside .expect li .tick { color: var(--gold-bright); }

.form { background: var(--bg); border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-card); }
.section--dark .form { background: var(--surface-dk-2); border-color: var(--line-dark); }
.form__grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field--2 { grid-column: 1 / -1; }
@media (min-width: 560px) { .form__grid { grid-template-columns: 1fr 1fr; } .field--full { grid-column: 1 / -1; } }
.field label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; color: var(--ink); }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8em 0.95em; border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg); font-size: 0.96rem; color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.section--dark .field input, .section--dark .field select, .section--dark .field textarea { background: var(--surface-dark); border-color: var(--line-dark); color: var(--on-dark); }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-wash); }
.field .help { font-size: 0.78rem; color: var(--ink-faint); }
.field .err { font-size: 0.78rem; color: #a3402b; display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #c4543b; }
.field.is-invalid .err { display: block; }
.field .help.is-context { display: none; color: var(--gold-deep); font-weight: 600; }
.field .help.is-context.show { display: block; }
.form__submit { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 0.9rem; }
.form__success {
  display: none; grid-column: 1 / -1; padding: 1.1rem 1.2rem; border-radius: 12px;
  background: var(--gold-wash); border: 1px solid var(--gold); color: var(--gold-deep); font-weight: 600; font-size: 0.96rem;
}
.form.is-sent .form__success { display: block; }
.form.is-sent .form__grid > *:not(.form__success) { display: none; }
.section--dark .form__success { background: var(--gold-wash-dk); border-color: var(--gold-bright); color: var(--gold-bright); }

/* map placeholder */
.map-ph {
  border-radius: 14px; border: 1px solid var(--line); overflow: hidden; aspect-ratio: 16 / 7; position: relative;
  background:
    repeating-linear-gradient(0deg, rgba(14,14,15,0.04) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, rgba(14,14,15,0.04) 0 1px, transparent 1px 36px),
    var(--bg-warm);
  display: grid; place-items: center;
}
.map-ph::after { content: ""; position: absolute; width: 14px; height: 14px; background: var(--gold); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 0 0 6px var(--gold-wash); }
.map-ph span { position: relative; font-size: 0.74rem; color: var(--ink-faint); background: rgba(251,250,247,0.8); padding: 0.4rem 0.7rem; border-radius: 6px; border: 1px solid var(--line-soft); margin-top: 3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--surface-dark); color: var(--on-dark); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__top { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); padding-bottom: 2.6rem; border-bottom: 1px solid var(--line-dark); }
.footer__brand { max-width: 34ch; }
.footer__brand .brand { color: var(--on-dark); font-size: 1.3rem; margin-bottom: 0.8rem; }
.footer__brand .brand .b-i { color: var(--gold-bright); }
.footer__brand .brand small { color: var(--on-dark-faint); }
.footer__mantra { font-family: var(--ff-display); font-style: italic; color: var(--gold-bright); font-size: 1.05rem; margin-bottom: 1rem; }
.footer__brand p { color: var(--on-dark-soft); font-size: 0.92rem; }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
.footer__col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-faint); margin-bottom: 1rem; }
.footer__col a, .footer__col li { display: block; font-size: 0.9rem; color: var(--on-dark-soft); padding: 0.28rem 0; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--gold-bright); }
.footer__news { display: flex; gap: 0.5rem; margin-top: 0.6rem; max-width: 320px; }
.footer__news input { flex: 1; padding: 0.6em 0.8em; border: 1px solid var(--line-dark); border-radius: 8px; background: rgba(255,255,255,0.04); color: var(--on-dark); font-size: 0.85rem; }
.footer__news input:focus { outline: none; border-color: var(--gold-bright); }
.footer__news button { padding: 0.6em 1em; border-radius: 8px; border: 1px solid var(--gold-bright); background: var(--gold-bright); color: var(--surface-dark); font-weight: 700; font-size: 0.82rem; cursor: pointer; transition: background 0.2s var(--ease); white-space: nowrap; }
.footer__news button:hover { background: #fff; border-color: #fff; }
.footer__news small { display: block; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; padding: 1.8rem 0; font-size: 0.8rem; color: var(--on-dark-faint); }
.footer__bottom .badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer__bottom .badge { display: inline-flex; align-items: center; gap: 0.4em; padding: 0.32em 0.7em; border: 1px solid var(--line-dark); border-radius: 999px; color: var(--on-dark-soft); }
.footer__bottom .badge .star { color: var(--gold-bright); }
.footer__bottom .social { display: flex; gap: 0.4rem; }
.footer__bottom .social a { width: 2rem; height: 2rem; border: 1px solid var(--line-dark); border-radius: 50%; display: grid; place-items: center; color: var(--on-dark-soft); transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease); }
.footer__bottom .social a:hover { color: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-2px); }
.footer__bottom .social svg { width: 1rem; height: 1rem; }
.footer__addr { display: flex; flex-wrap: wrap; gap: 0.3rem 1.2rem; }
.footer__addr a { color: var(--on-dark-soft); }
.footer__addr a:hover { color: var(--gold-bright); }

/* ---------- ideaaiincome credit strip (mandatory, below footer) ---------- */
.iai-credit-wrap {
  --iai-credit-bg: #0a0a0b; --iai-credit-accent: #C9A24B;
  width: 100%; display: flex; justify-content: center; padding: 8px 10px; background: var(--iai-credit-bg);
}
.iai-credit-btn {
  display: inline-flex; align-items: center; gap: 3px; padding: 5px 12px; border-radius: 999px;
  font-family: inherit; font-size: 10px; font-weight: 500; letter-spacing: 0;
  color: #f0ede6; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none; transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.iai-credit-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.24); transform: translateY(-1px); }
.iai-credit-highlight { color: var(--iai-credit-accent); font-weight: 700; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--rd, 0ms); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* skip link */
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 8px 0; z-index: 100; }
.skip:focus { left: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .proofbar__row { grid-template-columns: repeat(3, 1fr); }
  .member-grid { grid-template-columns: 1fr 1fr; }
  .dir-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 760px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stats--4 { grid-template-columns: repeat(4, 1fr); }
  .stat:nth-child(2n) { padding-left: 1.4rem; }
  .stats--4 .stat { padding-left: 1.4rem; border-left: 1px solid var(--line); }
  .stats--4 .stat:first-child { padding-left: 0; border-left: 0; }
  .section--dark .stats--4 .stat { border-left-color: var(--line-dark); }
  .feat { grid-template-columns: auto 1fr; }
  .footer__top { grid-template-columns: 1.3fr 2fr; }
  .footer__cols { grid-template-columns: repeat(4, 1fr); }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .tw-grid { columns: 2; }
  .chapter-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wrap { grid-template-columns: 0.85fr 1.15fr; }
  .twoup { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero--media-left .hero__grid { grid-template-columns: 0.95fr 1.05fr; }
  .hero--media-left .hero__media { order: -1; }
  .proofbar__row { grid-template-columns: repeat(6, 1fr); }
  .feat-list--2 { grid-template-columns: 1fr 1fr; }
  .feat-list--2 .feat:nth-child(odd) { border-right: 1px solid var(--line); }
  .section--dark .feat-list--2 .feat:nth-child(odd) { border-right-color: var(--line-dark); }
  .benefits { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
  .benefits .benefit:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--line-soft); }
  .eco-grid { grid-template-columns: repeat(3, 1fr); }
  .eco-card--feature { grid-column: span 1; }
  .eco-card--wide { grid-column: span 2; }
  .tw-grid { columns: 3; }
  .chapter-grid { grid-template-columns: repeat(3, 1fr); }
  .numlist--2col { grid-template-columns: 1fr 1fr; column-gap: 3rem; display: grid; }
  .numlist--2col { border-top: none; }
  .numlist--2col .numlist__item:nth-child(1), .numlist--2col .numlist__item:nth-child(2) { border-top: 1px solid var(--line); }
  .section--dark .numlist--2col .numlist__item:nth-child(1), .section--dark .numlist--2col .numlist__item:nth-child(2) { border-top-color: var(--line-dark); }
  .member-grid { grid-template-columns: repeat(3, 1fr); }
  .member-grid--lg { grid-template-columns: 1fr 1fr; }
  .twoup--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 979px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-cta .nav-toggle { display: inline-flex; }
}
@media (min-width: 1180px) {
  .eco-card--feature.eco-card--tall { grid-row: span 2; }
}
