/* =========================================
   ROOT & RESET
========================================= */
:root {
  --bg: #080810;
  --bg2: #0d0d1a;
  --bg3: #111128;
  --surface: #13131f;
  --surface2: #1a1a2e;
  --border: rgba(255,255,255,0.07);
  --text: #f0f0ff;
  --text2: #9090b0;
  --text3: #5a5a7a;
  --accent: #7c3aed;
  --accent2: #a855f7;
  --gold: #f59e0b;
  --cyan: #06b6d4;
  --green: #10b981;
  --grad: linear-gradient(135deg, #7c3aed, #a855f7, #06b6d4);
  --grad2: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(124,58,237,0.15);
}

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

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

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =========================================
   CUSTOM CURSOR
========================================= */
.cursor {
  width: 10px; height: 10px;
  background: var(--accent2);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(168,85,247,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s, height 0.2s, border-color 0.2s;
}
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 52px; height: 52px;
  border-color: var(--accent2);
}

/* =========================================
   PARTICLES CANVAS
========================================= */
#particleCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* =========================================
   NAVBAR
========================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; gap: 2rem;
  padding: 1.2rem 4rem;
  background: rgba(8,8,16,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(8,8,16,0.85);
  backdrop-filter: blur(20px);
  border-color: var(--border);
  padding: 0.9rem 4rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 4px;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.5rem; letter-spacing: -1px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-right: auto;
}
.logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent2);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-link {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text2);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--grad);
  transition: width 0.3s;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--grad);
  border-radius: 100px;
  font-size: 0.875rem; font-weight: 600;
  color: #fff;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,16,0.97);
  backdrop-filter: blur(30px);
  z-index: 99; padding: 7rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76,0,0.24,1);
}
.mobile-menu.open { transform: translateX(0); }
.mob-link {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 2.5rem; color: var(--text2);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.3s;
}
.mob-link:hover { color: var(--text); padding-left: 1rem; }

/* =========================================
   HERO
========================================= */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative; overflow: hidden;
}
.hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: min(22vw, 280px);
  color: rgba(124,58,237,0.04);
  letter-spacing: -0.05em;
  white-space: nowrap; user-select: none;
  z-index: 0;
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.4rem 1rem;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 100px;
  font-size: 0.8rem; color: var(--accent2);
  font-weight: 500; margin-bottom: 1.5rem;
}
.tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.5s infinite;
}
.hero-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-title .line { display: block; }
.gradient-text {
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem; color: var(--text2);
  max-width: 480px; margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex; gap: 1rem; align-items: center;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.8rem 2rem;
  background: var(--grad);
  border-radius: 100px; font-weight: 600;
  color: #fff; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.55);
}
.full-btn { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.8rem 2rem;
  border: 1.5px solid var(--border);
  border-radius: 100px; font-weight: 600;
  color: var(--text2); font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--accent2);
  color: var(--text);
  background: rgba(168,85,247,0.08);
}
.hero-socials {
  display: flex; gap: 0.8rem;
}
.social-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--text2);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  border-color: var(--accent2);
  color: var(--accent2);
  background: rgba(168,85,247,0.1);
  transform: translateY(-3px);
}

/* Photo */
.hero-right { display: flex; justify-content: center; align-items: center; }
.photo-wrapper {
  position: relative;
  width: 380px; height: 380px;
}
.photo-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: spin-ring linear infinite;
}
.ring-1 {
  width: 100%; height: 100%;
  border-color: rgba(124,58,237,0.25);
  animation-duration: 20s;
}
.ring-2 {
  width: 115%; height: 115%;
  border-color: rgba(168,85,247,0.15);
  animation-duration: 30s;
  animation-direction: reverse;
  border-style: dashed;
}
.ring-3 {
  width: 130%; height: 130%;
  border-color: rgba(6,182,212,0.1);
  animation-duration: 40s;
}
@keyframes spin-ring {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
.hero-photo {
  width: 340px; height: 340px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(124,58,237,0.4);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: brightness(1.05) contrast(1.05);
  box-shadow: 0 0 60px rgba(124,58,237,0.3), 0 0 120px rgba(124,58,237,0.1);
}
.photo-badge, .photo-badge-2 {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.6rem 1rem;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.photo-badge { bottom: 30px; left: -30px; font-size: 0.8rem; }
.photo-badge-2 { top: 40px; right: -20px; font-size: 0.8rem; animation-delay: 1.5s; }
.photo-badge strong, .photo-badge-2 strong { display: block; font-size: 0.85rem; color: var(--text); }
.photo-badge small, .photo-badge-2 small { font-size: 0.7rem; color: var(--text3); }
.photo-badge span, .photo-badge-2 span { font-size: 1.4rem; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text3); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1.5px; height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-grow 1.5s ease-in-out infinite;
}
@keyframes scroll-grow {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================
   SECTIONS
========================================= */
.section {
  padding: 7rem 4rem;
  position: relative; z-index: 1;
}
.container {
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent2);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 3rem;
}

/* =========================================
   ABOUT
========================================= */
.about { background: var(--bg2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-text p {
  color: var(--text2); font-size: 1rem; line-height: 1.8;
  margin-bottom: 1rem;
}
.about-text strong { color: var(--text); }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.stat-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
}
.stat-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 2.5rem;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-plus {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.5rem;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-card p { color: var(--text3); font-size: 0.8rem; margin-top: 0.3rem; }

/* =========================================
   VENTURES
========================================= */
.ventures { background: var(--bg); }
.ventures-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.venture-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  animation-delay: var(--delay);
}
.venture-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.venture-card:hover { border-color: rgba(124,58,237,0.35); transform: translateY(-6px); box-shadow: var(--shadow); }
.venture-card:hover::before { transform: scaleX(1); }
.featured-card {
  border-color: rgba(168,85,247,0.3);
  background: linear-gradient(135deg, var(--surface), rgba(124,58,237,0.07));
}
.featured-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem; font-weight: 600; color: var(--gold);
}
.vc-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem;
}
.vc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.vc-icon svg { width: 26px; height: 26px; stroke: #fff; }
.vc-link {
  font-size: 0.78rem; color: var(--accent2); font-weight: 500;
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 100px; padding: 0.25rem 0.75rem;
  transition: background 0.2s, color 0.2s;
}
.vc-link:hover { background: rgba(168,85,247,0.12); }
.vc-name {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.4rem; margin-bottom: 0.2rem;
}
.vc-type { font-size: 0.78rem; color: var(--accent2); margin-bottom: 0.8rem; font-weight: 500; }
.vc-desc { font-size: 0.88rem; color: var(--text2); line-height: 1.6; margin-bottom: 1.2rem; }
.vc-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.vc-tags span {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  font-size: 0.72rem; color: var(--text3);
}

/* =========================================
   SKILLS
========================================= */
.skills { background: var(--bg2); }
.skills-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.skill-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  animation-delay: var(--delay);
}
.skill-item:hover { border-color: rgba(124,58,237,0.35); transform: translateY(-5px); }
.skill-icon { font-size: 2.2rem; margin-bottom: 0.75rem; display: block; }
.skill-item h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.4rem; }
.skill-item p { font-size: 0.8rem; color: var(--text3); line-height: 1.5; }

/* =========================================
   CONTACT
========================================= */
.contact { background: var(--bg); }
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.contact-intro { font-size: 1rem; color: var(--text2); line-height: 1.7; margin-bottom: 2rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.clink {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, transform 0.2s;
}
.clink:hover { border-color: rgba(124,58,237,0.35); transform: translateX(6px); }
.clink-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.clink-icon svg { width: 20px; height: 20px; }
.insta { background: linear-gradient(135deg, #e91e63, #f50057); }
.yt { background: #ff0000; }
.li { background: #0077b5; }
.web { background: linear-gradient(135deg, var(--accent), var(--cyan)); stroke: #fff; }
.web svg { stroke: #fff; fill: none; }
.clink strong { display: block; font-size: 0.9rem; }
.clink span { font-size: 0.78rem; color: var(--text3); }

.cta-card {
  background: var(--surface);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px;
  background: var(--accent); border-radius: 50%;
  filter: blur(70px); opacity: 0.12;
  pointer-events: none;
}
.cta-card h3 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.4rem; margin-bottom: 0.75rem;
}
.cta-card p { color: var(--text2); font-size: 0.88rem; margin-bottom: 1.5rem; line-height: 1.6; }

/* =========================================
   FOOTER
========================================= */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 2rem 4rem;
  position: relative; z-index: 1;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.3rem;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: flex; align-items: center; gap: 4px;
}
.footer-copy { font-size: 0.8rem; color: var(--text3); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: var(--text3); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent2); }

/* =========================================
   ANIMATIONS / REVEAL
========================================= */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .nav { padding: 1.2rem 2rem; }
  .nav.scrolled { padding: 0.9rem 2rem; }
  .hero { padding: 8rem 2rem 4rem; }
  .section { padding: 5rem 2rem; }
  .footer { padding: 2rem; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-right { order: -1; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }
  .hero-socials { justify-content: center; }
  .photo-wrapper { width: 280px; height: 280px; }
  .hero-photo { width: 250px; height: 250px; }
  .about-grid { grid-template-columns: 1fr; }
  .ventures-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .hero-bg-text { font-size: 40vw; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .skills-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .photo-badge { left: -10px; }
  .photo-badge-2 { right: -10px; }
}
