:root {
  --bg: #09090b;
  --text: #f4f4f5;
  --accent: #e1fc4a; /* Electric Lime/Chartreuse */
  --accent-2: #ff3366; /* Vibrant vermilion/red */
  --muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html, body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overscroll-behavior: none;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

::selection {
  background: var(--accent);
  color: #000;
}

/* CURSOR */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s, opacity 0.3s;
}
.cursor-ring.hover {
  width: 80px;
  height: 80px;
  background: rgba(225, 252, 74, 0.1);
  border-color: var(--accent);
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.preloader-counter {
  font-family: var(--font-display);
  font-size: 10vw;
  font-weight: 800;
  color: var(--accent);
}
.preloader-bar {
  width: 300px;
  height: 2px;
  background: #222;
  overflow: hidden;
}
.preloader-fill {
  width: 0%;
  height: 100%;
  background: var(--accent-2);
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* UTILS */
.section {
  padding: 10vw 0;
  position: relative;
}
.section-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
  text-transform: uppercase;
}
.line-wrapper {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
.word-wrapper {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10vh 0 5vh;
}
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-top-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5vh;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.hero-title {
  font-family: var(--font-display);
  font-size: 12vw;
  line-height: 0.85;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  display: flex;
  flex-direction: column;
}
.title-line {
  display: block;
}
.title-offset {
  margin-left: 15vw;
  color: transparent;
  -webkit-text-stroke: 1px var(--text);
}
.hero-bottom-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  margin-top: 8vh;
  align-items: end;
}
.hero-desc-area {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.hero-desc {
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.4;
}
.hero-stats {
  display: flex;
  gap: 4rem;
  justify-content: flex-start;
}
.stat-item h3 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}
.stat-item p {
  font-size: 14px;
  margin-top: 0.5rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
}
.img-inner {
  width: 100%;
  height: 100%;
}
.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.5s ease;
}
.hero-image-wrap:hover .hero-portrait {
  filter: grayscale(0%) contrast(1.1);
}

/* HEADER NAV */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 100;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.nav-links a:hover {
  color: var(--accent);
}

/* MARQUEE */
.marquee-section {
  background: var(--accent);
  color: var(--bg);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  text-transform: uppercase;
}
.marquee-track span {
  display: inline-block;
  padding: 0 2rem;
}
.marquee-track .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--bg);
  border-radius: 50%;
  vertical-align: middle;
  padding: 0;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
}
.about-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.about-body p {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}

/* JOURNEY PINNED */
.journey-wrapper {
  overflow: hidden;
  padding: 5vh 0;
}
.journey-track {
  display: flex;
  gap: 2rem;
  padding: 0 5vw;
}
.journey-card {
  flex: 0 0 450px;
  background: #111;
  padding: 3rem;
  border-radius: 0;
  border-top: 2px solid var(--border);
  transition: background 0.3s;
}
.journey-card:hover {
  background: #1a1a1a;
  border-top-color: var(--accent-2);
}
.journey-card.highlight {
  background: var(--accent);
  color: #000;
  border-top-color: #000;
}
.journey-card.highlight p, .journey-card.highlight .j-role {
  color: #333;
}
.j-year {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2rem;
}
.j-title {
  font-size: 24px;
  margin-bottom: 0.5rem;
}
.j-role {
  font-size: 14px;
  color: var(--accent-2);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.journey-card p {
  font-size: 16px;
  color: var(--muted);
}

/* EXPERTISE */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.exp-item {
  background: var(--bg);
  padding: 4rem 3rem;
  transition: background 0.3s;
}
.exp-item:hover {
  background: #111;
}
.exp-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 6rem;
}
.exp-item h4 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 1rem;
}
.exp-item p {
  color: var(--muted);
  font-size: 15px;
}

/* EDUCATION */
.edu-list {
  display: flex;
  flex-direction: column;
}
.edu-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.edu-row:hover {
  padding-left: 2rem;
  border-bottom-color: var(--accent);
}
.e-year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--muted);
}
.e-main h4 {
  font-size: 24px;
  margin-bottom: 0.25rem;
}
.e-main span {
  font-size: 14px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FOOTER */
.footer {
  padding-bottom: 5vh;
}
.footer-hero {
  margin: 10vh 0;
}
.footer-link {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 120px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.footer-link:hover {
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  font-size: 14px;
  color: var(--muted);
}
.f-links {
  display: flex;
  gap: 2rem;
}
.f-links a:hover {
  color: var(--accent-2);
}

@media (max-width: 900px) {
  .hero-bottom-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-stats {
    justify-content: flex-start;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .edu-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .e-year {
    font-size: 12px;
  }
}