:root {
  --bg: #0c1220;
  --bg-alt: #10192e;
  --surface: #15223c;
  --surface-soft: #1e2f52;
  --border: rgba(143, 169, 196, 0.25);
  --border-hover: rgba(255, 255, 255, 0.5);
  --text: #ffffff;
  --muted: #8ca3c0;
  --primary: #8fa9c4;
  --primary-strong: #ffffff;
  --success: #6be3ab;
  --radius: 8px;
  --radius-sm: 4px;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 20px rgba(143, 169, 196, 0.25);
  
  --gradient-gold: linear-gradient(135deg, #8fa9c4 0%, #ffffff 100%);
  --gradient-metallic: linear-gradient(180deg, #15223c 0%, #0c1220 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(143, 169, 196, 0.1) 0%, transparent 60%),
    linear-gradient(rgba(12, 18, 32, 0.98), rgba(12, 18, 32, 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: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.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(143, 169, 196, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

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

.glass {
  background: rgba(21, 34, 60, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Buttons */
.btn-primary-editorial,
.btn-secondary {
  border-radius: 30px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  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-gold);
  color: #0c1220;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 15px rgba(143, 169, 196, 0.3);
}

.btn-primary-editorial:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(143, 169, 196, 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(143, 169, 196, 0.08);
  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 blob gradients */
.bg-blob-warm {
  position: absolute;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.12;
  border-radius: 50%;
  pointer-events: none;
}
.bg-blob-warm.orange {
  background: rgba(143, 169, 196, 0.25);
  top: 15%;
  left: -10%;
  width: 45vw;
  height: 45vw;
}
.bg-blob-warm.cream {
  background: rgba(255, 255, 255, 0.08);
  top: 55%;
  right: -5%;
  width: 35vw;
  height: 35vw;
}
