/* =========================================================
   BUSHWACK TD — landing page
   ========================================================= */

:root {
  /* Forest palette — hedge greens, dirt path, gold multiplier */
  --bg:           #0a110d;
  --bg-2:         #0f1813;
  --bg-3:         #15211b;
  --ink:          #f3efe2;
  --ink-2:        #d6d2c4;
  --ink-3:        #a39e8e;
  --line:         rgba(243, 239, 226, 0.10);
  --line-2:       rgba(243, 239, 226, 0.18);

  --hedge:        #3a7a3f;
  --hedge-2:      #5aa15f;
  --hedge-deep:   #1d3d22;
  --path:         #b48a3d;
  --path-glow:    #ecbf63;
  --gold:         #f0c44a;
  --gold-soft:    rgba(240, 196, 74, 0.16);
  --danger:       #d75c4a;

  /* Tower palette */
  --t-piercing:   #c9d3a4;
  --t-fire:       #e88158;
  --t-ice:        #82c8e0;
  --t-poison:     #b489d6;
  --t-hedge:      #6da571;

  /* Type */
  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans:  "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --max:    1240px;
  --gut:    clamp(20px, 4vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(1100px 600px at 80% -10%, rgba(58, 122, 63, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(240, 196, 74, 0.07), transparent 60%);
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: #1a1408; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* =========================================================
   NAV
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px var(--gut);
  background: rgba(10, 17, 13, 0.55);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(10, 17, 13, 0.82);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.nav__brand em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.nav__links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav__links a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1408;
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(240, 196, 74, 0.55);
}

@media (max-width: 800px) {
  .nav__links { display: none; }
}

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

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 90px) var(--gut) clamp(60px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--hedge-2);
  box-shadow: 0 0 12px var(--hedge-2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  position: relative;
  padding: 0 0.05em;
}
.hero__title em::before {
  content: "";
  position: absolute;
  inset: 0.55em -0.06em 0.05em;
  background: var(--gold-soft);
  z-index: -1;
  border-radius: 4px;
  transform: skew(-6deg);
}

.hero__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 0 32px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: #1a1408;
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(240, 196, 74, 0.55);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--ink-2);
  background: rgba(255,255,255,0.03);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__meta strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.hero__meta span {
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: clamp(32px, 6vw, 60px);
  }
  .hero__demo { order: 2; }
  .hero__meta { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero__meta strong { font-size: 15px; }
}
@media (max-width: 520px) {
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .hero__meta > div:last-child { grid-column: span 2; }
}

/* =========================================================
   DEMO (interactive maze)
   ========================================================= */

.demo {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow:
    0 30px 80px -30px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}
.demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 70% -20%, rgba(240, 196, 74, 0.1), transparent 60%);
  pointer-events: none;
}

.demo__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  position: relative;
}

.demo__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-3);
}
.demo__pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  background: var(--hedge);
  color: var(--ink);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

.demo__stats {
  display: flex;
  gap: 12px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 100px;
}
.stat__label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
}
.stat__value {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.stat__value i {
  font-style: normal;
  color: var(--ink-3);
  margin-left: 2px;
  font-size: 16px;
}
.stat__unit {
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}
.stat--accent {
  background: linear-gradient(180deg, rgba(240,196,74,0.1), rgba(240,196,74,0.04));
  border-color: rgba(240,196,74,0.35);
}
.stat--accent .stat__value {
  color: var(--gold);
  text-shadow: 0 0 16px rgba(240, 196, 74, 0.45);
}
.stat--accent .stat__label { color: rgba(240,196,74,0.75); }
.stat.is-pop .stat__value {
  animation: pop .35s ease;
}
@keyframes pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

#maze {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 24 / 16;
  border-radius: 10px;
  background: #0c1410;
  cursor: crosshair;
  border: 1px solid var(--line);
  touch-action: none;
}

.demo__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.demo__btn {
  appearance: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.demo__btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--ink);
  border-color: var(--ink-3);
}
.demo__btn.is-on {
  background: var(--gold);
  color: #1a1408;
  border-color: var(--gold);
}
.demo__hint {
  margin-left: auto;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--mono);
}
@media (max-width: 520px) {
  .demo__hint { display: none; }
}

/* =========================================================
   SECTION SCAFFOLD
   ========================================================= */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 130px) var(--gut);
}

.section__head {
  max-width: 720px;
  margin-bottom: 60px;
}

.kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
}

.section__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-2);
  margin: 0;
  max-width: 60ch;
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* =========================================================
   MECHANIC SECTION
   ========================================================= */

.section--mechanic {
  border-top: 1px solid var(--line);
}

.formula {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.formula::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(240,196,74,0.35), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.formula__line {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2.8vw, 36px);
  color: var(--ink);
}
.formula__token {
  font-style: italic;
  color: var(--ink);
}
.formula__token--accent {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(240,196,74,0.4);
}
.formula__op {
  color: var(--ink-3);
  font-style: normal;
  font-weight: 400;
}
.formula__frac {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.78em;
  line-height: 1;
}
.formula__num {
  border-bottom: 1.5px solid var(--ink-3);
  padding: 0 10px 6px;
  font-style: italic;
}
.formula__den {
  padding: 6px 10px 0;
  font-style: italic;
}
.formula__caption {
  margin-top: 22px;
  font-size: 13px;
  font-family: var(--mono);
  color: var(--ink-3);
  letter-spacing: 0.05em;
}

.mechanic-bar__example {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mini {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mini__svg {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #0c1410;
  display: block;
}
.mini__label {
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.mini__mult {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.mini__mult i {
  font-style: normal;
  color: var(--ink-3);
  font-size: 20px;
  margin-left: 2px;
}
.mini__mult--hot {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(240,196,74,0.45);
}

@media (max-width: 720px) {
  .mechanic-bar__example { grid-template-columns: 1fr; }
}

/* =========================================================
   STEPS
   ========================================================= */

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.step::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--hedge), transparent);
  opacity: 0.5;
}
.step__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.step p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
}

/* =========================================================
   TOWERS
   ========================================================= */

.section--towers { border-top: 1px solid var(--line); }

.towers {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 56px;
}
.tower {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.tower:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
}
.tower__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.tower__icon svg { width: 22px; height: 22px; }

.tower--hedge    .tower__icon { background: rgba(109,165,113,0.12); color: var(--t-hedge); }
.tower--piercing .tower__icon { background: rgba(201,211,164,0.12); color: var(--t-piercing); }
.tower--fire     .tower__icon { background: rgba(232,129,88,0.14);  color: var(--t-fire); }
.tower--ice      .tower__icon { background: rgba(130,200,224,0.14); color: var(--t-ice); }
.tower--poison   .tower__icon { background: rgba(180,137,214,0.14); color: var(--t-poison); }

.tower h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.tower__role {
  margin: 0;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.tower__body {
  margin: 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  flex: 1;
}
.tower__cost {
  margin: 8px 0 0;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) { .towers { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .towers { grid-template-columns: repeat(2, 1fr); } }

.tiers {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.tier-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-wrap: wrap;
}
.tier {
  flex: 1 1 0;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.25);
}
.tier span {
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.tier strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
}
.tier--common    { border-color: rgba(160,160,160,0.35); }
.tier--rare      { border-color: rgba(82,148,224,0.45); background: rgba(82,148,224,0.06); }
.tier--rare strong { color: #b8d2f0; }
.tier--epic      { border-color: rgba(180,137,214,0.5); background: rgba(180,137,214,0.07); }
.tier--epic strong { color: #d6bbe8; }
.tier--legendary { border-color: rgba(240,196,74,0.55); background: rgba(240,196,74,0.08); }
.tier--legendary strong { color: var(--gold); text-shadow: 0 0 14px rgba(240,196,74,0.4); }

.tier-arrow {
  align-self: center;
  font-family: var(--mono);
  color: var(--ink-3);
  font-size: 16px;
}

.tiers__caption {
  margin: 22px 0 0;
  color: var(--ink-3);
  font-size: 13.5px;
  max-width: 70ch;
}

@media (max-width: 720px) {
  .tier-arrow { display: none; }
  .tier { flex-basis: 45%; }
}

/* =========================================================
   COMPARISON TABLE
   ========================================================= */

.section--diff { border-top: 1px solid var(--line); }

.cmp-wrap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cmp {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.cmp th, .cmp td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.cmp tbody tr:last-child th,
.cmp tbody tr:last-child td { border-bottom: 0; }

.cmp thead th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  background: rgba(0,0,0,0.2);
  text-align: center;
}
.cmp thead th:first-child { text-align: left; }

.cmp tbody th {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cmp td { text-align: center; color: var(--ink-2); }

.cmp__us {
  background: rgba(240, 196, 74, 0.06);
  color: var(--gold) !important;
}
.cmp thead .cmp__us {
  color: var(--gold) !important;
  background: rgba(240, 196, 74, 0.1);
}

.check     { color: var(--hedge-2); font-weight: 700; }
.check--hero {
  display: inline-block;
  width: 28px; height: 28px;
  line-height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1408;
  text-align: center;
  box-shadow: 0 0 22px rgba(240,196,74,0.4);
}
.x         { color: var(--ink-3); }
.meh       { color: var(--ink-3); font-style: italic; font-size: 13px; }

.cmp__row--hero th,
.cmp__row--hero td {
  background: linear-gradient(90deg, rgba(240,196,74,0.04), rgba(240,196,74,0.10) 60%, rgba(240,196,74,0.04));
}

@media (max-width: 720px) {
  .cmp { font-size: 13px; }
  .cmp th, .cmp td { padding: 12px 10px; }
}

/* =========================================================
   FOUNDERS
   ========================================================= */

.section--team { border-top: 1px solid var(--line); }

.founders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.founder {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.founder__avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.founder__avatar--jh {
  background: linear-gradient(135deg, var(--gold), #b88a26);
  color: #1a1408;
}
.founder__avatar--fh {
  background: linear-gradient(135deg, var(--hedge-2), var(--hedge-deep));
  color: var(--ink);
}
.founder__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}
.founder h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.founder__title {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--ink-2);
}
.founder__bullets {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
}
.founder__bullets li { margin-bottom: 6px; }
.founder__bullets li::marker { color: var(--gold); }

@media (max-width: 720px) {
  .founders { grid-template-columns: 1fr; }
  .founder { padding: 28px; }
}

/* =========================================================
   CTA
   ========================================================= */

.section--cta {
  border-top: 1px solid var(--line);
  text-align: center;
}

.cta {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: -50% -10% auto -10%;
  height: 200%;
  background: radial-gradient(circle, rgba(240,196,74,0.16), transparent 55%);
  pointer-events: none;
}

.cta__eyebrow {
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.cta__title {
  position: relative;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 18px;
  color: var(--ink);
}
.cta__lede {
  position: relative;
  color: var(--ink-2);
  margin: 0 auto 32px;
  max-width: 46ch;
}
.cta__form {
  position: relative;
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 6px;
}
.cta__form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--ink);
  padding: 12px 18px;
  font: inherit;
  font-size: 15px;
  outline: none;
  min-width: 0;
}
.cta__form input::placeholder { color: var(--ink-3); }
.cta__form .btn { flex-shrink: 0; }
.cta__small {
  position: relative;
  margin: 18px 0 0;
  font-size: 12.5px;
  color: var(--ink-3);
}
.cta.is-success .cta__form { display: none; }
.cta__success {
  position: relative;
  display: none;
  color: var(--hedge-2);
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  margin: 6px 0 0;
}
.cta.is-success .cta__success { display: block; }

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

.footer {
  border-top: 1px solid var(--line);
  padding: 32px var(--gut);
  background: var(--bg);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.footer__brand em { color: var(--gold); font-style: italic; font-weight: 500; }
.footer__brand small {
  font-family: var(--sans);
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 400;
}
.footer__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer__links a {
  color: var(--ink-3);
  font-size: 13.5px;
  transition: color .2s ease;
}
.footer__links a:hover { color: var(--ink); }

/* =========================================================
   REDUCED MOTION
   ========================================================= */

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