/* =============================================
   R2 Management Group — Main Stylesheet
   ============================================= */

:root {
  --black:       #0D0D0D;
  --black-soft:  #111111;
  --navy:        #1A1A35;
  --purple:      #7B5CF0;
  --purple-dark: #6347d4;
  --purple-glow: rgba(123, 92, 240, 0.25);
  --gold:        #B8962E;
  --gold-dark:   #9e7e25;
  --white:       #FFFFFF;
  --grey-100:    #F8F8F8;
  --grey-200:    #CCCCCC;
  --grey-300:    #AAAAAA;
  --grey-400:    #888888;
  --grey-500:    #666666;
  --grey-600:    #444444;
  --grey-700:    #333333;
  --grey-800:    #222222;
  --grey-900:    #1A1A1A;
  --border:      rgba(255,255,255,0.08);
  --border-soft: rgba(255,255,255,0.05);

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  32px;
  --space-xl:  48px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;

  --radius:    4px;
  --radius-lg: 8px;
  --transition: all 0.3s ease;
  --nav-height: 72px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); background: var(--black); color: var(--grey-200); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  color: var(--white);
  font-weight: 700;
}
h1 { font-size: clamp(40px, 6vw, 64px); }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }
h5 { font-size: 16px; font-weight: 600; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  display: block;
  margin-bottom: 12px;
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

.section           { padding: 120px 0; }
.section-dark      { background: var(--black); }
.section-navy      { background: var(--navy); }
.section-soft      { background: var(--black-soft); }
.section-light     { background: var(--grey-100); color: #111; }
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4  { color: #0D0D0D; }
.section-light p,
.section-light li  { color: #444; }
.section-light .overline { color: var(--purple); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

.flex       { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap-sm { gap: var(--space-sm); }
.flex-gap-md { gap: var(--space-md); }

/* ============ NAVIGATION ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.site-header.scrolled::before      { opacity: 1; background: rgba(13,13,13,0.92); }
.site-header.scrolled              { border-color: var(--border); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-r2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--grey-400);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--white); }
.nav-links li a:hover::after,
.nav-links li a.active::after { transform: scaleX(1); }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-nav-outline {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  border: 1.5px solid var(--purple);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-nav-outline:hover {
  background: var(--purple);
  color: var(--white);
}
.btn-nav-primary {
  font-size: 13px;
  font-weight: 600;
  background: var(--purple);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-nav-primary:hover { background: var(--purple-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--purple); }
.mobile-menu .mobile-ctas {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  font-family: var(--font-body);
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
}
.btn-primary:hover  { background: var(--purple-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--purple);
  color: var(--purple);
}
.btn-outline:hover  { background: var(--purple); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: #0D0D0D;
}
.btn-gold:hover     { background: var(--gold-dark); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.btn-ghost:hover    { border-color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* Arrow icon */
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding-top: var(--nav-height);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123,92,240,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,92,240,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridPulse 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(123,92,240,0.12) 0%, transparent 70%);
  pointer-events: none;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123,92,240,0.1);
  border: 1px solid rgba(123,92,240,0.3);
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--purple); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero h1 {
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--purple); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--grey-300);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--grey-600);
  border-bottom: 2px solid var(--grey-600);
  transform: rotate(45deg);
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ============ STAT BAR ============ */
.stat-bar {
  background: var(--navy);
  padding: 60px 0;
  border-top: 1px solid rgba(123,92,240,0.2);
  border-bottom: 1px solid rgba(123,92,240,0.2);
}
.stat-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: var(--border);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
}

/* ============ SECTION HEADINGS ============ */
.section-heading {
  margin-bottom: 16px;
}
.section-intro {
  font-size: 18px;
  color: var(--grey-300);
  max-width: 580px;
  line-height: 1.7;
  margin-top: 16px;
}
.section-header {
  margin-bottom: 64px;
}
.section-header--centered {
  text-align: center;
}
.section-header--centered .section-intro {
  margin: 16px auto 0;
}

/* ============ DEAL CARDS ============ */
.deal-card {
  background: var(--black-soft);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.deal-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--purple-glow);
}
.deal-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.sector-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(123,92,240,0.15);
  border: 1px solid rgba(123,92,240,0.3);
  color: var(--purple);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.status-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.status-badge--active {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}
.deal-card h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.deal-card p {
  font-size: 14px;
  color: var(--grey-300);
  line-height: 1.6;
  margin: 0;
}
.deal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.deal-stat {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
}
.deal-stat-value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.deal-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.deal-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  transition: gap 0.2s ease;
  margin-top: auto;
}
.deal-card-link:hover { gap: 10px; }

/* ============ ARTICLE CARDS ============ */
.article-card {
  background: var(--black-soft);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--purple-glow);
}
.article-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.article-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.category-tag--sector     { background: rgba(123,92,240,0.15); color: var(--purple); }
.category-tag--market     { background: rgba(184,150,46,0.15); color: var(--gold); }
.category-tag--portfolio  { background: rgba(20,184,166,0.15); color: #14b8a6; }
.category-tag--education  { background: rgba(148,163,184,0.15); color: #94a3b8; }
.read-time {
  font-size: 12px;
  color: var(--grey-500);
  margin-left: auto;
}
.article-card h3 {
  font-size: 20px;
  color: var(--white);
  transition: color 0.2s;
  line-height: 1.3;
}
.article-card:hover h3 { color: var(--purple); }
.article-card p { font-size: 14px; color: var(--grey-300); line-height: 1.6; margin: 0; }
.article-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  margin-top: auto;
  padding-top: 8px;
  transition: gap 0.2s ease;
}
.article-card-link:hover { gap: 10px; }

/* Featured article */
.article-featured {
  background: var(--black-soft);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: 48px;
  transition: border-color 0.3s ease;
}
.article-featured:hover { border-color: var(--purple); }
.article-featured .article-card-thumb { aspect-ratio: auto; height: 100%; min-height: 300px; }
.article-featured .article-card-body { padding: 48px; gap: 20px; }
.article-featured h2 { font-size: 32px; }

/* ============ TEAM CARDS ============ */
.team-card {
  background: var(--black-soft);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.team-card:hover {
  border-color: var(--grey-600);
  transform: translateY(-3px);
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.team-adviser-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(184,150,46,0.15);
  border: 1px solid rgba(184,150,46,0.3);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.team-card h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}
.team-role {
  font-size: 14px;
  color: var(--purple);
  font-weight: 500;
  margin-bottom: 16px;
}
.team-bio {
  font-size: 14px;
  color: var(--grey-300);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--grey-400);
  transition: color 0.2s;
}
.team-linkedin:hover { color: var(--purple); }

/* Adviser cards — larger */
.team-card--adviser { padding: 40px; }
.team-card--adviser .team-avatar { width: 80px; height: 80px; font-size: 28px; }
.team-card--adviser h3 { font-size: 22px; }
.team-card--adviser .team-bio { -webkit-line-clamp: 5; }

/* ============ INVESTMENT PILLAR CARDS ============ */
.pillar-card {
  background: var(--black-soft);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border-top: 3px solid var(--purple);
  transition: var(--transition);
}
.pillar-card:hover { transform: translateY(-4px); border-color: var(--purple); }
.pillar-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: rgba(123,92,240,0.2);
  line-height: 1;
  margin-bottom: 20px;
}
.pillar-card h3 { font-size: 22px; margin-bottom: 12px; }
.pillar-card p { font-size: 15px; color: var(--grey-300); margin: 0; }

/* ============ PROCESS STEPS ============ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px; left: 28px; right: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), rgba(123,92,240,0.2));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.process-step h4 { color: var(--white); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--grey-300); margin: 0; }

/* ============ ACCORDION ============ */
.accordion { border: 1px solid var(--grey-800); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--grey-800); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: var(--black-soft);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.accordion-header:hover { background: #161616; }
.accordion-header h4 { font-size: 16px; color: var(--white); font-weight: 600; }
.accordion-icon {
  width: 24px; height: 24px;
  border: 1.5px solid var(--grey-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--grey-400);
  transition: var(--transition);
}
.accordion-item.open .accordion-icon { border-color: var(--purple); color: var(--purple); transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-body-inner { padding: 0 28px 28px; }
.accordion-body-inner p { font-size: 15px; color: var(--grey-300); line-height: 1.7; margin: 0; }
.accordion-item.open .accordion-body { max-height: 400px; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--grey-700);
  color: var(--white);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}
.form-control::placeholder { color: var(--grey-500); }
.form-control--error { border-color: #ef4444; }
.form-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
  display: block;
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
select.form-control option { background: #1A1A35; }

/* Form steps */
.form-progress-bar {
  height: 3px;
  background: var(--grey-800);
  border-radius: 2px;
  margin-bottom: 40px;
  overflow: hidden;
}
.form-progress-fill {
  height: 100%;
  background: var(--purple);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.form-steps-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  counter-reset: step;
}
.form-step-ind {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 12px;
}
.form-step-ind:last-child { flex: 0; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  border: 2px solid var(--grey-700);
  color: var(--grey-500);
  flex-shrink: 0;
  transition: var(--transition);
}
.form-step-ind.active .step-num,
.form-step-ind.complete .step-num {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
}
.step-label { font-size: 13px; color: var(--grey-500); transition: color 0.2s; }
.form-step-ind.active .step-label { color: var(--white); }
.step-line {
  flex: 1;
  height: 1px;
  background: var(--grey-800);
  transition: background 0.3s;
}
.form-step-ind.complete + .form-step-ind .step-line,
.form-step-ind.complete .step-line { background: var(--purple); }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Eligibility option cards */
.eligibility-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.eligibility-card {
  border: 2px solid var(--grey-700);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--black-soft);
}
.eligibility-card:hover { border-color: var(--grey-500); }
.eligibility-card.selected { border-color: var(--purple); background: rgba(123,92,240,0.08); }
.eligibility-card h4 { font-size: 16px; color: var(--white); margin-bottom: 8px; }
.eligibility-card p { font-size: 13px; color: var(--grey-400); margin: 0; line-height: 1.5; }

/* Checkboxes */
.checkbox-group { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--purple); cursor: pointer; }
.checkbox-group label { font-size: 14px; color: var(--grey-200); line-height: 1.6; cursor: pointer; }

/* Risk warning box */
.risk-warning {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.risk-warning p { font-size: 13px; color: var(--grey-300); margin: 0; line-height: 1.6; }

/* ============ CTA SECTIONS ============ */
.cta-section {
  background: var(--navy);
  border-top: 1px solid rgba(123,92,240,0.15);
  border-bottom: 1px solid rgba(123,92,240,0.15);
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--grey-300); max-width: 520px; margin: 0 auto 40px; font-size: 17px; }
.cta-section .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Invest CTA box */
.invest-cta-box {
  background: linear-gradient(135deg, rgba(123,92,240,0.1), rgba(26,26,53,0.8));
  border: 1px solid rgba(123,92,240,0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.invest-cta-box h3 { font-size: 24px; margin-bottom: 12px; }
.invest-cta-box p { color: var(--grey-300); margin-bottom: 28px; font-size: 15px; }

/* ============ FILTER BAR ============ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border: 1.5px solid var(--grey-700);
  border-radius: 20px;
  color: var(--grey-300);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.filter-btn:hover { border-color: var(--purple); color: var(--purple); }
.filter-btn.active { background: var(--purple); border-color: var(--purple); color: var(--white); }

/* ============ FOOTER ============ */
.site-footer {
  background: #0A0A0A;
  border-top: 1px solid var(--grey-900);
}
.footer-main {
  padding: 80px 0 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--grey-500); line-height: 1.7; max-width: 280px; }
.footer-tagline { font-size: 14px; color: var(--grey-400); font-style: italic; margin-bottom: 16px !important; }
.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--grey-500);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--purple); }
.footer-contact p {
  font-size: 13px;
  color: var(--grey-500);
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-contact a { color: var(--grey-400); transition: color 0.2s; }
.footer-contact a:hover { color: var(--purple); }
.footer-bottom {
  border-top: 1px solid var(--grey-900);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--grey-600);
  line-height: 1.6;
  max-width: 700px;
}
.footer-copyright { font-size: 12px; color: var(--grey-600); white-space: nowrap; }

/* ============ PAGE HEROES ============ */
.page-hero {
  background: var(--black);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123,92,240,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,92,240,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero .overline { margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero p { font-size: 20px; color: var(--grey-300); max-width: 600px; }

/* ============ SINGLE DEAL ============ */
.deal-hero {
  background: var(--black);
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--grey-900);
}
.deal-hero-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.deal-hero h1 { margin-bottom: 0; }
.deal-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.deal-hero-stat {
  background: var(--navy);
  border: 1px solid rgba(123,92,240,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.deal-hero-stat .stat-value {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--purple);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.deal-hero-stat .stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
}

/* Single content layout */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.single-content h2 { font-size: 28px; margin: 48px 0 16px; }
.single-content h2:first-child { margin-top: 0; }
.single-content p { font-size: 16px; color: var(--grey-200); line-height: 1.8; margin-bottom: 20px; }
.single-content ul { margin: 0 0 20px 0; padding: 0; }
.single-content ul li { padding: 8px 0 8px 24px; position: relative; font-size: 15px; color: var(--grey-200); line-height: 1.6; }
.single-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--purple); }

.single-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--black-soft);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card h4 { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-400); margin-bottom: 20px; }
.sidebar-term { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--grey-800); }
.sidebar-term:last-of-type { border-bottom: none; }
.sidebar-term-label { font-size: 13px; color: var(--grey-400); }
.sidebar-term-value { font-size: 13px; font-weight: 600; color: var(--white); }

/* ============ 404 ============ */
.page-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: var(--nav-height); }
.error-404 .error-number { font-family: var(--font-heading); font-size: clamp(100px, 20vw, 180px); font-weight: 700; color: var(--purple); opacity: 0.15; line-height: 1; }
.error-404 h1 { font-size: 40px; margin-bottom: 16px; }
.error-404 p { font-size: 18px; color: var(--grey-300); margin-bottom: 40px; }
.error-404 .error-btns { display: flex; gap: 16px; justify-content: center; }

/* ============ STICKY CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  pointer-events: none;
}
.sticky-cta.visible { opacity: 1; transform: none; pointer-events: all; }

/* ============ AOS ANIMATIONS ============ */
[data-aos] { transition-property: opacity, transform; transition-timing-function: ease; }
[data-aos="fade-up"]    { opacity: 0; transform: translateY(30px); transition-duration: 0.6s; }
[data-aos="fade-in"]    { opacity: 0; transition-duration: 0.6s; }
[data-aos="slide-left"] { opacity: 0; transform: translateX(30px); transition-duration: 0.6s; }
[data-aos="slide-right"]{ opacity: 0; transform: translateX(-30px); transition-duration: 0.6s; }
[data-aos].animated     { opacity: 1; transform: none; }

/* Delay utilities */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* ============ MISC ============ */
.text-purple { color: var(--purple); }
.text-gold   { color: var(--gold); }
.text-grey   { color: var(--grey-300); }
.text-center { text-align: center; }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }

.divider { height: 1px; background: var(--grey-800); margin: 48px 0; }

.tag-list { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--grey-900);
  color: var(--grey-300);
  border: 1px solid var(--grey-800);
}

/* Success state */
.form-success {
  text-align: center;
  padding: 60px 40px;
}
.form-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  border: 2px solid rgba(34,197,94,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  font-size: 32px;
}
.form-success h3 { font-size: 28px; margin-bottom: 12px; }
.form-success p { color: var(--grey-300); font-size: 16px; }

/* Calendly placeholder */
.calendly-placeholder {
  background: var(--navy);
  border: 1px dashed var(--grey-700);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--grey-500);
  font-size: 14px;
}
.calendly-placeholder p { margin-bottom: 8px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-4    { grid-template-columns: repeat(2, 1fr); }
  .grid-3    { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-timeline::before { display: none; }
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; }
  .article-featured { grid-template-columns: 1fr; }
  .article-featured .article-card-thumb { min-height: 240px; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stat-bar .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item + .stat-item::before { display: none; }
  .deal-hero-stats { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 40px; }
  .footer-bottom-inner { flex-direction: column; }
  .eligibility-options { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; width: fit-content; }
  .cta-section .cta-btns { flex-direction: column; align-items: center; }
  .form-steps-indicator { gap: 8px; }
  .step-label { display: none; }
}
@media (max-width: 480px) {
  .stat-number { font-size: 36px; }
  .process-timeline { grid-template-columns: 1fr; }
  .deal-stats { grid-template-columns: 1fr; }
  .footer-bottom-inner { gap: 12px; }
}
