/* ══════════════════════════════════════════════════
   PHROX DEV — Production CSS
   Theme: Dark Cyberpunk / Fire & Neon Cyan
   ══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --bg-base: #0a0505;
  --bg-surface: #0d0808;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.05);
  --border-glow-cyan: rgba(0, 243, 255, 0.25);
  --border-glow-fire: rgba(255, 69, 0, 0.3);

  --fire-orange: #ff4500;
  --fire-red: #ff3300;
  --fire-yellow: #ffaa00;
  --cyan: #00f3ff;
  --cyan-dim: rgba(0, 243, 255, 0.15);

  --text-primary: #f0f0f0;
  --text-secondary: #9a9a9a;
  --text-muted: #5a5a5a;

  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --nav-h: 72px;
  --section-pad: clamp(80px, 10vw, 140px);
  --radius: 12px;
  --radius-sm: 6px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(0, 243, 255, 0.2);
  color: var(--cyan);
}

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

/* ── THREE.JS CANVAS ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

/* ── UTILITY ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.glass-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.accent-cyan { color: var(--cyan); }
.accent-fire { color: var(--fire-orange); }
.highlight-fire {
  color: var(--fire-orange);
  text-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--fire-orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

/* ── SCROLL REVEAL STATES ── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="up"]    { transform: translateY(50px); }
[data-reveal="left"]  { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 5, 5, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,69,0,0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flame-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255,69,0,0.7));
  animation: flamePulse 2.4s ease-in-out infinite;
}

@keyframes flamePulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(255,69,0,0.7)); transform: scaleY(1); }
  50% { filter: drop-shadow(0 0 16px rgba(255,170,0,0.9)); transform: scaleY(1.05); }
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, #ff4500, #ffaa00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  padding-bottom: 60px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 8vh, 100px) clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ── Avatar ── */
.hero-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.avatar-fire-ring {
  position: relative;
  width: clamp(260px, 35vw, 400px);
  height: clamp(260px, 35vw, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fire-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed transparent;
  animation: orbitSpin linear infinite;
}

.fire-orbit-1 {
  inset: -20px;
  border-color: rgba(255, 69, 0, 0.2);
  animation-duration: 12s;
}

.fire-orbit-2 {
  inset: -10px;
  border-color: rgba(255, 170, 0, 0.15);
  animation-duration: 8s;
  animation-direction: reverse;
}

.fire-orbit-3 {
  inset: -35px;
  border-color: rgba(0, 243, 255, 0.1);
  animation-duration: 20s;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.avatar-frame {
  position: relative;
  width: clamp(220px, 30vw, 340px);
  height: clamp(220px, 30vw, 340px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(255, 69, 0, 0.3),
    0 0 80px rgba(255, 69, 0, 0.1),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 69, 0, 0.3);
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.1) contrast(1.05);
}

.avatar-scan-line {
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,243,255,0.8), transparent);
  animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
  0%   { top: -2px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.avatar-corner {
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--cyan);
  border-style: solid;
  border-width: 0;
}
.avatar-corner.tl { top: 8px; left: 8px; border-top-width: 2px; border-left-width: 2px; }
.avatar-corner.tr { top: 8px; right: 8px; border-top-width: 2px; border-right-width: 2px; }
.avatar-corner.bl { bottom: 8px; left: 8px; border-bottom-width: 2px; border-left-width: 2px; }
.avatar-corner.br { bottom: 8px; right: 8px; border-bottom-width: 2px; border-right-width: 2px; }

.fire-particle-field {
  position: absolute;
  inset: -30px;
  pointer-events: none;
  z-index: 2;
}

.fire-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleRise linear infinite;
}

@keyframes particleRise {
  0%   { transform: translateY(0) scale(1); opacity: 0.8; }
  100% { transform: translateY(-120px) scale(0); opacity: 0; }
}

.avatar-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--border-glow-cyan);
  background: rgba(0,243,255,0.05);
  padding: 6px 18px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* ── Hero Text ── */
.hero-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fire-orange);
  letter-spacing: 0.2em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
}

.title-line { display: block; }

.title-line.accent-cyan {
  background: linear-gradient(90deg, var(--cyan), #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(0,243,255,0.5));
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 1.4vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 460px;
}

/* ── CTA Buttons ── */
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.btn {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 20px rgba(0,243,255,0.3), 0 4px 20px rgba(0,0,0,0.4);
}

.btn-primary svg {
  width: 16px; height: 16px;
  transition: transform var(--transition);
}

.btn-primary:hover {
  background: #00ddee;
  box-shadow: 0 0 40px rgba(0,243,255,0.5), 0 8px 30px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--fire-orange);
  color: var(--fire-orange);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.2);
  transform: translateY(-2px);
}

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}

.stat span:not(.stat-num) {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--fire-orange);
  line-height: 1;
}

.stat p {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  z-index: 2;
}

.scroll-mouse {
  width: 22px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding: 5px;
}

.scroll-dot {
  width: 4px; height: 8px;
  background: var(--cyan);
  border-radius: 100px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════
   BIO & SKILLS SECTION
   ══════════════════════════════════════════════════ */
.bio-section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}

.bio-text {
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bio-text p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 1.05rem;
}

.bio-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border: 1px solid var(--border-glow-fire);
  color: var(--fire-orange);
  background: rgba(255, 69, 0, 0.05);
  border-radius: 100px;
  text-transform: uppercase;
}

/* ── Skills Grid ── */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.skill-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: clamp(18px, 2.5vw, 28px) 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  cursor: default;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.skill-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,243,255,0.08), transparent 70%);
  transition: opacity var(--transition);
}

.skill-badge:hover::before { opacity: 1; }
.skill-badge:hover {
  border-color: var(--border-glow-cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,243,255,0.08);
}

.skill-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-icon svg { width: 100%; height: 100%; }

.skill-badge span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════════════ */
.services-section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,69,0,0.3), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.service-card {
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  filter: blur(40px);
}

.card-glow-cyan { background: radial-gradient(circle, rgba(0,243,255,0.3), transparent 70%); }
.card-glow-fire { background: radial-gradient(circle, rgba(255,69,0,0.3), transparent 70%); }

.service-card:hover .card-glow { opacity: 1; }

.service-card:hover {
  transform: translateY(-8px);
}

.service-card:not(.service-card-featured):hover {
  border-color: var(--border-glow-cyan);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,243,255,0.06);
}

.service-card-featured {
  border-color: rgba(255, 69, 0, 0.2);
  background: rgba(255, 69, 0, 0.03);
}

.service-card-featured:hover {
  border-color: var(--border-glow-fire);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(255,69,0,0.08);
}

.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon { width: 32px; height: 32px; }

.card-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

.service-card-featured .card-number { color: var(--fire-orange); opacity: 0.7; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.card-arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  align-self: flex-start;
  margin-top: 4px;
}

.card-arrow svg { width: 16px; height: 16px; }

.service-card:hover .card-arrow {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: rotate(45deg);
}

.service-card-featured:hover .card-arrow {
  border-color: var(--fire-orange);
  color: var(--fire-orange);
}

/* ══════════════════════════════════════════════════
   CONTACT / FOOTER
   ══════════════════════════════════════════════════ */
.contact-section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0 clamp(40px, 6vw, 80px);
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,243,255,0.2), transparent);
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 60px);
}

.contact-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0,243,255,0.04), transparent 70%);
  pointer-events: none;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: clamp(32px, 5vw, 56px);
}

/* ── Social Links ── */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  transition: opacity var(--transition);
  opacity: 0;
}

.social-x::before    { background: linear-gradient(to bottom, #fff, #aaa); }
.social-gh::before   { background: linear-gradient(to bottom, var(--fire-orange), var(--fire-red)); }

.social-link:hover {
  transform: translateX(6px);
}

.social-link:hover::before { opacity: 1; }

.social-x:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.social-gh:hover {
  border-color: var(--border-glow-fire);
  box-shadow: 0 4px 24px rgba(255,69,0,0.1);
}

.social-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon-wrap svg {
  width: 20px; height: 20px;
  color: var(--text-primary);
}

.social-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
  gap: 2px;
}

.social-platform {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.social-handle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.social-arrow {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}

.social-link:hover .social-arrow {
  color: var(--text-primary);
  transform: translate(2px, -2px);
}

/* ── Footer Bottom ── */
.contact-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: clamp(32px, 5vw, 56px) 0 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, #ff4500, #ffaa00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.footer-status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #4ade80;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 6px #4ade80; }
  50% { box-shadow: 0 0 16px #4ade80, 0 0 30px rgba(74,222,128,0.3); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-avatar-wrap {
    order: -1;
  }

  .hero-text-wrap {
    align-items: center;
  }

  .hero-desc { max-width: 100%; }
  .hero-cta-group { justify-content: center; }
  .hero-stats { justify-content: center; }

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

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,5,5,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-link {
    display: block;
    padding: 16px clamp(20px, 5vw, 40px);
    font-size: 0.7rem;
  }

  .nav-link::after { display: none; }

  .hamburger { display: flex; }

  .skills-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 16px; }
  .social-links { padding: 0 10px; }
}

/* ══════════════════════════════════════════════════
   REDUCE MOTION
   ══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
