/* =================================================================
   V0LT // NEON — Cyberpunk Game Artist Portfolio Template
   Style: Dark cyberpunk · neon cyan & magenta · glitch · holographic
   ================================================================= */

:root {
  --bg: #06070d;
  --bg-1: #0a0c16;
  --bg-2: #0f1320;
  --panel: rgba(15, 19, 32, 0.72);
  --panel-solid: #0f1320;
  --line: rgba(0, 255, 255, 0.18);
  --line-bright: rgba(0, 255, 255, 0.45);
  --cyan: #00f0ff;
  --cyan-glow: #00d4ff;
  --magenta: #ff00d4;
  --magenta-glow: #ff2bd6;
  --yellow: #f7ff00;
  --green: #00ff9d;
  --text: #e8f4ff;
  --text-dim: #7a8aa8;
  --text-faint: #4a5878;
  --danger: #ff2e63;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', 'Chakra Petch', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ============ BACKGROUND LAYERS ============ */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -3;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.bg-scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(0, 0, 0, 0.18) 3px,
    rgba(0, 0, 0, 0.18) 4px
  );
  z-index: -2;
  pointer-events: none;
  opacity: 0.4;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: drift 18s ease-in-out infinite;
}

.glow-orb.cyan {
  width: 500px; height: 500px;
  background: var(--cyan);
  top: -100px; left: -100px;
}

.glow-orb.magenta {
  width: 600px; height: 600px;
  background: var(--magenta);
  bottom: -150px; right: -150px;
  animation-delay: -9s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 60px) scale(1.15); }
}

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 7, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 16px 40px;
}

.header-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.logo-mark {
  width: 28px; height: 28px;
  position: relative;
  display: inline-block;
}

.logo-mark::before, .logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}

.logo-mark::after {
  border-color: var(--magenta);
  box-shadow: 0 0 12px var(--magenta-glow);
  transform: rotate(45deg) scale(0.7);
}

.logo .accent { color: var(--cyan); }

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  font-family: 'Chakra Petch', sans-serif;
  text-decoration: none;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

nav a::before {
  content: '//';
  color: var(--cyan);
  opacity: 0;
  margin-right: 4px;
  transition: opacity 0.3s ease;
}

nav a:hover, nav a.active {
  color: var(--text);
  text-shadow: 0 0 10px var(--cyan-glow);
}

nav a:hover::before, nav a.active::before { opacity: 1; }

.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 255, 157, 0.08);
  border: 1px solid rgba(0, 255, 157, 0.3);
  border-radius: 2px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 1.5px;
}

.status-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ============ MAIN ============ */
main {
  max-width: 1480px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}

/* ============ HERO ============ */
.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 200px);
  position: relative;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 3px;
}

.hero-eyebrow .line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 92px;
  line-height: 0.92;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text);
  position: relative;
}

.hero-title .glitch {
  position: relative;
  display: inline-block;
}

.hero-title .glitch::before,
.hero-title .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.hero-title .glitch::before {
  color: var(--cyan);
  animation: glitch1 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.hero-title .glitch::after {
  color: var(--magenta);
  animation: glitch2 3s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
  0%, 92%, 100% { transform: translate(0); opacity: 0; }
  93% { transform: translate(-2px, 1px); opacity: 1; }
  94% { transform: translate(2px, -1px); opacity: 1; }
  95% { transform: translate(-1px, 2px); opacity: 1; }
  96% { transform: translate(0); opacity: 0; }
}

@keyframes glitch2 {
  0%, 92%, 100% { transform: translate(0); opacity: 0; }
  93% { transform: translate(2px, -1px); opacity: 1; }
  94% { transform: translate(-2px, 1px); opacity: 1; }
  95% { transform: translate(1px, -2px); opacity: 1; }
  96% { transform: translate(0); opacity: 0; }
}

.hero-title .accent {
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dim);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero-subtitle .role {
  color: var(--magenta);
  font-weight: 600;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}

.btn {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.btn-primary:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  box-shadow: 0 0 28px rgba(255, 0, 212, 0.7);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border-color: var(--cyan);
}

.btn-ghost:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.4);
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  border-left: 2px solid var(--cyan);
  padding-left: 16px;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--text);
  line-height: 1;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
}

.stat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  margin-top: 6px;
  text-transform: uppercase;
}

/* ============ HERO VISUAL (3D HOLO CARD) ============ */
.hero-visual {
  position: relative;
  height: 540px;
  perspective: 1200px;
}

.holo-card {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: rotate-card 14s linear infinite;
}

@keyframes rotate-card {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg); }
  50% { transform: rotateY(8deg) rotateX(-4deg); }
}

.holo-frame {
  position: absolute;
  inset: 20px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(255, 0, 212, 0.08));
  border: 1px solid var(--line-bright);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  overflow: hidden;
}

.holo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 240, 255, 0.12) 50%, transparent 100%);
  animation: scan 3.5s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(-100%); opacity: 0; }
  50% { transform: translateY(100%); opacity: 1; }
}

.holo-portrait {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  text-align: center;
}

.holo-portrait img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cyan);
  box-shadow:
    0 0 40px rgba(0, 240, 255, 0.6),
    inset 0 0 30px rgba(0, 240, 255, 0.2);
  margin-bottom: 24px;
  filter: contrast(1.1) saturate(1.2) hue-rotate(-5deg);
}

.holo-id {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.holo-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--text);
  text-shadow: 0 0 12px var(--magenta-glow);
}

.holo-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 12px;
  letter-spacing: 1.5px;
}

.holo-corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
}

.holo-corner.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.holo-corner.tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.holo-corner.bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.holo-corner.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

/* Floating chips */
.float-chip {
  position: absolute;
  background: rgba(15, 19, 32, 0.9);
  border: 1px solid var(--line-bright);
  padding: 10px 14px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 1px;
  z-index: 5;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.3);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  animation: float-chip 5s ease-in-out infinite;
}

.float-chip .label { color: var(--text-faint); }
.float-chip .val { color: var(--magenta); margin-left: 6px; }

.float-chip.c1 { top: 40px; right: -30px; animation-delay: 0s; }
.float-chip.c2 { top: 220px; left: -50px; animation-delay: -1.5s; }
.float-chip.c3 { bottom: 80px; right: -10px; animation-delay: -3s; }

@keyframes float-chip {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -10px); }
}

/* ============ SECTION HEADER ============ */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.section-head .left {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.section-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  color: var(--cyan);
  letter-spacing: 2px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 2px;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1;
}

.section-title em {
  font-style: normal;
  color: var(--magenta);
  text-shadow: 0 0 14px var(--magenta-glow);
}

.section-meta {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
}

.section-meta .blink {
  color: var(--cyan);
  animation: blink 1s steps(2) infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* ============ PROJECTS ============ */
.projects {
  margin-top: 100px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 20px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.project-card.featured {
  grid-row: span 2;
}

.project-card:hover {
  border-color: var(--cyan);
  box-shadow:
    0 0 30px rgba(0, 240, 255, 0.4),
    inset 0 0 20px rgba(0, 240, 255, 0.05);
  transform: translateY(-4px);
}

.project-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.15) saturate(0.9) brightness(0.7);
  transition: all 0.6s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.05);
  filter: contrast(1.2) saturate(1.3) brightness(0.85) hue-rotate(10deg);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(6, 7, 13, 0.2) 0%,
    rgba(6, 7, 13, 0.4) 50%,
    rgba(6, 7, 13, 0.95) 100%);
  z-index: 2;
}

.project-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-top {
  position: absolute;
  top: 20px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 1.5px;
}

.project-top .id {
  padding: 4px 8px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--line-bright);
}

.project-top .year {
  color: var(--text-dim);
}

.project-cat {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--magenta);
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.project-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.1;
  letter-spacing: 1px;
}

.project-card.featured .project-title { font-size: 38px; }

.project-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 14px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-card:hover .project-desc {
  opacity: 1;
  max-height: 80px;
}

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

.project-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  padding: 3px 8px;
  border: 1px solid var(--line);
  letter-spacing: 1px;
}

/* ============ SKILLS ============ */
.skills {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.skills-intro h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.skills-intro h2 em {
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 14px var(--cyan-glow);
}

.skills-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.skill-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.skill-item {
  border-left: 2px solid var(--line);
  padding: 12px 0 12px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.skill-item:hover {
  border-left-color: var(--cyan);
  background: rgba(0, 240, 255, 0.04);
}

.skill-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.skill-name {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.skill-level {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: var(--cyan);
}

.skill-bar {
  height: 4px;
  background: rgba(0, 240, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.skill-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 12px var(--cyan-glow);
}

.skill-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  bottom: -2px;
  width: 2px;
  background: var(--text);
  box-shadow: 0 0 8px var(--text);
}

/* ============ EXPERIENCE TIMELINE ============ */
.timeline-section {
  margin-top: 100px;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--cyan), var(--magenta), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--bg);
  border: 2px solid var(--cyan);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--cyan-glow);
}

.timeline-year {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--magenta);
  letter-spacing: 2px;
}

.timeline-place {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 1px;
}

.timeline-body h4 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.timeline-body .role {
  color: var(--cyan);
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.timeline-body p {
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 14px;
  max-width: 720px;
}

/* ============ MARQUEE ============ */
.marquee {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.05), rgba(255, 0, 212, 0.05));
  padding: 24px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 36px;
  letter-spacing: 4px;
  color: var(--text-faint);
  -webkit-text-stroke: 1px var(--line-bright);
}

.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .accent {
  color: var(--magenta);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 14px var(--magenta-glow);
}
.marquee-track .star { color: var(--cyan); -webkit-text-stroke: 0; }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ CONTACT ============ */
.contact {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.contact-content h2 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-content p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.contact-channels {
  display: grid;
  gap: 14px;
}

.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  background: var(--panel);
  backdrop-filter: blur(6px);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.channel:hover {
  border-color: var(--magenta);
  background: rgba(255, 0, 212, 0.05);
  transform: translateX(8px);
}

.channel-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-bright);
  color: var(--cyan);
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  font-weight: 700;
}

.channel-info .label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.channel-info .value {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 15px;
  color: var(--text);
  margin-top: 2px;
}

/* ============ FOOTER ============ */
footer {
  margin-top: 100px;
  border-top: 1px solid var(--line);
  padding: 40px;
}

.footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 1.5px;
}

.footer-inner .left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-coords {
  color: var(--text-dim);
}

.footer-coords .axis { color: var(--cyan); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero-title { font-size: 64px; }
  .hero-visual { height: 460px; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px 280px; }
  .project-card.featured { grid-row: span 1; grid-column: span 2; }
  .skills { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .contact-content h2 { font-size: 48px; }
}

@media (max-width: 768px) {
  header { padding: 14px 20px; }
  nav { display: none; }
  main { padding: 40px 20px 60px; }
  .hero-title { font-size: 44px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .section-title, .skills-intro h2 { font-size: 32px; }
  .project-grid { grid-template-columns: 1fr; grid-template-rows: 260px; }
  .project-card.featured { grid-column: span 1; }
  .timeline-item { grid-template-columns: 1fr; gap: 12px; }
  .marquee-track { font-size: 24px; }
  .contact-content h2 { font-size: 36px; }
}
