:root {
  --bg: #030812;
  --bg-alt: #051024;
  --surface: #091a35;
  --surface-soft: #0e274f;
  --border: rgba(26, 255, 214, 0.2);
  --border-hover: rgba(26, 255, 214, 0.55);
  --text: #e1f7f4;
  --muted: #6f8d9c;
  --primary: #1affd6;
  --primary-strong: #ffffff;
  --accent: #00bfff;
  --success: #39ff14;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.9);
  --shadow-glow: 0 0 20px rgba(26, 255, 214, 0.15);
  
  --gradient-neon: linear-gradient(135deg, #1affd6 0%, #00bfff 100%);
  --gradient-abyss: linear-gradient(180deg, #091a35 0%, #030812 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: var(--bg);
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(26, 255, 214, 0.05) 0%, transparent 60%),
    linear-gradient(rgba(3, 8, 18, 0.98), rgba(3, 8, 18, 0.98));
  background-attachment: fixed;
}

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

a:hover {
  color: var(--primary);
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1280px, 100% - 40px);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
  position: relative;
}

/* Typography Overrides */
.section-title-editorial {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(26, 255, 214, 0.2);
}

.muted-editorial {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.badge-promo-warm {
  display: inline-block;
  background: rgba(26, 255, 214, 0.05);
  border: 1px solid var(--border);
  color: var(--primary);
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  letter-spacing: 0.12em;
  box-shadow: 0 0 10px rgba(26, 255, 214, 0.1);
}

.muted {
  color: var(--muted);
}

.glass {
  background: rgba(9, 26, 53, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Buttons */
.btn-primary-editorial,
.btn-secondary {
  border-radius: 4px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.btn-primary-editorial {
  background: var(--gradient-neon);
  color: #030812;
  border: none;
  box-shadow: 0 4px 15px rgba(26, 255, 214, 0.3);
}

.btn-primary-editorial:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26, 255, 214, 0.5);
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--primary);
}

.btn-secondary:hover {
  border-color: var(--primary-strong);
  color: #fff;
  background: rgba(26, 255, 214, 0.05);
  transform: translateY(-2px);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Main Spacing clearance */
.main-content {
  padding-top: 110px;
  min-height: calc(100vh - 350px);
}

@media (max-width: 768px) {
  .main-content {
    padding-top: 90px;
  }
}

/* Background abyssal light rays */
.bg-blob-warm {
  position: absolute;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}
.bg-blob-warm.orange {
  background: rgba(26, 255, 214, 0.15);
  top: 15%;
  left: -10%;
  width: 45vw;
  height: 45vw;
}
.bg-blob-warm.cream {
  background: rgba(0, 191, 255, 0.15);
  top: 55%;
  right: -5%;
  width: 35vw;
  height: 35vw;
}
