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

body {
  background: #05050a;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #f5f5f5;
  overflow-x: hidden;
}

/* Hide scrollbar but allow scrolling */

html {
  scrollbar-width: none;
  /* Firefox */
}

html::-webkit-scrollbar {
  display: none;
  /* Chrome, Edge, Safari */
}

canvas#bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* GLASS SYSTEM -------------------------------------------------- */

.glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 40px rgba(0, 245, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0% 0%, rgba(0, 245, 255, 0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 42, 42, 0.16), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

.glass-inner {
  position: relative;
  z-index: 1;
}

/* NAVBAR -------------------------------------------------------- */

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 86%);
  padding: 14px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 200;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.navbar.nav-hidden {
  transform: translate3d(-50%, -120%, 0);
  opacity: 0;
}

.navbar.god-card {
  transition: transform 0.5s ease, opacity 0.4s ease, background 0.6s ease, border-color 0.6s ease, box-shadow 0.6s ease !important;
  border-radius: 999px !important;
}

.navbar.god-card::before {
  border-radius: 999px !important;
}

.navbar.god-card::after {
  border-radius: 999px !important;
}

.navbar.glass {
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 30px rgba(0, 245, 255, 0.24);
}

.navbar-logo {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.26em;
  font-size: 0.86rem;
  text-transform: uppercase;
  color: #00F5FF;
}

.navbar-tag {
  font-size: 0.7rem;
  opacity: 0.7;
}

.navbar ul {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding-bottom: 4px;
  color: rgba(245, 245, 245, 0.8);
}

.navbar li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #00F5FF, #FF2A2A);
  transition: width 0.28s ease;
}

.navbar li:hover::after,
.navbar li.is-active::after {
  width: 100%;
}

.navbar li.is-active {
  color: #ffffff;
}

/* SECTIONS & LAYOUT --------------------------------------------- */

main {
  position: relative;
  z-index: 1;
}

section {
  min-height: auto;
  padding: 110px min(7vw, 90px) 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  position: relative;
}

section::before {
  content: attr(data-label);
  position: absolute;
  top: 50px;
  left: min(7vw, 90px);
  right: min(7vw, 90px);
  margin: 0 auto;
  max-width: 1200px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #00F5FF;
  opacity: 0.6;
  text-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
  pointer-events: none;
}

.section-heading {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
}

.section-sub {
  max-width: 540px;
  color: rgba(250, 250, 250, 0.68);
  font-size: 0.98rem;
}

.section-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.section-row--center {
  align-items: center;
}

/* HERO ---------------------------------------------------------- */

.hero {
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  column-gap: 56px;
  row-gap: 32px;
  align-items: center;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.hero-card {
  padding: 64px 56px 56px;
  text-align: left;
  min-width: 0;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 3.6rem;
  line-height: 1.03;
  margin-bottom: 14px;
}

.hero-gradient {
  background: linear-gradient(120deg, #ffffff, #00F5FF 30%, #FF2A2A 60%, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.02rem;
  color: rgba(245, 245, 245, 0.7);
  max-width: 440px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 26px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
}

.hero-orbit {
  position: relative;
  width: 100%;
  min-height: 500px;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit-scene {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  /* Atom scene is flat relative to camera */
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.orbit-center {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100px;
  height: 100px;
  /* GSAP handles counter-rotation */
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
}

.core-layer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.core-base {
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #00F5FF 25%, #001a26 70%, #000000 100%);
  box-shadow:
    inset -15px -15px 25px rgba(0, 0, 0, 0.9),
    inset 10px 10px 20px rgba(255, 255, 255, 0.6),
    0 0 50px rgba(0, 245, 255, 0.6),
    0 0 100px rgba(0, 245, 255, 0.2);
}

.core-energy {
  background: conic-gradient(from 0deg, transparent 0%, rgba(0, 245, 255, 0.6) 15%, transparent 40%, rgba(0, 245, 255, 0.8) 65%, transparent 90%);
  mix-blend-mode: screen;
  filter: blur(4px);
  animation: spin-core 3s linear infinite;
}

.core-pulse {
  border: 1.5px solid rgba(0, 245, 255, 0.6);
  box-shadow: inset 0 0 10px rgba(0, 245, 255, 0.4), 0 0 15px rgba(0, 245, 255, 0.4);
  animation: pulse-ring 2s cubic-bezier(0.1, 0, 0.9, 1) infinite;
}

@keyframes spin-core {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.orbit-center-glow {
  position: absolute;
  inset: -120%;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.3) 0%, transparent 60%);
  border-radius: 50%;
  animation: pulse-glow 3s infinite alternate ease-in-out;
  pointer-events: none;
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

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

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  /* GSAP will control tilt */
}

.ring-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 245, 255, 0.6);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2), inset 0 0 10px rgba(0, 245, 255, 0.1);
  transform-style: preserve-3d;
}

.ring-1,
.ring-2,
.ring-3 {
  width: 440px;
  height: 440px;
}

.orbit-item {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 14px;
  background: linear-gradient(135deg, rgba(20, 20, 28, 0.85), rgba(5, 5, 12, 0.95));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 245, 255, 0.15);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  /* Use drop-shadow filter so the shadow follows the clipped geometry! */
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 10px rgba(0, 245, 255, 0.2));
  transform-style: preserve-3d;
  color: #fff;
}

/* Glowing tech border accents */
.orbit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  width: 40px;
  height: 2px;
  background: #00F5FF;
  box-shadow: 0 0 15px #00F5FF, 0 0 5px #00F5FF;
}

.orbit-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 14px;
  width: 40px;
  height: 2px;
  background: #00F5FF;
  box-shadow: 0 0 15px #00F5FF, 0 0 5px #00F5FF;
}

.hud-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.25);
  box-shadow: inset 0 0 12px rgba(0, 245, 255, 0.15);
  flex-shrink: 0;
}

.hud-icon svg {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 6px rgba(0, 245, 255, 0.8));
}

.hud-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hud-val {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.hud-unit {
  font-size: 0.75rem;
  font-weight: 600;
  color: #00F5FF;
  margin-left: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hud-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-top: 5px;
}

.orbit-tagline {
  position: absolute;
  bottom: -50px;
  right: -80px;
  width: 250px;
  background: linear-gradient(135deg, rgba(15, 15, 20, 0.9), rgba(5, 5, 8, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 245, 255, 0.2);
  padding: 16px 20px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.tagline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.tagline-sys {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #00F5FF;
  font-weight: 600;
}

.blinking-dot {
  width: 6px;
  height: 6px;
  background: #00F5FF;
  border-radius: 50%;
  box-shadow: 0 0 8px #00F5FF;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.tagline-id {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.tagline-body {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.tagline-highlight {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: inline-block;
  margin-top: 2px;
}

.tagline-decals {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.decal-block {
  width: 28px;
  height: 3px;
  background: #00F5FF;
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.6);
}

.decal-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

/* BUTTONS & CTAS ------------------------------------------------ */

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    box-shadow 0.18s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, #FF2A2A, #FF2A7A);
  box-shadow:
    0 0 40px rgba(255, 42, 42, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.16);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 40px rgba(255, 42, 42, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn span.accent {
  color: #00F5FF;
}

/* ABOUT --------------------------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.about-body {
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.98rem;
}

.about-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  font-size: 0.86rem;
  opacity: 0.8;
}

.about-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.about-meta {
  padding: 30px 26px;
  font-size: 0.86rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-meta-row {
  display: flex;
  justify-content: space-between;
  opacity: 0.85;
}

.about-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

.about-meta-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.meta-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cyber-radar-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  perspective: 1200px;
  transform-style: preserve-3d;
  width: 100%;
}

.cyber-radar {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(0, 245, 255, 0.4);
  background: radial-gradient(circle at center, rgba(0, 245, 255, 0.15) 0%, transparent 60%);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
  /* Isometric 3D Projection */
  transform-style: preserve-3d;
  transform: rotateX(50deg) rotateZ(30deg);
  box-shadow:
    0 15px 40px rgba(0, 245, 255, 0.2),
    inset 0 0 40px rgba(0, 245, 255, 0.15);
  transition: transform 0.1s ease;
}

.radar-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(5px);
  background: rgba(0, 245, 255, 0.3);
  z-index: 2;
  transform-style: preserve-3d;
}

.radar-crosshair.h-line {
  width: 100%;
  height: 1px;
}

.radar-crosshair.v-line {
  width: 1px;
  height: 100%;
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 255, 0.2);
  z-index: 1;
  transform-style: preserve-3d;
}

/* Staggering Z-depth for holographic levitation */
.radar-ring.ring-1 {
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%) translateZ(15px);
}

.radar-ring.ring-2 {
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%) translateZ(30px);
  border: 1px dashed rgba(0, 245, 255, 0.4);
}

.radar-ring.ring-3 {
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%) translateZ(45px);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
}

/* The scanning beam is projected onto the highest Z plane */
.radar-scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(0, 245, 255, 0.8) 0deg, transparent 60deg, transparent 360deg);
  animation: radar-sweep 4s linear infinite;
  transform-origin: center center;
  transform: translateZ(50px);
  z-index: 3;
}

@keyframes radar-sweep {
  0% {
    transform: translateZ(50px) rotate(0deg);
  }

  100% {
    transform: translateZ(50px) rotate(360deg);
  }
}

/* 3D Expanding Ping Rings instead of flat blips */
.radar-blip {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0;
  animation: blip-pulse 4s infinite;
  z-index: 4;
  transform-style: preserve-3d;
  box-shadow: 0 0 15px currentColor;
}

.blip-red {
  top: 35%;
  left: 65%;
  border: 2px solid #FF2A2A;
  background: rgba(255, 42, 42, 0.4);
  color: #FF2A2A;
  animation-delay: 0.8s;
}

.blip-cyan {
  top: 70%;
  left: 35%;
  border: 2px solid #00F5FF;
  background: rgba(0, 245, 255, 0.4);
  color: #00F5FF;
  animation-delay: 2.4s;
}

/* Ping shoots upward along the Z-axis dynamically */
@keyframes blip-pulse {

  0%,
  10% {
    opacity: 0;
    transform: translate(-50%, -50%) translateZ(5px) scale(0.1);
  }

  15% {
    opacity: 1;
    transform: translate(-50%, -50%) translateZ(40px) scale(1.5);
  }

  35%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translateZ(60px) scale(0.1);
  }
}

.radar-label {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #00F5FF;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 0 15px rgba(0, 245, 255, 0.6);
  z-index: 10;
  transform: translateZ(20px);
}

/* SKILLS -------------------------------------------------------- */

.skills-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr;
  gap: 36px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.skill-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.skill-card {
  padding: 22px 20px 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.skill-card-title {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.skill-card-meter {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-top: 10px;
}

.skill-card-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #00F5FF, #FF2A2A);
  transform-origin: left;
  transform: scaleX(0);
}

.skill-note {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 14px;
}

/* PROJECTS ------------------------------------------------------ */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 26px;
}

.project-card {
  padding: 32px 28px 28px;
  cursor: pointer;
}

.god-card {
  transform-style: preserve-3d;
  transform-origin: center center;

  /* God Level Overrides */
  background: linear-gradient(145deg, rgba(15, 15, 22, 0.6), rgba(5, 5, 10, 0.8)) !important;
  border: 1px solid rgba(0, 245, 255, 0.15) !important;
  border-radius: 24px !important;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.9),
    inset 0 0 20px rgba(0, 245, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 30px rgba(0, 245, 255, 0.1) !important;
  backdrop-filter: blur(40px) !important;
  -webkit-backdrop-filter: blur(40px) !important;
  transition: background 0.6s ease, border-color 0.6s ease, box-shadow 0.6s ease;
  overflow: hidden;
}

.god-card:hover {
  background: linear-gradient(145deg, rgba(20, 20, 30, 0.7), rgba(10, 10, 15, 0.9)) !important;
  border-color: rgba(0, 245, 255, 0.3) !important;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.95),
    inset 0 0 30px rgba(0, 245, 255, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 40px rgba(0, 245, 255, 0.2),
    0 0 15px rgba(255, 42, 42, 0.1) !important;
}

.god-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0, 245, 255, 1), transparent 25%, transparent 75%, rgba(255, 42, 42, 1));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.god-card:hover::after {
  opacity: 0.5;
  animation: cyberBorderSweep 3s linear infinite;
}

@keyframes cyberBorderSweep {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.god-card .glass-inner {
  transform: translateZ(30px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.god-card:hover .glass-inner {
  transform: translateZ(60px);
}

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

.project-title {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
  transition: text-shadow 0.4s ease;
}

.project-card:hover .project-title {
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.8), 0 0 10px rgba(0, 245, 255, 0.5);
}

.project-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00F5FF;
  text-shadow: 0 0 8px rgba(0, 245, 255, 0.4);
}

.project-body {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.project-tag {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 245, 255, 0.2);
  background: rgba(0, 245, 255, 0.05);
  box-shadow: inset 0 0 8px rgba(0, 245, 255, 0.1);
  transition: all 0.4s ease;
}

.project-card:hover .project-tag {
  border-color: rgba(0, 245, 255, 0.5);
  background: rgba(0, 245, 255, 0.15);
  box-shadow: inset 0 0 12px rgba(0, 245, 255, 0.3), 0 0 10px rgba(0, 245, 255, 0.2);
  color: #fff;
}

.project-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.project-links a {
  color: #00F5FF;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.project-links a:hover {
  text-shadow: 0 0 12px rgba(0, 245, 255, 0.8);
  color: #fff;
}

.god-card::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 40%, rgba(0, 245, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 60%, transparent 100%);
  background-size: 300% 300%;
  mix-blend-mode: color-dodge;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.god-card:hover::before {
  opacity: 0.4;
  animation: glassGlareSweep 2.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes glassGlareSweep {
  0% {
    background-position: 200% 200%;
  }

  100% {
    background-position: -100% -100%;
  }
}

/* GITHUB DASHBOARD --------------------------------------------- */

.section-header-glow {
  position: relative;
  z-index: 2;
}

/* --- Holographic Core --- */
.github-core-container {
  margin-top: 20px;
  padding: 30px 40px;
  background: linear-gradient(135deg, rgba(5, 5, 15, 0.8), rgba(0, 20, 30, 0.6));
  border: 1px solid rgba(0, 245, 255, 0.3);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(0, 245, 255, 0.05),
    0 0 40px rgba(0, 245, 255, 0.15);
}

.github-core-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.core-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.core-avatar-ring {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(0, 245, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2), inset 0 0 15px rgba(0, 245, 255, 0.2);
}

.avatar-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 255, 0.4);
  animation: pulse-ring 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.core-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.core-username {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.6);
  letter-spacing: 0.05em;
}

.core-status {
  font-size: 0.65rem;
  color: #00FF9D;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 6px;
  text-shadow: 0 0 8px rgba(0, 255, 157, 0.6);
  animation: blink 2s infinite;
}

.core-right {
  display: flex;
  gap: 40px;
}

.core-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.core-stat-val {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.4), 2px 2px 0 rgba(255, 42, 42, 0.6), -2px -2px 0 rgba(0, 245, 255, 0.6);
  margin-bottom: 8px;
}

.core-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Isometric City Container --- */
.github-city-container {
  margin-top: 50px;
  padding: 40px;
  background: rgba(5, 5, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.city-header {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.city-title {
  font-size: 1.2rem;
  font-family: 'Space Grotesk', sans-serif;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.city-meta {
  font-size: 0.8rem;
  color: rgba(0, 245, 255, 0.6);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.city-perspective {
  perspective: 1400px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0 120px;
}

.github-isometric-city {
  --p-size: 28px;
  --p-gap: 10px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(18, var(--p-size));
  gap: var(--p-gap);
  transform-style: preserve-3d;
  transform: rotateX(60deg) rotateZ(-45deg);
}

.github-isometric-city::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.15) 0%, transparent 60%);
  border-radius: 20px;
  transform: translateZ(-2px);
  filter: blur(8px);
}

/* Individual Pillars */
.iso-pillar {
  width: var(--p-size);
  height: var(--p-size);
  background: rgba(0, 245, 255, 0.1);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 245, 255, 0.2);
  /* The default un-elevated state */
  transform: translateZ(0px);
}

/* Right side of pillar */
.iso-pillar::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: var(--p-size);
  height: var(--pillar-height, 0px);
  background: linear-gradient(180deg, rgba(0, 245, 255, 0.4), rgba(0, 245, 255, 0.05));
  transform-origin: top;
  transform: rotateX(-90deg);
  transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Bottom/Left side of pillar */
.iso-pillar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: var(--pillar-height, 0px);
  height: var(--p-size);
  background: linear-gradient(90deg, rgba(0, 245, 255, 0.3), rgba(0, 245, 255, 0.05));
  transform-origin: left;
  transform: rotateY(90deg);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.iso-pillar.active {
  background: rgba(0, 245, 255, 0.8);
  box-shadow: inset 0 0 10px #fff;
  border: 1px solid #fff;
}

.iso-pillar.level-1 {
  --pillar-height: 20px;
  transform: translateZ(20px);
  background: rgba(0, 245, 255, 0.3);
}

.iso-pillar.level-2 {
  --pillar-height: 40px;
  transform: translateZ(40px);
  background: rgba(0, 245, 255, 0.5);
}

.iso-pillar.level-3 {
  --pillar-height: 60px;
  transform: translateZ(60px);
  background: rgba(0, 245, 255, 0.7);
}

.iso-pillar.level-4 {
  --pillar-height: 90px;
  transform: translateZ(90px);
  background: rgba(255, 42, 42, 0.8);
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.8);
}

.iso-pillar.level-4::before {
  background: linear-gradient(180deg, rgba(255, 42, 42, 0.6), rgba(255, 42, 42, 0.1));
}

.iso-pillar.level-4::after {
  background: linear-gradient(90deg, rgba(255, 42, 42, 0.5), rgba(255, 42, 42, 0.1));
}

/* TERMINAL ------------------------------------------------------ */

.terminal {
  position: relative;
  padding: 26px 22px 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  font-family: "SF Mono", "Fira Code", "Roboto Mono", Consolas, monospace;
  overflow: hidden;
}

/* CRT Scanlines and Glow Overlay for Terminal */
.terminal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
  z-index: 10;
  opacity: 0.6;
}

.terminal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 80px rgba(0, 245, 255, 0.1);
  pointer-events: none;
  z-index: 10;
}

/* Glitch Effect Keyframes */
@keyframes terminal-glitch {
  0% {
    transform: translate(0)
  }

  20% {
    transform: translate(-2px, 2px)
  }

  40% {
    transform: translate(-2px, -2px)
  }

  60% {
    transform: translate(2px, 2px)
  }

  80% {
    transform: translate(2px, -2px)
  }

  100% {
    transform: translate(0)
  }
}

.glitch-anim {
  animation: terminal-glitch 0.2s cubic-bezier(.25, .46, .45, .94) both infinite;
  color: #FF2A2A !important;
  text-shadow: -2px 0 #00F5FF, 2px 0 #FF2A2A !important;
}

/* Base Terminal Text Classes */
.term-error {
  color: #FF2A2A;
  text-shadow: 0 0 10px rgba(255, 42, 42, 0.8);
}

.term-success {
  color: #00FF9D;
  text-shadow: 0 0 10px rgba(0, 255, 157, 0.8);
}

.term-info {
  color: #00F5FF;
}

.term-dim {
  color: rgba(255, 255, 255, 0.5);
}

.term-bold {
  font-weight: bold;
  color: #FFF;
}

#matrix-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
}

#terminal-output {
  position: relative;
  z-index: 2;
  height: 60vh;
  overflow: auto;
  font-family: "SF Mono", "Fira Code", "Roboto Mono", Consolas, monospace;
  font-size: 0.84rem;
  color: #ffffff;
  padding-right: 8px;
}

#terminal-output div {
  margin-bottom: 8px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-all;
}

#terminal-output::-webkit-scrollbar {
  width: 8px;
}

#terminal-output::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

#terminal-output::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,
      rgba(0, 245, 255, 0.8),
      rgba(255, 42, 42, 0.8));
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

#terminal-output::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg,
      rgba(0, 245, 255, 1),
      rgba(255, 42, 42, 1));
}

.terminal-input {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
  font-size: 0.86rem;
}

.terminal-input input {
  background: transparent;
  border: none;
  color: #FF2A2A;
  outline: none;
  flex: 1;
  font-family: inherit;
  caret-color: #FF2A2A;
  caret-shape: block;
}

.terminal-prompt {
  color: #FF2A2A;
}

/* CONTACT COMM CHANNEL -------------------------------------------- */

#contact.section-center {
  align-items: center;
  text-align: center;
}

#contact.section-center .section-sub {
  margin: 0 auto;
}

.comm-channel-container {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comm-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact-form-cyber {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 4;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .comm-channel-container {
    min-height: auto;
  }
}

.input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.input-hud-label {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: #00F5FF;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
  transition: text-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-form-cyber input,
.contact-form-cyber textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 245, 255, 0.2);
  padding: 8px 0;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
  resize: none;
  width: 100%;
}

.contact-form-cyber textarea {
  font-size: 1rem;
  line-height: 1.5;
}

.contact-form-cyber input:focus,
.contact-form-cyber textarea:focus {
  border-bottom: 1px solid #00F5FF;
  box-shadow: 0 10px 20px -10px rgba(0, 245, 255, 0.5);
}

.input-wrapper:focus-within .input-hud-label {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.8), 0 0 20px rgba(0, 245, 255, 0.4);
  transform: translateY(-2px);
}

.comm-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comm-status {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comm-status-label {
  color: #00FF9D;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 255, 157, 0.5);
}

/* Stylized Submit Button */
.btn-cyber {
  background: transparent;
  border: 1px solid #00F5FF;
  padding: 12px 24px;
  color: #00F5FF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  border-radius: 999px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2), inset 0 0 10px rgba(0, 245, 255, 0.1);
  transition: all 0.3s ease;
}

.btn-cyber::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn-cyber:hover {
  background: rgba(0, 245, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.5), inset 0 0 20px rgba(0, 245, 255, 0.2);
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 245, 255, 0.8);
  transform: translateY(-2px);
}

.btn-cyber:hover::before {
  left: 100%;
}

/* Terminal Overlay for submission */
.comm-terminal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 12, 0.95);
  z-index: 20;
  display: flex;
  flex-direction: column;
  padding: 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  /* hidden initially */
  transition: opacity 0.5s ease;
  text-align: left;
}

.comm-terminal-overlay.active {
  opacity: 1;
  pointer-events: all;
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.3);
}

.comm-terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  color: #00F5FF;
  letter-spacing: 0.2em;
  border-bottom: 1px solid rgba(0, 245, 255, 0.3);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.comm-terminal-content {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.8rem;
  color: #fff;
  flex: 1;
  overflow: hidden;
}

.comm-terminal-content div {
  margin-bottom: 8px;
  line-height: 1.5;
}

.comm-terminal-content .term-success {
  color: #00FF9D;
  text-shadow: 0 0 8px rgba(0, 255, 157, 0.5);
}

.comm-terminal-content .term-info {
  color: #00F5FF;
  text-shadow: 0 0 8px rgba(0, 245, 255, 0.5);
}

.comm-terminal-content .term-error {
  color: #FF2A2A;
  text-shadow: 0 0 8px rgba(255, 42, 42, 0.5);
}

button {
  cursor: pointer;
}

.glass:hover {
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 38px rgba(0, 245, 255, 0.46);
}

/* FOOTER -------------------------------------------------------- */

.site-footer {
  margin: 0 auto 40px;
  width: min(1200px, 92%);
  padding: 30px 0;
  border-top: 1px solid rgba(0, 245, 255, 0.2);
}

.footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00F5FF;
  transition: color 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.footer-socials a svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.footer-socials a:hover {
  color: #ffffff;
  filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.6));
  transform: translateY(-2px);
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

/* CURSOR -------------------------------------------------------- */

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff 0%, #00F5FF 30%, #007799 70%, #001122 100%);
  box-shadow: 
    0 3px 6px rgba(0, 0, 0, 0.8),
    0 0 6px rgba(0, 245, 255, 0.6),
    inset -1px -1px 3px rgba(0, 0, 0, 0.6),
    inset 1px 1px 3px rgba(255, 255, 255, 0.8);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: normal;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

.cursor-blur {
  position: fixed;
  width: 42px;
  height: 42px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.4), transparent 60%);
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: screen;
}

/* TEXT SPLITTING UTILITIES -------------------------------------- */
.split-word {
  display: inline-block;
  /* keep white-space to preserve spaces between words if injected */
}

.split-char {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.hero-title {
  /* Enhance perspective for 3D character reveals */
  perspective: 800px;
  transform-style: preserve-3d;
}

.cursor-magnetic {
  transform: scale(1.8);
}

.cursor-hidden {
  opacity: 0;
}

.magnetic-target {
  position: relative;
}

/* PARALLAX DECOR ------------------------------------------------ */

.parallax-float {
  will-change: transform;
}

/* RESPONSIVE ---------------------------------------------------- */

@media (max-width:1024px) {

  .hero-grid,
  .about-grid,
  .skills-grid,
  .github-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding-inline: 8vw;
  }

  .navbar {
    width: 92%;
  }
}

@media (max-width:768px) {
  .navbar ul {
    display: none;
  }

  section {
    padding: 130px 20px 80px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-card {
    padding: 34px 26px;
  }

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

  .skill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .github-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}