/* ============================================================
   I AM LEGACY — styles.css
   Matches mockup: dark luxury, gold accents, lion brand
   ============================================================ */

:root {
  --black:       #0a0900;
  --black-2:     #111008;
  --black-3:     #181510;
  --charcoal:    #1c1a14;
  --charcoal-2:  #232016;
  --white:       #ffffff;
  --soft:        #f5edd8;
  --muted:       rgba(245, 237, 216, 0.62);
  --muted-2:     rgba(245, 237, 216, 0.38);
  --gold:        #c9a84c;
  --gold-2:      #e8c060;
  --gold-3:      #f5d070;
  --gold-dark:   #8a6e28;
  --gold-bg:     rgba(201, 168, 76, 0.10);
  --gold-bg-2:   rgba(201, 168, 76, 0.06);
  --border:      rgba(201, 168, 76, 0.22);
  --border-2:    rgba(201, 168, 76, 0.12);
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow:      0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.18);
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
  --radius:      12px;
  --radius-sm:   8px;
  color-scheme:  dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  background: var(--black);
  color: var(--soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, p { margin: 0; }
ol, ul { margin: 0; padding: 0; }

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

/* ── TOPBAR ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
}
.topbar__inner {
  height: 44px;
  width: min(1400px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.topbar__label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}
.topbar__label svg {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.topbar__sep { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }
.topbar__cities { color: var(--muted); }
.topbar__coupon { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.topbar__coupon strong {
  color: var(--gold-2);
  border: 1px dashed var(--gold);
  padding: 2px 10px;
  border-radius: 6px;
  background: var(--gold-bg-2);
  font-family: monospace;
  letter-spacing: 0.08em;
}
.topbar__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-2);
  color: #080600;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 150ms;
}
.topbar__cta:hover { background: var(--gold-3); }
.topbar__close {
  margin-left: auto;
  color: var(--muted-2);
  font-size: 18px;
  line-height: 1;
  padding: 0 6px;
  transition: color 150ms;
}
.topbar__close:hover { color: var(--soft); }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 44px;
  z-index: 45;
  background: rgba(10, 9, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: background 200ms, box-shadow 200ms;
}
.site-header.is-scrolled {
  background: rgba(10, 9, 0, 0.98);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.header-grid {
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--soft);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand__icon {
  width: 40px; height: 40px;
  background: linear-gradient(145deg, var(--gold-2), var(--gold));
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.brand__icon img { width: 26px; height: 26px; object-fit: contain; filter: brightness(0); }
.brand strong { color: var(--gold-2); }
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
}
.nav a {
  color: rgba(245,237,216,0.72);
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding: 4px 0;
  transition: color 150ms;
}
.nav a::after {
  content: '';
  position: absolute;
  inset: auto 0 -4px;
  height: 2px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}
.nav a:hover, .nav a.active { color: var(--soft); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 6px 14px;
  background: transparent;
  transition: border-color 150ms, color 150ms;
}
.lang-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.lang-btn:hover { border-color: var(--border); color: var(--soft); }
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  color: var(--soft);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 1px; transition: transform 200ms, opacity 200ms; }
body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 150ms, box-shadow 150ms, background 150ms, border-color 150ms;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.btn--gold {
  background: linear-gradient(160deg, var(--gold-3) 0%, var(--gold-2) 40%, var(--gold) 100%);
  color: #080600;
  border-color: rgba(255,255,255,0.15);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 12px 40px rgba(201,168,76,0.3); }
.btn--outline { background: rgba(201,168,76,0.06); color: var(--soft); border-color: var(--border); }
.btn--outline:hover { background: rgba(201,168,76,0.10); border-color: var(--gold); color: var(--gold-2); }
.btn--ghost { background: rgba(255,255,255,0.05); color: var(--soft); border-color: var(--border-soft); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--border); }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--full { width: 100%; }
.btn--nav {
  background: linear-gradient(160deg, var(--gold-3), var(--gold));
  color: #080600;
  border-radius: var(--radius-sm);
  font-weight: 800;
  padding: 10px 20px;
  font-size: 14px;
  box-shadow: var(--shadow-gold);
  border: none;
}

/* ── EYEBROW ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 0;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 86px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--soft);
  margin: 0 0 24px;
}
.hero__title em { font-style: normal; color: var(--gold-2); }
.hero__lead {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__media {
  position: relative;
  overflow: hidden;
}
.hero__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--black) 0%, rgba(10,9,0,0.2) 45%, transparent 100%),
    linear-gradient(to top, var(--black) 0%, transparent 35%);
  z-index: 1;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) brightness(0.75); }

/* Proof bar */
.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(10,9,0,0.75);
  backdrop-filter: blur(16px);
  overflow: hidden;
  max-width: 580px;
}
.proof-bar__item { display: flex; align-items: center; gap: 14px; padding: 18px 20px; }
.proof-bar__item + .proof-bar__item { border-left: 1px solid var(--border); }
.proof-bar__icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold-2);
}
.proof-bar__icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.proof-bar__num { display: block; font-family: var(--serif); font-size: 24px; font-weight: 700; line-height: 1; color: var(--soft); }
.proof-bar__label { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Social strip */
.social-strip {
  background: var(--black-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 10px 0;
}
.social-strip__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 0 24px;
}
.social-strip__star { color: var(--gold-2); }
.social-strip__count { color: var(--gold-2); font-weight: 700; }

/* Photo strip */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; overflow: hidden; }
.photo-strip__item { aspect-ratio: 1; overflow: hidden; }
.photo-strip__item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.78) saturate(0.9); transition: transform 400ms ease; }
.photo-strip__item:hover img { transform: scale(1.06); }

/* ── SECTIONS ── */
.section { padding: 100px 0; border-bottom: 1px solid var(--border-2); }
.section--dark { background: var(--black-2); }
.section--darker { background: var(--black-3); }
.section__header { margin-bottom: 52px; }
.section__header--center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section__title { font-family: var(--serif); font-size: clamp(34px, 3.8vw, 60px); font-weight: 700; line-height: 1; color: var(--soft); max-width: 680px; }
.section__title em { font-style: normal; color: var(--gold-2); }
.section__lead { font-size: 17px; color: var(--muted); max-width: 540px; margin-top: 16px; line-height: 1.7; }

/* ── COMMUNITY ── */
.community-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.stage-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.stage-card { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 16px; background: var(--gold-bg-2); transition: border-color 200ms, background 200ms; }
.stage-card:hover { border-color: var(--gold); background: var(--gold-bg); }
.stage-card__num { color: var(--gold-2); font-size: 11px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.stage-card__title { font-family: var(--serif); font-size: 20px; font-weight: 700; margin: 10px 0 6px; color: var(--soft); }
.stage-card__desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.community-photo { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.community-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: brightness(0.78) saturate(0.9); }
.community-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,9,0,0.85) 0%, transparent 55%); }
.community-photo__badge { position: absolute; bottom: 24px; left: 24px; z-index: 2; }
.community-photo__badge strong { display: block; font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--gold-2); line-height: 1; }
.community-photo__badge span { font-size: 13px; color: rgba(245,237,216,0.75); }

/* ── PATH ── */
.path-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.path-intro { position: sticky; top: 140px; }
.journey-list { display: grid; gap: 12px; list-style: none; }
.journey-item {
  display: grid;
  grid-template-columns: 36px 56px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: rgba(20,18,12,0.8);
  cursor: pointer;
  transition: border-color 200ms, background 200ms;
}
.journey-item:hover { border-color: var(--gold); background: rgba(30,26,16,0.9); }
.journey-num { width: 30px; height: 30px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold-2); font-size: 11px; font-weight: 900; }
.journey-icon { width: 56px; height: 56px; border: 1px solid var(--border); border-radius: 50%; display: grid; place-items: center; color: var(--gold-2); background: var(--gold-bg-2); }
.journey-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.journey-body strong { display: block; font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--soft); margin-bottom: 3px; }
.journey-body p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.journey-arrow { color: var(--gold); font-size: 16px; }

/* ── ECOSYSTEM ── */
.ecosystem-layout { display: grid; grid-template-columns: 1fr 1.5fr 1.5fr; gap: 20px; align-items: start; }
.ecosystem-intro .section__title { font-size: clamp(30px, 3.2vw, 50px); }
.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(28,26,18,0.95), rgba(14,12,7,0.98));
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.product-card__logo { height: 30px; object-fit: contain; object-position: left; }
.product-card__tagline { font-size: 13px; color: var(--muted); margin-top: -10px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { border: 1px solid var(--border); border-radius: 999px; padding: 5px 11px; font-size: 11px; font-weight: 700; color: var(--gold-2); background: var(--gold-bg-2); letter-spacing: 0.02em; }
.dashboard { border: 1px solid var(--border-soft); border-radius: var(--radius-sm); background: rgba(0,0,0,0.45); overflow: hidden; }
.dashboard__bar { display: flex; align-items: center; gap: 5px; padding: 8px 12px; border-bottom: 1px solid var(--border-soft); font-size: 11px; color: var(--muted-2); }
.dashboard__dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.dashboard__body { padding: 14px; }
.dashboard__pipeline { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 12px; }
.pipeline-stages { display: grid; gap: 5px; }
.pipeline-row { display: grid; grid-template-columns: 1fr auto; gap: 6px; font-size: 11px; color: var(--muted); align-items: center; }
.pipeline-row strong { color: var(--gold-2); font-size: 12px; }
.pipeline-chart__label { font-size: 10px; color: var(--muted-2); }
.pipeline-chart__num { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--gold-2); line-height: 1; }
.dashboard__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.dash-metric { background: var(--gold-bg-2); border: 1px solid var(--border-2); border-radius: var(--radius-sm); padding: 10px; text-align: center; }
.dash-metric__num { display: block; font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--gold-2); line-height: 1; }
.dash-metric__label { display: block; font-size: 10px; color: var(--muted-2); margin-top: 3px; }
.capital-figure { position: relative; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); }
.capital-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: brightness(0.65) saturate(0.8); }
.capital-figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,9,0,0.9) 0%, transparent 55%); }
.capital-figure__stat { position: absolute; bottom: 14px; left: 18px; z-index: 2; }
.capital-figure__num { display: block; font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--gold-2); line-height: 1; }
.capital-figure__label { font-size: 12px; color: rgba(245,237,216,0.75); }
.capital-features { display: grid; gap: 8px; }
.capital-feature { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.capital-feature::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.ecosystem-band {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(28,26,18,0.8), rgba(14,12,7,0.9));
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
}
.ecosystem-band__icon { width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 50%; display: grid; place-items: center; color: var(--gold-2); background: var(--gold-bg-2); }
.ecosystem-band__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ecosystem-band__copy strong { display: block; font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--soft); line-height: 1.1; }
.ecosystem-band__copy strong em { font-style: normal; color: var(--gold-2); }
.ecosystem-band__copy p { font-size: 13px; color: var(--muted); margin-top: 3px; }
.ecosystem-band__stats { display: flex; gap: 20px; }
.ecostat { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.ecostat svg { width: 16px; height: 16px; fill: none; stroke: var(--gold-2); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ecostat strong { color: var(--soft); font-weight: 700; }

/* ── EVENTS ── */
.events-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.carousel-btns { display: flex; gap: 10px; }
.carousel-btn { width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 50%; background: rgba(255,255,255,0.03); color: var(--gold-2); display: grid; place-items: center; transition: background 150ms, border-color 150ms; }
.carousel-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.carousel-btn:hover { background: var(--gold-bg); border-color: var(--gold); }
.event-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(270px, 330px); gap: 18px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; scrollbar-color: var(--gold-dark) rgba(255,255,255,0.05); scrollbar-width: thin; }
.event-card { scroll-snap-align: start; border: 1px solid var(--border); border-radius: var(--radius); background: var(--charcoal); overflow: hidden; transition: border-color 200ms, transform 200ms; }
.event-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.event-card__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.82) saturate(0.9); transition: filter 300ms; }
.event-card:hover .event-card__img { filter: brightness(0.9) saturate(1); }
.event-card__body { padding: 18px 20px; }
.event-card__tag { font-size: 10px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-2); }
.event-card__title { font-family: var(--serif); font-size: 20px; font-weight: 700; margin: 7px 0; color: var(--soft); line-height: 1.15; }
.event-card__desc { font-size: 13px; color: var(--muted); line-height: 1.55; min-height: 40px; }
.event-card__link { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: 13px; font-weight: 800; color: var(--gold-2); transition: gap 150ms; }
.event-card__link:hover { gap: 9px; }

/* ── APP ── */
.app-section { background: linear-gradient(90deg, rgba(10,9,0,0.96), rgba(10,9,0,0.72)), url("assets/exp-mastermind.jpg") center / cover fixed; }
.app-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.phone-mockup { display: grid; place-items: center; }
.phone { width: min(280px, 100%); min-height: 380px; border: 1px solid var(--border); border-radius: 24px; background: linear-gradient(160deg, var(--charcoal-2), var(--black-3)); padding: 22px; box-shadow: 0 0 0 8px rgba(255,255,255,0.03), var(--shadow); transform: rotate(-3deg); }
.phone__notch { width: 68px; height: 5px; background: rgba(255,255,255,0.12); border-radius: 3px; margin: 0 auto 20px; }
.phone__label { color: var(--gold-2); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; }
.phone h3 { font-size: 17px; font-family: var(--sans); margin: 7px 0 14px; color: var(--soft); }
.phone__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-bottom: 18px; }
.phone__stats strong { display: block; background: var(--gold-bg); border: 1px solid var(--border-2); border-radius: var(--radius-sm); padding: 10px 5px; text-align: center; color: var(--gold-2); font-size: 14px; }
.phone__stats span { display: block; font-size: 9px; color: var(--muted-2); margin-top: 3px; font-weight: 600; }
.phone__feed { display: grid; gap: 9px; }
.phone__feed span { height: 40px; border-radius: var(--radius-sm); background: linear-gradient(90deg, rgba(201,168,76,0.14), rgba(255,255,255,0.04)); }
.check-list { display: grid; gap: 10px; list-style: none; margin: 0 0 26px; }
.check-list li { position: relative; padding-left: 18px; font-size: 15px; color: var(--muted); }
.check-list li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); }

/* ── FINAL CTA ── */
.final-cta { position: relative; min-height: 640px; display: grid; align-items: center; overflow: hidden; }
.final-cta__bg { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,0,0.55), rgba(10,9,0,0.95)), linear-gradient(90deg, rgba(10,9,0,0.88), rgba(10,9,0,0.5)), url("assets/legacy-capital.png") center / cover; }
.final-cta__content { position: relative; z-index: 2; display: grid; justify-items: center; text-align: center; padding: 80px 0; }
.join-form { width: min(780px, 100%); display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 10px; align-items: end; margin-top: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(10,9,0,0.75); backdrop-filter: blur(16px); padding: 14px; text-align: left; }
.join-form label { display: grid; gap: 6px; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.join-form input, .join-form select { width: 100%; height: 44px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); color: var(--soft); padding: 0 12px; outline: none; transition: border-color 150ms; }
.join-form input:focus, .join-form select:focus { border-color: var(--gold); }
.join-form select { appearance: none; }
.join-form option { background: var(--charcoal); }
.form-message { grid-column: 1/-1; min-height: 20px; font-size: 13px; font-weight: 700; color: var(--gold-2); text-align: center; }

/* ── FOOTER ── */
.footer { background: #060503; padding: 60px 0 20px; border-top: 1px solid var(--border-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 44px; margin-bottom: 44px; }
.footer-brand p { font-size: 14px; color: var(--muted-2); margin: 14px 0 18px; max-width: 250px; line-height: 1.65; }
.footer nav { display: grid; align-content: start; gap: 10px; }
.footer nav strong { font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 2px; }
.footer nav a { font-size: 14px; color: var(--muted-2); transition: color 150ms; }
.footer nav a:hover { color: var(--soft); }
.socials { display: flex; gap: 8px; }
.socials a { width: 34px; height: 34px; border: 1px solid var(--border-soft); border-radius: 50%; display: grid; place-items: center; font-size: 10px; font-weight: 800; color: var(--muted-2); transition: border-color 150ms, color 150ms; }
.socials a:hover { border-color: var(--border); color: var(--soft); }
.footer-bottom { border-top: 1px solid var(--border-soft); padding-top: 18px; text-align: center; font-size: 13px; color: var(--muted-2); }

.mobile-cta { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ecosystem-layout { grid-template-columns: 1fr; }
  .ecosystem-band { grid-template-columns: auto 1fr; }
  .ecosystem-band__stats { display: none; }
}
@media (max-width: 900px) {
  .path-grid { grid-template-columns: 1fr; }
  .path-intro { position: static; }
  .hero { grid-template-columns: 1fr; }
  .hero__media { display: none; }
  .hero__copy { padding: 72px 0; }
  .community-split { grid-template-columns: 1fr; }
  .app-split { grid-template-columns: 1fr; }
  .phone-mockup { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .topbar__cities { display: none; }
  .topbar__sep { display: none; }
  .header-grid { grid-template-columns: auto auto; }
  .nav {
    display: none;
    position: fixed;
    inset: 116px 12px auto;
    background: rgba(10,9,0,0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px;
    flex-direction: column;
    gap: 0;
    z-index: 100;
    box-shadow: var(--shadow);
  }
  body.nav-open .nav { display: flex; }
  .nav a { padding: 13px 14px; border-bottom: 1px solid var(--border-soft); }
  .nav a:last-child { border-bottom: none; }
  .nav a::after { display: none; }
  .header-actions { display: none; }
  .menu-toggle { display: flex; justify-self: end; }
  .hero__title { font-size: clamp(38px, 11vw, 58px); }
  .proof-bar { grid-template-columns: 1fr; max-width: 100%; }
  .proof-bar__item + .proof-bar__item { border-left: none; border-top: 1px solid var(--border); }
  .stage-cards { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 68px 0; }
  .journey-item { grid-template-columns: 34px 50px 1fr; }
  .journey-arrow { display: none; }
  .join-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .ecosystem-band { grid-template-columns: 1fr; gap: 14px; }
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 50;
  }
  .mobile-cta .btn { width: 100%; min-height: 54px; font-size: 16px; border-radius: 999px; box-shadow: 0 16px 50px rgba(0,0,0,0.6); }
  .footer { padding-bottom: 84px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 1ms !important; animation-duration: 1ms !important; }
}
