:root {
  --bg-primary: #050505;
  --bg-secondary: #111111;
  --text-primary: #FAFAFA;
  --text-secondary: #A1A1AA;
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #996515;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --glass-bg: rgba(25, 25, 25, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

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

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

.text-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--gold-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Base Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #000;
  border: none;
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

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

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
  background: radial-gradient(circle at 50% 30%, #1a1500 0%, var(--bg-primary) 70%);
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 900px;
}

.hero-supertitle {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.hero p {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .vault-image {
  max-width: 500px;
  margin: 0 auto 40px;
  display: block;
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.2));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Sections */
section {
  padding: 120px 0;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 64px;
}

/* The Brutal Truth */
.brutal-truth {
  background-color: var(--bg-secondary);
}

.truth-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
}

.truth-text {
  margin-bottom: 24px;
  border-left: 4px solid var(--gold-primary);
  padding-left: 24px;
}

.truth-highlight {
  font-weight: 700;
  color: #fff;
  font-size: 1.5rem;
  margin-top: 40px;
}

/* What You're Getting */
.vault-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.vault-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 32px;
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.vault-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
}

.card-icon {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.vault-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
}

.vault-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Bonuses */
.bonuses {
  background: linear-gradient(to bottom, var(--bg-primary), #0a0800);
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.bonus-item {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 32px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.bonus-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold-primary);
  opacity: 0.5;
}

.bonus-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* Pricing */
.pricing {
  text-align: center;
}

.price-box {
  background: var(--glass-bg);
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  padding: 64px 32px;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-20deg);
  animation: shine 6s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.normal-price {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.launch-price {
  font-size: 5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 20px var(--gold-glow);
}

.urgency-text {
  color: #ef4444;
  font-weight: 600;
  margin-top: 24px;
}

/* Guarantee */
.guarantee-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.guarantee-box h3 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

/* Footer / Warning */
.footer {
  background-color: var(--bg-secondary);
  padding: 80px 0 40px;
  text-align: center;
}

.footer .warning-content {
  max-width: 600px;
  margin: 0 auto 64px;
}

.footer .warning-content h3 {
  color: #ef4444;
  margin-bottom: 24px;
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.875rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 32px;
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Responsive */
@media (max-width: 768px) {
  .bonus-item {
    flex-direction: column;
    gap: 16px;
  }
}
