/* ==========================================================================
   BUTTER.LOL — Elite Game Enhancement / Virtualization Platform
   Style: Commercial Underground Storefront (Phantom / Neverlose Tier)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600;700&display=swap');

:root {
  --bg-main: #070709;
  --bg-surface: #0d0e12;
  --bg-card: #121318;
  --bg-card-hover: #171920;
  --bg-elevated: #1a1c24;
  
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(245, 158, 11, 0.35);
  
  --gold: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.2);
  --gold-light: #fbbf24;
  
  --green: #10b981;
  --green-glow: rgba(16, 185, 129, 0.15);
  
  --text-white: #ffffff;
  --text-gray: #9ca3af;
  --text-dim: #6b7280;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-main);
  color: var(--text-white);
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  background: radial-gradient(circle at 50% 0%, #15141b 0%, #070709 50%);
}

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

/* Header & Nav */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 0 16px var(--gold-glow);
}

.brand-title {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: #fff;
}
.brand-title span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s;
}
.nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.discord-btn {
  background: #171821;
  border: 1px solid var(--border-medium);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}
.discord-btn:hover {
  background: #20222f;
  border-color: #3b4261;
}

.nav-buy-btn {
  background: var(--gold);
  color: #000;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 14px var(--gold-glow);
  transition: transform 0.15s, background 0.15s;
}
.nav-buy-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  padding: 80px 0 50px;
  text-align: center;
  position: relative;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulseBeacon 2s infinite;
}

@keyframes pulseBeacon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #fff 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 660px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-large-gold {
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 20px var(--gold-glow);
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-large-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.btn-large-dark {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.15s;
}
.btn-large-dark:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Product Showcase Visual */
.showcase-window {
  max-width: 880px;
  margin: 0 auto;
  background: #0d0f15;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8), 0 0 40px rgba(245, 158, 11, 0.05);
  overflow: hidden;
  text-align: left;
}

.window-bar {
  background: #13161f;
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.window-dots {
  display: flex;
  gap: 6px;
}
.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a2e3d;
}

.window-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
}

.window-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .window-body {
    grid-template-columns: 1fr;
  }
}

.telemetry-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hw-item {
  background: #141722;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.hw-label {
  color: var(--text-gray);
}
.hw-val {
  color: var(--gold-light);
  font-weight: 600;
}
.hw-val.old {
  color: var(--text-dim);
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 11px;
}

.terminal-box {
  background: #08090d;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #e5e7eb;
  line-height: 1.6;
  height: 100%;
}

.t-gold { color: var(--gold); }
.t-green { color: var(--green); }
.t-dim { color: var(--text-dim); }

/* Proof stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-subtle);
}

@media (max-width: 768px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
}

.stat-item {
  text-align: center;
}
.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}
.stat-num span {
  color: var(--gold);
}
.stat-label {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 4px;
}

/* Feature Grid */
.features-section {
  padding: 70px 0;
}

.section-tag {
  text-align: center;
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.section-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.2s;
}
.card:hover {
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Pricing */
.pricing-section {
  padding: 70px 0;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

.tier-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.2s;
}

.tier-box:hover {
  border-color: var(--border-medium);
}

.tier-box.highlight {
  background: #141722;
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.15);
}

.badge-pop {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tier-header {
  margin-bottom: 20px;
}

.tier-duration {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tier-price {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 8px 0;
}
.tier-price span {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

.tier-perks {
  list-style: none;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.tier-perks li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-perks li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

.tier-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--border-medium);
  background: #1b1d28;
  color: #fff;
  cursor: pointer;
  transition: all 0.15s;
}
.tier-btn:hover {
  background: #252837;
  border-color: rgba(255, 255, 255, 0.3);
}

.tier-box.highlight .tier-btn {
  background: var(--gold);
  color: #000;
  border: none;
}
.tier-box.highlight .tier-btn:hover {
  background: var(--gold-light);
}

/* FAQ */
.faq-section {
  padding: 70px 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 12px;
}

.faq-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.faq-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 36px 0;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  margin-left: 18px;
}
.footer-links a:hover {
  color: #fff;
}

/* Checkout Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: #11131a;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  max-width: 460px;
  width: 100%;
  padding: 26px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.8);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 800;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 22px;
  cursor: pointer;
}
.modal-close:hover {
  color: #fff;
}

.pay-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.pay-btn {
  background: #171922;
  border: 1px solid var(--border-subtle);
  color: var(--text-gray);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.pay-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 158, 11, 0.1);
}

.pay-box {
  background: #090a0e;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
  font-size: 13px;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 11px 14px;
  background: #090a0e;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 14px;
}
.form-group input:focus {
  outline: none;
  border-color: var(--gold);
}

.submit-btn {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 14px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s;
}
.submit-btn:hover {
  background: var(--gold-light);
}
