/* ===================================================================
   KANISHQ RAJ – PREMIUM PERSONAL WEBSITE
   Design System: Dark Glassmorphism + Futuristic Aesthetics
   =================================================================== */

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

:root {
  /* Colors */
  --bg-base:       #050508;
  --bg-deep:       #08080f;
  --bg-surface:    #0d0d1a;
  --bg-card:       rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);

  --blue:          #3b8af7;
  --blue-bright:   #60a5fa;
  --blue-glow:     rgba(59,138,247,0.35);
  --violet:        #8b5cf6;
  --violet-bright: #a78bfa;
  --violet-glow:   rgba(139,92,246,0.35);
  --gold:          #f59e0b;
  --gold-bright:   #fbbf24;
  --gold-glow:     rgba(245,158,11,0.35);

  --text-primary:  #f0f0f8;
  --text-secondary:#9a9ab0;
  --text-muted:    #5a5a78;

  --border:        rgba(255,255,255,0.08);
  --border-hover:  rgba(255,255,255,0.16);

  /* Typography */
  --font-main:     'Inter', system-ui, sans-serif;
  --font-display:  'Space Grotesk', 'Inter', sans-serif;

  /* Spacing */
  --section-py:    120px;
  --container:     1200px;

  /* Effects */
  --glass-blur:    20px;
  --radius:        16px;
  --radius-lg:     24px;
  --trans:         0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans-fast:    0.18s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-main);
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 2px; }

/* ---------- SELECTION ---------- */
::selection { background: var(--violet-glow); color: var(--violet-bright); }

/* ---------- CONTAINER ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- SECTION BASE ---------- */
.section { padding: var(--section-py) 0; position: relative; }

/* ---------- GRADIENT TEXT ---------- */
.gradient-text {
  background: linear-gradient(135deg, var(--blue-bright), var(--violet-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- SECTION LABEL ---------- */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.section-label.left-label { justify-content: flex-start; margin-bottom: 16px; }
.label-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 80px;
}

/* ---------- SECTION TITLES ---------- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 64px;
}
.text-center { text-align: center; }
.section-subtitle.text-center,
h2.text-center + .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  box-shadow: 0 0 30px rgba(59,138,247,0.3), 0 4px 20px rgba(0,0,0,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 50px rgba(59,138,247,0.5), 0 8px 30px rgba(0,0,0,0.5);
}
.btn-primary svg { width: 18px; height: 18px; transition: transform var(--trans-fast); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-glass {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
  backdrop-filter: blur(var(--glass-blur));
}
.btn-glass:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #ff9900, #ffb732);
  color: #111;
  box-shadow: 0 0 30px rgba(255,153,0,0.3), 0 4px 20px rgba(0,0,0,0.4);
  transition: var(--trans);
}
.btn-amazon:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 50px rgba(255,153,0,0.5), 0 8px 30px rgba(0,0,0,0.5);
}
.amazon-icon { width: 20px; height: 20px; }

/* ---------- BTN-LINK ---------- */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--trans);
}
.ev-link  { color: var(--blue-bright); }
.ai-link  { color: var(--violet-bright); }
.sci-link { color: var(--gold-bright); }
.btn-link:hover { gap: 10px; }

/* =======================================================
   NAVBAR
   ======================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--trans), padding var(--trans), backdrop-filter var(--trans);
}
.navbar.scrolled {
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-bright), var(--violet-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--trans-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  transition: width var(--trans);
}
.nav-links a:hover, .nav-links a:hover::after { color: var(--text-primary); width: 100%; }
.nav-cta {
  padding: 9px 22px !important;
  border-radius: 50px !important;
  background: linear-gradient(135deg, var(--blue), var(--violet)) !important;
  color: #fff !important;
  font-size: 0.875rem !important;
  transition: var(--trans) !important;
  box-shadow: 0 0 20px rgba(59,138,247,0.2);
}
.nav-cta:hover { box-shadow: 0 0 35px rgba(59,138,247,0.4) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(8,8,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--trans-fast);
}
.mobile-link:hover { background: var(--bg-card); color: var(--text-primary); }

/* =======================================================
   HERO SECTION
   ======================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* Particle Canvas */
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.5;
}

/* Animated Gradient Mesh */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 30%, rgba(59,138,247,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 70%, rgba(139,92,246,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 20%, rgba(245,158,11,0.06) 0%, transparent 50%);
  animation: meshShift 12s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(1deg); }
  100% { transform: scale(1.02) rotate(-1deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(59,138,247,0.1);
  border: 1px solid rgba(59,138,247,0.25);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--blue-bright);
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue-bright);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* Hero Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(160deg, #ffffff 0%, #c0c0d8 50%, #8888aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  text-shadow: none;
}

/* Hero Tagline */
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 40px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: inline-flex;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-bright), var(--violet-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 44px;
  background: var(--border);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0.3); transform-origin: top; }
}

/* =======================================================
   ABOUT SECTION
   ======================================================= */
.about { background: var(--bg-deep); }

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

/* Profile Image */
.profile-frame {
  position: relative;
  width: 320px;
  height: 380px;
  margin: 0 auto;
}
.profile-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,138,247,0.25) 0%, rgba(139,92,246,0.15) 50%, transparent 70%);
  animation: profileGlow 4s ease-in-out infinite alternate;
  filter: blur(20px);
}
@keyframes profileGlow {
  0% { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.05); }
}
.profile-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(59,138,247,0.3);
}
.profile-ring {
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-lg) + 8px);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(59,138,247,0.4), rgba(139,92,246,0.2), transparent, rgba(139,92,246,0.2)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: ringRotate 8s linear infinite;
}
@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Tags */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.tag {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.tag-blue   { background: rgba(59,138,247,0.12); color: var(--blue-bright); border: 1px solid rgba(59,138,247,0.2); }
.tag-violet { background: rgba(139,92,246,0.12); color: var(--violet-bright); border: 1px solid rgba(139,92,246,0.2); }
.tag-gold   { background: rgba(245,158,11,0.1);  color: var(--gold-bright); border: 1px solid rgba(245,158,11,0.2); }

/* Founder List */
.founder-list { margin-top: 28px; }
.founder-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.founder-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.founder-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}
.founder-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px currentColor;
}
.ev-dot  { background: var(--blue-bright); color: var(--blue-bright); }
.ai-dot  { background: var(--violet-bright); color: var(--violet-bright); }
.sci-dot { background: var(--gold-bright); color: var(--gold-bright); }

/* =======================================================
   VENTURES SECTION
   ======================================================= */
.ventures { background: var(--bg-base); }

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

/* Glass Card */
.venture-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(var(--glass-blur));
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  cursor: default;
}
.venture-card:hover { border-color: var(--border-hover); }
#chargehive:hover { box-shadow: 0 0 60px rgba(59,138,247,0.15), 0 20px 60px rgba(0,0,0,0.5); }
#lotusflowai:hover { box-shadow: 0 0 60px rgba(139,92,246,0.15), 0 20px 60px rgba(0,0,0,0.5); }
#lotusscientific:hover { box-shadow: 0 0 60px rgba(245,158,11,0.15), 0 20px 60px rgba(0,0,0,0.5); }

/* Card Glow */
.card-glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  opacity: 0;
  transition: opacity var(--trans);
}
.venture-card:hover .card-glow { opacity: 1; }
.card-glow-blue   { background: linear-gradient(90deg, transparent, var(--blue), var(--blue-bright), transparent); }
.card-glow-violet { background: linear-gradient(90deg, transparent, var(--violet), var(--violet-bright), transparent); }
.card-glow-gold   { background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), transparent); }

.card-inner { padding: 36px 30px; height: 100%; display: flex; flex-direction: column; }

/* Venture Logo */
.venture-logo-wrap {
  width: 70px; height: 70px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
}
.venture-logo { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }

/* Lotus logos have white bg – give them a white wrapper */
#lotusscientific .venture-logo-wrap,
#lotusflowai .venture-logo-wrap {
  background: #fff;
  padding: 6px;
}

/* Venture Tag */
.venture-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ev-tag  { background: rgba(59,138,247,0.12); color: var(--blue-bright); }
.ai-tag  { background: rgba(139,92,246,0.12); color: var(--violet-bright); }
.sci-tag { background: rgba(245,158,11,0.1);  color: var(--gold-bright); }

.venture-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.venture-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.venture-points {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.venture-points li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
.venture-points li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}
.venture-footer { margin-top: auto; }

/* =======================================================
   BOOK SECTION
   ======================================================= */
.book {
  background: var(--bg-deep);
  overflow: hidden;
}
.book-bg-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  pointer-events: none;
}
.book-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}

/* Book Cover */
.book-frame {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}
.book-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(245,158,11,0.25) 0%, transparent 70%);
  filter: blur(30px);
  animation: bookGlow 4s ease-in-out infinite alternate;
}
@keyframes bookGlow {
  0% { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}
.book-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: -20px 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.2);
  transform: perspective(800px) rotateY(-8deg);
  transition: transform var(--trans);
}
.book-frame:hover .book-img { transform: perspective(800px) rotateY(0deg); }
.book-shadow {
  position: absolute;
  bottom: -20px;
  left: 10%; right: 10%;
  height: 40px;
  background: rgba(245,158,11,0.15);
  filter: blur(20px);
  border-radius: 50%;
}

/* Book Content */
.book-author { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; letter-spacing: 0.05em; }
.book-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 32px;
}

/* Book Pillars */
.book-pillars {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 10px;
}
.pillar-icon { font-size: 1.1rem; }
.pillar-text { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); }

/* =======================================================
   PRESS SECTION
   ======================================================= */
.press { background: var(--bg-base); overflow: hidden; }

/* Marquee */
.press-marquee-wrap {
  margin-bottom: 64px;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  mask: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.press-marquee { display: flex; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.marquee-dot { color: var(--violet); font-size: 0.7rem; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Press Cards */
.press-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.press-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  backdrop-filter: blur(var(--glass-blur));
  transition: var(--trans);
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.press-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(139,92,246,0.15);
  font-family: Georgia, serif;
}
.press-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
/* Clickable press cards */
.press-card-link:hover { border-color: rgba(139,92,246,0.4); }
.press-source {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet-bright);
  margin-bottom: 16px;
}
.press-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}
.press-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.press-read {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--violet-bright);
  letter-spacing: 0.04em;
  transition: gap var(--trans-fast), color var(--trans-fast);
  margin-top: auto;
}
.press-card-link:hover .press-read { color: #fff; }
/* Many more card */
.press-card-more { text-align: center; align-items: center; }
.press-more-icon { font-size: 2.2rem; margin-bottom: 12px; }

/* =======================================================
   VISION SECTION
   ======================================================= */
.vision {
  background: var(--bg-deep);
  text-align: center;
  overflow: hidden;
}
.vision-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(59,138,247,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 30% 80%, rgba(139,92,246,0.07) 0%, transparent 50%);
}
.vision-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.vision-icon { font-size: 3rem; margin-bottom: 24px; display: block; }
.vision-statement {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 32px;
}
.vision-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 20px;
}

/* Vision Pillars */
.vision-pillars {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 64px;
  flex-wrap: wrap;
}
.vision-pillar {
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--glass-blur));
  width: 200px;
  transition: var(--trans);
}
.vision-pillar:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: var(--border-hover);
}
.vpillar-icon { font-size: 2rem; margin-bottom: 12px; }
.vpillar-title { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.vpillar-text { font-size: 0.8rem; color: var(--text-muted); }
.ev-icon  { filter: drop-shadow(0 0 8px var(--blue)); }
.ai-icon  { filter: drop-shadow(0 0 8px var(--violet)); }
.sci-icon { filter: drop-shadow(0 0 8px var(--gold)); }

/* =======================================================
   CONTACT SECTION
   ======================================================= */
.contact { background: var(--bg-base); }
.contact-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--glass-blur));
  min-width: 280px;
  flex: 1;
  max-width: 380px;
  transition: var(--trans);
  cursor: pointer;
}
.linkedin-card:hover    { border-color: rgba(10,102,194,0.5);  box-shadow: 0 0 40px rgba(10,102,194,0.12),  0 12px 40px rgba(0,0,0,0.3); transform: translateY(-4px); }
.playstore-card:hover  { border-color: rgba(52,168,83,0.5);   box-shadow: 0 0 40px rgba(52,168,83,0.12),   0 12px 40px rgba(0,0,0,0.3); transform: translateY(-4px); }
.email-card:hover      { border-color: rgba(59,138,247,0.5);  box-shadow: 0 0 40px rgba(59,138,247,0.12),  0 12px 40px rgba(0,0,0,0.3); transform: translateY(-4px); }
.facebook-card:hover   { border-color: rgba(24,119,242,0.5);  box-shadow: 0 0 40px rgba(24,119,242,0.12),  0 12px 40px rgba(0,0,0,0.3); transform: translateY(-4px); }
.instagram-card:hover  { border-color: rgba(225,48,108,0.5);  box-shadow: 0 0 40px rgba(225,48,108,0.12),  0 12px 40px rgba(0,0,0,0.3); transform: translateY(-4px); }
.twitter-card:hover    { border-color: rgba(255,255,255,0.25); box-shadow: 0 0 40px rgba(255,255,255,0.06), 0 12px 40px rgba(0,0,0,0.3); transform: translateY(-4px); }
.whatsapp-card:hover   { border-color: rgba(37,211,102,0.5);  box-shadow: 0 0 40px rgba(37,211,102,0.12),  0 12px 40px rgba(0,0,0,0.3); transform: translateY(-4px); }

.contact-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.linkedin-card   .contact-icon { background: rgba(10,102,194,0.15);  color: #0a66c2; }
.playstore-card  .contact-icon { background: rgba(52,168,83,0.12);   color: #34a853; }
.email-card      .contact-icon { background: rgba(59,138,247,0.12);  color: var(--blue-bright); }
.facebook-card   .contact-icon { background: rgba(24,119,242,0.12);  color: #1877f2; }
.instagram-card  .contact-icon { background: rgba(225,48,108,0.12);  color: #e1306c; }
.twitter-card    .contact-icon { background: rgba(255,255,255,0.08); color: var(--text-primary); }
.whatsapp-card   .contact-icon { background: rgba(37,211,102,0.12);  color: #25d366; }
.contact-icon svg { width: 24px; height: 24px; }

.contact-info { flex: 1; }
.contact-platform { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px; }
.contact-handle { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); }
.contact-arrow { color: var(--text-muted); font-size: 1.2rem; transition: transform var(--trans-fast); }
.contact-card:hover .contact-arrow { transform: translateX(4px); color: var(--text-primary); }

/* =======================================================
   FOOTER
   ======================================================= */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-bright), var(--violet-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline { font-size: 0.8rem; color: var(--text-muted); }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--trans-fast); }
.footer-nav a:hover { color: var(--text-primary); }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

/* =======================================================
   SCROLL ANIMATIONS
   ======================================================= */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .about-image-col { max-width: 300px; margin: 0 auto; }
  .profile-frame  { width: 280px; height: 340px; }
  .about-tags { justify-content: center; }
  .founder-items { align-items: center; }
  .ventures-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .book-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .book-cover-col { max-width: 280px; margin: 0 auto; }
  .book-pillars { justify-content: center; }
  .press-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .vision-pillars { gap: 16px; }
}

@media (max-width: 768px) {
  :root { --section-py: 80px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .hero-stats { padding: 18px 24px; }
  .stat { padding: 0 20px; }
  .stat-number { font-size: 1.5rem; }
  .contact-cards { flex-direction: column; align-items: stretch; }
  .contact-card { max-width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 20px; }
}

@media (max-width: 480px) {
  :root { --section-py: 64px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-stats { display: none; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }
  .vision-pillar { width: 100%; max-width: 280px; }
}
