/* Modern Reset and Tokens */
:root {
  --bg-primary: #0a0914; /* Deep, dark premium background */
  --bg-secondary: #141326; /* Slightly lighter for cards */
  --text-primary: #f8f9fa;
  --text-secondary: #a1a0b6;
  --accent-gold: #d4af37; /* Elegant champagne gold */
  --accent-gold-hover: #f1c94b;
  --accent-purple: #6b4c9a;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-main: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-gold-hover);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* Navigation */
nav {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}

.btn-primary {
  background: var(--accent-gold);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: #000;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 76, 154, 0.2) 0%, rgba(10, 9, 20, 0) 70%);
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--accent-gold);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Features Grid */
.features {
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* How It Works List */
.steps-wrapper {
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.step-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-gold);
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
  }
  
  .step-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    display: none; /* simple mobile nav override */
  }
}

/* Blog List Specifics */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.blog-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.875rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-title {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1rem;
}

.blog-title:hover {
  color: var(--accent-gold);
}

.read-more {
  margin-top: auto;
  color: var(--accent-gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more:hover {
  gap: 0.75rem;
}

/* Article Styling */
.article-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
}

.article-content p {
  font-size: 1.125rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.article-content h2 {
  margin-top: 3rem;
  font-size: 2rem;
}

.article-content h3 {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #fff;
}

.article-content ul, .article-content ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  color: #ccc;
  font-size: 1.125rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.cta-box {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  margin: 4rem 0;
}

.cta-box h3 {
  margin-bottom: 1rem;
}

.cta-box p {
  margin: 0 auto 1.5rem;
}
