:root {
  --bg: #09090b;
  --card: #18181b;
  --turquoise: #22d3ee;
  --orange: #f97316;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); }

.glow-cta {
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.35), 0 0 40px rgba(249, 115, 22, 0.15), inset 0 0 20px rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.5);
  transition: all 0.3s ease;
}
.glow-cta:hover {
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.55), 0 0 60px rgba(249, 115, 22, 0.25);
  border-color: rgba(249, 115, 22, 0.6);
  transform: translateY(-2px);
}

.gradient-text {
  background: linear-gradient(135deg, var(--turquoise), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  color: #09090b;
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
  transition: filter 0.2s ease;
}
.btn-primary:hover { filter: brightness(1.1); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid #3f3f46;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover { border-color: var(--turquoise); color: var(--turquoise); }

.input-field {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #3f3f46;
  background: #18181b;
  padding: 0.625rem 1rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input-field:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.3);
}

.card {
  border-radius: 1rem;
  border: 1px solid #27272a;
  background: rgba(24, 24, 27, 0.8);
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
}
