/* ============================================================
   SYPHER CAPITAL — GLOBAL STYLES
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --green: #1B5E3B;
  --green-light: #226b44;
  --green-dim: rgba(27, 94, 59, 0.12);
  --black: #111111;
  --dark: #0D0D0D;
  --dark-2: #161616;
  --dark-3: #1E1E1E;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --border: rgba(255,255,255,0.08);
  --border-dark: rgba(0,0,0,0.10);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Page transition */
.page-fade {
  animation: pageFadeIn 0.5s ease forwards;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero intro (fires on load, not scroll) ─────────────── */
.hero-intro {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIntro 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroIntro {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Eyebrow line draws in before text ───────────────────── */
.hero__eyebrow::before {
  transform-origin: left center;
  transform: scaleX(0);
  animation: eyebrowLine 0.5s cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}
@keyframes eyebrowLine {
  to { transform: scaleX(1); }
}

/* ── Hero headline — line-by-line slide-up reveal ────────── */
.hero__line {
  display: block;
  overflow: hidden;
  /* small bottom padding so descenders aren't clipped */
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}

.hero__line-inner {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation: lineUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__line:nth-child(1) .hero__line-inner { animation-delay: 200ms; }
.hero__line:nth-child(2) .hero__line-inner { animation-delay: 360ms; }
.hero__line:nth-child(3) .hero__line-inner { animation-delay: 520ms; }

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

/* ── Blinking cursor on last headline word ───────────────── */
.hero__cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--green);
  margin-left: 6px;
  vertical-align: middle;
  margin-bottom: 4px;
  /* blink 3× then fade out */
  animation:
    cursorBlink 0.55s step-end 560ms 4,
    cursorFade  0.4s  ease     2.8s  forwards;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes cursorFade {
  to { opacity: 0; width: 0; margin: 0; }
}

/* ── Hero grid fade-in ───────────────────────────────────── */
.hero__grid {
  opacity: 0;
  animation: gridIn 1.8s ease 400ms forwards;
}
@keyframes gridIn {
  to { opacity: 1; }
}

/* Hero background ambient pulse */
@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.08); }
}
.hero__bg {
  animation: glowPulse 10s ease-in-out infinite;
}

/* ── Divider draw-in ─────────────────────────────────────── */
.divider {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.divider.revealed {
  transform: scaleX(1);
}

/* ── Reveal variants ─────────────────────────────────────── */
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stat counter pop */
@keyframes statPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.stat-pop {
  animation: statPop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* (ticker masks moved to .ticker__viewport::before/after) */

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
}

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

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--dark p { color: var(--gray-light); }

.section--green {
  background: var(--green);
  color: var(--white);
}

.section--gray {
  background: var(--off-white);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: block;
}

.section--dark .section-label,
.section--green .section-label {
  color: rgba(255,255,255,0.55);
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 580px;
  line-height: 1.7;
}

.section--dark .section-subtitle { color: var(--gray-light); }

.divider {
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 24px 0 40px;
}

.section--dark .divider,
.section--green .divider { background: rgba(255,255,255,0.3); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

.footer__logo-img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  display: block;
  margin-bottom: 16px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--green);
  color: var(--white) !important;
  border-radius: 2px;
  transition: background var(--transition) !important;
}

.nav__cta:hover {
  background: var(--green-light) !important;
}

.nav__cta::after { display: none !important; }

/* ── Research dropdown ───────────────────────────────────── */

.nav__dropdown-wrapper {
  position: relative;
}

/* Chevron after "Research" */
.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}

.nav__dropdown-trigger::after { display: none !important; } /* suppress underline on trigger */

.nav__chevron {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid rgba(255,255,255,0.5);
  border-bottom: 1.5px solid rgba(255,255,255,0.5);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.nav__dropdown-wrapper:hover .nav__chevron {
  transform: rotate(-135deg) translateY(2px);
  border-color: rgba(255,255,255,0.8);
}

/* Invisible bridge on the wrapper — fills the gap between the trigger
   and the dropdown so hover doesn't break when moving the mouse down */
.nav__dropdown-wrapper::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 16px;
  background: transparent;
}

/* The dropdown panel */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  background: rgba(8,8,8,0.98);
  border: 1px solid rgba(27,94,59,0.3);
  border-radius: 3px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  z-index: 2000;
}

.nav__dropdown-wrapper:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav__dropdown-item:last-child { border-bottom: none; }

.nav__dropdown-item:hover {
  background: rgba(27,94,59,0.2);
  color: var(--white);
}

/* Suppress the underline animation on dropdown items */
.nav__dropdown-item::after { display: none !important; }

.nav__dropdown-arrow {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Mobile: dropdown becomes accordion */
.nav__dropdown.is-open {
  position: static;
  transform: none !important;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  background: rgba(27,94,59,0.08);
  border: none;
  border-radius: 0;
  border-left: 2px solid var(--green);
  margin: 4px 0 4px 8px;
}

.nav__dropdown.is-open::before { display: none; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border-radius: 2px;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(27, 94, 59, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.25);
}

.btn--outline-dark:hover {
  border-color: var(--black);
  background: rgba(0,0,0,0.04);
  transform: translateY(-1px);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.btn:hover svg {
  transform: translateX(3px);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 110px;
  background: var(--dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(27, 94, 59, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, #0D0D0D 0%, #111 100%);
  will-change: transform;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--green);
}

.hero__headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: normal;
  color: var(--green);
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollPulse 2.5s ease infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--green), transparent);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   PROVIDER BAR
   ============================================================ */

.ticker {
  background: var(--green);
  padding: 16px 0 0;
  overflow: hidden;
}

.ticker__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 16px;
}

/* The scrolling track lives in its own clipping wrapper */
.ticker__viewport {
  position: relative;
  overflow: hidden;
}

/* Fade masks on the viewport only — not the label */
.ticker__viewport::before,
.ticker__viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ticker__viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--green), transparent);
}
.ticker__viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--green), transparent);
}

.ticker__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  animation: tickerScroll 50s linear infinite;
  white-space: nowrap;
  will-change: transform;
  padding: 18px 0;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  border-right: 1px solid rgba(255,255,255,0.15);
  height: 44px;
}

.ticker__item img {
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity 0.25s ease;
  /* default height — overridden per-logo below */
  height: 28px;
}

.ticker__item:hover img { opacity: 1; }

/* Per-logo height tuning so visual weight feels balanced */
.ticker__item--coinbase img  { height: 20px; }
.ticker__item--bitgo img     { height: 26px; }
.ticker__item--nav img       { height: 30px; }
.ticker__item--berkower img  { height: 22px; }
.ticker__item--ilg img       { height: 28px; }
.ticker__item--ibkr img      { height: 22px; }
.ticker__item--clearstreet img { height: 26px; }

.ticker__dot { display: none; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

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

.about__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}

.about__stat {
  background: var(--white);
  padding: 32px;
}

.about__stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.about__stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================================
   FUND HIGHLIGHT (SBYF)
   ============================================================ */

.fund-highlight {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.fund-highlight__accent {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,94,59,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.fund-highlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fund-highlight__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--green-dim);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
  border: 1px solid rgba(27,94,59,0.3);
}

.fund-highlight .section-title {
  color: var(--white);
}

.fund-highlight .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.stat-card {
  background: var(--dark-2);
  padding: 32px 28px;
  transition: background var(--transition);
}

.stat-card:hover {
  background: var(--dark-3);
}

.stat-card__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card__unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
}

.stat-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.stat-card__desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  line-height: 1.5;
}

/* ============================================================
   WHY BITCOIN YIELD
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  margin-top: 60px;
}

.why-card {
  background: var(--white);
  padding: 40px 36px;
  transition: background var(--transition);
}

.why-card:hover {
  background: var(--off-white);
}

.why-card__icon {
  width: 44px;
  height: 44px;
  background: var(--green-dim);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.why-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.team-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 48px 40px;
  transition: border-color var(--transition), transform var(--transition);
}

.team-card:hover {
  border-color: rgba(27,94,59,0.4);
  transform: translateY(-4px);
}

.team-card__initials {
  width: 64px;
  height: 64px;
  background: var(--green);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.team-card__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.team-card__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}

.team-card__bio {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 24px;
}

.team-card__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credential-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  padding: 5px 12px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.08);
}

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

.cta {
  background: var(--green);
  padding: 100px 0;
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta .btn--outline {
  border-color: rgba(255,255,255,0.4);
}

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

.footer {
  background: var(--dark);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer__brand-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer__disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.7;
  max-width: 700px;
}

.footer__copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.form-group {
  margin-bottom: 20px;
}

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

label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

input, textarea, select {
  width: 100%;
  background: var(--off-white);
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--black);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27, 94, 59, 0.1);
  background: var(--white);
}

/* ============================================================
   VISUAL POLISH
   ============================================================ */

/* ── 1. Film grain on dark sections ─────────────────────────
   A barely-there fractal noise texture that makes flat dark
   backgrounds feel tactile and premium.                       */

.hero,
.section--dark,
.fund-highlight,
.cta {
  position: relative;
}

.hero::after,
.section--dark::after,
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 10;
}

/* ── 2. Tabular numerals on all stats ───────────────────────
   Prevents digit-width jitter in animated counters and makes
   numbers read as precise financial data.                     */

.about__stat-num,
.stat-card__num,
.sbyf-hero__stat-num,
.stat-box__num {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

/* ── 3. Fund card top-accent on hover ───────────────────────
   A green bar slides in from the left when hovering a card.   */

.fund-card {
  position: relative;
  overflow: hidden;
}

.fund-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.fund-card:hover::before {
  transform: scaleX(1);
}

/* ── 4. Button sweep shimmer ────────────────────────────────
   A subtle light sweep passes across the primary button on
   hover — gives it a slightly tactile, premium feel.          */

.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.14) 50%,
    transparent 100%
  );
  transform: skewX(-15deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.btn--primary:hover::after {
  left: 140%;
}

/* ── 5. Hero headline green glow ────────────────────────────
   Adds a soft halo around the green accent word on dark
   backgrounds — makes it pop without changing the colour.     */

.hero__headline em,
.sbyf-hero__headline em {
  text-shadow: 0 0 48px rgba(27, 94, 59, 0.55);
}

/* ── 6. Section label dot marker ────────────────────────────
   A small filled circle before every section label gives the
   labels more visual weight and an editorial feel.            */

.section-label::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

select {
  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='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .about__grid,
  .fund-highlight__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__headline { font-size: clamp(2.2rem, 5vw, 3.5rem); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .why-grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .about__stat-grid { grid-template-columns: 1fr 1fr; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__headline { font-size: 2.4rem; }
  .hero { padding: 100px 0 90px; }
}

@media (max-width: 480px) {
  .about__stat-grid { grid-template-columns: 1fr; }
}
