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

:root {
  --bg:            #080808;
  --surface:       #111111;
  --surface-2:     #181818;
  --border:        #1e1e1e;
  --border-light:  #2a2a2a;
  --text:          #f0f0f0;
  --text-muted:    #666666;
  --text-secondary:#999999;
  --accent:        #00ffae;
  --accent-violet: #7b61ff;
  --accent-orange: #ff6b35;
  --nav-h:         72px;
  --radius:        16px;
  --radius-sm:     8px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: auto; } /* GSAP ScrollTo handles smooth snap */

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
}

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


/* ═══════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.accent { color: var(--accent); }

/* ═══════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.section {
  height: 100vh;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════
   SECTION LABEL
═══════════════════════════════════════════════ */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.section-label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text);
}
.section-heading em {
  font-style: normal;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}
.btn--primary {
  background: var(--accent);
  color: #000;
}
.btn--primary:hover {
  background: #00e89d;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,255,174,0.25);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   TAGS
═══════════════════════════════════════════════ */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}
.tag--sm { font-size: 11px; padding: 3px 10px; }

/* ═══════════════════════════════════════════════
   ICONS
═══════════════════════════════════════════════ */
.icon-sm { width: 16px; height: 16px; flex-shrink: 0; }
.icon-md { width: 22px; height: 22px; flex-shrink: 0; }
.icon-lg { width: 32px; height: 32px; flex-shrink: 0; }
.icon-xl { width: 48px; height: 48px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--surface);
}
.nav-link--cta {
  background: var(--accent);
  color: #000 !important;
  font-weight: 600;
}
.nav-link--cta:hover {
  background: #00e89d;
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  padding: 24px 48px 40px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-link {
  display: block;
  padding: 16px 0;
  font-size: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════
   01 — HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Background layers */
.hero-bg { position: absolute; inset: 0; }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,255,174,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(123,97,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255,107,53,0.06) 0%, transparent 60%);
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb--1 {
  width: 600px; height: 600px;
  background: rgba(0,255,174,0.08);
  top: -200px; left: -150px;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb--2 {
  width: 500px; height: 500px;
  background: rgba(123,97,255,0.08);
  bottom: -100px; right: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-orb--3 {
  width: 300px; height: 300px;
  background: rgba(255,107,53,0.06);
  top: 40%; left: 60%;
  animation: orbFloat 14s ease-in-out infinite 2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.97); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(0,255,174,0.3);
  background: rgba(0,255,174,0.05);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-name {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
}
/* Typewriter */
.hero-typewriter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 1.4em;
}
.hero-tw-prefix {
  color: var(--text-muted);
}
.hero-tw-word {
  color: var(--accent);
  font-weight: 700;
}
.hero-tw-cursor {
  color: var(--accent);
  font-weight: 300;
  animation: twBlink 0.75s step-end infinite;
  margin-left: 2px;
}
@keyframes twBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-tagline {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
  opacity: 0;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  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; }
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 2;
  opacity: 0;
}
.hero-stat { text-align: right; }
.hero-stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-light);
}

/* ═══════════════════════════════════════════════
   02 — ABOUT
═══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-border {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--accent), var(--accent-violet), transparent);
  z-index: 0;
}
.about-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-image-tag {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 13px;
  white-space: nowrap;
  color: var(--text-secondary);
}
.about-content .section-heading { margin-bottom: 24px; }
.about-bio {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}
.about-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.about-fact strong { color: var(--text); }
.about-fact .accent { color: var(--accent); }

/* ═══════════════════════════════════════════════
   03 — EXPERIENCE (horizontal scroll)
═══════════════════════════════════════════════ */
.experience .container { margin-bottom: 32px; }

.exp-track-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.exp-track-wrapper::-webkit-scrollbar { display: none; }
.exp-track {
  display: flex;
  gap: 24px;
  padding: 12px 48px 16px;
  width: max-content;
}

.exp-card {
  width: 380px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.exp-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,255,174,0.12), 0 0 30px rgba(0,255,174,0.06);
}
.exp-card:hover::before { opacity: 1; }

.exp-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.exp-logo {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  flex-shrink: 0;
}
.exp-company {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.exp-period {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.exp-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.exp-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.exp-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.exp-bullets li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}
.exp-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.exp-tags { display: flex; gap: 8px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   04 — SKILLS
═══════════════════════════════════════════════ */
.skills .section-heading { margin-bottom: 20px; }
.skills .section-label   { margin-bottom: 16px; }
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 36px;
}
.skills-category {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.skill-bars { display: flex; flex-direction: column; gap: 14px; }
.skill-bar-item {}
.skill-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-secondary);
}
.skill-pct { color: var(--text-muted); font-size: 13px; }
.skill-bar-track {
  height: 4px;
  background: var(--surface-2);
  border-radius: 100px;
  overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  background: var(--bar-color, var(--accent));
  border-radius: 100px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.skills-tags-section { border-top: 1px solid var(--border); padding-top: 22px; }
.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.skill-tag {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: default;
}
.skill-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,255,174,0.05);
}

/* ═══════════════════════════════════════════════
   05 — EDUCATION
═══════════════════════════════════════════════ */
.education { background: var(--surface); }
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--border), transparent);
}
.timeline-item {
  position: relative;
  padding: 0 0 56px 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -6px;
  top: 8px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0,255,174,0.5);
}
.timeline-period {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.timeline-degree {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.timeline-institution {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.timeline-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 16px;
}
.timeline-tags { display: flex; gap: 8px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   06 — CERTIFICATIONS
═══════════════════════════════════════════════ */
.certifications .container { margin-bottom: 48px; }
.cert-scroll-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 48px 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cert-scroll-wrapper::-webkit-scrollbar { display: none; }
.cert-strip {
  display: flex;
  gap: 20px;
  width: max-content;
}
.cert-card {
  width: 260px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.cert-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 16px 48px rgba(0,255,174,0.08);
}
.cert-icon { color: var(--accent); }
.cert-issuer {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.cert-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.cert-year {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: auto;
}

/* ═══════════════════════════════════════════════
   07 — ACHIEVEMENTS (bento grid)
═══════════════════════════════════════════════ */
.achievements { background: var(--surface); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.bento-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  border-color: var(--border-light);
  transform: scale(1.01);
}
.bento-card--wide { grid-column: span 2; }
.bento-card--tall { grid-row: span 2; }
.bento-card--accent {
  background: rgba(0,255,174,0.05);
  border-color: rgba(0,255,174,0.2);
}
.bento-card--accent:hover { border-color: rgba(0,255,174,0.4); }
.bento-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--text);
}
.bento-number.accent { color: var(--accent); }
.bento-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 240px;
}
.bento-icon {
  position: absolute;
  bottom: 24px; right: 24px;
  color: rgba(0,255,174,0.15);
}
.bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.2);
  color: var(--accent-orange);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}
.bento-award-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.bento-award-year {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.bento-award-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.bento-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}
.bento-quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -4px;
  font-size: 2rem;
  color: var(--accent);
  font-style: normal;
  line-height: 1;
}
.bento-quote-author {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   08 — BOTTOM CTA
═══════════════════════════════════════════════ */
.bottom-cta {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bottom-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.bottom-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bottom-cta-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.bottom-cta-heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
  line-height: 1.1;
}
.bottom-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.btn--cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 60px;
  background: var(--accent);
  color: #080808;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn--cta-primary:hover {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,255,174,0.25);
}
.btn--cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 60px;
  background: transparent;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 2px solid var(--border-light);
  transition: var(--transition);
}
.btn--cta-ghost:hover {
  border-color: var(--text);
  color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(240,240,240,0.08);
}
.bottom-cta-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.dot-sep { color: var(--border-light); }

/* ═══════════════════════════════════════════════
   HORIZONTAL SCROLL ARROWS
═══════════════════════════════════════════════ */
.hscroll-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 48px;
  margin-bottom: 20px;
}
.hscroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--surface);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.hscroll-btn svg { width: 16px; height: 16px; }
.hscroll-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,255,174,0.05);
}
.hscroll-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  border-color: var(--border);
}
.hscroll-btn:disabled:hover {
  border-color: var(--border);
  color: var(--text-secondary);
  background: var(--surface);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL (initial state)
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 280px 1fr; gap: 48px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--wide { grid-column: span 2; }
  .bento-card--tall { grid-row: span 1; }
  .skills-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }

  .hero-stats { display: none; }
  .hero-scroll-indicator { left: 24px; transform: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 280px; margin: 0 auto; }
  .about-facts { grid-template-columns: 1fr; }

  .skills-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }

  .exp-track { padding: 8px 24px 32px; }
  .cert-scroll-wrapper { padding: 8px 24px 32px; }
  .exp-card { width: 300px; }

  .bottom-cta-footer { flex-direction: column; gap: 8px; }
  .dot-sep { display: none; }
  .bottom-cta-actions { flex-direction: column; align-items: stretch; }
  .btn--cta-primary, .btn--cta-ghost { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 3rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}
