/* ============================================================
   AFFAN SHAIKH — STARK TECH v3.0
   Ultra Premium Tony Stark HUD Interface — NEXT LEVEL
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Share+Tech+Mono&family=Exo+2:wght@100;200;300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --gold:        #d4a843;
  --gold-light:  #f0c060;
  --gold-dim:    #8a6a20;
  --gold-glow:   rgba(212,168,67,0.55);
  --gold-glow2:  rgba(212,168,67,0.25);
  --arc:         #00cfff;
  --arc-dim:     rgba(0,207,255,0.15);
  --arc-glow:    rgba(0,207,255,0.5);
  --arc-glow2:   rgba(0,207,255,0.25);
  --red:         #c0392b;
  --red-bright:  #e74c3c;
  --dark:        #03060e;
  --dark2:       #070c18;
  --dark3:       #0b1223;
  --dark4:       #0f1830;
  /* Glass panels */
  --glass-bg:    rgba(2,4,8,0.85);
  --glass-bg2:   rgba(3,6,12,0.95);
  --glass-border: rgba(212,168,67,0.22);
  --glass-border-hover: rgba(212,168,67,0.5);
  --panel-bg:    rgba(2,4,8,0.85);
  --panel-border:rgba(212,168,67,0.22);
  --panel-hover: rgba(212,168,67,0.45);
  --text:        #ddd0b8;
  --text-dim:    #7a8fad;
  --text-mono:   #00cfff;
  --font-hud:    'Orbitron', sans-serif;
  --font-body:   'Exo 2', sans-serif;
  --font-mono:   'Share Tech Mono', monospace;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --t3:          all 0.3s cubic-bezier(0.4,0,0.2,1);
  --t5:          all 0.5s cubic-bezier(0.4,0,0.2,1);
  /* 3D shadow tokens */
  --shadow-gold: 0 8px 32px rgba(212,168,67,0.18), 0 2px 8px rgba(212,168,67,0.12);
  --shadow-arc:  0 8px 32px rgba(0,207,255,0.15), 0 2px 8px rgba(0,207,255,0.1);
  --shadow-glass: 0 25px 60px rgba(0,0,0,0.7), 0 8px 24px rgba(0,0,0,0.5);
  --shadow-hover: 0 40px 100px rgba(0,0,0,0.9), 0 0 60px rgba(212,168,67,0.15), 0 0 120px rgba(0,207,255,0.08);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  background-color: #03060e;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--arc)); border-radius: 2px; }

/* ===== CIRCUIT PATTERN OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.022;
  background-image:
    /* Diagonal lines */
    repeating-linear-gradient(
      45deg,
      rgba(212,168,67,0.8) 0px,
      rgba(212,168,67,0.8) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(0,207,255,0.6) 0px,
      rgba(0,207,255,0.6) 1px,
      transparent 1px,
      transparent 80px
    );
}

/* ===== CUSTOM CURSOR ===== */
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 12px var(--gold), 0 0 24px var(--gold-glow), 0 0 48px rgba(212,168,67,0.2);
  transition: width .15s, height .15s, background .15s;
  will-change: transform;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(212,168,67,0.6);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%,-50%);
  opacity: 0.7;
  transition: width .25s var(--ease), height .25s var(--ease), border-color .2s, opacity .2s;
  will-change: transform;
}
#cursor-ring::before {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(0,207,255,0.2);
  animation: cursorRadar 2s linear infinite;
  transform-origin: center;
}
@keyframes cursorRadar {
  0% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(0.8); opacity: 0; }
}
#cursor-cross-h, #cursor-cross-v {
  position: fixed;
  background: rgba(212,168,67,0.08);
  pointer-events: none;
  z-index: 999990;
  will-change: transform;
}
/* Base at top-left; JS moves via transform */
#cursor-cross-h { height: 1px; width: 100vw; top: 0; left: 0; transform: translateY(0); }
#cursor-cross-v { width: 1px; height: 100vh; left: 0; top: 0; transform: translateX(0); }

/* ===== CANVAS BG ===== */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== GRID OVERLAY ===== */
.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(212,168,67,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.grid-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,207,255,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(212,168,67,0.03) 0%, transparent 60%);
}

/* ===== VIGNETTE ===== */
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(3,6,14,0.75) 100%);
}

/* ===== AMBIENT GLOW ORBS ===== */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  will-change: transform;
}
.orb-arc {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,207,255,0.05) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: orbDrift 15s ease-in-out infinite reverse;
}
@keyframes orbDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.08); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}

/* ===== SCROLL PROGRESS ===== */
#scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--arc), var(--gold));
  z-index: 9999;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 10px var(--gold-glow), 0 0 20px var(--arc-glow);
  transition: transform .1s linear;
}

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,67,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-hex {
  width: 90px; height: 90px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.loader-hex::before {
  content: '';
  position: absolute; inset: 0;
  background: transparent;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 2px solid var(--gold);
  animation: hexSpin 2s linear infinite;
  box-shadow: 0 0 20px var(--gold-glow);
}
.loader-hex::after {
  content: '';
  position: absolute; inset: 10px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 1px solid rgba(0,207,255,0.3);
  animation: hexSpin 3s linear infinite reverse;
}
@keyframes hexSpin { 100% { transform: rotate(360deg); }}
.loader-inner {
  width: 45px; height: 45px;
  background: radial-gradient(circle, #fff 0%, var(--arc) 40%, transparent 70%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: arcPulse 1s ease-in-out infinite;
  box-shadow: 0 0 30px var(--arc);
}
@keyframes arcPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }
.loader-name {
  width: min(390px, 78vw);
  height: 72px;
  background: url('../Image/logo.png') center / contain no-repeat;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.28)) drop-shadow(0 0 26px rgba(0,207,255,0.24));
  animation: loaderLogoGlow 2.4s ease-in-out infinite;
}
@keyframes loaderLogoGlow {
  0%, 100% { opacity: 0.78; transform: translateY(0) scale(0.98); filter: drop-shadow(0 0 12px rgba(255,255,255,0.18)) drop-shadow(0 0 18px rgba(0,207,255,0.16)); }
  50% { opacity: 1; transform: translateY(-2px) scale(1); filter: drop-shadow(0 0 22px rgba(255,255,255,0.42)) drop-shadow(0 0 34px rgba(0,207,255,0.32)); }
}
.loader-progress-track {
  width: 300px; height: 2px;
  background: rgba(212,168,67,0.1);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.loader-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--arc), var(--gold));
  box-shadow: 0 0 10px var(--gold), 0 0 20px var(--arc-glow);
  animation: loadFill 1.8s ease forwards;
}
@keyframes loadFill { from{width:0} to{width:100%} }
.loader-status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--arc);
  letter-spacing: 4px;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50%{opacity:0} }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  padding: 12px 24px;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  box-sizing: border-box;
  animation: navFloatIn 0.9s ease both;
  transform: translateY(0) translateZ(0);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.3s ease,
              backdrop-filter 0.3s ease,
              box-shadow 0.3s ease;
}

#navbar::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  left: 55vw;
  height: 128px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 96% 18%, rgba(212,168,67,0.24) 0%, rgba(212,168,67,0.11) 28%, transparent 62%),
    radial-gradient(ellipse at 78% 78%, rgba(212,168,67,0.08) 0%, transparent 58%);
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.62) 58%, transparent 100%), linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.62) 58%, transparent 100%), linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
  animation: navGoldBreath 7s ease-in-out infinite;
}

#navbar::after {
  content: none;
  display: none;
}
@keyframes navFloatIn {
  from { opacity: 0; transform: translateY(-14px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes navGoldBreath {
  0%, 100% { opacity: 0.42; transform: translateX(0) scaleX(0.96); }
  50% { opacity: 0.78; transform: translateX(8px) scaleX(1); }
}

/* High-Visibility Holographic Boot */
@keyframes holoBoot {
  0% { opacity: 0; transform: scale(1.1) translateY(-10px); filter: contrast(3) hue-rotate(90deg); }
  50% { opacity: 1; transform: scale(0.98) translateY(2px); filter: contrast(1.5) hue-rotate(0deg); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: contrast(1); }
}

/* Clean logo area */
.nav-logo {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  opacity: 0;
  animation: holoBoot 1s ease-out forwards, navLogoGlow 5.8s ease-in-out 1.1s infinite;
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  min-width: 260px;
  max-width: 330px;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.nav-logo:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 16px rgba(0,207,255,0.24));
}

@keyframes navLogoGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(0,207,255,0)); }
  50% { filter: drop-shadow(0 0 10px rgba(0,207,255,0.18)); }
}

.nav-photo-wrap {
  position: relative;
  width: 52px; height: 52px;
  flex: 0 0 52px;
}
.nav-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px dashed rgba(0,207,255,0.35);
  border-radius: 50%;
  animation: navPhotoSpin 20s linear infinite;
}
.nav-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0,207,255,0.05);
  border-top-color: rgba(0,207,255,0.7);
  animation: navPhotoSpin 14s linear infinite reverse;
}
@keyframes navPhotoSpin { 100% { transform: rotate(360deg); } }
.nav-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--dark);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 14px rgba(0,207,255,0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.nav-logo:hover .nav-photo {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(0,207,255,0.34), 0 0 28px rgba(212,168,67,0.12);
}

.nav-logo-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-left: 2px solid var(--arc);
  padding-left: 13px;
  overflow: visible;
  isolation: isolate;
  padding-block: 7px;
}
.nav-logo-text-wrap::before,
.nav-logo-text-wrap::after {
  content: '';
  position: absolute;
}
.nav-logo-text-wrap::before {
  left: 15px;
  right: 6px;
  bottom: 1px;
  height: 1px;
  background: linear-gradient(90deg, var(--arc), rgba(255,255,255,0.7), transparent);
  animation: logoLineScan 3.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.nav-logo-text-wrap::after {
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--arc);
  box-shadow: 0 0 14px rgba(0,207,255,0.85);
  pointer-events: none;
}

.nav-logo-text {
  font-family: var(--font-primary), sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  white-space: nowrap;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.4), #fff);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textShimmer 10s linear infinite;
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.18)) drop-shadow(0 0 20px rgba(0,207,255,0.22));
  max-width: min(34vw, 330px);
}

img.nav-logo-text {
  height: 1.34rem !important;
  width: auto !important;
  display: block;
  position: relative;
  z-index: 1;
}

.nav-logo-text-wrap .nav-logo-text {
  animation: textShimmer 10s linear infinite, logoNeonFocus 4.5s ease-in-out infinite;
}
@keyframes textShimmer {
  to { background-position: 200% center; }
}
@keyframes logoLineScan {
  0%, 100% { opacity: 0.35; transform: scaleX(0.62); transform-origin: left; }
  50% { opacity: 1; transform: scaleX(1); transform-origin: left; }
}
@keyframes logoNeonFocus {
  0%, 100% { opacity: 0.86; filter: drop-shadow(0 0 10px rgba(255,255,255,0.12)) drop-shadow(0 0 16px rgba(0,207,255,0.14)); }
  50% { opacity: 1; filter: drop-shadow(0 0 18px rgba(255,255,255,0.34)) drop-shadow(0 0 30px rgba(0,207,255,0.35)); }
}

.nav-sys-status {
  display: none;
}
.nav-sys-status::before {
  content: '';
  display: inline-block;
  width: 3px; height: 3px;
  background: var(--arc);
  border-radius: 50%;
  animation: blink 2s infinite;
  box-shadow: 0 0 5px var(--arc);
}

/* Links */
.nav-links {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Drop-in cascading animation */
.nav-links li {
  opacity: 0;
  animation: navItemEnter 0.62s ease-out forwards;
}
.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }
.nav-links li:nth-child(5) { animation-delay: 0.5s; }
.nav-links li:nth-child(6) { animation-delay: 0.6s; }
.nav-links li:nth-child(7) { animation-delay: 0.7s; }
.nav-links li:nth-child(8) { animation-delay: 0.8s; }
.nav-links li:nth-child(9) { animation-delay: 0.9s; }
.nav-links li:nth-child(10) { animation-delay: 1.0s; }
.nav-links li:nth-child(11) { animation-delay: 1.1s; }
.nav-links li:nth-child(12) { animation-delay: 1.2s; }

.nav-links a {
  font-family: var(--font-mono, monospace);
  font-size: 11.5px;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding: 5px 0;
}

@keyframes navItemEnter {
  0% { opacity: 0; transform: translateY(-8px); filter: blur(5px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Hover & Active Effects */
.nav-links a:hover {
  color: #00f0ff;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}
.nav-links a.active {
  color: #f5c518;
  text-shadow: 0 0 8px rgba(245, 197, 24, 0.4);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #00f0ff;
  box-shadow: 0 0 8px #00f0ff;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active::after {
  width: 100%;
  background: #f5c518;
  box-shadow: 0 0 8px #f5c518;
}


.nav-edge { display: none; }

.nav-burger {
  grid-column: 3;
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 9999;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: #00f0ff;
  transition: all 0.3s ease;
}

/* ===== PAGE WRAPPER ===== */
.page {
  position: relative;
  z-index: 3;
  padding-top: 98px;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999998;
  pointer-events: none;
  opacity: 0;
  background: transparent;
  transform: none;
  transition: opacity 0.22s ease;
}
.page-transition span {
  position: absolute;
  left: -30%;
  top: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(0,207,255,0.12) 42%, rgba(255,255,255,0.2) 50%, rgba(212,168,67,0.12) 58%, transparent 100%);
  filter: blur(1px);
  transform: translateX(-40vw) skewX(-14deg);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-transition i {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,207,255,0.8), rgba(212,168,67,0.65), transparent);
  box-shadow: 0 0 16px rgba(0,207,255,0.32);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}
.page-transition.is-active {
  opacity: 1;
}
.page-transition.is-active span {
  transform: translateX(390vw) skewX(-14deg);
}
.page-transition.is-active i {
  transform: scaleX(1);
}
.page-ready .page {
  animation: pageArrive 0.48s ease both;
}
.page-leaving .page {
  animation: pageLeave 0.34s ease both;
}
@keyframes pageArrive {
  from { opacity: 0; transform: translateY(10px) scale(0.995); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes pageLeave {
  to { opacity: 0.2; transform: translateY(-8px) scale(0.997); filter: blur(3px); }
}

/* ===== SECTION ===== */
.section { padding: 90px 70px; max-width: 1440px; margin: 0 auto; }

/* ===== SECTION HEADER ===== */
.sh { margin-bottom: 60px; }
.sh-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--arc);
  letter-spacing: 5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sh-tag::before { content:''; width:25px; height:1px; background:var(--arc); box-shadow:0 0 8px var(--arc); }
.sh-tag::after  { content:''; width:15px; height:1px; background:rgba(0,207,255,0.4); }
.sh-title {
  font-family: var(--font-hud);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.05;
  background: linear-gradient(130deg, #fff 0%, var(--gold-light) 40%, var(--gold) 70%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
/* Holographic shimmer on section titles */
.sh-title::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: holoshimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes holoshimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.sh-line {
  width: 70px; height: 2px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--gold), var(--arc), transparent);
  box-shadow: 0 0 12px var(--gold-glow);
  position: relative;
}
.sh-line::after {
  content: '';
  position: absolute;
  right: 0; top: -1px;
  width: 6px; height: 4px;
  background: var(--arc);
  box-shadow: 0 0 8px var(--arc);
}

/* ===== GLASS PANEL (core) ===== */
.panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  position: relative;
  overflow: hidden;
  transition: var(--t5);
  box-shadow: var(--shadow-glass), inset 0 1px 0 rgba(255,255,255,0.03);
  transform-style: preserve-3d;
  transform: translateZ(0);
}
/* Glass inner sheen */
.panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%, rgba(0,207,255,0.02) 100%);
  pointer-events: none;
  z-index: 0;
}
/* Top sweep line */
.panel::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: auto;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}
.panel:hover::before { left: 0; }
.panel:hover {
  border-color: var(--glass-border-hover);
  box-shadow:
    var(--shadow-hover),
    inset 0 1px 0 rgba(212,168,67,0.08),
    0 0 0 1px rgba(212,168,67,0.08);
  transform: translateY(-4px) translateZ(0);
}
/* Corner marks */
.panel .c {
  position:absolute; width:16px; height:16px;
  border-color:var(--gold); border-style:solid;
  opacity:0.35; transition: opacity 0.3s, border-color 0.3s;
  z-index: 2;
}
.panel:hover .c { opacity:1; border-color: var(--gold-light); }
.panel .c.tl { top:8px; left:8px; border-width:1.5px 0 0 1.5px; }
.panel .c.tr { top:8px; right:8px; border-width:1.5px 1.5px 0 0; }
.panel .c.bl { bottom:8px; left:8px; border-width:0 0 1.5px 1.5px; }
.panel .c.br { bottom:8px; right:8px; border-width:0 1.5px 1.5px 0; }

/* ===== TILT + 3D SHADOW ===== */
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.3s ease;
}
.tilt:hover {
  box-shadow:
    0 40px 80px rgba(0,0,0,0.9),
    0 0 40px rgba(212,168,67,0.12),
    0 0 80px rgba(0,207,255,0.06);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-hud);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(212,168,67,0.04);
  backdrop-filter: blur(10px);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: var(--t3);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 0 20px rgba(212,168,67,0.1), inset 0 0 20px rgba(212,168,67,0.02);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateX(-105%);
  transition: transform 0.35s var(--ease);
  z-index: 0;
}
.btn span { position: relative; z-index: 1; }
.btn:hover {
  color: #0a0f1e;
  box-shadow: 0 0 40px rgba(212,168,67,0.4), 0 0 80px rgba(212,168,67,0.15);
  transform: translateY(-2px);
}
.btn:hover::before { transform: translateX(0); }
.btn-arc {
  border-color: var(--arc);
  color: var(--arc);
  background: rgba(0,207,255,0.04);
  box-shadow: 0 0 20px rgba(0,207,255,0.1), inset 0 0 20px rgba(0,207,255,0.02);
}
.btn-arc::before { background: linear-gradient(135deg, var(--arc), #00eeff); }
.btn-arc:hover {
  color: #0a0f1e;
  box-shadow: 0 0 40px rgba(0,207,255,0.4), 0 0 80px rgba(0,207,255,0.15);
}

/* ===== HUD BADGE ===== */
.hud-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--arc);
  background: rgba(0,207,255,0.06);
  border: 1px solid rgba(0,207,255,0.2);
  padding: 5px 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0,207,255,0.08);
}
.hud-badge::before { content:'●'; font-size:0.5rem; animation:blink 1.5s steps(1) infinite; }

/* ===== GLITCH ===== */
.glitch { position: relative; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  background: linear-gradient(130deg, #ffffff 0%, #f0c060 35%, #d4a843 60%, #a07020 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
}
.glitch::before {
  animation: g1 6s infinite;
  clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%);
}
.glitch::after {
  animation: g2 6s infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
}
@keyframes g1 {
  0%,86%,100% { transform:translate(0); opacity:0; filter:none; }
  87%          { transform:translate(-5px, 1px); opacity:1; filter: blur(0.5px); }
  89%          { transform:translate(4px,-1px);  opacity:1; }
  91%          { transform:translate(0);  opacity:0; }
}
@keyframes g2 {
  0%,83%,100% { transform:translate(0); opacity:0; filter:none; }
  84%          { transform:translate(5px,-1px);  opacity:1; }
  87%          { transform:translate(-4px,2px); opacity:1; }
  90%          { transform:translate(0); opacity:0; }
}

/* ===== SCAN LINE ===== */
.scan-wrap { position:relative; overflow:hidden; }
.scan-line {
  position:absolute; left:0; right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--arc-glow),transparent);
  animation: scan 5s linear infinite;
  pointer-events:none;
  z-index: 10;
}
@keyframes scan { 0%{top:-2px;opacity:0} 5%{opacity:1} 95%{opacity:.3} 100%{top:100%;opacity:0} }

/* ===== FOOTER ===== */
footer {
  background: rgba(3,6,14,0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--panel-border);
  padding: 35px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 3;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), var(--arc-glow), var(--gold-glow), transparent);
}
.footer-logo {
  font-family: var(--font-hud);
  font-size: 0.8rem;
  letter-spacing: 6px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -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-dim); letter-spacing: 2px; }
.footer-links { display:flex; gap:20px; }
.footer-links a {
  font-family:var(--font-mono); font-size:0.6rem; color:var(--text-dim);
  text-decoration:none; letter-spacing:2px; transition:color .2s;
}
.footer-links a:hover { color:var(--gold); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(35px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  #navbar { height: 76px; left: 18px; right: 18px; padding-inline: 14px; gap: 14px; }
  .nav-logo { gap: 12px; min-width: 230px; max-width: 280px; }
  .nav-photo-wrap,
  .nav-photo { width: 48px; height: 48px; }
  .nav-photo-wrap { flex-basis: 48px; }
  img.nav-logo-text { height: 1.12rem !important; }
  .nav-links { gap: 2px; }
  .nav-links a { font-size: 0.52rem; letter-spacing: 0.7px; padding: 6px 5px 8px; }
}
@media (max-width: 1100px) {
  .section { padding: 70px 40px; }
  #navbar { padding: 0 18px; height: 72px; }
  .page { padding-top: 94px; }
  .nav-logo { min-width: 0; max-width: 320px; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    transform: none;
    width: auto;
    white-space: normal;
    max-width: none;
    flex-direction: column;
    background: rgba(3,6,14,0.94);
    border-top: 1px solid rgba(0,207,255,0.18);
    border-bottom: 1px solid var(--panel-border);
    padding: 14px 0;
    gap: 0;
    backdrop-filter: blur(20px);
    clip-path: none;
    border-radius: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 30px; font-size: 0.72rem; letter-spacing: 2px; }
  .nav-burger { display: flex; position: static; margin-left: auto; }
  footer { padding: 30px 40px; }
}
@media (max-width: 980px) {
  #navbar { height: 70px; }
  .page { padding-top: 90px; }
  .nav-logo { min-width: 0; gap: 12px; }
  .nav-photo-wrap,
  .nav-photo { width: 42px; height: 42px; }
  .nav-photo-wrap { flex-basis: 42px; }
  img.nav-logo-text { height: 1rem !important; }
  .nav-sys-status { display: none; }
  .nav-links { top: calc(100% + 10px); }
  .nav-links a { font-size: 0.68rem; }
  .section { padding: 60px 24px; }
}

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media(max-width:900px){ .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-card { padding: 30px; margin-bottom: 24px; border-radius: 4px; }
.about-para { color: var(--text-dim); font-size: 1rem; line-height: 1.9; font-family: var(--font-body); }
.about-quote { margin-top: 20px; padding: 18px 24px; border-left: 2px solid var(--arc); background: rgba(0,207,255,0.05); color: var(--gold-light); font-style: italic; font-size: 1.05rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; align-items: center; }
.atag { background: rgba(212,168,67,0.08); border: 1px solid rgba(212,168,67,0.25); color: var(--gold-light); font-family: var(--font-mono); font-size: .65rem; padding: 8px 16px; letter-spacing: 1px; clip-path: polygon(8px 0%,100% 0%,100% 100%,0% 100%,0% 8px); transition: var(--t3); }
.atag-search { background: rgba(0,207,255,0.08); border-color: rgba(0,207,255,0.3); color: var(--arc); cursor: pointer; text-decoration: none; }
.atag-search:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 20px rgba(0,207,255,0.3); background: rgba(0,207,255,0.15); border-color: var(--arc); color: #fff; }

/* ABOUT TIMELINE - MEGA ANIMATED */
.about-timeline { display: flex; flex-direction: column; gap: 24px; padding-left: 10px; }
.tl-item { display: flex; align-items: stretch; gap: 24px; position: relative; padding: 0; border: none; }
.tl-item::before { content:''; position:absolute; left:0; top:20px; bottom:-45px; width:2px; background:rgba(212,168,67,0.15); transition: background 0.3s; }
.tl-item:hover::before { background:rgba(212,168,67,0.4); box-shadow: 0 0 10px var(--gold-glow); }
.tl-item:last-child::before { display: none; }
.tl-dot { position: relative; left: -4px; top: 18px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 15px var(--gold-glow); z-index: 2; margin-top:0; flex-shrink: 0; }
.pulse-dot::after { content:''; position:absolute; inset:-8px; border-radius:50%; border:1px solid var(--gold); animation:dotPulse 2s linear infinite; }
@keyframes dotPulse { 0%{transform:scale(0.5);opacity:1} 100%{transform:scale(2.5);opacity:0} }
.tl-content { padding: 20px 26px; flex: 1; border-radius: 4px; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); cursor: default; }
.tl-content:hover { transform: translateX(10px) scale(1.02); border-color: var(--gold-light); box-shadow: var(--shadow-hover); }
.tl-yr { margin-top: 0; font-size: 1.1rem; text-shadow: 0 0 10px var(--gold-glow); margin-bottom: 6px; color: var(--gold); font-family: var(--font-hud); font-weight: 700; min-width: 42px; }
.tl-txt { color: var(--text-dim); font-size: .88rem; line-height: 1.5; }

/* ===== SKILL BADGE ===== */
.sk-badge { font-family: var(--font-mono); font-size: .55rem; letter-spacing: 2px; color: var(--arc); border: 1px solid rgba(0,207,255,0.3); padding: 2px 8px; display: inline-block; margin: 4px 0 8px; }

/* ===== PROJECTS ===== */
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
@media(max-width:1100px){ .proj-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:640px){ .proj-grid { grid-template-columns: 1fr; } }
.proj-card { padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; position: relative; min-height: 260px; }
.proj-type { font-family: var(--font-mono); font-size: .58rem; color: var(--text-dim); letter-spacing: 2px; }
.proj-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold-glow); }
.proj-name { font-family: var(--font-hud); font-size: 1rem; font-weight: 800; color: var(--gold); letter-spacing: 2px; }
.proj-desc { color: var(--text-dim); font-size: .83rem; line-height: 1.65; flex: 1; }
.proj-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ptag { background: rgba(0,207,255,0.08); border: 1px solid rgba(0,207,255,0.2); color: var(--arc); font-family: var(--font-mono); font-size: .6rem; padding: 3px 10px; }
.proj-meta { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: .62rem; color: var(--text-dim); }
.proj-live { color: #2ecc71; }
.proj-link { font-family: var(--font-hud); font-size: .65rem; letter-spacing: 2px; color: var(--gold); text-decoration: none; border: 1px solid rgba(212,168,67,0.3); padding: 6px 16px; transition: all 0.3s; }
.proj-link:hover { background: rgba(212,168,67,0.12); border-color: var(--gold); }

/* ===== SERVICES ===== */
.svc-price-bar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 20px 30px; margin-bottom: 36px; }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 18px; }
.svc-card { padding: 24px 18px; text-align: center; cursor: default; }
.svc-ico { font-size: 1.8rem; margin-bottom: 10px; }
.svc-name { font-family: var(--font-body); font-size: .82rem; color: var(--text-dim); font-weight: 500; }
.svc-card:hover .svc-name { color: var(--gold); }

/* ===== ACHIEVEMENTS ===== */
.ach-stats { display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; }
@media(max-width:1100px){ .ach-stats { grid-template-columns: repeat(3,1fr); } }
@media(max-width:640px){ .ach-stats { grid-template-columns: repeat(2,1fr); } }
.ach-stat { padding: 28px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ach-n { font-family: var(--font-hud); font-size: 2rem; font-weight: 900; color: var(--gold); text-shadow: 0 0 30px var(--gold-glow); }
.ach-l { font-family: var(--font-mono); font-size: .6rem; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; }
.awards-list { display: flex; flex-direction: column; gap: 12px; }
.award-item { display: flex; align-items: center; gap: 20px; padding: 16px 24px; }
.award-yr { font-family: var(--font-hud); font-size: .8rem; font-weight: 800; color: var(--gold); min-width: 44px; }
.award-txt { color: var(--text-dim); font-size: .9rem; }

/* ===== HOBBIES ===== */
.hobby-quote { position: relative; }
.hobby-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media(max-width:900px){ .hobby-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .hobby-grid { grid-template-columns: 1fr 1fr; } }
.hobby-card { padding: 32px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hobby-ico { margin-bottom: 8px; display: flex; align-items: center; justify-content: center; }
.hobby-name { font-family: var(--font-hud); font-size: 1.1rem; font-weight: 700; color: var(--gold-light); margin-bottom: 4px; letter-spacing: 1px; text-transform: uppercase; }
.hobby-sub { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-dim); letter-spacing: 1px; line-height: 1.5; }

/* ===== SOCIAL MEDIA ===== */
.social-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media(max-width:900px){ .social-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .social-grid { grid-template-columns: 1fr; } }
.social-card { padding: 28px 20px; text-align: center; cursor: pointer; }
.social-ico { font-size: 2rem; margin-bottom: 10px; }
.social-platform { font-family: var(--font-hud); font-size: .9rem; font-weight: 700; color: var(--gold); }
.social-handle { font-family: var(--font-mono); font-size: .6rem; color: var(--text-dim); margin: 4px 0 10px; }
.social-count { font-family: var(--font-hud); font-size: 1.4rem; font-weight: 900; color: var(--arc); text-shadow: 0 0 20px rgba(0,207,255,0.5); }

/* ===== CELEBRITY PANEL ===== */
.celebrity-teaser { padding: 60px 40px; text-align: center; max-width: 800px; margin: 0 auto; }
.celeb-mystery { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 10px; }
.cmyst { font-family: var(--font-hud); font-size: 2rem; color: var(--arc); opacity: 0.5; letter-spacing: 16px; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:0.3} 50%{opacity:0.8} }

/* ============================================================
   MINIMAL FOOTER SYSTEM
   ============================================================ */

/* FOOTER WIDTH FIX: Override any container styles */
footer, .stark-footer {
  width: 100%;
  box-sizing: border-box;
  margin-top: 0;
  padding-top: 0;
  position: relative;
  z-index: 3;
  background: #050b12; /* Matches dark theme */
  /* Remove flex-direction column from old footer selector to allow 100% width and correct layout */
  display: block; 
}
footer::before { display: none; /* remove old top border line */ }

/* ── FREELANCE STATUS BAR ── */
.freelance-bar {
  width: 100%;
  margin-top: 0; /* Attach directly to top */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 60px;
  background: rgba(0,240,255,0.06);
  border-top: 1px solid rgba(0,240,255,0.2);
  border-bottom: 1px solid rgba(0,240,255,0.12);
  flex-wrap: wrap;
}

.fb-pulse {
  width: 6px; height: 6px;
  background: #00f0ff;
  border-radius: 50%;
  box-shadow: 0 0 6px #00f0ff, 0 0 12px rgba(0,240,255,0.4);
  animation: sfPulse 2s ease-in-out infinite;
}

.fb-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: #00f0ff;
  text-transform: uppercase;
}

.fb-divider {
  color: rgba(255,255,255,0.15);
  font-size: 12px;
}

.fb-socials {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.fb-hire-btn {
  display: inline-block;
  padding: 7px 22px;
  background: transparent;
  border: 1px solid #00f0ff;
  color: #00f0ff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(0,240,255,0.2);
  transition: all 0.3s ease;
}
.fb-hire-btn:hover {
  background: rgba(0,240,255,0.1);
  box-shadow: 0 0 20px rgba(0,240,255,0.4);
  color: #00f0ff;
}

/* ── MAIN FOOTER GRID ── */
.sf-main-grid {
  width: 100%;
  box-sizing: border-box;
  padding: 52px 60px 44px 60px;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* Column 1 — Brand */
.sf-brand-id {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: rgba(0,240,255,0.45);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.sf-brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #f5c518;
  letter-spacing: 3px;
  margin: 0 0 8px 0;
  text-shadow: 0 0 24px rgba(245,197,24,0.45);
}

.sf-brand-role {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: rgba(0,240,255,0.5);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.sf-brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  max-width: 340px;
  margin: 0 0 24px 0;
}

.sf-terminal-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: #00f0ff;
  border: 1px solid rgba(0,240,255,0.25);
  padding: 4px 12px;
  margin-bottom: 22px;
}

.sf-chip-pulse {
  width: 6px; height: 6px;
  background: #00f0ff;
  border-radius: 50%;
  animation: sfPulse 2s ease-in-out infinite;
}

.sf-social-icons {
  display: flex;
  gap: 10px;
}

.sf-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(0,240,255,0.2);
  background: transparent;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sf-social-icons a svg {
  width: 16px; height: 16px;
  fill: rgba(255,255,255,0.45);
  transition: all 0.3s ease;
}

.sf-social-icons a:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 12px rgba(0,240,255,0.3);
  transform: scale(1.05);
}
.sf-social-icons a:hover svg {
  fill: #00f0ff;
}

/* Headers */
.sf-header {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 3.5px;
  color: #00f0ff;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,240,255,0.18);
  margin: 0 0 20px 0;
}

/* Link Lists */
.sf-links-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.sf-links-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: all 0.25s ease;
}

.sf-arrow {
  color: rgba(0,240,255,0.3);
  font-size: 12px;
  transition: color 0.25s ease;
}

.sf-links-list a:hover { color: #fff; }
.sf-links-list a:hover .sf-arrow { color: #00f0ff; }

/* Projects List */
.sf-proj-list a {
  justify-content: space-between;
}
.sf-proj-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sf-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  padding: 2px 7px;
  background: rgba(0,240,255,0.07);
  border: 1px solid rgba(0,240,255,0.22);
  color: rgba(0,240,255,0.55);
  transition: all 0.25s ease;
}
.sf-proj-list a:hover .sf-badge {
  border-color: #00f0ff;
  color: #00f0ff;
}

/* Connect List */
.sf-connect-list { gap: 12px; }
.sf-connect-list a { gap: 8px; }
.sf-connect-list a svg {
  width: 15px; height: 15px;
  fill: rgba(0,240,255,0.45);
  transition: fill 0.25s ease;
}
.sf-connect-list a:hover svg { fill: #00f0ff; }
.sf-connect-list a:hover { color: #00f0ff; }

/* ── DIVIDER ── */
.sf-grad-divider {
  width: 100%;
  height: 1px;
  margin: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,240,255,0.15) 20%,
    rgba(0,240,255,0.35) 50%,
    rgba(245,197,24,0.2) 65%,
    rgba(0,240,255,0.15) 80%,
    transparent 100%
  );
}

/* ── BOTTOM BAR ── */
.sf-bot-bar {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
}

.sf-copy {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 1px;
}
.sf-hl { color: rgba(0,240,255,0.45); }

.sf-sys-bot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: rgba(0,240,255,0.4);
  letter-spacing: 1.5px;
}

.sf-sys-pulse {
  box-shadow: 0 0 4px #00f0ff;
}

/* ── RESPONSIVE ── */
@media(max-width: 1200px) {
  .sf-main-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sf-col-brand {
    grid-column: 1 / -1; /* Spans full width on top */
  }
}

@media(max-width: 768px) {
  .sf-main-grid {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 40px;
  }
  .freelance-bar {
    padding: 12px 24px;
    justify-content: center;
    gap: 12px;
  }
  .sf-bot-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 24px;
  }
  .sf-proj-list a {
    flex-wrap: wrap;
    gap: 4px;
  }
}

/* ============================================================
   MOBILE RESPONSIVE (< 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  #navbar {
    grid-template-columns: 280px 1fr;
    justify-content: space-between;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 76px;
    right: 0;
    width: 250px;
    height: calc(100vh - 76px);
    background: #0d0d0d;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
    gap: 0;
    border-left: 1px solid rgba(0, 240, 255, 0.15);
    box-shadow: -5px 0 20px rgba(0,0,0,0.8);
  }
  .nav-links.mobile-active {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    opacity: 1;
    animation: none;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a:hover {
    background: rgba(0, 240, 255, 0.05);
  }
  .nav-burger {
    display: flex;
  }
}

.nav-hidden {
  transform: translateY(-110%) translateZ(0) !important;
}

.nav-scrolled {
  background-color: rgba(5, 11, 18, 0.96) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow: 0 1px 0 rgba(0, 240, 255, 0.15),
              0 6px 28px rgba(0, 240, 255, 0.07) !important;
}

/* ============================================================
   STARK HUD ICON SYSTEM — v4.0
   ============================================================ */
.icon-wrap {
  width: var(--sz, 52px);
  height: var(--sz, 52px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--t3);
  margin: 0 auto;
}

.icon-wrap svg {
  width: 65%;
  height: 65%;
  overflow: visible;
}

.icon-wrap .hud-path {
  fill: none;
  stroke: var(--arc);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px var(--arc-glow));
  transition: var(--t3);
}

.icon-wrap .hud-accent {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  opacity: 0.6;
  filter: drop-shadow(0 0 2px var(--gold-glow2));
  transition: var(--t3);
}

/* Container Brackets */
.icon-wrap::before, .icon-wrap::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid var(--arc-glow2);
  transition: var(--t5);
  pointer-events: none;
}
.icon-wrap::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.icon-wrap::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.icon-wrap:hover::before, .icon-wrap:hover::after {
  width: 100%; height: 100%;
  border-color: var(--arc);
  box-shadow: 0 0 10px var(--arc-glow);
}

.icon-wrap:hover .hud-path {
  stroke: #fff;
  filter: drop-shadow(0 0 8px var(--arc));
}

.icon-wrap:hover .hud-accent {
  opacity: 1;
  stroke: var(--gold-light);
}

/* Scanline Animation */
@keyframes scanline {
  0% { transform: translateY(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

.icon-wrap .scan-line {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--arc), transparent);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}

.icon-wrap:hover .scan-line {
  animation: scanline 1.5s linear infinite;
}

/* Section Specific Overrides */
.strip-ico .icon-wrap { --sz: 32px; margin: 0; }
.skill-icon .icon-wrap { --sz: 64px; }
.svc-ico .icon-wrap { --sz: 56px; }
.hb-icon-wrap .icon-wrap { --sz: 48px; }
.timeline-icon .icon-wrap { --sz: 40px; }
.skill-icon { background: none !important; border: none !important; } /* Remove legacy backgrounds */

/* ===== NEW AWARDS GRID ===== */
.awards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 30px; }
.award-card { padding: 30px; display: flex; flex-direction: column; align-items: flex-start; position: relative; gap: 16px; }
.award-header { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-bottom: 4px; }
.award-ico { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: rgba(0,207,255,0.05); border: 1px solid rgba(0,207,255,0.2); border-radius: 4px; color: var(--arc); margin-bottom: 8px; }
.award-ico svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.award-ico.gold { border-color: rgba(240,192,96,0.2); background: rgba(240,192,96,0.05); color: var(--gold); }
.award-ico.purple { border-color: rgba(155,89,182,0.2); background: rgba(155,89,182,0.05); color: #9b59b6; }
.award-yr-badge { font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 2px; color: var(--gold); font-weight: bold; background: rgba(240,192,96,0.1); padding: 6px 12px; border-radius: 4px; }
.award-title { font-family: var(--font-hud); font-size: 1.15rem; color: var(--text); font-weight: 700; line-height: 1.4; letter-spacing: 1px; }
.award-desc { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }
