/* ============================================================
   ABHISHEK BHAGAT — Premium Personal Brand Website
   ============================================================ */

/* === TOKENS === */
:root {
  --bg: #fafaf8;
  --bg-alt: #f2f2f0;
  --white: #ffffff;
  --black: #0a0a0a;
  --dark: #111111;
  --charcoal: #1a1a2e;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --border: #e5e7eb;
  --border-dark: #2a2a3a;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #eff6ff;
  --blue-mid: #bfdbfe;

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-blue: 0 8px 28px rgba(37,99,235,0.28);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.25s;
  --t-slow: 0.45s;

  --max: 1200px;
  --max-sm: 820px;
  --nav-h: 68px;
}

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

/* === LAYOUT === */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.container-sm {
  max-width: var(--max-sm);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark {
  background: var(--charcoal);
  color: var(--white);
}
.section-black {
  background: var(--black);
  color: var(--white);
}
.section-alt { background: var(--bg-alt); }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}
.eyebrow-light {
  color: rgba(255,255,255,0.55);
}
.display {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2.5px;
}
.h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -2px;
}
.h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.2px;
}
.h3 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: -0.7px;
}
.h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.lead {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--gray);
  line-height: 1.75;
}
.lead-white { color: rgba(255,255,255,0.7); }
.text-gray { color: var(--gray); }
.text-blue { color: var(--blue); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all var(--t) var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,99,235,0.35);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--blue-light);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 17px 36px; font-size: 15px; }
.btn .arrow {
  transition: transform var(--t) var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }
.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* === NAV === */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), backdrop-filter var(--t) var(--ease);
}
#nav.transparent { background: transparent; }
#nav.scrolled {
  background: rgba(250,250,248,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--black);
  transition: color var(--t);
}
.nav-logo span { color: var(--blue); }
#nav.transparent .nav-logo { color: var(--white); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: var(--black); background: var(--bg-alt); }
.nav-links a.active { color: var(--blue); }
#nav.transparent .nav-links a { color: rgba(255,255,255,0.75); }
#nav.transparent .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta { margin-left: 12px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
#nav.transparent .nav-burger span { background: var(--white); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--white);
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-alt);
  border: none;
  font-size: 20px;
  color: var(--black);
  cursor: pointer;
}
.mobile-nav-links {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-nav-links a {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--black);
  transition: color var(--t);
}
.mobile-nav-links a:hover { color: var(--blue); }
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-menu-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
}

/* === HERO === */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  padding-bottom: 48px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 40px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--blue-mid);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  display: block;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-role-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.role-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
}

/* HERO IMAGE SIDE */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  min-height: 320px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #1e3a5f 0%, #1a1a2e 50%, #0f1f3d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.hero-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,26,46,0.8) 100%);
}
.photo-hint {
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  z-index: 1;
  padding: 24px;
}
.photo-hint .icon {
  font-size: 48px;
  margin-bottom: 12px;
  display: block;
}
/* When user adds real photo */
.hero-img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  z-index: 0;
}

.hero-founder-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-founder-badge .badge-dot {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hero-founder-badge .badge-text {
  font-family: var(--font-head);
}
.hero-founder-badge .badge-label {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
}
.hero-founder-badge .badge-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}
.hero-accent-dot {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(37,99,235,0.4);
  border-radius: 50%;
}
.hero-accent-dot::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 2px solid rgba(37,99,235,0.2);
  border-radius: 50%;
}

/* === STATS === */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.stat-item {
  padding: 40px 0;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--blue); }
.stat-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.4;
}

/* === SECTION HEADER === */
.section-head {
  margin-bottom: 56px;
}
.section-head.centered { text-align: center; }
.section-head .h2 { margin-bottom: 16px; }
.section-head .lead { max-width: 600px; }
.section-head.centered .lead { margin: 0 auto; }

/* === VENTURE CARDS === */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.venture-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  position: relative;
  overflow: hidden;
}
.venture-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.venture-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.venture-card:hover::before { transform: scaleX(1); }
.venture-card.dark {
  background: var(--dark);
  border-color: var(--border-dark);
  color: var(--white);
}
.venture-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.venture-card.dark .venture-icon {
  background: rgba(37,99,235,0.15);
}
.venture-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
}
.venture-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}
.venture-card.dark .venture-desc { color: rgba(255,255,255,0.6); }
.venture-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 4px;
  transition: gap var(--t);
}
.venture-arrow:hover { gap: 10px; }

/* === WORK / REEL CARDS === */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reel-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  display: block;
  text-decoration: none;
}
.reel-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.reel-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f1f3d 100%);
  overflow: hidden;
}
.reel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.reel-card:hover .reel-thumb img { transform: scale(1.06); }
.reel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background var(--t);
}
.reel-card:hover .reel-play { background: rgba(0,0,0,0.15); }
.reel-play-btn {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t);
}
.reel-card:hover .reel-play-btn { transform: scale(1.12); }
.reel-play-btn svg { margin-left: 3px; }
.reel-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}
.reel-thumb-placeholder span { font-size: 36px; }
.reel-info {
  padding: 20px;
}
.reel-ig {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  font-weight: 500;
}
.reel-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.reel-client {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.reel-metrics {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.metric {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 4px;
}
.metric-dot {
  width: 4px; height: 4px;
  background: var(--blue);
  border-radius: 50%;
}

/* === DARK FEATURE SECTION === */
.feature-dark {
  background: var(--charcoal);
  color: var(--white);
  padding: 96px 0;
}
.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.feature-media {
  position: relative;
}
.feature-media-placeholder {
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  gap: 8px;
  min-height: 200px;
}
.feature-media-placeholder span { font-size: 40px; }
.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.highlight-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === INTRO SECTION (SPLIT) === */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-media-placeholder {
  border-radius: var(--r-lg);
  background: var(--bg-alt);
  border: 1.5px dashed var(--border);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 14px;
  gap: 8px;
  min-height: 200px;
}
.split-media-placeholder span { font-size: 40px; }

/* === PODCAST CARD === */
.podcast-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: box-shadow var(--t), transform var(--t);
  display: block;
  color: inherit;
}
.podcast-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.podcast-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f1f3d 100%);
  overflow: hidden;
}
.podcast-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.podcast-card:hover .podcast-thumb img { transform: scale(1.04); }
.podcast-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  gap: 8px;
}
.podcast-thumb-placeholder span { font-size: 40px; }
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
}
.yt-play-btn {
  background: #ff0000;
  color: white;
  width: 60px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t);
}
.podcast-card:hover .yt-play-btn { transform: scale(1.1); }
.podcast-info {
  padding: 24px;
}
.podcast-ep {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.podcast-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.podcast-guest {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}
.podcast-duration {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-light);
}
.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* === SERVICE CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(37,99,235,0.1);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.service-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
}
.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}

/* === FILTER TABS === */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  transition: all var(--t);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* === TIMELINE === */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}
.timeline-dot {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: border-color var(--t), background var(--t);
}
.timeline-item.active .timeline-dot {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.timeline-dot-year {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
}
.timeline-item.active .timeline-dot-year { color: white; }
.timeline-content {
  flex: 1;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  transition: box-shadow var(--t), border-color var(--t);
}
.timeline-item.active .timeline-content {
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(37,99,235,0.1);
}
.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.timeline-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* === VALUES CARDS === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.value-card {
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.value-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.value-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* === CONTACT FORM === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--white);
  font-size: 15px;
  color: var(--black);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-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='%236b7280' 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;
  cursor: pointer;
}

/* === CTA BANNER === */
.cta-banner {
  background: var(--black);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 72px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(37,99,235,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-banner .lead-white { position: relative; margin-bottom: 36px; }
.cta-banner .btn-group { justify-content: center; position: relative; }

/* === CONTACT INFO === */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-detail-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}
.contact-detail-value a {
  color: var(--blue);
}

/* === PAGE HERO === */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(37,99,235,0.15) 0%, transparent 70%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero .h1 { color: white; margin-bottom: 16px; }
.page-hero .lead-white { max-width: 600px; margin: 0 auto; }

/* === VENTURE FULL SECTION === */
.venture-full {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}
.venture-full:last-child { border-bottom: none; }
.venture-full-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.venture-full-inner.reverse { direction: rtl; }
.venture-full-inner.reverse > * { direction: ltr; }
.venture-full-media-placeholder {
  border-radius: var(--r-lg);
  background: var(--bg-alt);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--border);
  color: var(--gray-light);
  font-size: 14px;
  gap: 8px;
  min-height: 200px;
}
.venture-full-media-placeholder span { font-size: 48px; }
.venture-tagline {
  font-family: var(--font-head);
  font-size: 16px;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 20px;
  padding: 12px 20px;
  background: var(--blue-light);
  border-radius: var(--r-sm);
  display: inline-block;
}
.venture-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.venture-highlights-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}
.venture-highlights-list li::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%232563eb' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* === SERVICES LIST === */
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0 28px;
}
.service-tag {
  font-size: 13px;
  padding: 8px 14px;
  background: var(--bg-alt);
  border-radius: var(--r-sm);
  color: var(--dark);
  font-weight: 500;
  border: 1px solid var(--border);
}

/* === FOOTER === */
footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.footer-brand-name span { color: var(--blue); }
.footer-brand-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background var(--t);
  text-decoration: none;
}
.footer-social-btn:hover { background: var(--blue); }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}
.footer-links-list a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color var(--t);
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.fade-in.visible { opacity: 1; }
.stagger-children .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 80ms; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 160ms; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 240ms; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 320ms; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 400ms; }

/* === MISC === */
.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
}
.pill-blue { background: var(--blue-light); color: var(--blue); }
.pill-dark { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.divider {
  height: 1px;
  background: var(--border);
  max-width: var(--max);
  margin: 0 auto;
}
.divider-full { max-width: none; }
.page-intro {
  padding: 64px 0;
  max-width: var(--max-sm);
  margin: 0 auto;
  text-align: center;
}
.inline-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* === ABOUT PAGE === */
.about-story-block {
  max-width: 680px;
}
.about-story-block p {
  font-size: 17px;
  color: var(--dark);
  line-height: 1.85;
  margin-bottom: 22px;
}
.about-story-block p:last-child { margin-bottom: 0; }
.about-story-block strong { color: var(--black); font-weight: 700; }
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  border-radius: var(--r-lg);
  padding: 40px;
}
.mv-card.mission { background: var(--charcoal); color: white; }
.mv-card.vision { background: var(--blue); color: white; }
.mv-icon { font-size: 36px; margin-bottom: 20px; display: block; }
.mv-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.mv-text {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.85;
}

/* === LEGAL PAGES === */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
}
.legal-content h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 12px;
  letter-spacing: -0.3px;
}
.legal-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* === 404 PAGE === */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  padding-top: var(--nav-h);
}
.notfound-num {
  font-family: var(--font-head);
  font-size: 120px;
  font-weight: 800;
  letter-spacing: -5px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
}
.notfound-num span { color: var(--blue); }

/* === ADMIN === */
.admin-body {
  font-family: var(--font-body);
  background: #f8f9fa;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
}
.admin-header {
  background: var(--black);
  color: white;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
}
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 56px);
}
.admin-sidebar {
  background: white;
  border-right: 1px solid var(--border);
  padding: 24px 0;
}
.admin-nav-item {
  display: block;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: background var(--t), color var(--t);
  border-left: 3px solid transparent;
}
.admin-nav-item:hover, .admin-nav-item.active {
  background: var(--blue-light);
  color: var(--blue);
  border-left-color: var(--blue);
}
.admin-main {
  padding: 32px;
  max-width: 900px;
}
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-section-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.admin-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  margin-bottom: 20px;
}
.admin-card-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}
.admin-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.admin-form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.admin-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-input, .admin-textarea, .admin-select {
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--t);
}
.admin-input:focus, .admin-textarea:focus, .admin-select:focus {
  border-color: var(--blue);
}
.admin-textarea { resize: vertical; min-height: 80px; }
.admin-btn {
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  font-family: var(--font-body);
}
.admin-btn-primary { background: var(--blue); color: white; }
.admin-btn-primary:hover { background: var(--blue-dark); }
.admin-btn-danger { background: #ef4444; color: white; }
.admin-btn-danger:hover { background: #dc2626; }
.admin-btn-secondary { background: var(--bg-alt); color: var(--black); border: 1px solid var(--border); }
.admin-work-list { display: flex; flex-direction: column; gap: 12px; }
.admin-work-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.admin-work-title { font-weight: 600; font-size: 15px; }
.admin-work-meta { font-size: 12px; color: var(--gray); margin-top: 3px; }
.admin-work-actions { display: flex; gap: 8px; flex-shrink: 0; }
.admin-success-msg {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
  display: none;
}
.admin-success-msg.show { display: block; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .container, .container-sm { padding: 0 28px; }
  .hero-inner { gap: 48px; padding: 60px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .podcasts-grid { grid-template-columns: repeat(2, 1fr); }
  .venture-full-inner { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container, .container-sm { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 0 20px; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 20px;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .hero-img-wrap { max-width: 320px; margin: 0 auto; }
  .hero-founder-badge { left: 0; bottom: -12px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }

  .ventures-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .podcasts-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; gap: 24px; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .feature-inner { grid-template-columns: 1fr; gap: 40px; }
  .venture-full-inner { grid-template-columns: 1fr; gap: 40px; }
  .venture-full-inner.reverse { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 28px; border-radius: var(--r-lg); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-top, .footer-bottom { padding-left: 20px; padding-right: 20px; }
  .services-list { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 20px; }
  .timeline-dot { width: 40px; height: 40px; }
  .timeline-content { padding: 20px 20px; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .work-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* === CUSTOM CURSOR === */
body { cursor: none; }
a, button, [role="button"], .btn, label, select, input[type="submit"], .filter-btn, .venture-arrow, .nav-link, .nav-cta, .footer-social-btn, .admin-nav-item { cursor: none; }

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.15s var(--ease), height 0.15s var(--ease), background 0.15s var(--ease);
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(37,99,235,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.2s var(--ease), opacity 0.2s var(--ease);
  will-change: transform;
}
.cursor-dot.hover { width: 12px; height: 12px; background: var(--blue-dark); }
.cursor-ring.hover { width: 56px; height: 56px; border-color: rgba(37,99,235,0.35); }
.cursor-dot.clicking { width: 6px; height: 6px; }
.cursor-ring.clicking { width: 28px; height: 28px; border-color: var(--blue); }
@media (pointer: coarse) {
  body { cursor: auto; }
  a, button, [role="button"], .btn, label, select, input[type="submit"], .filter-btn, .venture-arrow, .nav-link, .nav-cta, .footer-social-btn, .admin-nav-item { cursor: pointer; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* === HERO SPOTLIGHT === */
.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(600px circle at 50% 40%, rgba(37,99,235,0.08) 0%, transparent 70%);
  transition: background 0.05s linear;
}

/* === IMAGE LOADING SHIMMER === */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.img-loading {
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%) !important;
  background-size: 800px 100% !important;
  animation: shimmer 1.4s infinite linear;
  color: transparent !important;
  font-size: 0 !important;
}
.img-loading * {
  visibility: hidden !important;
}
