*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --ink: #0f1117;
  --ink2: #3a3d4a;
  --ink3: #6b7080;
  --paper: #fafaf8;
  --paper2: #f2f1ee;
  --paper3: #e8e6e0;
  --accent: #1a3a5c;
  --accent2: #c8a96e;
  --accent3: #2d7a5f;
  --accent4: #8b3a62;
  --teal: #1d9e75;
  --blue: #185fa5;
  --amber: #ba7517;
  --coral: #d85a30;
  --red: #a32d2d;
  --purp: #534ab7;
  --border: rgba(15, 17, 23, .1);
  --border2: rgba(15, 17, 23, .18);
  --r: 12px;
  --r2: 8px;
  --font-serif: 'DM Serif Display', serif;
  --font-sans: 'DM Sans', sans-serif;
  --nav-h: 64px;
  --max: 1100px;
  --pad: clamp(20px, 5vw, 60px);
  --ok: #1d9e75;
  --err: #a32d2d;
  --warn: #ba7517;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden
}

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

button {
  cursor: pointer;
  font-family: var(--font-sans)
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad)
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 14px
}

.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .03em
}

.pill-purp {
  background: #eeedfe;
  color: #26215c
}

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(250, 250, 248, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: box-shadow .3s
}

#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .07)
}

/* ── FOOTER UPDATES ── */
footer {
  background: var(--ink);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: 60px;
}

.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-brand .footer-logo span {
  color: var(--accent2);
}

.footer-contact-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-address {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.footer-links-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #fff;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad)
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink)
}

.nav-logo span {
  color: var(--accent2)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px
}

.nav-links a {
  font-size: 14px;
  color: var(--ink2);
  transition: color .2s
}

.nav-links a:hover {
  color: var(--ink)
}

.nav-links .nav-invest {
  font-size: 13px;
  color: var(--accent2);
  font-weight: 500
}

.nav-links .nav-cta {
  padding: 8px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r2);
  font-size: 13px;
  font-weight: 500;
  transition: background .2s
}

.nav-links .nav-cta:hover {
  background: #0f2540
}

.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink2);
  background: none;
  transition: all .2s
}

.nav-user-btn:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.nav-user-area {
  position: relative;
}

.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 8px;
  display: none;
  flex-direction: column;
  z-index: 1000;
  animation: slideIn 0.2s ease-out;
}

.nav-user-dropdown.show {
  display: flex;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-dropdown-item {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink2);
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  background: var(--paper2);
  color: var(--accent);
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

.nav-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 20px var(--pad);
  flex-direction: column
}

.mobile-menu a,
.mobile-menu button.mm-link {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  color: var(--ink2);
  border-bottom: 1px solid var(--border);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  text-align: left;
  width: 100%;
  font-family: var(--font-sans)
}

.mobile-menu a:last-child,
.mobile-menu button:last-child {
  border-bottom: none
}

.mobile-menu .mm-cta {
  color: var(--accent);
  font-weight: 500
}

.mobile-menu .mm-invest {
  color: var(--accent2);
  font-weight: 500
}

.mobile-menu.open {
  display: flex
}

/* ── AUTH MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 23, .55);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.modal-overlay.open {
  display: flex
}

.modal {
  background: var(--paper);
  border-radius: var(--r);
  padding: 36px 32px;
  max-width: 420px;
  width: 100%;
  position: relative;
  border: 1px solid var(--border)
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--ink3);
  line-height: 1;
  padding: 4px
}

.modal-close:hover {
  color: var(--ink)
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 8px
}

.modal-sub {
  font-size: 14px;
  color: var(--ink2);
  margin-bottom: 28px;
  line-height: 1.55;
  font-weight: 300
}

.google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1.5px solid var(--border2);
  border-radius: var(--r2);
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: all .2s;
  margin-bottom: 12px
}

.google-btn:hover {
  border-color: var(--accent);
  background: var(--paper2)
}

.google-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  font-size: 12px;
  color: var(--ink3)
}

.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border)
}

.modal-note {
  font-size: 12px;
  color: var(--ink3);
  text-align: center;
  line-height: 1.55;
  margin-top: 16px
}

.modal-note a {
  color: var(--blue)
}

/* ── ALERT / ERROR STATES ── */
.alert {
  padding: 12px 16px;
  border-radius: var(--r2);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid transparent
}

.alert-err {
  background: #fde8e8;
  border-color: rgba(163, 45, 45, .25);
  color: #7a1f1f
}

.alert-ok {
  background: #d5f0e8;
  border-color: rgba(29, 158, 117, .25);
  color: #085041
}

.alert-warn {
  background: #faeeda;
  border-color: rgba(186, 117, 23, .25);
  color: #633806
}

.alert-icon {
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 1px
}

.field-error {
  font-size: 12px;
  color: var(--err);
  margin-top: 4px;
  display: none
}

.field-error.show {
  display: block
}

.input-err {
  border-color: var(--err) !important
}

/* ── HERO ── */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .06
}

.hero-bg-c1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -100px;
  right: -100px
}

.hero-bg-c2 {
  width: 400px;
  height: 400px;
  background: var(--accent2);
  bottom: 0;
  left: -80px
}

.hero-bg-c3 {
  width: 200px;
  height: 200px;
  background: var(--teal);
  top: 50%;
  right: 20%
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px var(--pad) 60px
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .7s .1s forwards
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent2)
}

.hero-eyebrow span {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink3);
  font-weight: 500
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .7s .2s forwards;
  max-width: 820px
}

.hero-h1 em {
  font-style: italic;
  color: var(--accent2)
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp .7s .3s forwards
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s .4s forwards
}

.btn-primary {
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r2);
  font-size: 15px;
  font-weight: 500;
  border: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.01em
}

.btn-primary:hover {
  background: #0f2540;
  transform: translateY(-1px)
}

.btn-primary .arr {
  transition: transform .2s
}

.btn-primary:hover .arr {
  transform: translateX(4px)
}

.hero-secondary {
  font-size: 13px;
  color: var(--ink3)
}

.hero-secondary a {
  color: var(--blue);
  font-weight: 500
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s .5s forwards
}

.hero-stat {
  flex: 1;
  min-width: 120px;
  padding-right: 32px;
  border-right: 1px solid var(--border);
  margin-right: 32px
}

.hero-stat:last-child {
  border-right: none;
  margin-right: 0
}

.hero-stat-val {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 4px
}

.hero-stat-label {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.4
}

/* ── JOURNEY ── */
#journey {
  padding: 100px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden
}

.journey-bg {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255, 255, 255, .3) 40px, rgba(255, 255, 255, .3) 41px), repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, .3) 40px, rgba(255, 255, 255, .3) 41px)
}

.journey-inner {
  position: relative;
  z-index: 1
}

.journey-header {
  text-align: center;
  margin-bottom: 56px
}

.journey-header .section-label {
  color: rgba(255, 255, 255, .4)
}

.journey-h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 14px
}

.journey-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300
}

.stages-rail {
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none
}

.stages-rail::-webkit-scrollbar {
  display: none
}

.stage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 90px;
  cursor: pointer
}

.stage-connector {
  flex: 1;
  height: 2px;
  margin-top: 24px;
  min-width: 12px
}

.stage-bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  border: 2px solid transparent;
  transition: all .25s;
  flex-shrink: 0
}

.stage-num {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 8px;
  letter-spacing: .05em
}

.stage-name {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .4);
  text-align: center;
  margin-top: 10px;
  transition: color .25s;
  line-height: 1.3
}

.stage-item.active .stage-name {
  color: #fff
}

.stage-entry {
  font-size: 9px;
  color: rgba(255, 255, 255, .25);
  text-align: center;
  margin-top: 3px
}

.stage-item.active .stage-entry {
  color: rgba(255, 255, 255, .45)
}

.journey-detail {
  margin-top: 40px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r);
  padding: 28px 32px;
  transition: border-color .3s
}

.jd-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px
}

.jd-num {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, .08);
  flex-shrink: 0;
  min-width: 48px
}

.jd-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  color: #fff;
  margin-bottom: 8px
}

.jd-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  font-weight: 300
}

.jd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px
}

.jd-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r2);
  padding: 14px 16px
}

.jd-card-label {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 6px;
  font-weight: 500
}

.jd-card-val {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.55
}

.jd-personas {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px
}

.jd-persona {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 500
}

.jd-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.jd-cta-text {
  font-size: 13px;
  color: rgba(255, 255, 255, .4)
}

.jd-cta-btn {
  padding: 10px 22px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  border-radius: var(--r2);
  font-size: 13px;
  font-weight: 500;
  transition: all .2s
}

.jd-cta-btn:hover {
  background: rgba(255, 255, 255, .18)
}

/* ── ABOUT ── */
#about {
  padding: 100px 0;
  background: var(--paper)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.about-h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px
}

.about-h2 em {
  font-style: italic;
  color: var(--accent2)
}

.about-p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px
}

.pillar {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  background: var(--paper2);
  transition: border-color .2s
}

.pillar:hover {
  border-color: var(--border2)
}

.pillar-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r2);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px
}

.pillar-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.pillar-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px
}

.pillar-desc {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.55
}

.studio-highlight {
  background: var(--accent);
  border-radius: var(--r);
  padding: 32px;
  color: #fff;
  margin-bottom: 20px
}

.sh-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 16px;
  font-weight: 500
}

.sh-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 12px;
  line-height: 1.2
}

.sh-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px
}

.sh-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.sh-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .8)
}

.sh-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent2);
  flex-shrink: 0;
  margin-top: 7px
}

.studio-vs {
  background: var(--paper2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px
}

.vs-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px
}

.vs-table {
  width: 100%;
  border-collapse: collapse
}

.vs-table th {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink3);
  text-align: left;
  padding: 0 10px 8px 0;
  letter-spacing: .04em;
  text-transform: uppercase
}

.vs-table th:not(:first-child) {
  text-align: center
}

.vs-table td {
  font-size: 13px;
  color: var(--ink2);
  padding: 9px 10px 9px 0;
  border-top: 1px solid var(--border)
}

.vs-table td:not(:first-child) {
  text-align: center
}

.vs-check {
  color: var(--teal);
  font-size: 15px;
  font-weight: 600
}

.vs-cross {
  color: var(--ink3);
  opacity: .35;
  font-size: 15px
}

.vs-col-us {
  color: var(--accent);
  font-weight: 500
}

/* ── PROOF ── */
#proof {
  padding: 80px 0;
  background: var(--paper2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.proof-header {
  text-align: center;
  margin-bottom: 48px
}

.proof-h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -.02em;
  margin-bottom: 10px
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.team-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  transition: border-color .2s, transform .2s
}

.team-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px)
}

.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px
}

.team-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px
}

.team-role {
  font-size: 12px;
  color: var(--ink3);
  margin-bottom: 10px
}

.team-bio {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6
}

.stat-banner {
  display: flex;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  flex-wrap: wrap
}

.stat-b-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--border)
}

.stat-b-item:last-child {
  border-right: none
}

.stat-b-val {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--ink);
  margin-bottom: 6px
}

.stat-b-label {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.4
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 100px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden
}

.testi-bg {
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image: radial-gradient(circle at 20% 50%, rgba(200, 169, 110, .8) 0%, transparent 60%), radial-gradient(circle at 80% 20%, rgba(29, 158, 117, .6) 0%, transparent 50%)
}

.testi-inner {
  position: relative;
  z-index: 1
}

.testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 20px;
  flex-wrap: wrap
}

.testi-header-left {
  flex: 1
}

.testi-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 14px;
  font-weight: 500
}

.testi-h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.15
}

.testi-h2 em {
  font-style: italic;
  color: var(--accent2)
}

.testi-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0
}

.testi-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  cursor: pointer;
  line-height: 1
}

.testi-nav-btn:hover {
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .12);
  color: #fff
}

/* Track */
.testi-track-wrap {
  overflow: hidden
}

.testi-track {
  display: flex;
  gap: 20px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

/* Cards */
.testi-card {
  flex: 0 0 calc(33.333% - 14px);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .2s
}

.testi-card:hover {
  border-color: rgba(255, 255, 255, .2)
}

.testi-quote-mark {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: .8;
  color: var(--accent2);
  opacity: .4;
  margin-bottom: 12px;
  display: block
}

.testi-text {
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
  margin-bottom: 24px
}

.testi-text strong {
  color: #fff;
  font-weight: 500
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  font-family: var(--font-serif)
}

.testi-name {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px
}

.testi-role {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.3
}

.testi-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 5px
}

/* Dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px
}

.testi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  transition: all .3s;
  cursor: pointer
}

.testi-dot.active {
  background: var(--accent2);
  width: 20px;
  border-radius: 3px
}

/* Featured pull-quote strip */
.testi-pull {
  margin-top: 48px;
  padding: 32px 40px;
  background: rgba(200, 169, 110, .08);
  border: 1px solid rgba(200, 169, 110, .2);
  border-radius: var(--r);
  text-align: center
}

.testi-pull-q {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.5vw, 24px);
  color: rgba(255, 255, 255, .9);
  line-height: 1.45;
  letter-spacing: -.01em;
  margin-bottom: 14px
}

.testi-pull-q em {
  font-style: italic;
  color: var(--accent2)
}

.testi-pull-attr {
  font-size: 13px;
  color: rgba(255, 255, 255, .4)
}

/* Mobile */
@media(max-width:800px) {
  .testi-card {
    flex: 0 0 calc(50% - 10px)
  }
}

@media(max-width:540px) {
  .testi-card {
    flex: 0 0 calc(100%)
  }

  .testi-pull {
    padding: 24px 20px
  }
}

/* ── PATHS ── */
#paths {
  padding: 100px 0;
  background: var(--paper)
}

.paths-header {
  margin-bottom: 56px
}

.paths-h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  letter-spacing: -.02em;
  margin-bottom: 12px
}

.paths-sub {
  font-size: 15px;
  color: var(--ink2);
  font-weight: 300;
  max-width: 520px
}

.router {
  background: var(--paper2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  margin-bottom: 36px
}

.router-q {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px
}

.router-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.router-btn {
  padding: 8px 16px;
  border: 1px solid var(--border2);
  border-radius: 999px;
  background: var(--paper);
  font-size: 13px;
  color: var(--ink2);
  transition: all .2s;
  font-family: var(--font-sans)
}

.router-btn:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.router-btn.selected {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent)
}

.router-result {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid var(--accent);
  border-radius: var(--r2);
  font-size: 13px;
  color: var(--accent);
  display: none
}

.router-result.show {
  display: block
}

.models-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.model-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  background: var(--paper);
  transition: all .25s;
  position: relative;
  overflow: hidden
}

.model-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .06)
}

.model-tag {
  position: absolute;
  top: 16px;
  right: 16px
}

.model-num {
  font-size: 11px;
  color: var(--ink3);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: .05em
}

.model-title {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 22px);
  color: var(--ink);
  margin-bottom: 4px
}

.model-plain {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 16px;
  font-style: italic
}

.model-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px
}

.model-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.5
}

.model-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent2);
  flex-shrink: 0;
  margin-top: 8px
}

.model-footer {
  font-size: 12px;
  color: var(--ink3);
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid var(--border)
}

/* ── LOOKFOR ── */
#lookfor {
  padding: 100px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden
}

.lookfor-bg {
  position: absolute;
  inset: 0;
  opacity: .03;
  background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, .5) 10px, rgba(255, 255, 255, .5) 11px)
}

.lookfor-inner {
  position: relative;
  z-index: 1
}

.lookfor-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 14px;
  font-weight: 500
}

.lookfor-h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 14px
}

.lookfor-bridge {
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  max-width: 560px;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 48px
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.criterion {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r);
  padding: 22px;
  background: rgba(255, 255, 255, .03);
  transition: border-color .2s
}

.criterion:hover {
  border-color: rgba(255, 255, 255, .16)
}

.criterion-q {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.5;
  margin-bottom: 10px;
  font-style: italic
}

.criterion-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff
}

/* ── FOCUS ── */
#focus {
  padding: 100px 0;
  background: var(--paper2);
  border-top: 1px solid var(--border)
}

.focus-header {
  text-align: center;
  margin-bottom: 56px
}

.focus-h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  letter-spacing: -.02em;
  margin-bottom: 10px
}

.focus-sub {
  font-size: 15px;
  color: var(--ink2);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.focus-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  transition: all .2s
}

.focus-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px)
}

.focus-card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px
}

.focus-plain {
  font-size: 12px;
  color: var(--ink3);
  font-style: italic;
  margin-bottom: 10px
}

.focus-desc {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.55
}

.focus-expand {
  font-size: 11px;
  color: var(--blue);
  margin-top: 8px;
  cursor: pointer;
  display: inline-block
}

.focus-expand:hover {
  opacity: .7
}

.focus-detail {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.55;
  margin-top: 8px;
  display: none
}

.focus-detail.open {
  display: block
}

/* ── PROCESS ── */
#process {
  padding: 100px 0;
  background: var(--paper)
}

.process-h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  letter-spacing: -.02em;
  margin-bottom: 10px
}

.process-sub {
  font-size: 15px;
  color: var(--ink2);
  font-weight: 300;
  margin-bottom: 56px
}

.steps {
  display: flex;
  flex-direction: column
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  position: relative
}

.step::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 56px;
  bottom: -1px;
  width: 1px;
  background: var(--border)
}

.step:last-child::before {
  display: none
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink2);
  background: var(--paper);
  z-index: 1
}

.step-body {
  padding: 0 0 48px
}

.step-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px
}

.step-desc {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.65;
  font-weight: 300
}

.step-time {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink3);
  background: var(--paper2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px
}

.honesty-note {
  background: var(--paper2);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--r2) var(--r2) 0;
  padding: 16px 20px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border)
}

/* ── CAPITAL ── */
#capital {
  padding: 100px 0;
  background: var(--paper2);
  border-top: 1px solid var(--border)
}

.capital-header {
  text-align: center;
  margin-bottom: 56px
}

.capital-h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  letter-spacing: -.02em;
  margin-bottom: 8px
}

.capital-h2 em {
  font-style: italic;
  color: var(--accent2)
}

.capital-sub {
  font-size: 15px;
  color: var(--ink2);
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.term-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  transition: border-color .2s
}

.term-card:hover {
  border-color: var(--border2)
}

.term-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px
}

.term-plain {
  font-size: 13px;
  color: var(--teal);
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.5
}

.term-desc {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.55
}

/* ── APPLY SECTION ── */
#apply {
  padding: 100px 0;
  background: var(--ink)
}

.apply-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center
}

.apply-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px;
  font-weight: 500
}

.apply-h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  line-height: 1.15
}

.apply-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 300
}

/* Auth gate */
.auth-gate {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r);
  padding: 40px 32px;
  text-align: center
}

.auth-gate-icon {
  font-size: 32px;
  margin-bottom: 16px
}

.auth-gate-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px
}

.auth-gate-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: 300
}

.btn-google-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  background: #fff;
  border: none;
  border-radius: var(--r2);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: all .2s;
  margin-bottom: 12px
}

.btn-google-dark:hover {
  background: #f0eeeb;
  transform: translateY(-1px)
}

/* Apply form */
.apply-form {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r);
  padding: 32px;
  text-align: left;
  display: none
}

.apply-form.visible {
  display: block
}

.apply-user-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--r2);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px
}

.apply-user-info {
  display: flex;
  align-items: center;
  gap: 10px
}

.apply-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent2);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center
}

.apply-user-name {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  font-weight: 500
}

.apply-user-email {
  font-size: 11px;
  color: rgba(255, 255, 255, .4)
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 6px;
  display: block
}

.form-label.light {
  color: var(--ink2)
}

.form-label .req {
  color: rgba(200, 169, 110, .8);
  margin-left: 3px
}

.form-label .opt {
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  font-weight: 400;
  margin-left: 4px
}

.form-select,
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r2);
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-family: var(--font-sans);
  transition: border-color .2s
}

.form-select.light,
.form-input.light,
.form-textarea.light {
  background-color: rgba(15, 17, 23, .03);
  border-color: rgba(15, 17, 23, .1);
  color: var(--ink)
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px
}

.form-select.light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(15,17,23,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
}

.form-select option {
  background: #1a1f2e;
  color: #fff
}

.form-select.light option {
  background: #fff;
  color: var(--ink)
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, .25)
}

.form-input.light::placeholder,
.form-textarea.light::placeholder {
  color: rgba(15, 17, 23, .3)
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, .35)
}

.form-input.light:focus,
.form-textarea.light:focus,
.form-select.light:focus {
  border-color: rgba(15, 17, 23, .25)
}

.form-input.err,
.form-textarea.err,
.form-select.err {
  border-color: rgba(200, 80, 80, .6)
}

.form-textarea {
  resize: vertical;
  min-height: 90px
}

.form-field-err {
  font-size: 11px;
  color: rgba(220, 100, 100, .9);
  margin-top: 4px;
  display: none
}

.form-field-err.show {
  display: block
}

.form-fields {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px
}

.form-fields.show {
  display: flex
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 6px
}

.form-consent input {
  margin-top: 2px;
  accent-color: var(--accent2);
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  cursor: pointer
}

.form-consent-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.55;
  cursor: pointer
}

.form-consent-label a {
  color: rgba(255, 255, 255, .65);
  text-decoration: underline
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent2);
  color: var(--ink);
  border: none;
  border-radius: var(--r2);
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
  transition: all .25s;
  font-family: var(--font-sans)
}

.btn-submit:hover:not(:disabled) {
  background: #dbbf7e;
  transform: translateY(-1px)
}

.btn-submit:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none
}

.form-assurance {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, .3)
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0
}

.form-success.show {
  display: block
}

.fs-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(29, 158, 117, .15);
  border: 1px solid rgba(29, 158, 117, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px
}

.fs-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px
}

.fs-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65
}

.fs-dash {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--r2);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s
}

.fs-dash:hover {
  background: rgba(255, 255, 255, .14)
}

/* ── INVEST STRIP ── */
#invest-strip {
  padding: 56px 0;
  background: var(--paper2);
  border-top: 1px solid var(--border)
}

.invest-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.invest-h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--ink);
  margin-bottom: 6px
}

.invest-sub {
  font-size: 14px;
  color: var(--ink3);
  font-weight: 300
}

.btn-invest {
  padding: 12px 28px;
  background: var(--paper);
  border: 1.5px solid var(--accent2);
  color: var(--accent2);
  border-radius: var(--r2);
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  font-family: var(--font-sans)
}

.btn-invest:hover {
  background: var(--accent2);
  color: var(--ink)
}

/* ── FOOTER ── */
footer {
  padding: 40px 0 32px;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  color: rgba(255, 255, 255, .7)
}

.footer-logo span {
  color: var(--accent2)
}

.footer-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.6;
  text-align: right
}

.footer-meta a {
  color: rgba(255, 255, 255, .5);
  transition: color .2s
}

.footer-meta a:hover {
  color: rgba(255, 255, 255, .8)
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s, transform .6s
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {

  .about-grid,
  .models-grid,
  .jd-grid {
    grid-template-columns: 1fr
  }

  .criteria-grid,
  .focus-grid {
    grid-template-columns: 1fr 1fr
  }

  .terms-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-pillars {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:640px) {
  :root {
    --pad: 18px
  }

  nav .nav-links {
    display: none
  }

  nav .hamburger {
    display: flex
  }

  .hero-stats {
    flex-direction: column
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    margin-right: 0;
    margin-bottom: 16px;
    padding-bottom: 16px;
    padding-right: 0
  }

  .hero-stat:last-child {
    border-bottom: none;
    margin-bottom: 0
  }

  .criteria-grid,
  .focus-grid,
  .team-grid,
  .terms-grid,
  .about-pillars {
    grid-template-columns: 1fr
  }

  .stat-banner {
    flex-direction: column
  }

  .stat-b-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    text-align: left
  }

  .stat-b-item:last-child {
    border-bottom: none
  }

  .invest-inner {
    flex-direction: column;
    text-align: center
  }

  .jd-top {
    flex-direction: column;
    gap: 12px
  }

  .stage-item {
    min-width: 72px
  }

  .stage-bubble {
    width: 38px;
    height: 38px
  }

  .journey-detail {
    padding: 20px 16px
  }

  .apply-form {
    padding: 20px
  }

  .auth-gate {
    padding: 28px 20px
  }

  .apply-user-bar {
    flex-direction: column;
    align-items: flex-start
  }
}

/* ── INVEST PAGE ── */
.invest-page {
  padding-top: calc(var(--nav-h) + 60px);
  min-height: 100svh;
  background: var(--paper);
}

.invest-card {
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .04);
}

.invest-h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink);
}

.invest-h1 em {
  font-style: italic;
  color: var(--accent2);
}

.invest-desc {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 440px;
}

.form-section-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink3);
  margin-bottom: 24px;
  display: block;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}