/* ─── RESET & ROOT ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:         #18181a;
  --white:       #ffffff;
  --off:         #f7f6f3;
  --warm:        #f2f0ec;
  --green:       #2a6049;
  --green-mid:   #3d8a69;
  --green-light: #6bbf94;
  --green-pale:  #eef6f1;
  --green-deep:  #1e4535;
  --stone:       #666670;
  --mid:         #9999a3;
  --rule:        rgba(42,96,73,0.10);
  --nav-h:       72px;
  --radius-lg:   20px;
  --radius-md:   14px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:   0 24px 72px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--ink); font-size: 16px; line-height: 1.6; overflow-x: hidden; }

/* ─── TYPOGRAPHY UTILS ──────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 18px; height: 1px; background: var(--green);
}
h2.section-title {
  font-family: 'Fraunces', serif; font-size: clamp(36px, 4vw, 56px);
  font-weight: 400; line-height: 1.10; letter-spacing: -0.025em; color: var(--ink);
}
h2.section-title em { font-style: italic; color: var(--green); }

/* ─── NAV ───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.nav-logo {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500;
  color: var(--ink); text-decoration: none; letter-spacing: -0.02em;
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 400; color: var(--stone); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-login { font-size: 14px; color: var(--stone); text-decoration: none; transition: color 0.2s; }
.nav-login:hover { color: var(--ink); }
.nav-cta {
  font-size: 14px; font-weight: 500; color: var(--white); background: var(--green);
  padding: 10px 24px; border-radius: 100px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-orb-1 {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,96,73,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute; bottom: -100px; left: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,191,148,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-left {
  padding: 100px 64px 100px 64px;
  position: relative; z-index: 1;
  animation: fadeUp 0.9s ease both;
}
.hero-right {
  background: var(--off);
  height: 100%;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 56px 100px 48px;
  position: relative; z-index: 1;
  animation: fadeUp 0.9s 0.15s ease both;
  border-left: 1px solid rgba(0,0,0,0.04);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green); background: var(--green-pale);
  padding: 7px 16px; border-radius: 100px; margin-bottom: 36px;
  border: 1px solid rgba(42,96,73,0.12);
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }
.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(46px, 5.5vw, 74px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.025em; color: var(--ink);
  margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: var(--green); }
.hero-sub {
  font-size: 18px; font-weight: 300; line-height: 1.75;
  color: var(--stone); margin-bottom: 48px; max-width: 440px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 56px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500; color: var(--white); background: var(--green);
  padding: 15px 34px; border-radius: 100px; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(42,96,73,0.25);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(42,96,73,0.3); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 400; color: var(--stone);
  text-decoration: none; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--ink); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(3px); }
.hero-trust { display: flex; align-items: center; gap: 20px; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px; font-family: 'Fraunces', serif;
  font-size: 11px; font-weight: 500; color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.hero-trust-avatar:first-child { margin-left: 0; }
.hero-trust-text { font-size: 13px; color: var(--stone); line-height: 1.4; }
.hero-trust-text strong { color: var(--ink); font-weight: 500; display: block; }

/* Dashboard mockup */
.dash {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-lg);
  overflow: hidden; width: 100%; max-width: 520px;
}
.dash-titlebar {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 18px; background: var(--off);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.dash-dot-r { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
.dash-dot-y { width: 11px; height: 11px; border-radius: 50%; background: #febc2e; }
.dash-dot-g { width: 11px; height: 11px; border-radius: 50%; background: #28c840; }
.dash-url {
  margin-left: 10px; flex: 1;
  font-size: 11px; color: var(--mid);
  background: rgba(0,0,0,0.04); padding: 4px 10px; border-radius: 6px;
}
.dash-body { padding: 22px; }
.dash-header-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px;
}
.dash-name { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 400; color: var(--ink); margin-bottom: 3px; }
.dash-sub { font-size: 12px; color: var(--mid); }
.dash-val-big { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 400; color: var(--ink); line-height: 1; }
.dash-val-change { font-size: 12px; color: var(--green); font-weight: 500; margin-top: 3px; }
.dash-cards { display: flex; flex-direction: column; gap: 10px; }
.dash-card {
  background: var(--off); border-radius: 12px; padding: 16px 18px;
  border: 1px solid rgba(0,0,0,0.05);
  display: grid; grid-template-columns: 1fr auto; gap: 12px;
  align-items: center;
}
.dash-card-co { font-weight: 500; font-size: 14px; color: var(--ink); margin-bottom: 3px; }
.dash-card-shares { font-size: 12px; color: var(--mid); }
.dash-card-right { text-align: right; }
.dash-card-price { font-size: 14px; font-weight: 500; color: var(--ink); }
.dash-card-est { font-size: 11px; color: var(--green); margin-top: 2px; }
.dash-badge-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 500; padding: 3px 9px;
  border-radius: 100px; background: var(--green-pale); color: var(--green);
  margin-top: 6px;
}
.dash-footer-row {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.dash-cta-link {
  font-size: 13px; font-weight: 500; color: var(--green);
  text-decoration: none; display: flex; align-items: center; gap: 5px;
}
.dash-updated { font-size: 11px; color: var(--mid); }

/* ─── LOGOS BAR ─────────────────────────────────────── */
.logos-bar {
  background: var(--off);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 20px 56px;
  overflow: hidden;
}
.logos-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 48px;
}
.logos-label { font-size: 11px; color: var(--mid); white-space: nowrap; flex-shrink: 0; letter-spacing: 0.06em; text-transform: uppercase; }
.logos-track { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.logo-name { font-size: 14px; font-weight: 500; color: var(--mid); opacity: 0.55; letter-spacing: -0.01em; transition: opacity 0.2s; }
.logo-name:hover { opacity: 0.85; }

/* ─── STATS STRIP ───────────────────────────────────── */
.stats-strip { background: var(--green-deep); padding: 64px 56px; }
.stats-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { padding: 0 40px; border-right: 1px solid rgba(255,255,255,0.10); }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Fraunces', serif; font-size: clamp(40px,4vw,60px); font-weight: 400; color: var(--white); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.stat-num em { font-style: italic; color: var(--green-light); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.50); font-weight: 300; }

/* ─── SERVICES ──────────────────────────────────────── */
.services { padding: 120px 56px; max-width: 1200px; margin: 0 auto; }
.services-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 72px; align-items: end; }
.services-desc { font-size: 16px; font-weight: 300; line-height: 1.80; color: var(--stone); }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.service-card {
  background: var(--off); border-radius: var(--radius-lg);
  padding: 40px 36px; border: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; width: 0; height: 100%;
  background: linear-gradient(180deg, rgba(42,96,73,0.03) 0%, transparent 100%);
  transition: width 0.4s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(42,96,73,0.12); }
.service-card:hover::after { width: 100%; }
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-pale); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; border: 1px solid rgba(42,96,73,0.10);
}
.service-card h3 {
  font-family: 'Fraunces', serif; font-size: 21px; font-weight: 400;
  color: var(--ink); margin-bottom: 12px; letter-spacing: -0.01em;
}
.service-card p { font-size: 14px; font-weight: 300; line-height: 1.80; color: var(--stone); }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--green);
  text-decoration: none; margin-top: 20px;
  border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.service-link:hover { border-color: var(--green); }

/* ─── HOW IT WORKS ──────────────────────────────────── */
.how { background: var(--off); padding: 120px 56px; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-head { margin-bottom: 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.how-sub { font-size: 16px; font-weight: 300; color: var(--stone); line-height: 1.75; }
.how-steps { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; position: relative; margin-bottom: 56px; }
.how-steps::before {
  content: ''; position: absolute;
  top: 27px; left: calc(100%/14); right: calc(100%/14);
  height: 1px; background: rgba(42,96,73,0.12);
}
.how-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 4px; position: relative; z-index: 1; }
.how-step-num {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid rgba(42,96,73,0.18);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 17px; font-weight: 400;
  color: var(--mid); margin-bottom: 14px;
  transition: all 0.25s;
}
.how-step.active .how-step-num { background: var(--green); border-color: var(--green); color: var(--white); box-shadow: 0 4px 16px rgba(42,96,73,0.30); }
.how-step-label { font-size: 11px; color: var(--mid); line-height: 1.4; font-weight: 400; }
.how-step.active .how-step-label { color: var(--ink); font-weight: 500; }
.how-timeline {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px 48px; border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}
.how-timeline h4 {
  font-family: 'Fraunces', serif; font-size: 18px; font-weight: 400;
  color: var(--ink); margin-bottom: 44px;
}
.timeline-track { position: relative; display: flex; justify-content: space-between; align-items: center; padding: 36px 0; }
.timeline-line { position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--rule); }
.timeline-node { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.tl-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--white); border: 2px solid var(--green); transition: background 0.3s; }
.tl-dot.filled { background: var(--green); }
.tl-label { font-size: 10.5px; color: var(--stone); text-align: center; max-width: 88px; line-height: 1.4; position: absolute; white-space: nowrap; }
.tl-label.above { bottom: calc(100% + 14px); }
.tl-label.below { top: calc(100% + 14px); }

/* ─── WHO IT'S FOR ──────────────────────────────────── */
.for-who { padding: 120px 56px; max-width: 1200px; margin: 0 auto; }
.for-who-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 60px; }
.for-card {
  background: var(--off); border-radius: var(--radius-lg);
  padding: 40px 36px; border: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}
.for-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.for-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.for-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-pale); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.for-card-title { font-family: 'Fraunces', serif; font-size: 21px; font-weight: 400; color: var(--ink); }
.for-card p { font-size: 14px; font-weight: 300; color: var(--stone); line-height: 1.80; margin-bottom: 28px; }
.for-card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill { font-size: 12px; color: var(--green); background: var(--green-pale); padding: 5px 13px; border-radius: 100px; }

/* ─── COMPANIES ─────────────────────────────────────── */
.companies { background: var(--off); padding: 120px 56px; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.companies-inner { max-width: 1200px; margin: 0 auto; }
.companies-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.companies-note { font-size: 15px; font-weight: 300; color: var(--stone); line-height: 1.75; }
.companies-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 40px; }
.co-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 24px 20px; border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  cursor: pointer;
}
.co-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: rgba(42,96,73,0.15); }
.co-name { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 400; color: var(--ink); margin-bottom: 10px; }
.co-sector { font-size: 11px; color: var(--mid); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.co-val { font-size: 13px; font-weight: 500; color: var(--green); }
.companies-more { text-align: center; }
.see-all-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--green);
  text-decoration: none; letter-spacing: 0.04em;
  padding: 12px 28px; border: 1.5px solid rgba(42,96,73,0.25); border-radius: 100px;
  transition: border-color 0.2s, background 0.2s;
}
.see-all-link:hover { border-color: var(--green); background: var(--green-pale); }

/* ─── QUOTE ─────────────────────────────────────────── */
.quote-section { padding: 120px 56px; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; }
.quote-photo-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 460px; position: relative; }
.quote-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.quote-photo-placeholder { width: 100%; height: 100%; background: linear-gradient(145deg, #d0e8db 0%, #a8ccb9 100%); display: flex; align-items: center; justify-content: center; }
.quote-photo-init { font-family: 'Fraunces', serif; font-size: 80px; font-weight: 300; color: rgba(42,96,73,0.20); }
.quote-right { }
.quote-mark-svg { margin-bottom: 28px; opacity: 0.25; }
.quote-text {
  font-family: 'Fraunces', serif; font-size: clamp(22px,2.4vw,30px);
  font-weight: 300; font-style: italic; line-height: 1.55;
  color: var(--ink); margin-bottom: 36px; letter-spacing: -0.015em;
}
.quote-attr strong { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 400; display: block; margin-bottom: 3px; }
.quote-attr span { font-size: 13px; color: var(--mid); }

/* ─── TEAM ──────────────────────────────────────────── */
.team { padding: 120px 56px; background: var(--white); }
.team-inner { max-width: 1200px; margin: 0 auto; }
.team-head { margin-bottom: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.team-sub { font-size: 15px; font-weight: 300; color: var(--stone); line-height: 1.80; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.team-card {
  background: var(--off); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.team-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-deep); display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 17px; font-weight: 400; color: var(--white);
  margin-bottom: 20px;
}
.team-name { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 400; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.team-title { font-size: 12px; color: var(--green); font-weight: 500; letter-spacing: 0.03em; margin-bottom: 14px; }
.team-bio { font-size: 13px; font-weight: 300; color: var(--stone); line-height: 1.75; margin-bottom: 18px; }
.team-creds { display: flex; flex-wrap: wrap; gap: 6px; }
.team-cred { font-size: 10px; font-weight: 500; color: var(--mid); background: var(--white); border: 1px solid rgba(0,0,0,0.08); padding: 3px 10px; border-radius: 100px; }

/* ─── CTA BAND ──────────────────────────────────────── */
.cta-band { background: var(--green-deep); padding: 100px 56px; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; top: -300px; right: -300px;
  width: 700px; height: 700px; border-radius: 50%;
  background: rgba(255,255,255,0.03); pointer-events: none;
}
.cta-band-inner {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center; gap: 80px;
}
.cta-band h2 {
  font-family: 'Fraunces', serif; font-size: clamp(36px,4vw,54px);
  font-weight: 400; line-height: 1.10; letter-spacing: -0.025em; color: var(--white);
  max-width: 480px;
}
.cta-band h2 em { font-style: italic; color: var(--green-light); }
.cta-band-right { flex-shrink: 0; text-align: right; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: var(--green-deep); background: var(--white);
  padding: 16px 36px; border-radius: 100px; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.btn-white:hover { opacity: 0.92; transform: translateY(-1px); }
.cta-band-note { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 14px; }

/* ─── FOOTER ────────────────────────────────────────── */
footer { background: var(--ink); padding: 80px 56px 48px; }
footer * { color: rgba(255,255,255,0.55); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2.5fr 1fr 1fr; gap: 80px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 40px; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; color: var(--white) !important; letter-spacing: -0.02em; margin-bottom: 24px; display: block; }
.footer-logo span { color: var(--green-light) !important; }
.footer-disc-head { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35) !important; margin-bottom: 14px; }
.footer-disc { font-size: 11px; font-weight: 300; line-height: 1.80; margin-bottom: 10px; }
.footer-col-head { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.30) !important; margin-bottom: 20px; }
.footer-addr-label { font-size: 12px; font-weight: 500; color: var(--white) !important; display: block; margin-bottom: 4px; }
.footer-addr-line { font-size: 12px; line-height: 1.70; margin-bottom: 18px; display: block; }
.footer-email { font-size: 13px; color: var(--green-light) !important; text-decoration: none; display: block; margin-bottom: 6px; }
.footer-email:hover { color: var(--white) !important; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white) !important; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; }
.footer-bottom-links { display: flex; gap: 24px; list-style: none; }
.footer-bottom-links a { font-size: 12px; text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white) !important; }
.footer-finra { font-size: 11px; display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.finra-badge {
  font-size: 10px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(255,255,255,0.08); padding: 3px 9px; border-radius: 4px;
  color: rgba(255,255,255,0.45) !important;
}

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: auto; border-left: none; border-top: 1px solid rgba(0,0,0,0.05); }
  .hero-left { padding: 80px 28px 60px; }
  .hero-right { padding: 60px 28px; }
  .stats-strip-inner { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .stat-item { border-right: none; padding: 0; }
  .services-top, .how-head, .companies-head, .team-head { grid-template-columns: 1fr; gap: 24px; }
  .services-grid, .for-who-grid { grid-template-columns: 1fr; }
  .companies-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .quote-section { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .logos-bar, .services, .how, .for-who, .companies, .team, .cta-band { padding-left: 28px; padding-right: 28px; }
  .quote-section { padding-left: 28px; padding-right: 28px; }
  footer { padding-left: 28px; padding-right: 28px; }
}
