@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&family=Inter:wght@400;500;700;800;900&display=swap');

:root {
  --bg: #020814;
  --bg-soft: #050d1c;
  --panel: rgba(5, 14, 28, 0.82);
  --panel-strong: rgba(3, 10, 20, 0.94);
  --text: #f3f8ff;
  --muted: #b5c4d6;
  --neon: #18e4ff;
  --neon-soft: rgba(24, 228, 255, 0.22);
  --neon-glow: rgba(24, 228, 255, 0.72);
  --line: rgba(24, 228, 255, 0.24);
  --white-line: rgba(255, 255, 255, 0.09);
  --shadow: 0 0 34px rgba(24, 228, 255, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 12%, rgba(24, 228, 255, 0.12), transparent 26%),
    radial-gradient(circle at 20% 55%, rgba(24, 228, 255, 0.08), transparent 24%),
    linear-gradient(90deg, #020814 0%, #040b18 48%, #01040a 100%);
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 96%, rgba(24, 228, 255, 0.02) 96% 100%),
    linear-gradient(180deg, transparent 0 96%, rgba(24, 228, 255, 0.018) 96% 100%);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: -4;
}

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

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.09;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(255,255,255,0.2) 0 1px, transparent 1px 3px);
  pointer-events: none;
  z-index: 50;
  mix-blend-mode: overlay;
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 228, 255, 0.15), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: #030505;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 2px solid var(--neon);
  color: var(--neon);
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  box-shadow: 0 0 28px var(--neon-soft), inset 0 0 24px var(--neon-soft);
  animation: loaderPulse 1.2s infinite alternate;
}

.page-loader p {
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

@keyframes loaderPulse {
  from { transform: scale(0.95) rotate(0deg); }
  to { transform: scale(1.05) rotate(6deg); }
}

.floating-orb {
  position: fixed;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.18), transparent 68%);
  filter: blur(4px);
  z-index: -3;
  animation: floatOrb 9s ease-in-out infinite;
}

.orb-one { top: 14%; left: 6%; }
.orb-two { top: 42%; right: 6%; animation-delay: 2s; }
.orb-three { bottom: 4%; left: 42%; animation-delay: 4s; }

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(30px, -34px, 0) scale(1.18); }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-bottom: 70px;
  overflow: hidden;
}

.navbar {
  position: relative;
  z-index: 10;
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 38px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: grid;
  line-height: 1;
}

.brand-main {
  font-family: 'Orbitron', sans-serif;
  color: var(--neon);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 0 14px var(--neon-soft);
}

.brand-sub {
  color: var(--muted);
  font-size: 0.62rem;
  text-align: center;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--neon);
  font-size: 0.76rem;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 16px var(--neon-soft);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  transition: width 0.25s ease;
}

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

.menu-btn {
  display: none;
  width: 44px;
  height: 36px;
  border: 1px solid var(--line);
  background: rgba(24, 228, 255, 0.05);
  border-radius: 10px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 7px auto;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
}

.hero-content,
.section {
  position: relative;
  z-index: 5;
  width: min(1180px, 90%);
  margin: 0 auto;
}

.hero-content {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.section-kicker {
  color: var(--neon);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 16px;
  text-shadow: 0 0 14px var(--neon-soft);
}

h1,
h2 {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.92;
}

h1 span,
h2 span {
  color: var(--neon);
  text-shadow: 0 0 24px var(--neon-soft);
}

.underline {
  width: 120px;
  height: 3px;
  background: var(--neon);
  margin: 30px 0;
  box-shadow: 0 0 18px var(--neon);
  animation: lineGlow 1.8s ease-in-out infinite alternate;
}

@keyframes lineGlow {
  from { width: 90px; opacity: 0.72; }
  to { width: 150px; opacity: 1; }
}

.hero-text,
.section-copy p,
.about-copy p,
.contact-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.btn:hover::before {
  left: 125%;
}

.btn:hover {
  transform: translateY(-4px);
}

.primary-btn {
  color: #021211;
  background: var(--neon);
  box-shadow: 0 0 22px var(--neon-soft);
}

.ghost-btn {
  border: 1px solid var(--line);
  color: var(--neon);
  background: rgba(24, 228, 255, 0.05);
}

.small-btn {
  margin-top: 18px;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.portrait-card {
  position: relative;
  width: min(380px, 88vw);
  aspect-ratio: 0.84;
  border-radius: 34px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(24, 228, 255, 0.22), transparent 42%),
    rgba(6, 12, 26, 0.92);
  box-shadow: 0 0 54px rgba(0, 200, 255, 0.35);
  animation: cardFloat 4.5s ease-in-out infinite;
  overflow: hidden;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 90deg, transparent, var(--neon), transparent 38%);
  animation: spin 5s linear infinite;
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 31px;
  background: #030916;
}

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

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-20px) rotateX(4deg) rotateY(-5deg); }
}

.portrait-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  border-radius: 24px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  background:
    radial-gradient(circle at 70% 30%, rgba(0, 200, 255, 0.28), transparent 34%),
    linear-gradient(145deg, #0a1111, #030606);
  overflow: hidden;
}

.portrait-inner::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 130%;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(0, 200, 255, 0.08) 48% 52%, transparent 52% 100%),
    linear-gradient(0deg, transparent 0 48%, rgba(0, 200, 255, 0.08) 48% 52%, transparent 52% 100%);
  background-size: 44px 44px;
  transform: rotate(12deg);
  animation: gridMove 12s linear infinite;
}

@keyframes gridMove {
  from { background-position: 0 0; }
  to { background-position: 88px 88px; }
}

.portrait-icon {
  position: relative;
  z-index: 2;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--neon);
  text-shadow: 0 0 28px var(--neon);
}

.portrait-inner p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.scan-line {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--neon);
  box-shadow: 0 0 20px var(--neon);
  animation: scan 2.2s linear infinite;
}

@keyframes scan {
  from { top: -10%; }
  to { top: 110%; }
}

.floating-chip {
  position: absolute;
  z-index: 5;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(4, 12, 24, 0.88);
  color: var(--neon);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  box-shadow: 0 0 18px var(--neon-soft);
  animation: chipFloat 3s ease-in-out infinite;
}

.chip-one { top: 48px; left: 20px; }
.chip-two { right: 8px; top: 190px; animation-delay: 0.8s; }
.chip-three { left: 46px; bottom: 44px; animation-delay: 1.6s; }

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

.mega-letter {
  position: absolute;
  z-index: -1;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(12rem, 26vw, 26rem);
  font-weight: 900;
  color: rgba(0, 200, 255, 0.05);
  text-shadow: 0 0 40px rgba(0, 200, 255, 0.05);
  pointer-events: none;
  animation: megaPulse 4s ease-in-out infinite alternate;
}

.hero-letter {
  top: 9%;
  left: 42%;
}

@keyframes megaPulse {
  from { opacity: 0.35; transform: scale(0.98); }
  to { opacity: 0.8; transform: scale(1.04); }
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 10;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.scroll-indicator span {
  width: 2px;
  height: 42px;
  background: var(--neon);
  box-shadow: 0 0 14px var(--neon);
  animation: scrollLine 1.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.6); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

.section {
  padding: 110px 0;
}

.split-section,
.about-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.service-tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.neon-tile {
  min-height: 210px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(24, 228, 255, 0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  box-shadow: 0 0 0 rgba(0, 200, 255, 0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  transform-style: preserve-3d;
}

.neon-tile:hover,
.wide-card:hover,
.process-card:hover,
.stat-card:hover,
.contact-form:hover {
  border-color: rgba(0, 200, 255, 0.75);
  box-shadow: var(--shadow);
}

.tile-icon,
.feature-icon,
.stat-icon {
  color: var(--neon);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 0 18px var(--neon-soft);
}

.neon-tile h3,
.wide-card h3,
.process-card h3,
.feature-box h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.neon-tile p,
.wide-card p,
.process-card p,
.feature-box p,
.stat-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.center-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 54px;
}

.center-line {
  margin-left: auto;
  margin-right: auto;
}

.horizontal-services,
.process-line,
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.wide-card,
.process-card,
.stat-card,
.feature-box,
.contact-form {
  position: relative;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.wide-card:hover,
.process-card:hover,
.stat-card:hover {
  transform: translateY(-12px);
}

.wide-card span,
.process-card span {
  display: inline-block;
  color: var(--neon);
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 28px;
  font-size: 1.6rem;
  text-shadow: 0 0 18px var(--neon-soft);
}

.about-visual {
  min-height: 450px;
  display: grid;
  place-items: center;
}

.image-placeholder {
  position: relative;
  width: min(390px, 85vw);
  aspect-ratio: 0.95;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 42% 42%;
  background:
    radial-gradient(circle at 50% 35%, rgba(24, 228, 255, 0.22), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(2,8,18,0.4));
  filter: grayscale(0.2);
  box-shadow: 0 0 48px rgba(0, 200, 255, 0.2);
  overflow: hidden;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid var(--line);
  border-radius: inherit;
  animation: breathe 2.8s ease-in-out infinite;
}

.image-placeholder > span {
  font-family: 'Orbitron', sans-serif;
  color: var(--neon);
  font-size: 5rem;
  text-shadow: 0 0 24px var(--neon);
}

.pulse-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid var(--neon);
  border-radius: 50%;
  animation: pulseRing 1.8s ease-out infinite;
}

@keyframes pulseRing {
  from { transform: scale(0.4); opacity: 1; }
  to { transform: scale(3); opacity: 0; }
}

@keyframes breathe {
  50% { transform: scale(1.05); box-shadow: 0 0 24px var(--neon-soft); }
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.process-line {
  position: relative;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  box-shadow: 0 0 14px var(--neon);
  z-index: -1;
}

.stat-card {
  text-align: center;
  min-height: 200px;
}

.stat-card h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--neon);
  font-size: clamp(2rem, 4vw, 3.1rem);
  text-shadow: 0 0 22px var(--neon-soft);
  margin-bottom: 8px;
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-links a {
  color: var(--neon);
  border: 1px solid var(--line);
  padding: 16px 18px;
  background: rgba(24, 228, 255, 0.05);
  transition: 0.25s ease;
}

.contact-links a:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.32);
  color: var(--text);
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select option {
  color: #050707;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 18px var(--neon-soft);
}

.form-note {
  min-height: 24px;
  color: var(--neon);
}

.footer {
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer span {
  color: var(--neon);
}

.reveal-left,
.reveal-right,
.reveal-up,
.reveal-top {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left { transform: translateX(-80px); }
.reveal-right { transform: translateX(80px); }
.reveal-up { transform: translateY(80px); }
.reveal-top { transform: translateY(-60px); }

.reveal-left.show,
.reveal-right.show,
.reveal-up.show,
.reveal-top.show {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@media (max-width: 980px) {
  .menu-btn {
    display: block;
    z-index: 20;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 15;
    padding: 110px 8%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(2, 5, 5, 0.96);
    transform: translateX(110%);
    transition: transform 0.35s ease;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hero-content,
  .split-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
    padding: 70px 0 140px;
  }

  .horizontal-services,
  .process-line,
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 24px 0;
  }

  .section {
    padding: 76px 0;
  }

  .service-tile-grid,
  .horizontal-services,
  .process-line,
  .stats-section,
  .feature-row {
    grid-template-columns: 1fr;
  }

  h1 {
    letter-spacing: -0.04em;
  }

  .mega-letter {
    font-size: 13rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .floating-chip {
    display: none;
  }
}


/* Logo integration */
.brand-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 0 20px var(--neon-soft);
  animation: navLogoGlow 2.4s ease-in-out infinite alternate;
}

@keyframes navLogoGlow {
  from {
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.25);
    transform: scale(1);
  }

  to {
    box-shadow: 0 0 26px rgba(0, 200, 255, 0.65);
    transform: scale(1.04);
  }
}

.loader-logo-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 0 34px var(--neon-soft);
  animation: loaderPulse 1.2s infinite alternate;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(260px, 72%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(0, 200, 255, 0.3);
  box-shadow: 0 0 38px rgba(0, 200, 255, 0.35);
  animation: heroLogoFloat 3.8s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.35));
  }

  50% {
    transform: translateY(-10px) scale(1.03);
    filter: drop-shadow(0 0 24px rgba(0, 200, 255, 0.75));
  }
}

.about-logo {
  width: min(280px, 80%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(0, 200, 255, 0.3);
  box-shadow: 0 0 44px rgba(0, 200, 255, 0.28);
  animation: aboutLogoPulse 3s ease-in-out infinite;
}

@keyframes aboutLogoPulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.035);
    filter: brightness(1.18);
  }
}

@media (max-width: 640px) {
  .nav-logo {
    width: 42px;
    height: 42px;
  }

  .hero-logo {
    width: min(230px, 78%);
  }
}


/* Color harmony update to match the refined logo */
.brand-main {
  color: var(--text) !important;
  text-shadow: 0 0 10px rgba(255,255,255,0.15);
}

.brand-sub {
  color: var(--neon) !important;
  text-shadow: 0 0 12px var(--neon-soft);
}

.hero h1,
h1,
h2 {
  color: var(--text);
}

.footer,
.hero-text,
.section-copy p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
}

.portrait-card,
.image-placeholder,
.wide-card,
.process-card,
.stat-card,
.feature-box,
.contact-form,
.neon-tile {
  background-color: rgba(4, 12, 24, 0.84);
}

.nav-logo,
.hero-logo,
.about-logo,
.loader-logo-img {
  box-shadow: 0 0 28px rgba(24, 228, 255, 0.22);
}

.contact-links a:hover,
.btn.primary-btn:hover,
.nav-logo:hover {
  box-shadow: 0 0 30px rgba(24, 228, 255, 0.28);
}
