html { scroll-behavior: smooth; }
/* ============================================================
   The Den RCON - Premium Landing Styles
   ============================================================ */

:root {
  --landing-bg: #0b0d12;
  --glass: rgba(22, 26, 40, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
}

.landing-page {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Nav */
.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 40px;
}

.landing-nav .brand {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 0%, #8892a4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-nav .brand span {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.landing-nav-links a:not(.btn) {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  position: relative;
}

.landing-nav-links a:not(.btn):hover,
.landing-nav-links a:not(.btn).active {
  color: var(--accent);
}

.landing-nav-links a:not(.btn).active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* Hero */
.landing-hero {
  padding: 60px 0 100px;
  text-align: center;
  position: relative;
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.05) 0%, transparent 70%);
  z-index: -1;
}

.landing-hero h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -2px;
  background: linear-gradient(to bottom, #fff 40%, rgba(255,255,255,0.5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-hero p {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 50px;
  font-weight: 400;
}

/* Cards & Sections */
.landing-section {
  padding: 50px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 50px 40px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.1);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 700;
}

/* Roadmap */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.roadmap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.roadmap-card:hover {
  border-color: var(--accent-glow);
}

.roadmap-card::after {
  content: 'PIPELINE';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 9px;
  font-weight: 900;
  padding: 4px 35px;
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--accent-glow);
}

.roadmap-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--accent);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.pricing-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: rgba(22, 26, 40, 0.9);
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.pricing-card.featured .badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 0 20px var(--accent-glow);
}

.plan-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-align: center;
}

.plan-price {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: -2px;
}

.plan-price span {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0;
}

.plan-features {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  flex: 1;
}

.plan-features li {
  font-size: 13.5px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
  font-size: 18px;
}

/* Buttons */
.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 16px;
}

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

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 450px; }
  .pricing-card.featured { transform: none; }
  .landing-hero h1 { font-size: 56px; }
}

@media (max-width: 768px) {
  .landing-nav-links { display: none; }
  .landing-page { padding: 0 24px; }
  .landing-hero h1 { font-size: 42px; }
}

/* Global Landing Overrides */
body.landing-active {
  background: var(--landing-bg) !important;
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(0, 245, 212, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(30, 144, 255, 0.05) 0%, transparent 40%) !important;
  background-attachment: fixed !important;
}

.landing-page {
  position: relative;
  z-index: 1;
}

/* Footer */
.landing-footer {
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 14px;
}

.landing-footer p {
  margin: 5px 0;
}

.pricing-disclaimer {
  text-align: center;
  max-width: 700px;
  margin: 40px auto 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.7;
}

/* Auth Centering */
.landing-auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 180px); /* Account for nav and padding */
  padding: 40px 0;
}
