/* =============================================================
   Shobhit Dixit Portfolio — lu-works-inspired Design
   GeistPixelCircle hero font + Space Mono + Inter body
   ============================================================= */

/* ── Geist Pixel — local font ────────────────────────── */
@font-face {
  font-family: 'GeistPixelCircle';
  src: url('../fonts/GeistPixelCircle.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GeistPixelSquare';
  src: url('../fonts/GeistPixelSquare.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GeistPixelGrid';
  src: url('../fonts/GeistPixelGrid.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --black2: #111111;
  --light: #ebebeb;
  --light2: #f5f5f5;
  --white: #ffffff;
  --red: #ff2525;
  --gray-text: #4a4a4a;
  --border: rgba(0, 0, 0, 0.12);
  /* Pixel font — matches lu-works exactly */
  --font-pixel: 'GeistPixelCircle', 'GeistPixelSquare', 'Space Mono', monospace;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-h: 56px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom Cursor ───────────────────────────────────── */
*,
*::before,
*::after {
  /* kill native cursor everywhere */
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #ffffff;
  mix-blend-mode: difference;
  /* auto-inverts: white on dark, black on light */
  pointer-events: none;
  z-index: 999999;
  border-radius: 0;
  /* square — lu-works signature */
  will-change: transform;
  transition:
    width 0.18s cubic-bezier(.25, .46, .45, .94),
    height 0.18s cubic-bezier(.25, .46, .45, .94);
}

.custom-cursor.cursor-click {
  transform-origin: center;
  animation: cursorPop 0.18s ease;
}

@keyframes cursorPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.6);
  }

  100% {
    transform: scale(1);
  }
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-brand {
  font-family: var(--font-pixel);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0;
}

.nav-brand span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--black2);
  z-index: 999;
  padding: 24px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  animation: slideDown 0.22s ease;
}

.nav-mobile.open {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-mono);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color var(--transition);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--white);
}

/* ── Page Header (black section, used on About/Contact/Works) */
.page-header {
  background: var(--black);
  padding: calc(var(--nav-h) + 64px) 64px 64px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.page-subtitle {
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.6vw, 16px);
  color: var(--white);
  max-width: 680px;
  line-height: 1.7;
}

.page-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.page-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all var(--transition);
}

.page-social-icon:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.contact-phone-pill {
  height: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.contact-phone-pill:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ── Page Body (light gray section) ──────────────────────── */
.page-body {
  background: var(--light);
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 64px;
}

.two-col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}

.two-col:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.col-label {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--gray-text);
  padding-top: 4px;
}

.col-content {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.8;
}

.col-content p+p {
  margin-top: 16px;
}

/* ── Hero (Home Page) ─────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 640px;
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}


/* ── 3D Neural-Net Canvas Background ─────────────────────── */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  /* slight depth haze: darken the very-far layer */
  background: radial-gradient(ellipse 120% 90% at 65% 50%,
      #1a0a24 0%,
      /* deep purple-black core */
      #0d0d18 45%,
      #080810 100%);
}

/* CRT scanline overlay — gives the grid depth a "terminal" feel */
.hero-scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.06) 2px,
      rgba(0, 0, 0, 0.06) 4px);
  z-index: 1;
}

/* Radial vignette — keeps text edge readable, dims corners */
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 85% at 28% 65%,
      rgba(10, 10, 10, 0.9) 0%,
      rgba(10, 10, 10, 0.55) 40%,
      transparent 75%),
    radial-gradient(ellipse 100% 100% at 50% 50%,
      transparent 40%,
      rgba(5, 5, 12, 0.75) 100%);
  z-index: 2;
}

/* Corner-bracket grid decorations (top-left + bottom-right) */
.hero-corner-grid {
  position: absolute;
  width: 180px;
  height: 180px;
  pointer-events: none;
  z-index: 3;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 37, 37, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 37, 37, 0.5) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at var(--anchor), black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 100% 100% at var(--anchor), black 30%, transparent 75%);
}

.hero-corner-grid--tl {
  top: 0;
  left: 0;
  --anchor: 0% 0%;
}

.hero-corner-grid--br {
  bottom: 0;
  right: 0;
  --anchor: 100% 100%;
}

/* "Available for Work" floating status pill */
.hero-status-pill {
  position: absolute;
  top: calc(var(--nav-h) + 20px);
  right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10;
  opacity: 0;
  animation: fadeUp 0.6s forwards 1.1s;
}

.hero-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
  animation: statusPulse 2s ease infinite;
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.55);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

.hero-status-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.8px;
}

/* Depth glow behind the hero text area */
.hero::before {
  content: '';
  position: absolute;
  left: -10%;
  bottom: 10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center,
      rgba(120, 40, 200, 0.12) 0%,
      rgba(255, 37, 37, 0.04) 40%,
      transparent 70%);
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
}



.hero-content {
  position: relative;
  z-index: 10;
  padding: calc(var(--nav-h) + 80px) 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 720px;
  width: 100%;
}


.hero-monogram {
  font-family: var(--font-pixel);
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.6s forwards 0.1s;
}

.hero-dot {
  color: var(--red);
}

.hero-red {
  font-family: var(--font-pixel);
  font-size: clamp(16px, 2vw, 22px);
  color: var(--red);
  letter-spacing: 4px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.6s forwards 0.25s;
}

.hero-roles {
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.6s forwards 0.4s;
}

.hero-role {
  font-family: var(--font-pixel);
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: 0;
  cursor: default;
  transition: color var(--transition);
}

.hero-role:hover {
  color: rgba(255, 255, 255, 0.55);
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s forwards 0.6s;
}

.btn-primary {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 12px 28px;
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  border: 1px solid var(--white);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-secondary {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 12px 28px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  border-color: var(--white);
  color: var(--white);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Outline button for light backgrounds */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: var(--gray-text);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
  margin-top: 16px;
}

.btn-outline-dark:hover {
  border-color: var(--black);
  color: var(--black);
  background: rgba(0, 0, 0, 0.04);
}

/* ── Works Page ───────────────────────────────────────────── */
.works-body {
  background: var(--light2);
  padding: 48px 40px 80px;
}

.works-page-title {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--gray-text);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

.works-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.work-card {
  position: relative;
  overflow: hidden;
  background: #ccc;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.work-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(15%);
}

.work-card:hover .work-card-img {
  transform: scale(1.04);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.1) 100%);
  transform: translateY(0);
  transition: var(--transition);
}

.work-card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.work-card-title {
  font-family: var(--font-mono);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.work-card-desc {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 480px;
}

.work-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.work-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

.work-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  transition: all var(--transition);
}

.work-card-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* Featured card takes full width */
.work-card.featured {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}

/* ── About Page ───────────────────────────────────────────── */
.experience-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exp-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.exp-item:last-child {
  border-bottom: none;
}

.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.exp-title {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}

.exp-company {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 3px;
}

.exp-period {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.exp-desc {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-top: 10px;
}

.exp-bullets {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.exp-bullet {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.exp-bullet::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 11px;
}

/* Education */
.edu-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.edu-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.edu-item:last-child {
  border-bottom: none;
}

.edu-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  border: 1px solid var(--border);
  padding: 4px;
  background: var(--white);
  flex-shrink: 0;
}

.edu-degree {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.4;
}

.edu-school {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-text);
}

.edu-period {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 4px;
}

/* Skills */
.skills-categories {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.skill-cat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--gray-text);
  background: var(--white);
  transition: all var(--transition);
}

.skill-tag:hover {
  border-color: var(--black);
  color: var(--black);
  background: var(--light);
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-item:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.22);
  transform: translateX(4px);
}

.contact-item-icon {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
  width: 24px;
  flex-shrink: 0;
}

.contact-item-text {
  flex: 1;
}

.contact-item-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item-value {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--black);
}

.contact-item-arrow {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.3);
  transition: transform var(--transition), color var(--transition);
}

.contact-item:hover .contact-item-arrow {
  transform: translate(3px, -3px);
  color: var(--black);
}

/* ── Stats Strip (Home) ───────────────────────────────────── */
.stats-strip {
  background: var(--black2);
  padding: 40px 64px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 40px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-right {
  display: flex;
  gap: 24px;
}

.footer-right a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-right a:hover {
  color: var(--white);
}

/* ── Divider ──────────────────────────────────────────────── */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── Scroll indicator ─────────────────────────────────────── */
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 0.6s forwards 0.8s;
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  flex-shrink: 0;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

.scroll-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.scroll-arrow {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  animation: bounce 1.8s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* ── Responsive ───────────────────────────────────────────── */

/* Tablet */
@media (max-width: 900px) {
  .nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: calc(var(--nav-h) + 48px) 24px 60px;
  }

  .page-header {
    padding: calc(var(--nav-h) + 40px) 24px 40px;
    min-height: 260px;
  }

  .page-body {
    padding: 48px 24px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .col-label {
    padding-top: 0;
  }

  .works-body {
    padding: 32px 16px 60px;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .work-card.featured {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .stats-strip {
    padding: 32px 24px;
    gap: 40px;
  }

  .footer {
    padding: 28px 24px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero-role {
    font-size: clamp(24px, 10vw, 42px);
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    aspect-ratio: 4/3;
  }

  .work-card.featured {
    aspect-ratio: 4/3;
  }

  .stats-strip {
    gap: 28px;
    padding: 28px 16px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-item {
    padding: 16px 18px;
  }
}

/* ── Typewriter Cursor ────────────────────────────────────── */
.type-cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  background: currentColor;
  vertical-align: middle;
  margin-left: 3px;
  opacity: 0.8;
}

/* ── Cursor blink on monogram ─────────────────────────────── */
.blink {
  display: inline-block;
  animation: blink 1.1s step-start infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ── Page transition ──────────────────────────────────────── */
.page-fade {
  animation: pageFade 0.4s ease;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}