/* Landing page styles */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0f;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

.glow-green {
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5), 0 0 40px rgba(0, 255, 136, 0.3);
}

.hero-gradient {
  background: radial-gradient(ellipse at top, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at bottom right, rgba(255, 51, 102, 0.05) 0%, transparent 50%);
}

.nav-link {
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: #00ff88;
}

/* Cyberpunk corner cut cards */
.cyber-card {
  position: relative;
  clip-path: polygon(
    12px 0,
    100% 0,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    0 100%,
    0 12px
  );
}

/* Top-left corner accent */
.cyber-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 2px;
  background: #00ff88;
  transform: rotate(-45deg);
  transform-origin: 0 0;
  z-index: 10;
}

/* Bottom-right corner accent */
.cyber-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 17px;
  height: 2px;
  background: #00ff88;
  transform: rotate(-45deg);
  transform-origin: 100% 100%;
  z-index: 10;
}

/* Smaller corner cuts for buttons */
.cyber-btn {
  clip-path: polygon(
    6px 0,
    100% 0,
    100% calc(100% - 6px),
    calc(100% - 6px) 100%,
    0 100%,
    0 6px
  );
}
