/* Devoured — App Landing Page */

:root {
  --bg: #0D0D0D;
  --surface: #1A1A1A;
  --card: #222222;
  --gold: #C9A84C;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-glow: rgba(201, 168, 76, 0.3);
  --text: #F5F5F5;
  --text-muted: #999999;
  --text-secondary: #CCCCCC;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 16px 0;
}

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

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-cta {
  background: var(--gold);
  color: var(--bg) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
}

.nav-cta:hover {
  opacity: 0.9 !important;
}

/* ============================================
   CONTAINER
   ============================================ */

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

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  opacity: 1;
}

.hero-phone {
  flex: 0 0 300px;
  z-index: 1;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--surface);
  border-radius: 36px;
  border: 3px solid var(--card);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 33px;
}

.phone-placeholder {
  text-align: center;
  color: var(--text-muted);
  padding: 20px;
}

.phone-placeholder .app-title {
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.phone-placeholder .app-tagline {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   FEATURES
   ============================================ */

.features {
  padding: 120px 0;
}

.section-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 60px;
  max-width: 560px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.3s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

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

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
  padding: 120px 0;
  background: var(--surface);
}

.steps {
  display: flex;
  gap: 40px;
  margin-top: 60px;
}

.step {
  flex: 1;
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   BADGES / SOCIAL PROOF
   ============================================ */

.badges {
  padding: 120px 0;
}

.badges-showcase {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge-pill {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: border-color 0.2s, transform 0.2s;
}

.badge-pill:hover {
  border-color: var(--gold);
  transform: scale(1.05);
}

.badge-pill .emoji {
  margin-right: 6px;
}

/* ============================================
   CTA
   ============================================ */

.cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.cta h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  position: relative;
}

.cta .btn-primary {
  position: relative;
  font-size: 18px;
  padding: 16px 36px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 12px;
}

/* ============================================
   STATS
   ============================================ */

.stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 17px;
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-phone {
    flex: none;
    margin-top: 40px;
  }

  .phone-mockup {
    width: 220px;
    height: 440px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .nav-links {
    display: none;
  }

  footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .stats {
    justify-content: center;
  }
}
