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

/* --- CUSTOM VARIABLES --- */
:root {
  --bg-void: #060813;
  --bg-void-rgb: 6, 8, 19;
  --bg-surface: #0a0e24;
  --bg-card: rgba(13, 20, 47, 0.45);
  --bg-card-hover: rgba(18, 28, 65, 0.7);
  --border-cyber: rgba(0, 240, 255, 0.15);
  --border-cyber-hover: rgba(0, 240, 255, 0.4);

  /* Neon glow colors */
  --neon-cyan: #00f0ff;
  --neon-cyan-rgb: 0, 240, 255;
  --neon-magenta: #ff0055;
  --neon-magenta-rgb: 255, 0, 85;
  --neon-green: #39ff14;
  --neon-green-rgb: 57, 255, 20;
  --neon-orange: #ff9f00;
  --neon-orange-rgb: 255, 159, 0;

  /* Font stacks */
  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-cyber: "Orbitron", sans-serif;
  --font-mono: "Share Tech Mono", monospace;

  /* Theme specs */
  --header-height: 80px;
  --container-width: 1200px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Neon glow shadows */
  --shadow-cyan:
    0 0 15px rgba(0, 240, 255, 0.3), inset 0 0 15px rgba(0, 240, 255, 0.1);
  --shadow-magenta:
    0 0 15px rgba(255, 0, 85, 0.3), inset 0 0 15px rgba(255, 0, 85, 0.1);
  --shadow-green:
    0 0 15px rgba(57, 255, 20, 0.3), inset 0 0 15px rgba(57, 255, 20, 0.1);
  --shadow-orange:
    0 0 15px rgba(255, 159, 0, 0.3), inset 0 0 15px rgba(255, 159, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-void);
  color: #e2e8f0;
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(0, 240, 255, 0.03) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 0, 85, 0.03) 0%,
      transparent 40%
    ),
    linear-gradient(rgba(10, 14, 36, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 14, 36, 0.5) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 100%,
    30px 30px,
    30px 30px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.no-scroll {
  overflow: hidden;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-void);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 240, 255, 0.15);
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(0, 240, 255, 0.05);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
}

/* --- LOADER --- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-void);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.6s var(--transition-smooth),
    visibility 0.6s var(--transition-smooth);
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__logo {
  font-family: var(--font-cyber);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
  animation: pulseLogo 1.5s infinite alternate;
}
.loader__logo span {
  color: var(--neon-magenta);
  text-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
}
.loader__bar-wrap {
  width: 250px;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 240, 255, 0.1);
}
.loader__bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  box-shadow: 0 0 10px var(--neon-cyan);
  transform: translateX(-100%);
  animation: loadProgress 1.6s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}
.loader__text {
  font-family: var(--font-mono);
  color: var(--neon-cyan);
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  animation: blinkText 0.8s infinite;
}

@keyframes loadProgress {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-40%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes pulseLogo {
  0% {
    transform: scale(0.98);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.02);
    opacity: 1;
  }
}
@keyframes blinkText {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* --- LAYOUT UTILITIES --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.section {
  padding: 10px 0;
  position: relative;
}
.list-none {
  list-style: none;
}
.hidden {
  display: none !important;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-cyber);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}
h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.25rem;
}
h3 {
  font-size: 1.5rem;
}

.section-label {
  font-family: var(--font-cyber);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon-cyan);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--neon-magenta);
  box-shadow: 0 0 8px var(--neon-magenta);
}

.text-lead {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 600px;
}

/* --- NEON UTILITIES --- */
.text-cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}
.text-magenta {
  color: var(--neon-magenta);
  text-shadow: 0 0 10px rgba(255, 0, 85, 0.3);
}
.text-green {
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}
.text-mono {
  font-family: var(--font-mono);
}

/* --- GLASSMORPHIC CARD --- */
.cyber-card {
  background: var(--bg-card);
  border: 1px solid var(--border-cyber);
  border-radius: var(--border-radius-md);
  padding: 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
  position: relative;
  overflow: hidden;
}
.cyber-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-cyan),
    transparent
  );
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.cyber-card:hover {
  border-color: var(--border-cyber-hover);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-2px);
}
.cyber-card:hover::before {
  opacity: 1;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cyber);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.btn--primary {
  background: var(--neon-cyan);
  color: var(--bg-void);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}
.btn--primary:hover {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--neon-magenta);
  color: #fff;
  border: 1px solid var(--neon-magenta);
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.2);
}
.btn--secondary:hover {
  background: #ff3377;
  border-color: #ff3377;
  box-shadow: var(--shadow-magenta);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 240, 255, 0.3);
}
.btn--outline:hover {
  background: rgba(0, 240, 255, 0.05);
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-cyan);
}

.btn--ghost {
  background: transparent;
  color: #94a3b8;
  border: 1px solid transparent;
}
.btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.75rem;
}
.btn--lg {
  padding: 16px 32px;
  font-size: 0.95rem;
}
.btn--full {
  width: 100%;
}

/* Glitch styling for buttons */
.btn--glitch::after {
  content: "BREACH";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--neon-cyan);
  color: var(--bg-void);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn--glitch:hover::after {
  animation: glitchText 0.3s steps(2) infinite;
  opacity: 1;
}

@keyframes glitchText {
  0% {
    clip-path: inset(40% 0 61% 0);
    transform: skew(0.3deg);
  }
  20% {
    clip-path: inset(92% 0 1% 0);
    transform: skew(-0.5deg);
  }
  40% {
    clip-path: inset(15% 0 80% 0);
    transform: skew(0.5deg);
  }
  60% {
    clip-path: inset(80% 0 5% 0);
    transform: skew(-0.3deg);
  }
  80% {
    clip-path: inset(3% 0 92% 0);
    transform: skew(0.8deg);
  }
  100% {
    clip-path: inset(50% 0 45% 0);
    transform: skew(0deg);
  }
}

/* --- HEADER NAVIGATION --- */
.header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 8, 19, 0.6);
  border-bottom: 1px solid rgba(0, 240, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background var(--transition-smooth),
    border-color var(--transition-smooth);
}
.header.is-scrolled {
  background: rgba(6, 8, 19, 0.9);
  border-color: rgba(0, 240, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-cyber);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  flex-shrink: 0;
}
.header__logo img {
  filter: drop-shadow(0 0 8px var(--neon-cyan));
  transition: transform var(--transition-smooth);
}
.header__logo:hover img {
  transform: rotate(18deg) scale(1.1);
}
.header__logo-text strong {
  color: var(--neon-magenta);
  text-shadow: 0 0 10px rgba(255, 0, 85, 0.3);
}

.header__nav {
  display: none;
}
@media (min-width: 992px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
}
.header__nav-link {
  font-family: var(--font-cyber);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #94a3b8;
  transition: color var(--transition-fast);
  position: relative;
  padding: 8px 0;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: var(--shadow-cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}
.header__nav-link:hover {
  color: var(--neon-cyan);
}
.header__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header__nav-link.is-active {
  color: var(--neon-cyan);
}
.header__nav-link.is-active::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__user {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.15);
  padding: 6px 14px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: border-color var(--transition-fast);
  text-decoration: none;
}
.header__user:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}
.header__user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cyber);
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: var(--bg-surface);
  overflow: hidden;
}
.header__user-info {
  display: flex;
  flex-direction: column;
}
.header__username {
  font-family: var(--font-cyber);
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
}
.header__userrank {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--neon-cyan);
}

/* Hamburger menu button */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}
@media (min-width: 992px) {
  .burger {
    display: none;
  }
}
.burger__line {
  width: 100%;
  height: 2px;
  background-color: var(--neon-cyan);
  box-shadow: 0 0 6px var(--neon-cyan);
  transition: all 0.3s ease;
}
.burger.is-open .burger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger.is-open .burger__line:nth-child(2) {
  opacity: 0;
}
.burger.is-open .burger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile full-screen navigation */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-cyber);
  z-index: 999;
  padding: 100px 40px;
  transition: right var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu.is-open {
  right: 0;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.8);
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu__link {
  font-family: var(--font-cyber);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #94a3b8;
  transition: color var(--transition-fast);
}
.mobile-menu__link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
}
.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}
.header-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* --- MAIN FRAME SECTION & HERO --- */
main {
  padding-top: var(--header-height);
  flex: 1;
}

.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero__deco-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(0, 240, 255, 0.015) 1px, transparent 1px);
  background-size:
    20px 20px,
    40px 40px;
}
.hero__deco-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}
.hero__deco-blob--1 {
  top: -10%;
  left: -10%;
  background: var(--neon-cyan);
}
.hero__deco-blob--2 {
  bottom: -10%;
  right: -10%;
  background: var(--neon-magenta);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
.hero__title-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--neon-cyan);
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4));
}
.hero__subtitle {
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(13, 20, 47, 0.3);
  border: 1px solid rgba(0, 240, 255, 0.08);
  padding: 20px 30px;
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(8px);
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-value {
  font-family: var(--font-cyber);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

/* Floating Retro Visual Console */
.hero__visual {
  display: flex;
  justify-content: center;
}
.hero__terminal {
  width: 100%;
  max-width: 440px;
  height: 420px;
  background: #04060f;
  border: 2px solid var(--neon-cyan);
  box-shadow: var(--shadow-cyan);
  border-radius: var(--border-radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__terminal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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: 5;
}
.hero__terminal-header {
  height: 36px;
  background: rgba(0, 240, 255, 0.05);
  border-bottom: 2px solid var(--neon-cyan);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__terminal-dots {
  display: flex;
  gap: 8px;
}
.hero__terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--neon-magenta);
}
.hero__terminal-dot--2 {
  background-color: var(--neon-orange);
}
.hero__terminal-dot--3 {
  background-color: var(--neon-green);
}
.hero__terminal-title {
  font-family: var(--font-cyber);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 0.1em;
}
.hero__terminal-content {
  flex: 1;
  padding: 24px;
  font-family: var(--font-mono);
  color: var(--neon-green);
  text-shadow: 0 0 4px rgba(57, 255, 20, 0.5);
  overflow-y: auto;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__terminal-line {
  word-break: break-all;
  line-height: 1.4;
}
.hero__terminal-prompt {
  color: var(--neon-cyan);
}
.hero__terminal-success {
  color: #fff;
  background: rgba(57, 255, 20, 0.15);
  border: 1px solid var(--neon-green);
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-green);
  margin-top: 10px;
}

/* --- REVEAL EFFECTS ON SCROLL --- */
.reveal,
.reveal--left,
.reveal--right,
.reveal--scale {
  opacity: 0;
  transition:
    transform 0.8s var(--transition-smooth),
    opacity 0.8s var(--transition-smooth);
}
.reveal {
  transform: translateY(30px);
}
.reveal--left {
  transform: translateX(-50px);
}
.reveal--right {
  transform: translateX(50px);
}
.reveal--scale {
  transform: scale(0.95);
}

.reveal.is-visible,
.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--scale.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
.reveal-delay-1 {
  transition-delay: 0.15s;
}
.reveal-delay-2 {
  transition-delay: 0.3s;
}
.reveal-delay-3 {
  transition-delay: 0.45s;
}
.reveal-delay-4 {
  transition-delay: 0.6s;
}

/* --- GRID CATS & AGENT STUFF --- */
.grid-cats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 576px) {
  .grid-cats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .grid-cats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-cyber);
  border-radius: var(--border-radius-md);
  padding: 24px;
  text-decoration: none;
  color: #fff;
  backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}
.cat-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-4px);
}
.cat-card--magenta:hover {
  border-color: var(--neon-magenta);
  box-shadow: var(--shadow-magenta);
}
.cat-card--green:hover {
  border-color: var(--neon-green);
  box-shadow: var(--shadow-green);
}
.cat-card--orange:hover {
  border-color: var(--neon-orange);
  box-shadow: var(--shadow-orange);
}
.cat-card__icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px var(--neon-cyan));
  display: flex;
}
.cat-card--magenta .cat-card__icon {
  filter: drop-shadow(0 0 10px var(--neon-magenta));
}
.cat-card--green .cat-card__icon {
  filter: drop-shadow(0 0 10px var(--neon-green));
}
.cat-card--orange .cat-card__icon {
  filter: drop-shadow(0 0 10px var(--neon-orange));
}

.cat-card__title {
  font-family: var(--font-cyber);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.cat-card__desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 24px;
}
.cat-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-cyber);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--neon-cyan);
  text-transform: uppercase;
}
.cat-card--magenta .cat-card__footer {
  color: var(--neon-magenta);
}
.cat-card--green .cat-card__footer {
  color: var(--neon-green);
}
.cat-card--orange .cat-card__footer {
  color: var(--neon-orange);
}

/* --- FORM CONTROLS --- */
.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-family: var(--font-cyber);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
}
.form-control {
  background: rgba(6, 8, 19, 0.8);
  border: 1px solid var(--border-cyber);
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-sans);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-cyan);
}
.form-control::placeholder {
  color: #475569;
}

/* --- FOOTER --- */
.footer {
  background-color: #03050a;
  border-top: 1px solid rgba(0, 240, 255, 0.05);
  padding: 60px 0 40px;
  font-size: 0.9rem;
  color: #64748b;
  position: relative;
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-cyber);
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}
.footer__logo-text strong {
  color: var(--neon-magenta);
}
.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.footer__social-link {
  color: #475569;
  transition: color var(--transition-fast);
}
.footer__social-link:hover {
  color: var(--neon-cyan);
  filter: drop-shadow(0 0 5px var(--neon-cyan));
}
.footer__col-title {
  font-family: var(--font-cyber);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav-link {
  color: #64748b;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer__nav-link:hover {
  color: var(--neon-cyan);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-size: 0.8rem;
}
