/* ═══════════════════════════════════════════
   AI-Style Landing — Graphite / Glassmorphism
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #05050f;
  --bg-graphite: #0a0a1a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --accent: #a882ff;
  --accent-dim: rgba(168, 130, 255, 0.15);
  --accent-glow: rgba(168, 130, 255, 0.4);
  --accent-secondary: #4fc3f7;
  --text-primary: #e8e8f0;
  --text-secondary: #9999b8;
  --text-dim: #666680;
  --white: #ffffff;
  --black: #000000;
  --font-code: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-dim) var(--bg-dark);
}

body {
  font-family: var(--font-ui);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--accent);
  color: var(--bg-dark);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }

/* ─── Canvas 3D ─── */
#three-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(0px);
}

.nav.scrolled {
  background: rgba(5, 5, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-code);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--text-dim);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-code);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

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

.nav-cta {
  font-family: var(--font-code) !important;
  background: var(--accent) !important;
  color: var(--bg-dark) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  box-shadow: 0 0 20px var(--accent-glow) !important;
}

.nav-cta::after {
  display: none !important;
}

/* ─── Mobile Menu ─── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  padding: 2rem;
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(168, 130, 255, 0.2);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.3s forwards;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-code);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.5s forwards;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #ce93d8, var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .price {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.hero h1 .price strong {
  color: var(--accent);
  font-weight: 700;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.9s forwards;
}

.btn {
  font-family: var(--font-code);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-primary:hover {
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--glass);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: var(--glass-strong);
  border-color: var(--accent);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeInUp 0.8s 1.2s forwards;
}

.hero-scroll span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  position: relative;
}

.hero-scroll span::after {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 3px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

/* ─── Section Base ─── */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-code);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-code);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 550px;
  margin-bottom: 3rem;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Services ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  border-color: rgba(168, 130, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.service-icon {
  font-family: var(--font-code);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
}

.service-card h3 {
  font-family: var(--font-code);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── Process ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.step-number {
  font-family: var(--font-code);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-number span {
  color: var(--accent);
}

.process-step h3 {
  font-family: var(--font-code);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ─── Portfolio ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}

.portfolio-card:hover {
  border-color: rgba(168, 130, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-preview {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-graphite), rgba(168, 130, 255, 0.1), rgba(79, 195, 247, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-code);
  font-size: 3rem;
  color: var(--accent);
  position: relative;
  overflow: hidden;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.portfolio-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 50%, var(--bg-dark));
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h3 {
  font-family: var(--font-code);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.portfolio-link {
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s;
}

.portfolio-link:hover {
  gap: 0.6rem;
}

/* ─── Order Form ─── */
.order-section {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 3rem;
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-code);
  font-size: 0.9rem;
  transition: all 0.3s;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-input::placeholder {
  color: var(--text-dim);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-consent input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s;
}

.form-consent input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.form-consent input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: var(--bg-dark);
  font-weight: bold;
}

.form-consent label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-consent label a {
  color: var(--accent);
  text-decoration: none;
}

.form-consent label a:hover {
  text-decoration: underline;
}

.form-status {
  font-family: var(--font-code);
  font-size: 0.85rem;
  margin-top: 1rem;
  text-align: center;
}

.form-status.success {
  color: #4caf50;
}

.form-status.error {
  color: #f44336;
}

/* ─── Contacts ─── */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.contact-card:hover {
  border-color: rgba(168, 130, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.contact-info h3 {
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.contact-info p {
  font-family: var(--font-code);
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* ─── Footer ─── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--text-dim);
}

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

.footer-links a {
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ─── Particles Overlay ─── */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── Code Typing Effect ─── */
.code-line {
  font-family: var(--font-code);
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.5;
  position: absolute;
  pointer-events: none;
  white-space: nowrap;
}

/* ─── Galaxy Background ─── */
.galaxy-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #030311;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(168, 130, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(79, 195, 247, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(236, 64, 122, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(168, 130, 255, 0.07) 0%, transparent 50%);
  /* Adding subtle stars with radial dots */
  background-attachment: fixed;
}

/* ── Nebula Clouds (multi-layer for depth) ── */
.galaxy-nebula {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  animation: nebulaFloat 25s ease-in-out infinite;
}

.galaxy-nebula-1 {
  width: 700px;
  height: 700px;
  top: -15%;
  left: -15%;
  background: radial-gradient(ellipse at center,
    rgba(168, 130, 255, 0.18) 0%,
    rgba(108, 99, 255, 0.12) 25%,
    rgba(79, 195, 247, 0.06) 45%,
    transparent 70%);
  filter: blur(80px);
  animation-delay: 0s;
  opacity: 0.85;
}

.galaxy-nebula-2 {
  width: 600px;
  height: 600px;
  bottom: -10%;
  right: -10%;
  background: radial-gradient(ellipse at center,
    rgba(236, 64, 122, 0.15) 0%,
    rgba(206, 147, 216, 0.09) 28%,
    rgba(240, 98, 146, 0.05) 48%,
    transparent 72%);
  filter: blur(90px);
  animation-delay: -8s;
  opacity: 0.8;
}

.galaxy-nebula-3 {
  width: 500px;
  height: 500px;
  top: 35%;
  left: 45%;
  background: radial-gradient(ellipse at center,
    rgba(79, 195, 247, 0.13) 0%,
    rgba(77, 208, 225, 0.07) 30%,
    rgba(168, 130, 255, 0.05) 50%,
    transparent 68%);
  filter: blur(70px);
  animation-delay: -16s;
  opacity: 0.9;
}

/* Additional nebula layers */
.galaxy-nebula::before,
.galaxy-nebula::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.5;
}

/* Starfield layers */
.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}

.starfield::before,
.starfield::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background-image:
    radial-gradient(2px 2px at 20% 20%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 40% 60%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 60% 40%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 50% 30%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 70% 70%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 90% 10%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 10% 90%, rgba(255, 255, 255, 0.6), transparent);
  background-size: 300px 300px;
  background-repeat: repeat;
  transform-origin: center;
  opacity: 0.2;
}

.starfield::before {
  animation: starfieldRotate 200s linear infinite;
}

.starfield::after {
  background-size: 400px 400px;
  background-position: 150px 150px;
  opacity: 0.15;
  animation: starfieldRotate 300s linear infinite reverse;
}

@keyframes starfieldRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes nebulaFloat {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  25% { transform: translate(35px, -25px) scale(1.06) rotate(2deg); }
  50% { transform: translate(-25px, 35px) scale(0.94) rotate(-1deg); }
  75% { transform: translate(20px, 25px) scale(1.03) rotate(1deg); }
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scrollDot {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

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

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 5, 15, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--glass-border);
  }

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

  .nav-burger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .order-section {
    padding: 2rem 1.5rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Space Dust Effect */
.dust-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 25%, rgba(255, 255, 255, 0.05), transparent 50%),
    radial-gradient(1px 1px at 28% 65%, rgba(255, 255, 255, 0.04), transparent 50%),
    radial-gradient(1px 1px at 38% 15%, rgba(255, 255, 255, 0.06), transparent 50%),
    radial-gradient(1px 1px at 44% 88%, rgba(255, 255, 255, 0.03), transparent 50%),
    radial-gradient(1px 1px at 56% 32%, rgba(255, 255, 255, 0.05), transparent 50%),
    radial-gradient(1px 1px at 73% 52%, rgba(255, 255, 255, 0.04), transparent 50%),
    radial-gradient(1px 1px at 81% 77%, rgba(255, 255, 255, 0.06), transparent 50%),
    radial-gradient(1px 1px at 92% 18%, rgba(255, 255, 255, 0.05), transparent 50%);
  opacity: 0.6;
}

/* ─── Stats ─── */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin: 4rem 0;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-code);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-family: var(--font-code);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ─── Tech Stack Marquee ─── */
.tech-marquee {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  margin: 2rem 0;
}

.tech-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.tech-item {
  font-family: var(--font-code);
  font-size: 0.85rem;
  color: var(--text-dim);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-item .tech-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
