:root {
  --bg: #03020d;
  --bg2: #06041a;
  --purple: #6c2fff;
  --purple-mid: #9b6dff;
  --purple-light: #c8b4ff;
  --cyan: #00e5ff;
  --pink: #ff3cac;
  --amber: #ffb700;
  --green: #00ff9f;
  --text: #f0ebff;
  --muted: #7a7099;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

body.mobile {
  cursor: auto;
}

@media(prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── CINEMATIC CRT MONITOR GLASS OVERLAY SYSTEM ── */
#crt-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 99998;
  pointer-events: none;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
              linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 4px, 6px 100%;
  opacity: 0.85;
}

/* ── CUSTOM HUD BRACKET INTERFACE INTERACTION FRAMEWORKS ── */
.hud-bracket-container {
  position: relative;
}

.hud-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(0, 229, 255, 0.4);
  z-index: 5;
  transition: all 0.3s ease;
  pointer-events: none;
}

.hud-corner.top-left { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.hud-corner.top-right { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.hud-corner.bottom-left { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.hud-corner.bottom-right { bottom: -2px; right: -2px; border-left: none; border-top: none; }

/* Dynamic response mapping bracket parameters on hover frames */
.hud-bracket-container:hover .hud-corner {
  border-color: var(--cyan);
  width: 18px;
  height: 18px;
  box-shadow: 0 0 10px var(--cyan);
}

/* ── INTERACTIVE 3D FRAMES ── */
#three-globe-photo-container {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

#three-skills-constellation-container {
  width: 100%;
  height: 420px;
  position: relative;
  margin: 0 auto;
}

.project-frame-3d {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: transparent !important;
}

/* ── HERO PHOTO ACTUAL IMAGE UNDERLAY ── */
.photo-actual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ── CURSOR ── */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: transform .1s, background .2s;
}

#cursor-ring {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(108, 47, 255, .6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, border-color .25s;
}

#cursor.hover {
  transform: translate(-50%, -50%) scale(2.5);
  background: var(--purple-mid);
}

#cursor-ring.hover {
  width: 52px;
  height: 52px;
  border-color: var(--cyan);
}

.mobile #cursor, .mobile #cursor-ring {
  display: none;
}

/* ── SCROLL PROGRESS ── */
#scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--pink));
  width: 0%;
  z-index: 9999;
  box-shadow: 0 0 8px var(--cyan);
}

/* ── BACK TO TOP ── */
#btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(108, 47, 255, .2);
  border: 1px solid rgba(108, 47, 255, .5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 300;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  backdrop-filter: blur(12px);
}

#btt.show {
  opacity: 1;
  transform: translateY(0);
}

#btt:hover {
  background: var(--purple);
  box-shadow: 0 0 30px rgba(108, 47, 255, .6);
}

/* ── CANVAS LAYERS ── */
#c-stars, #c-grid, #c-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#c-stars { z-index: 0; }
#c-grid { z-index: 1; opacity: .3; }
#c-particles { z-index: 2; }
#c-cursor-trail { position: fixed; inset: 0; z-index: 3; pointer-events: none; }

/* ── NEBULA ── */
.nebula {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.neb-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: neb-float 18s ease-in-out infinite;
}

.neb-blob:nth-child(1) {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108, 47, 255, .18), transparent 70%);
  top: -10%; left: -10%;
  animation-delay: 0s;
}

.neb-blob:nth-child(2) {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, .12), transparent 70%);
  top: 30%; right: -10%;
  animation-delay: -6s;
}

.neb-blob:nth-child(3) {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 60, 172, .1), transparent 70%);
  bottom: -15%; left: 20%;
  animation-delay: -12s;
}

@keyframes neb-float {
  0%, 100% { opacity: 0; transform: scale(.9) translate(0, 0); }
  20% { opacity: 1; }
  50% { transform: scale(1.08) translate(20px, -30px); }
  80% { opacity: 1; }
}

/* ── GRAIN ── */
#grain {
  position: fixed;
  inset: -200%;
  width: 400%;
  height: 400%;
  z-index: 4;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.15s steps(1) infinite;
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  30% { transform: translate(-1%, 4%); }
  50% { transform: translate(-3%, 1%); }
  70% { transform: translate(-4%, -2%); }
  100% { transform: translate(-2%, 2%); }
}

/* ── INTRO ── */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#intro-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.intro-progress {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, .08);
  z-index: 3;
  border-radius: 2px;
  overflow: hidden;
}

.intro-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  width: 0%;
}

/* ── LAYOUT ── */
.wrap {
  position: relative;
  z-index: 5;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 6%;
}

/* ── NAV ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 6%;
  transition: background .3s, border .3s;
}

header.scrolled {
  background: rgba(3, 2, 13, .9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(108, 47, 255, .18);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 4px;
  background: linear-gradient(90deg, var(--purple-mid), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .3s;
  font-family: var(--font-mono);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width .3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-socials a {
  color: var(--muted);
  font-size: 1rem;
  transition: color .3s, text-shadow .3s;
  text-decoration: none;
  margin-left: .6rem;
}

.nav-socials a:hover {
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan);
}

.otw {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: .55rem;
  color: #00ff9f;
  background: rgba(0, 255, 159, .07);
  border: 1px solid rgba(0, 255, 159, .25);
  padding: .25rem .8rem;
  border-radius: 2rem;
  letter-spacing: 2px;
  white-space: nowrap;
}

.otw-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00ff9f;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 159, .4); }
  50% { box-shadow: 0 0 0 5px rgba(0, 255, 159, 0); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--purple-light);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mob-nav {
  position: fixed;
  inset: 0;
  background: rgba(3, 2, 13, .97);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.mob-nav.open { opacity: 1; pointer-events: all; }

.mob-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 5px;
  transition: color .3s;
}

.mob-nav a:hover { color: var(--cyan); }

.mob-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.mob-socials a {
  color: var(--muted);
  font-size: 1.4rem;
  text-decoration: none;
  transition: color .3s;
}

.mob-socials a:hover { color: var(--cyan); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, .07);
  border: 1px solid rgba(0, 229, 255, .2);
  color: var(--cyan);
  padding: .3rem 1rem;
  border-radius: 2rem;
  font-size: .6rem;
  font-family: var(--font-mono);
  letter-spacing: 2.5px;
  margin-bottom: 1.6rem;
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
  50% { box-shadow: 0 0 15px rgba(0, 229, 255, .2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  letter-spacing: 5px;
  line-height: .95;
  margin-bottom: 1.4rem;
}

.hero-title .first { display: block; color: var(--text); }

.hero-title .last {
  display: block;
  background: linear-gradient(135deg, var(--purple-mid), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: grad 5s ease infinite;
}

@keyframes grad {
  0%, 100% { background-position: 0%; }
  50% { background-position: 100%; }
}

.hero-typewriter {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1rem;
  min-height: 1.4em;
}

.tw-text { color: var(--purple-light); }

.tw-cursor {
  display: inline-block;
  width: 2px;
  height: .8em;
  background: var(--cyan);
  margin-left: 2px;
  animation: blink .7s infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-sub {
  font-size: .9rem;
  color: var(--muted);
  line-height: 2;
  max-width: 480px;
  margin-bottom: 2.4rem;
}

.hero-sub strong { color: var(--purple-light); font-weight: 500; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-p {
  background: linear-gradient(135deg, var(--purple), #3d00cc);
  color: #fff;
  padding: .78rem 2.2rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(108, 47, 255, .45);
  letter-spacing: .5px;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  position: relative;
  overflow: hidden;
}

.btn-p::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.btn-p:hover {
  box-shadow: 0 0 55px rgba(108, 47, 255, .9);
  transform: translateY(-3px);
}

.btn-p:hover::before { opacity: 1; }

.btn-g {
  border: 1.5px solid rgba(108, 47, 255, .4);
  color: var(--purple-light);
  padding: .78rem 2.2rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.btn-g:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 25px rgba(0, 229, 255, .2);
  transform: translateY(-3px);
}

.mag-btn { display: inline-block; }

/* ── HERO PHOTO AREA ── */
.hero-photo-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.photo-frame {
  position: relative;
  width: 320px;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(108, 47, 255, .3);
  box-shadow: 0 0 60px rgba(108, 47, 255, .3), 0 0 120px rgba(0, 229, 255, .1);
  transform-style: preserve-3d;
}

.photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 2, 13, .95) 100%);
  z-index: 2;
  pointer-events: none;
}

.photo-frame::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple-mid), transparent);
  z-index: 3;
}

.photo-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 1.5rem 1.2rem;
}

.photo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 4px;
  color: #fff;
  display: block;
}

.photo-role {
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--cyan);
  letter-spacing: 2px;
  margin-top: .2rem;
}

.photo-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 380px; height: 380px;
  margin: -190px 0 0 -190px;
  border-radius: 50%;
  border: 1px dashed rgba(108, 47, 255, .15);
  animation: orbit-spin 20s linear infinite;
  pointer-events: none;
}

.photo-orbit::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  margin-left: -5px;
}

.photo-orbit2 {
  position: absolute;
  top: 50%; left: 50%;
  width: 440px; height: 440px;
  margin: -220px 0 0 -220px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 229, 255, .1);
  animation: orbit-spin 30s linear infinite reverse;
  pointer-events: none;
}

.photo-orbit2::before {
  content: '';
  position: absolute;
  top: -4px; right: 30%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
}

@keyframes orbit-spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.hero-glow {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 47, 255, .18), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ── STATS ── */
.stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(108, 47, 255, .08);
  border: 1px solid rgba(108, 47, 255, .1);
  border-radius: 20px;
  overflow: hidden;
  margin: 5rem 0 6rem;
}

.stat {
  background: var(--bg);
  padding: 2.2rem 1rem;
  text-align: center;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(108, 47, 255, .1), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}

.stat:hover::before { opacity: 1; }

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 2px;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple-mid), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cyan);
  -webkit-text-fill-color: var(--cyan);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: .55rem;
  color: var(--muted);
  letter-spacing: 2px;
  margin-top: .5rem;
}

/* ── SECTIONS ── */
section { padding: 6rem 0; }

.sec-eye {
  font-family: var(--font-mono);
  font-size: .58rem;
  color: var(--cyan);
  letter-spacing: 5px;
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .8rem;
}

.sec-eye::before {
  content: '';
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: .6rem;
}

.sec-title span {
  background: linear-gradient(135deg, var(--text), var(--purple-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) blur(8px);
  transition: opacity .6s ease, transform .6s ease, filter .6s ease;
}

.sec-title .word.visible { opacity: 1; transform: translateY(0) blur(0); }
.sec-sub { font-size: .88rem; color: var(--muted); max-width: 520px; line-height: 1.9; }
.sec-head { margin-bottom: 3.5rem; }

/* ── TERMINAL LAYOUT ── */
#about { padding: 6rem 0; }

.terminal-wrap {
  background: #050312;
  border: 1px solid rgba(108, 47, 255, .25);
  border-radius: 16px;
  overflow: hidden;
  max-width: 780px;
  box-shadow: 0 0 60px rgba(108, 47, 255, .12), 0 30px 80px rgba(0, 0, 20, .8);
}

.term-bar {
  background: #0d0828;
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid rgba(108, 47, 255, .15);
}

.term-dot { width: 12px; height: 12px; border-radius: 50%; }
.term-dot.r { background: #ff5f57; }
.term-dot.y { background: #febc2e; }
.term-dot.g { background: #28c840; }

.term-title {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--muted);
  margin-left: .5rem;
  letter-spacing: 1px;
}

.term-body {
  padding: 1.6rem 1.8rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  line-height: 2;
  min-height: 280px;
}

.term-line { display: flex; gap: .6rem; flex-wrap: wrap; }
.term-prompt { color: var(--purple-mid); flex-shrink: 0; }
.term-cmd { color: var(--cyan); }
.term-out { color: var(--muted); padding-left: 1.4rem; display: block; }
.term-out strong { color: var(--text); }
.term-out .hl { color: var(--green); }
.term-out .hl2 { color: var(--pink); }
.term-out .hl3 { color: var(--amber); }

.term-cursor-blink {
  display: inline-block;
  width: 8px; height: 1em;
  background: var(--cyan);
  animation: blink .7s infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 0; }

.tl-spine {
  position: absolute;
  left: 28px; top: 24px; bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--purple) 10%, var(--cyan) 50%, var(--purple) 90%, transparent);
  overflow: visible;
}

.tl-spine-dot {
  position: absolute;
  left: -4px; top: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan), 0 0 24px rgba(0, 229, 255, .4);
  animation: spine-travel 4s ease-in-out infinite;
}

@keyframes spine-travel {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.tl-item { padding-left: 80px; margin-bottom: 2rem; position: relative; }

.tl-dot {
  position: absolute;
  left: 0; top: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
}

.tl-dot.v1 { background: rgba(108, 47, 255, .15); border: 1px solid rgba(108, 47, 255, .5); box-shadow: 0 0 20px rgba(108, 47, 255, .4); }
.tl-dot.v2 { background: rgba(0, 229, 255, .1); border: 1px solid rgba(0, 229, 255, .4); box-shadow: 0 0 20px rgba(0, 229, 255, .3); }
.tl-dot.v3 { background: rgba(255, 60, 172, .1); border: 1px solid rgba(255, 60, 172, .4); box-shadow: 0 0 20px rgba(255, 60, 172, .3); }

.tl-card {
  background: linear-gradient(135deg, rgba(108, 47, 255, .05), rgba(0, 0, 20, .5));
  border: 1px solid rgba(108, 47, 255, .12);
  border-radius: 20px;
  padding: 2rem 2.2rem;
  transition: all .35s;
  position: relative;
  overflow: hidden;
}

.tl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-mid), transparent);
  transform: scaleX(0);
  transition: transform .4s;
}

.tl-card:hover {
  border-color: rgba(108, 47, 255, .3);
  transform: translateX(8px);
  box-shadow: 0 10px 40px rgba(0, 0, 20, .5), -8px 0 30px rgba(108, 47, 255, .1);
}

.tl-card:hover::before { transform: scaleX(1); }
.tl-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; margin-bottom: .2rem; }
.tl-role { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 3px; }

.tl-date {
  font-family: var(--font-mono);
  font-size: .58rem;
  color: var(--cyan);
  background: rgba(0, 229, 255, .07);
  border: 1px solid rgba(0, 229, 255, .18);
  padding: .18rem .75rem;
  border-radius: 2rem;
}

.tl-co {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--purple-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.tl-co::before { content: '◈'; font-size: .6rem; color: var(--purple-mid); }
.impact-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.imp { font-family: var(--font-mono); font-size: .56rem; padding: .2rem .65rem; border-radius: 2rem; }
.imp.up { background: rgba(0, 255, 159, .07); border: 1px solid rgba(0, 255, 159, .22); color: var(--green); }
.imp.up::before { content: '▲ '; }
.imp.n { background: rgba(108, 47, 255, .08); border: 1px solid rgba(108, 47, 255, .2); color: var(--purple-light); }
.tl-bullets { list-style: none; display: flex; flex-direction: column; gap: .55rem; }

.tl-bullets li {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.8;
  padding-left: 1.3rem;
  position: relative;
}

.tl-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: .72em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--purple-mid);
  box-shadow: 0 0 6px var(--purple-mid);
}

.tl-bullets li strong { color: var(--text); font-weight: 500; }

/* ── SKILLS ── */
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.sk-card {
  background: linear-gradient(135deg, rgba(108, 47, 255, .05), rgba(0, 0, 20, .5));
  border: 1px solid rgba(108, 47, 255, .12);
  border-radius: 20px;
  padding: 1.8rem;
  transition: all .35s;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.sk-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(108, 47, 255, .14), transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  border-radius: 20px;
}

.sk-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .05), transparent);
  opacity: 0;
  transition: opacity .3s;
  border-radius: 20px;
  pointer-events: none;
}

.sk-card:hover {
  border-color: rgba(108, 47, 255, .35);
  box-shadow: 0 24px 60px rgba(0, 0, 20, .7), 0 0 40px rgba(108, 47, 255, .12);
}

.sk-card:hover::after, .sk-card:hover::before { opacity: 1; }
.sk-emoji { font-size: 2.4rem; margin-bottom: 1rem; display: block; }
.sk-title { font-family: var(--font-display); font-size: .9rem; letter-spacing: 2.5px; margin-bottom: .2rem; }
.sk-sub { font-family: var(--font-mono); font-size: .55rem; color: var(--muted); letter-spacing: .5px; margin-bottom: 1rem; }
.chips { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: 1.1rem; }
.chip { font-size: .58rem; padding: .2rem .65rem; border-radius: 2rem; font-family: var(--font-mono); transition: all .2s; cursor: default; }

.cp { border: 1px solid rgba(108, 47, 255, .3); background: rgba(108, 47, 255, .08); color: var(--purple-light); }
.cp:hover { background: rgba(108, 47, 255, .2); }
.cc { border: 1px solid rgba(0, 229, 255, .28); background: rgba(0, 229, 255, .06); color: var(--cyan); }
.cc:hover { background: rgba(0, 229, 255, .15); }
.cpk { border: 1px solid rgba(255, 60, 172, .28); background: rgba(255, 60, 172, .06); color: var(--pink); }
.ca { border: 1px solid rgba(255, 183, 0, .28); background: rgba(255, 183, 0, .06); color: var(--amber); }
.cg { border: 1px solid rgba(0, 255, 159, .28); background: rgba(0, 255, 159, .06); color: var(--green); }

.sk-bar { height: 2px; background: rgba(255, 255, 255, .06); border-radius: 2px; overflow: hidden; }
.sk-fill { height: 100%; border-radius: 2px; width: 0%; transition: width 1.5s cubic-bezier(.23, 1, .32, 1); }

/* ── RADAR INTERACTIVE LABELS ── */
.radar-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 3rem; }
.radar-legend { display: flex; flex-direction: column; gap: .9rem; }
.rl-item { display: flex; align-items: center; gap: .8rem; }
.rl-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.rl-label { font-family: var(--font-mono); font-size: .62rem; color: var(--muted); letter-spacing: .5px; }
.rl-val { font-family: var(--font-display); font-size: .9rem; color: var(--text); margin-left: auto; letter-spacing: 2px; }

/* ── PROJECTS ── */
.proj-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.5rem; }

.proj-card {
  background: linear-gradient(135deg, rgba(108, 47, 255, .05), rgba(0, 0, 20, .7));
  border: 1px solid rgba(108, 47, 255, .12);
  border-radius: 22px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

.proj-card:hover {
  border-color: rgba(108, 47, 255, .35);
  box-shadow: 0 30px 80px rgba(0, 0, 20, .9), 0 0 60px rgba(108, 47, 255, .15);
}

.proj-vis { height: 175px; position: relative; overflow: hidden; }
.proj-body { padding: 1.6rem; }
.ptags { display: flex; gap: .3rem; flex-wrap: wrap; margin-bottom: .8rem; }

.ptag {
  font-family: var(--font-mono); font-size: .54rem;
  background: rgba(0, 229, 255, .07); border: 1px solid rgba(0, 229, 255, .15); color: var(--cyan);
  padding: .14rem .55rem; border-radius: 2rem;
}

.proj-title { font-family: var(--font-display); font-size: .95rem; letter-spacing: 2px; margin-bottom: .5rem; }
.proj-desc { font-size: .8rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.proj-metrics { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: 1.2rem; }

.pm-badge {
  font-family: var(--font-mono); font-size: .55rem;
  background: rgba(108, 47, 255, .08); border: 1px solid rgba(108, 47, 255, .18); color: var(--purple-light);
  padding: .15rem .6rem; border-radius: 2rem;
}

.proj-links { display: flex; gap: .6rem; }
.pla { font-size: .76rem; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: .3rem; transition: all .3s; }

.pla.code {
  color: var(--muted); border: 1px solid rgba(255, 255, 255, .1);
  padding: .38rem 1rem; border-radius: 2rem;
}

.pla.code:hover { color: var(--text); border-color: rgba(108, 47, 255, .5); }

.pla.demo {
  background: linear-gradient(135deg, var(--purple), #3d00cc); color: #fff;
  padding: .38rem 1rem; border-radius: 2rem; box-shadow: 0 0 18px rgba(108, 47, 255, .4);
}

.pla.demo:hover { box-shadow: 0 0 35px rgba(108, 47, 255, .8); transform: translateY(-2px); }

/* ── TICKER TESTIMONIALS ── */
.testimonials-wrap { overflow: hidden; position: relative; padding: 2rem 0; }
.testimonials-wrap::before, .testimonials-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.testimonials-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.testimonials-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.testi-track { display: flex; gap: 1.5rem; width: max-content; animation: ticker 40s linear infinite; }
.testi-track:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.testi-card { background: linear-gradient(135deg, rgba(108, 47, 255, .06), rgba(0, 0, 20, .6)); border: 1px solid rgba(108, 47, 255, .15); border-radius: 18px; padding: 1.8rem 2rem; width: 360px; flex-shrink: 0; }
.testi-quote { font-size: .85rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.2rem; font-style: italic; }
.testi-quote::before { content: '"'; color: var(--purple-mid); font-size: 1.5rem; line-height: 0; vertical-align: -.4em; margin-right: .2rem; }
.testi-author { display: flex; align-items: center; gap: .8rem; }

.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .9rem; color: #fff; flex-shrink: 0;
}

.testi-name { font-family: var(--font-display); font-size: .75rem; letter-spacing: 2px; display: block; }
.testi-role { font-family: var(--font-mono); font-size: .55rem; color: var(--muted); }

/* ── CERTS ── */
.certs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.cert-card {
  background: linear-gradient(135deg, rgba(108, 47, 255, .06), rgba(0, 0, 20, .5));
  border: 1px solid rgba(108, 47, 255, .14); border-radius: 20px;
  padding: 2rem 1.5rem; text-align: center; transition: all .35s; position: relative; overflow: hidden;
}

.cert-card::before {
  content: ''; position: absolute; top: -50px; left: 50%; transform: translateX(-50%); width: 100px; height: 100px; border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 47, 255, .2), transparent 70%);
}

.cert-card:hover {
  transform: translateY(-7px); border-color: rgba(108, 47, 255, .4);
  box-shadow: 0 20px 50px rgba(0, 0, 20, .7), 0 0 35px rgba(108, 47, 255, .12);
}

.cert-emoji { font-size: 2.8rem; margin-bottom: .8rem; display: block; }
.cert-name { font-family: var(--font-display); font-size: .8rem; letter-spacing: 2px; margin-bottom: .4rem; }
.cert-issuer { font-family: var(--font-mono); font-size: .6rem; color: var(--cyan); margin-bottom: .7rem; }
.cert-badge { font-family: var(--font-mono); font-size: .55rem; padding: .2rem .7rem; border-radius: 2rem; background: rgba(0, 255, 159, .07); border: 1px solid rgba(0, 255, 159, .25); color: var(--green); }

/* ── EDUCATION ── */
.edu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.edu-card { background: linear-gradient(135deg, rgba(108, 47, 255, .06), rgba(0, 0, 20, .5)); border: 1px solid rgba(108, 47, 255, .12); border-radius: 20px; padding: 2.2rem; transition: all .35s; position: relative; overflow: hidden; }

.edu-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0); transition: transform .4s;
}

.edu-card:hover { border-color: rgba(108, 47, 255, .3); transform: translateY(-6px); }
.edu-card:hover::before { transform: scaleX(1); }
.edu-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
.edu-deg { font-family: var(--font-display); font-size: 1rem; letter-spacing: 2.5px; margin-bottom: .4rem; }
.edu-school { font-family: var(--font-mono); font-size: .72rem; color: var(--cyan); margin-bottom: .4rem; }

.edu-date {
  font-family: var(--font-mono); font-size: .62rem; color: var(--muted);
  background: rgba(108, 47, 255, .1); border: 1px solid rgba(108, 47, 255, .2);
  padding: .18rem .75rem; border-radius: 2rem; display: inline-block; margin-bottom: .7rem;
}

.edu-loc { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: .4rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 3px; margin-bottom: .8rem; }
.contact-info p { font-size: .87rem; color: var(--muted); line-height: 1.9; margin-bottom: 2rem; }
.clinks { display: flex; flex-direction: column; gap: .6rem; }

.clink {
  display: flex; align-items: center; gap: .9rem; text-decoration: none; color: var(--muted);
  padding: .8rem 1.2rem; border-radius: 14px; border: 1px solid rgba(108, 47, 255, .12);
  transition: all .3s; font-size: .83rem;
}

.clink:hover { border-color: rgba(108, 47, 255, .4); background: rgba(108, 47, 255, .07); color: var(--text); transform: translateX(6px); }
.clink i { color: var(--purple-mid); width: 18px; text-align: center; }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: flex; flex-direction: column; gap: .35rem; }
.form-row label { font-family: var(--font-mono); font-size: .58rem; color: var(--muted); letter-spacing: 1.5px; }
.form-row input, .form-row textarea { background: rgba(108, 47, 255, .05); border: 1px solid rgba(108, 47, 255, .15); border-radius: 12px; padding: .8rem 1.1rem; color: var(--text); font-family: var(--font-body); font-size: .86rem; transition: all .3s; outline: none; }
.form-row input:focus, .form-row textarea:focus { border-color: rgba(108, 47, 255, .5); box-shadow: 0 0 20px rgba(108, 47, 255, .12); }
.form-row textarea { min-height: 115px; resize: vertical; }

.form-btn {
  background: linear-gradient(135deg, var(--purple), #3d00cc); color: #fff; border: none;
  padding: .85rem 2.5rem; border-radius: 50px; font-family: var(--font-body); font-size: .86rem; font-weight: 700;
  cursor: pointer; transition: all .3s; width: fit-content; box-shadow: 0 0 25px rgba(108, 47, 255, .4);
  position: relative; overflow: hidden;
}

.form-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent); opacity: 0; transition: opacity .3s; }
.form-btn:hover { box-shadow: 0 0 50px rgba(108, 47, 255, .8); transform: translateY(-2px); }
.form-btn:hover::before { opacity: 1; }

/* ── RIPPLE ── */
.ripple { position: absolute; border-radius: 50%; background: rgba(0, 229, 255, .3); animation: ripple-out .6s ease-out forwards; pointer-events: none; }
@keyframes ripple-out { from { width: 0; height: 0; opacity: .6; transform: translate(-50%, -50%); } to { width: 200px; height: 200px; opacity: 0; transform: translate(-50%, -50%); } }

/* ── FOOTER ── */
footer { text-align: center; padding: 2.5rem 5%; border-top: 1px solid rgba(108, 47, 255, .07); font-family: var(--font-mono); font-size: .62rem; color: var(--muted); }
footer span { color: var(--purple-mid); }

/* ── DIVIDER ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(108, 47, 255, .2), rgba(0, 229, 255, .15), transparent); margin: 0; }

/* ── GLITCH ── */
.glitch { position: relative; }
.glitch::before, .glitch::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: inherit; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.glitch::before { left: 2px; text-shadow: -2px 0 var(--cyan); clip: rect(44px, 450px, 56px, 0); animation: glitch1 5s infinite linear; }
.glitch::after { left: -2px; text-shadow: 2px 0 var(--pink); clip: rect(44px, 450px, 56px, 0); animation: glitch2 5s infinite linear; }

@keyframes glitch1 {
  0%, 100% { clip: rect(44px, 9999px, 56px, 0); }
  2% { clip: rect(10px, 9999px, 90px, 0); }
  4% { clip: rect(60px, 9999px, 30px, 0); }
  5%, 95% { clip: rect(-1px, -1px, -1px, -1px); }
}

@keyframes glitch2 {
  0%, 100% { clip: rect(44px, 9999px, 56px, 0); }
  3% { clip: rect(80px, 9999px, 20px, 0); }
  4.5% { clip: rect(15px, 9999px, 70px, 0); }
  6%, 94% { clip: rect(-1px, -1px, -1px, -1px); }
}

/* ── RESPONSIVE ── */
@media(max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-photo-area { display: none; }
  .hero-sub { margin: 0 auto 2.4rem; }
  .hero-btns { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .edu-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .stats-wrap { grid-template-columns: 1fr 1fr; }
  .radar-wrap { grid-template-columns: 1fr; }
  .nav-links, .nav-right .otw, .nav-right .nav-socials-d { display: none; }
  .hamburger { display: flex; }
  .radar-canvas-wrap { max-width: 300px; margin: 0 auto; }
}

@media(max-width: 520px) {
  .skills-grid, .certs-grid, .proj-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 5%; }
  header { padding: 1rem 5%; }
  .testi-card { width: 290px; }
}

/* ── BACKDROP BLUR & HOVER CARDS ── */
.tl-card, .sk-card, .proj-card, .edu-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(135deg, rgba(13, 8, 40, 0.45), rgba(3, 2, 13, 0.85));
  border: 1px solid rgba(108, 47, 255, 0.12);
  border-radius: 20px;
  padding: 2rem 2.2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.tl-card::before, .sk-card::before, .proj-card::before, .edu-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-mid), transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}

.tl-card:hover, .sk-card:hover, .proj-card:hover, .edu-card:hover {
  border-color: rgba(108, 47, 255, 0.3);
  transform: translateX(8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), -8px 0 30px rgba(108, 47, 255, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.tl-card:hover::before, .sk-card:hover::before, .proj-card:hover::before, .edu-card:hover::before { transform: scaleX(1); }

body, header, .tl-card, .sk-card, .proj-card, .edu-card, .nav-links a, .hero-title .first, .btn-g, input, textarea {
  transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

/* Supernova System Styles */
body.supernova {
  --bg: #f5f3fa;
  --bg2: #eae6f3;
  --text: #120e2e;
  --muted: #625985;
  --purple-light: #4c1bc7;
}

body.supernova #intro { background: #f5f3fa; }

body.supernova .tl-card, body.supernova .sk-card, body.supernova .proj-card, body.supernova .edu-card {
  background: linear-gradient(135deg, rgba(234, 230, 243, 0.7), rgba(255, 255, 255, 0.95)) !important;
  border-color: rgba(108, 47, 255, 0.2);
  box-shadow: 0 15px 35px rgba(108, 47, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

body.supernova .stat, body.supernova .terminal-wrap { background: #eae6f3; border-color: rgba(108, 47, 255, 0.2); }
body.supernova .term-bar { background: #ded7ed; }
body.supernova .clink, body.supernova input, body.supernova textarea { background: rgba(108, 47, 255, 0.04); border-color: rgba(108, 47, 255, 0.15); color: var(--text); }
body.supernova footer { border-top-color: rgba(108, 47, 255, 0.1); }

/* ── INTRO COMPONENT RULES ── */
#intro-video {
  position: absolute;
  inset: 0;
  width: 100vw;               /* Force the width to perfectly match the viewport width */
  height: 100vh;              /* Force the height to perfectly match the viewport height */
  object-fit: cover;          /* CRITICAL: Scales and crops the video to fill the screen on phones/iPads without stretching */
  object-position: center;    /* Keeps the focus of the cinematic intro centered */
  z-index: 2;
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;

}

#intro-video.visible { opacity: 1; }

#skip-intro-btn {
  position: absolute; bottom: 3rem; right: 3rem; z-index: 4;
  background: rgba(3, 2, 13, 0.6); border: 1px solid rgba(108, 47, 255, 0.4); color: var(--text);
  padding: 0.6rem 1.2rem; border-radius: 8px; cursor: pointer; font-family: 'Space Mono', monospace; font-size: 0.75rem;
  display: none; backdrop-filter: blur(8px); transition: all 0.3s ease;
}

#skip-intro-btn:hover {
  background: var(--purple) !important;
  border-color: var(--cyan) !important;
  box-shadow: 0 0 15px var(--purple);
}

#three-warp-container {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}
