/* ============================================
   Igor Novaiz — Digital Architect Design
   Paleta: Azul #3B82F6, Preto #0B0F1A, Branco #EAEDF6, Roxo #A855F7, Amarelo #FACC15
   Tipografia: Sora (headings), DM Sans (body), Space Grotesk (mono/labels)
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0B0F1A;
  --bg-card: rgba(16, 20, 35, 0.6);
  --fg: #EAEDF6;
  --fg-muted: #8A90A5;
  --blue: #3B82F6;
  --blue-dark: #2563EB;
  --purple: #A855F7;
  --yellow: #FACC15;
  --border: rgba(60, 70, 110, 0.3);
  --glass-bg: rgba(16, 20, 35, 0.6);
  --glass-border: rgba(80, 90, 140, 0.25);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', system-ui, sans-serif;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2A2F45; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3A4060; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

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

.text-gradient-blue {
  /* Gradiente com um "feixe de luz" branco/azul claríssimo bem no centro */
  background: linear-gradient(
    to right,
    #60A5FA 20%,
    #A855F7 40%,
    #FFFFFF 50%, /* Feixe de luz tecnológico */
    #A855F7 60%,
    #60A5FA 80%
  );
  
  /* Largura dobrada para permitir que o feixe de luz "caminhe" pelo texto */
  background-size: 200% auto;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  /* Sombra projetada que gera um efeito "glow/neon" sutil no fundo escuro */
  filter: drop-shadow(0px 0px 8px rgba(96, 165, 250, 0.4));
  
  /* Animação linear contínua simulando um scanner ou varredura de dados */
  animation: techShine 3s linear infinite;
}

@keyframes techShine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}



.text-gradient-yellow {
  background: linear-gradient(135deg, #FACC15, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-blue {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15), 0 0 40px rgba(59, 130, 246, 0.08);
}

.glow-purple {
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.15), 0 0 40px rgba(168, 85, 247, 0.08);
}

.font-mono {
  font-family: 'Space Grotesk', monospace;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-label .num {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.875rem;
  color: var(--blue);
  letter-spacing: 0.05em;
}

.section-label .line {
  width: 3rem;
  height: 1px;
  background: var(--blue);
}

.section-label .text {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.875rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 4rem;
  max-width: 40rem;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.section-divider.purple {
  background: linear-gradient(to right, transparent, rgba(168, 85, 247, 0.2), transparent);
}

/* ---------- Animations ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes orb-move-1 {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.2); }
  66% { transform: translate(-30px, 20px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes orb-move-2 {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 30px) scale(0.8); }
  66% { transform: translate(40px, -50px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-left {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-down {
  from { transform: translateY(-80px); }
  to { transform: translateY(0); }
}

@keyframes bar-fill {
  from { width: 0; }
}

.animate-fade-in-up {
  animation: fade-in-up 0.7s ease forwards;
  opacity: 0;
}

.animate-fade-in-left {
  animation: fade-in-left 0.5s ease forwards;
  opacity: 0;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  animation: slide-down 0.6s ease;
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  transition: transform 0.3s;
}

.navbar .logo:hover .logo-icon { transform: scale(1.1); }

.navbar .logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
}

.navbar .nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .navbar .nav-links { display: flex; }
}

.navbar .nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.3s;
  position: relative;
}

.navbar .nav-links a:hover { color: var(--fg); }

.navbar .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--purple));
  border-radius: 1px;
  transition: width 0.3s;
}

.navbar .nav-links a:hover::after { width: 75%; }

.navbar .mobile-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--fg);
  cursor: pointer;
}

@media (min-width: 768px) { .navbar .mobile-toggle { display: none; } }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.mobile-menu a:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 15, 26, 0.8), rgba(11, 15, 26, 0.4), var(--bg));
}

/* Animated Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-orb.orb-1 {
  top: 25%;
  left: 25%;
  width: 400px;
  height: 400px;
  background: var(--blue);
  opacity: 0.06;
  animation: orb-move-1 20s ease-in-out infinite;
}

.hero-orb.orb-2 {
  bottom: 33%;
  right: 25%;
  width: 350px;
  height: 350px;
  background: var(--purple);
  opacity: 0.06;
  animation: orb-move-2 25s ease-in-out infinite;
}

.hero-orb.orb-3 {
  top: 50%;
  right: 33%;
  width: 250px;
  height: 250px;
  background: var(--yellow);
  opacity: 0.04;
  filter: blur(80px);
  animation: orb-move-1 18s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  animation: fade-in-up 0.5s 0.4s ease forwards;
  opacity: 0;
}

.hero-tag .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 .line-1 {
  display: block;
  font-size: clamp(3rem, 10vw, 8rem);
  color: var(--fg);
  animation: fade-in-up 0.7s 0.5s ease forwards;
  opacity: 0;
}

.hero h1 .line-2 {
  display: block;
  font-size: clamp(3rem, 10vw, 8rem);
  /* Gradiente com um "feixe de luz" branco/azul claríssimo bem no centro */
  background: linear-gradient(
    to right,
    #60A5FA 20%,
    #A855F7 40%,
    #FFFFFF 50%, /* Feixe de luz tecnológico */
    #A855F7 60%,
    #60A5FA 80%
  );
  
  /* Largura dobrada para permitir que o feixe de luz "caminhe" pelo texto */
  background-size: 200% auto;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  /* Sombra projetada que gera um efeito "glow/neon" sutil no fundo escuro */
  filter: drop-shadow(0px 0px 8px rgba(96, 165, 250, 0.4));
  
  /* Animação linear contínua simulando um scanner ou varredura de dados */
  animation: techShine 4s linear infinite;
}

@keyframes techShine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}


.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  animation: fade-in-up 0.6s 0.9s ease forwards;
  opacity: 0;
}

.hero-subtitle .accent { color: var(--purple); }

.hero-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fade-in-up 0.6s 1.1s ease forwards;
  opacity: 0;
}

.hero-socials a {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: all 0.3s;
}

.hero-socials a:hover {
  color: var(--fg);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
  transform: scale(1.1);
}

.hero-socials a svg {
  width: 18px;
  height: 18px;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg-muted);
  animation: fade-in-up 0.5s 1.5s ease forwards;
  opacity: 0;
}

.hero-scroll span {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
}

.hero-scroll svg {
  width: 16px;
  height: 16px;
  animation: bounce-scroll 2s ease-in-out infinite;
}

/* ---------- ABOUT ---------- */
.about {
  padding: 6rem 0 6rem;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }
}

.about-image {
  position: relative;
  max-width: 22rem;
  margin: 0 auto;
}

@media (min-width: 1024px) { .about-image { margin: 0; } }

.about-image .glow-bg {
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 1rem;
  opacity: 0.2;
  filter: blur(16px);
}

.about-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 1rem;
}

.about-image .badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  color: var(--yellow);
  animation: float 4s ease-in-out infinite;
}

.about-text h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text p {
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

@media (min-width: 768px) { .about-text p { font-size: 1.125rem; } }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-stats .stat {
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s;
}

.about-stats .stat:hover { box-shadow: 0 0 20px rgba(59, 130, 246, 0.15); }

.about-stats .stat .icon {
  width: 20px;
  height: 20px;
  margin-bottom: 0.5rem;
}

.about-stats .stat .icon.blue { color: var(--blue); }
.about-stats .stat .icon.purple { color: var(--purple); }
.about-stats .stat .icon.yellow { color: var(--yellow); }

.about-stats .stat .label {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 0.125rem;
}

.about-stats .stat .value {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}

/* ---------- SKILLS ---------- */
.skills {
  padding: 6rem 0;
  position: relative;
}

.skills-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(59, 130, 246, 0.02), transparent);
  pointer-events: none;
}

.skills-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) { .skills-grid { grid-template-columns: 1fr 1fr; } }

.skill-card {
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.5s;
}

.skill-card:hover { box-shadow: 0 0 20px rgba(59, 130, 246, 0.15); }

.skill-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.skill-card .card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.skill-card .card-icon.bg-blue { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }
.skill-card .card-icon.bg-purple { background: linear-gradient(135deg, var(--purple), #7C3AED); }
.skill-card .card-icon.bg-yellow { background: linear-gradient(135deg, var(--yellow), #F59E0B); }
.skill-card .card-icon.bg-mixed { background: linear-gradient(135deg, var(--blue), var(--purple)); }

.skill-card .card-icon svg { width: 20px; height: 20px; }

.skill-card .card-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
}

.skill-bar {
  margin-bottom: 1rem;
}

.skill-bar .bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.375rem;
}

.skill-bar .bar-name { font-size: 0.875rem; }

.skill-bar .bar-pct {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.skill-bar .bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.skill-bar .bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(to right, var(--blue), var(--purple));
  animation: bar-fill 1.2s ease forwards;
}

.tools-row {
  margin-top: 3rem;
}

.tools-row .label {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.tools-row .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tools-row .tag {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  transition: color 0.3s;
}

.tools-row .tag:hover { color: var(--fg); }
.tools-row .tag svg { width: 14px; height: 14px; }

/* ---------- PROJECTS ---------- */
.projects {
  padding: 6rem 0;
}

.projects-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: 2fr 1fr; } }

.project-featured {
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.5s;
}

@media (min-width: 768px) { .project-featured { grid-column: span 2; } }
@media (min-width: 1024px) { .project-featured { grid-column: span 1; } }

.project-featured:hover { box-shadow: 0 0 20px rgba(59, 130, 246, 0.15); }

.project-featured .image-wrap {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.project-featured .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.project-featured:hover .image-wrap img { transform: scale(1.05); }

.project-featured .image-wrap .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 20, 35, 1), transparent, transparent);
}

.project-featured .image-wrap .status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.project-featured .image-wrap .status-badge .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse-dot 2s ease-in-out infinite;
}

.project-featured .image-wrap .status-badge .text {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  color: var(--yellow);
}

.project-featured .body {
  padding: 1.5rem;
}

.project-featured .body .header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.project-featured .body .header .left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.project-featured .body .header .icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.project-featured .body .header .icon-wrap svg { width: 20px; height: 20px; }

.project-featured .body .header h3 {
  font-weight: 700;
  font-size: 1.25rem;
}

.project-featured .body .header .link-btn {
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--fg-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.project-featured .body .header .link-btn:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
}

.project-featured .body .header .link-btn svg { width: 18px; height: 18px; }

.project-featured .body p {
  color: var(--fg-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list .tag {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg-muted);
}

/* Small project cards */
.project-small {
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
}

.project-small:hover { box-shadow: 0 0 20px rgba(59, 130, 246, 0.15); }

.project-small .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.project-small .card-top .icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: all 0.3s;
}

.project-small:hover .card-top .icon-wrap {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
}

.project-small .card-top .icon-wrap svg { width: 20px; height: 20px; }

.project-small .card-top .status {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
}

.project-small .card-top .status.soon { color: var(--purple); }
.project-small .card-top .status.idea { color: var(--fg-muted); }

.project-small h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.project-small p {
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

/* ---------- GAMING ---------- */
.gaming {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.gaming-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.03), transparent, rgba(59, 130, 246, 0.02));
  pointer-events: none;
}

.gaming .section-label .num { color: var(--purple); }
.gaming .section-label .line { background: var(--purple); }

.gaming-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) { .gaming-grid { grid-template-columns: 1fr 1fr; } }

.gaming-image {
  position: relative;
}

.gaming-image .glow-bg {
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-radius: 1rem;
  opacity: 0.15;
  filter: blur(20px);
}

.gaming-image img {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.gaming-content p {
  color: var(--fg-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) { .gaming-content p { font-size: 1.125rem; } }

.gaming-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gaming-stats .stat {
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s;
}

.gaming-stats .stat:hover { box-shadow: 0 0 20px rgba(168, 85, 247, 0.15); }

.gaming-stats .stat svg {
  width: 20px;
  height: 20px;
  color: var(--purple);
  margin-bottom: 0.5rem;
  transition: transform 0.3s;
}

.gaming-stats .stat:hover svg { transform: scale(1.1); }

.gaming-stats .stat .label {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 0.125rem;
}

.gaming-stats .stat .value {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}

.gaming-stats .stat .desc {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.625rem;
  color: var(--fg-muted);
  margin-top: 0.125rem;
}

.gaming-cta {
  margin-top: 2rem;
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  border-left: 2px solid var(--purple);
}

.gaming-cta .highlight {
  color: var(--yellow);
  font-weight: 600;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 6rem 0;
  position: relative;
}

.contact-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(59, 130, 246, 0.02), transparent);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }

.contact-info p {
  color: var(--fg-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) { .contact-info p { font-size: 1.125rem; } }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-details .detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-details .detail .icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details .detail .icon-wrap svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.contact-details .detail .info .label {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.contact-details .detail .info .value {
  font-size: 0.875rem;
}

.contact-socials-label {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-socials {
  display: flex;
  gap: 0.75rem;
}

.contact-socials a {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: all 0.3s;
}

.contact-socials a:hover {
  color: var(--fg);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.contact-socials a svg { width: 18px; height: 18px; }

.contact-form {
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) { .contact-form { padding: 2rem; } }

.contact-form .form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) { .contact-form .form-row { grid-template-columns: 1fr 1fr; } }

.contact-form .form-group { margin-bottom: 1.25rem; }

.contact-form label {
  display: block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--fg);
  transition: all 0.3s;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(138, 144, 165, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
}

.contact-form textarea { resize: none; }

.contact-form .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact-form .submit-btn:hover { opacity: 0.9; }
.contact-form .submit-btn svg { width: 16px; height: 16px; }

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  padding: 3rem 0;
  border-top: 1px solid var(--glass-border);
}

.footer .top-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 33%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blue), transparent);
}

.footer .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer .inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer .brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer .brand .icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
}

.footer .brand .name {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}

.footer .copy {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.footer .copy svg { width: 12px; height: 12px; color: var(--purple); }

.footer .social-links {
  display: flex;
  gap: 0.75rem;
}

.footer .social-links a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: all 0.3s;
}

.footer .social-links a:hover {
  color: var(--fg);
  transform: scale(1.1);
}

.footer .social-links a svg { width: 14px; height: 14px; }

/* ---------- Intersection Observer Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
