/* Global Variables */
:root {
  --bg-dark: #09090b;
  --bg-card: rgba(24, 24, 27, 0.6);
  --border-color: rgba(255, 255, 255, 0.08);
  --primary-gradient: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
  --secondary-gradient: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --accent-color: #ec4899;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #09090b;
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3f3f46;
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Glassmorphism Card Base */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Interactive Elements */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(219, 39, 119, 0.6);
  opacity: 0.95;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(9, 9, 11, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #db2777;
  box-shadow: 0 0 10px rgba(219, 39, 119, 0.2);
}

/* Header / Navigation */
header {
  padding: 1.5rem 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link-btn {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.nav-link-btn:hover {
  background: white;
  color: black;
}

/* Background elements */
.bg-glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  top: -10%;
  right: -5%;
  z-index: -1;
  pointer-events: none;
}

.bg-glow-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 39, 119, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  bottom: 10%;
  left: -10%;
  z-index: -1;
  pointer-events: none;
}

/* Section styling */
section {
  padding: 8rem 0 4rem 0;
  position: relative;
}

/* Animation utilities */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 6rem 0 3rem 0;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 0.9rem 1.8rem;
  }
}
