:root {
  /* Midnight Neon Palette */
  --bg-900: #050505;
  --bg-800: #0a0a0a;
  --text-main: #ffffff;
  --text-muted: #a3a3a3;

  --primary: #00f3ff; /* Cyan Neon */
  --secondary: #bd00ff; /* Purple Neon */
  --accent: #ff0055; /* Pink Neon */

  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.15);

  --font-display: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none; /* Hide default cursor */
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-900);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-image:
    radial-gradient(
      circle at 15% 50%,
      rgba(189, 0, 255, 0.08),
      transparent 25%
    ),
    radial-gradient(circle at 85% 30%, rgba(0, 243, 255, 0.08), transparent 25%);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

p {
  line-height: 1.6;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.highlight-txt {
  color: var(--accent);
  font-weight: 500;
}

/* Custom Cursor */
.cursor-dot {
  width: 5px;
  height: 5px;
  background-color: var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 10px var(--primary);
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

/* Layout */
.site-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 10;
}

/* Header */
header.top {
  margin-bottom: 4rem;
  animation: fadeInDown 0.8s ease-out;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #fff, #a5a5a5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.1rem;
  max-width: 600px;
}

/* Cards */
.card-custom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

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

.card-custom:hover::before {
  left: 100%;
}

.card-custom:hover {
  transform: translateY(-5px);
  border-color: var(--glass-highlight);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 243, 255, 0.1);
}

.card-custom h5 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-custom p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Chips & Domain */
.chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.5rem;
  margin-left: -0.25rem;
}

.domain {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--primary);
  font-family: var(--font-display);
  opacity: 0.8;
}

/* Blobs */
.blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
  animation: float 20s infinite alternate;
}

.blob--a {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  top: -100px;
  left: -100px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.blob--b {
  width: 500px;
  height: 500px;
  background: var(--primary);
  bottom: -150px;
  right: -150px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation-duration: 25s;
}

.blob--c {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.4;
  animation-duration: 15s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(30px, 50px) rotate(10deg);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  .site-wrap {
    padding-top: 2rem;
  }
  .cursor-dot,
  .cursor-outline {
    display: none;
  } /* Hide custom cursor on touch */
  * {
    cursor: auto;
  }
}
