/* ═══════════════════════════════════════
   ALVEE PORTFOLIO — CSS
   Theme: Dark Luxury · GenZ MNC Glow
═══════════════════════════════════════ */

:root {
  --bg: #070710;
  --bg2: #0d0d1a;
  --bg3: #111128;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-glow: rgba(130,100,255,0.3);

  --accent1: #a78bfa;   /* violet */
  --accent2: #f472b6;   /* pink */
  --accent3: #38bdf8;   /* sky */
  --accent4: #34d399;   /* emerald */

  --glow1: rgba(167,139,250,0.25);
  --glow2: rgba(244,114,182,0.2);
  --glow3: rgba(56,189,248,0.2);

  --text: #f1f1f8;
  --text-muted: #9090b0;
  --text-dim: #55556a;

  --font-display: 'Cirka', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

@font-face {
  font-family: 'Cirka';
  src: url('/assets/fonts/Cirka-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* ─── RESET ─────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.65;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── CUSTOM CURSOR ──────────── */
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent1);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
  box-shadow: 0 0 12px var(--accent1);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(167,139,250,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.18s, width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 50px; height: 50px;
  border-color: var(--accent2);
}

/* ─── LAYOUT ─────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 20px;
  opacity: 0.9;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 56px;
  color: var(--text);
}
.glow-text {
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px var(--glow1));
}

/* ─── GLASSMORPHISM ──────────── */
.glassy {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.glassy:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(130,100,255,0.12);
}

/* ─── BUTTONS ────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 100px;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 30px var(--glow1);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 50px var(--glow2);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--accent1);
  color: var(--accent1);
  background: rgba(167,139,250,0.06);
}

/* ─── NAV ────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(7,7,16,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled { padding: 12px 48px; }
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.12em;
  display: flex; align-items: center; gap: 8px;
}
.logo-dot { color: var(--accent1); font-size: 14px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.nav-links {
  display: flex; gap: 36px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent1);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent1);
  border: 1px solid var(--accent1);
  padding: 8px 18px;
  border-radius: 100px;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--accent1); color: var(--bg); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); display: block; transition: var(--transition); border-radius: 2px; }

/* ─── MOBILE MENU ────────────── */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7,7,16,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 28px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent1); }

/* ─── HERO ───────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
  gap: 48px;
}
.hero-bg-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(167,139,250,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(244,114,182,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(56,189,248,0.08) 0%, transparent 70%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  flex: 1;
  display: flex; flex-direction: column; gap: 28px;
  max-width: 640px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(30px);} to{opacity:1;transform:none;} }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent4);
  border: 1px solid rgba(52,211,153,0.25);
  background: rgba(52,211,153,0.06);
  padding: 8px 18px;
  border-radius: 100px;
  width: fit-content;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent4);
  border-radius: 50%;
  animation: blink 1.4s infinite;
  box-shadow: 0 0 8px var(--accent4);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hero-title-block { display: flex; flex-direction: column; }
.hero-name {
  font-family: 'Cirka', serif;
  font-weight: 800;
  line-height: 1.05;
  display: flex; flex-direction: column;
}
.name-line {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--text);
  display: block;
}
.name-line.accent {
  background: linear-gradient(135deg, var(--accent1) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px var(--glow1));
}
.hero-aka {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
  font-style: normal;
}
.hero-aka em { color: var(--accent2); font-style: italic; }
.hero-roles { height: 28px; overflow: hidden; }
.role-carousel { display: flex; flex-direction: column; animation: slideRoles 12s infinite; }
.role {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent3);
  height: 28px;
  display: flex; align-items: center;
}
@keyframes slideRoles {
  0%,18%   { transform: translateY(0); }
  20%,38%  { transform: translateY(-28px); }
  40%,58%  { transform: translateY(-56px); }
  60%,78%  { transform: translateY(-84px); }
  80%,98%  { transform: translateY(-112px); }
  100%     { transform: translateY(0); }
}
.hero-tagline {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}
.hero-stats {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--text);
  line-height: 1;
}
.stat-num sup { font-size: 14px; }
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.stat-divider { color: var(--border); font-size: 24px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Image */
.hero-image-block {
  flex-shrink: 0;
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  animation: fadeUp 1s 0.2s ease both;
}
.image-glow-ring {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow1) 0%, var(--glow2) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: rotateGlow 8s linear infinite;
}
@keyframes rotateGlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.hero-photo-frame {
  position: relative; z-index: 1;
  width: 300px; height: 380px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 60px var(--glow1), 0 0 120px var(--glow2);
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.photo-placeholder {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  background: var(--bg3);
  color: var(--text-dim);
  gap: 8px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
}
.hero-photo-frame.no-photo .hero-photo { display: none; }
.hero-photo-frame.no-photo .photo-placeholder { display: flex; }
.photo-placeholder small { font-family: var(--font-mono); font-size: 10px; text-align: center; }
.hero-location-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  position: relative; z-index: 1;
}
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(var(--accent1), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1)} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ─── ABOUT ──────────────────── */
.about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-left p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 15px;
}
.languages-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.lang-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  background: var(--surface);
  transition: var(--transition);
}
.lang-tag:hover { border-color: var(--accent1); color: var(--accent1); }
.about-card-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 28px;
}
.about-card {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px;
}
.about-card-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.about-card-text { display: flex; flex-direction: column; gap: 4px; }
.about-card-text strong { font-size: 13px; font-weight: 600; color: var(--text); }
.about-card-text span { font-size: 12px; color: var(--text-muted); }
/* ─── EDUCATION ENTRIES ──────── */
.edu-section { margin-top: 4px; }
.edu-section-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.edu-entry {
  padding: 18px 20px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.edu-entry-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.edu-entry-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.edu-degree {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  line-height: 1.3;
}
.edu-major {
  font-size: 12px;
  color: var(--accent1);
  font-style: italic;
  line-height: 1.4;
}
.edu-school {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.edu-note {
  color: var(--text-dim);
  font-style: italic;
}
.edu-year {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent3);
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}
.edu-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 4px;
}
.edu-points li {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}
.edu-points li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent1);
  font-weight: 700;
}

.skills-section h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.skills-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.skills-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  transition: var(--transition);
}
.skills-tags span:hover { border-color: var(--accent3); color: var(--accent3); }

/* ─── EXPERIENCE / TIMELINE ──── */
.experience { background: var(--bg); }
.timeline { display: flex; flex-direction: column; gap: 32px; position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute; left: 7px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(var(--accent1), var(--accent2), transparent);
}
.timeline-item { position: relative; display: flex; gap: 28px; align-items: flex-start; }
.timeline-dot {
  width: 14px; height: 14px;
  background: var(--accent1);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 20px;
  position: absolute;
  left: -28px;
  box-shadow: 0 0 16px var(--accent1);
  z-index: 1;
}
.timeline-content {
  flex: 1;
  padding: 24px 28px;
}
.timeline-meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap;
}
.timeline-org {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.timeline-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.timeline-badge.edu { background: rgba(56,189,248,0.1); color: var(--accent3); border: 1px solid rgba(56,189,248,0.2); }
.timeline-badge.biz { background: rgba(167,139,250,0.1); color: var(--accent1); border: 1px solid rgba(167,139,250,0.2); }
.timeline-badge.remote { background: rgba(52,211,153,0.1); color: var(--accent4); border: 1px solid rgba(52,211,153,0.2); }
.timeline-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}
.timeline-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── CERTIFICATES ───────────── */
.certificates { background: var(--bg2); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.cert-card {
  padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cert-card.featured {
  border-color: rgba(244,114,182,0.3);
  box-shadow: 0 0 40px rgba(244,114,182,0.08);
}
.cert-org-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}
.cert-org-badge.bc { background: rgba(56,189,248,0.1); color: var(--accent3); border: 1px solid rgba(56,189,248,0.2); }
.cert-org-badge.gp { background: rgba(52,211,153,0.1); color: var(--accent4); border: 1px solid rgba(52,211,153,0.2); }
.cert-org-badge.unsw { background: rgba(167,139,250,0.1); color: var(--accent1); border: 1px solid rgba(167,139,250,0.2); }
.cert-org-badge.tot { background: rgba(244,114,182,0.1); color: var(--accent2); border: 1px solid rgba(244,114,182,0.2); }
.cert-org-badge.du { background: rgba(251,191,36,0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }
.cert-img-wrap {
  width: 100%; height: 140px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg3);
  position: relative;
}
.cert-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cert-card:hover .cert-img-wrap img { transform: scale(1.04); }
.cert-img-placeholder {
  display: none;
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
  padding: 16px;
  flex-direction: column;
}
.cert-img-wrap:not(:has(img[src])) .cert-img-placeholder,
.cert-img-wrap img[style*="display:none"] + .cert-img-placeholder { display: flex; }
.cert-info { display: flex; flex-direction: column; gap: 6px; }
.cert-type {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.cert-info h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--text);
}
.cert-info p { font-size: 12px; color: var(--text-muted); }
.cert-signatory {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  font-style: italic;
  display: block;
  margin-top: 4px;
}

/* ─── CERT MODAL ─────────────── */
.cert-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.cert-modal.open { display: flex; }
.cert-modal-inner {
  position: relative;
  max-width: 800px;
  width: 90vw;
  background: var(--bg2);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  overflow: hidden;
  padding: 24px;
}
.cert-modal-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cert-modal-close:hover { border-color: var(--accent2); color: var(--accent2); }
.cert-modal-inner img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}
.cert-modal-info {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ─── VENTURES ───────────────── */
.businesses { background: var(--bg); }
.ventures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.venture-card {
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.venture-header { display: flex; align-items: center; gap: 14px; }
.venture-icon { font-size: 28px; }
.venture-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(167,139,250,0.1);
  color: var(--accent1);
  border: 1px solid rgba(167,139,250,0.25);
}
.venture-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
}
.venture-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.venture-card:hover .venture-img-wrap img { transform: scale(1.03); }
.venture-img-placeholder {
  display: none;
  flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
  padding: 20px;
}
.venture-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.venture-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.venture-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent1);
  border: 1px solid rgba(167,139,250,0.25);
  padding: 8px 18px;
  border-radius: 100px;
  width: fit-content;
  transition: var(--transition);
}
.venture-link:hover { background: rgba(167,139,250,0.1); }

/* ─── TESTIMONIALS ───────────── */
.testimonials { background: var(--bg2); overflow: hidden; }
.testimonials-marquee {
  overflow: hidden;
  margin: 0 -24px;
  padding: 8px 0;
}
.marquee-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testi-card {
  min-width: 320px; max-width: 340px;
  padding: 24px;
  flex-shrink: 0;
  cursor: default;
}
.testi-stars { color: var(--accent2); font-size: 14px; margin-bottom: 12px; letter-spacing: 3px; }
.testi-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}
.testi-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.testi-note {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}
.testi-note a { color: var(--accent1); transition: color 0.2s; }
.testi-note a:hover { color: var(--accent2); }

/* ─── CONTACT ────────────────── */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 440px;
}
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--border-glow); }
.contact-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 16px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent1);
  flex-shrink: 0;
}
.contact-item div { display: flex; flex-direction: column; gap: 3px; }
.contact-item strong { font-size: 13px; font-weight: 600; color: var(--text); }
.contact-item span { font-size: 12px; color: var(--text-muted); }
.contact-cta-box {
  padding: 40px 32px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.cta-icon { font-size: 40px; }
.contact-cta-box h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}
.contact-cta-box p { font-size: 14px; color: var(--text-muted); max-width: 260px; }

/* ─── FOOTER ─────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ─── SCROLL ANIMATIONS ──────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─────────────── */
@media (max-width: 960px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero {
    flex-direction: column-reverse;
    padding: 100px 24px 60px;
    text-align: center;
    align-items: center;
  }
  .hero-badge, .hero-ctas, .hero-stats { justify-content: center; }
  .hero-image-block { margin-top: 0; }
  .hero-photo-frame { width: 220px; height: 280px; }
  .image-glow-ring { width: 260px; height: 260px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .cert-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .ventures-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top, .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 80px 0; }
  .timeline { padding-left: 20px; }
  .timeline-dot { left: -20px; }
}

@media (max-width: 600px) {
  .hero-name { font-size: clamp(1.8rem, 10vw, 3rem); }
  .hero-stats { gap: 14px; }
  .stat-num { font-size: 22px; }
  .about-card-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}
