/* ============================================================
   FORGEBORN — Marketing Website Styles
   ============================================================ */

:root {
  --bg: #0D0D1A;
  --surface: #1A1A2E;
  --surface-alt: #16213E;
  --primary: #6C63FF;
  --primary-dim: #4A42CC;
  --gold: #FFD93D;
  --red: #FF6B6B;
  --teal: #4ECDC4;
  --pink: #FF8FAB;
  --orange: #FF9F43;
  --text: #FFFFFF;
  --text-secondary: #A0AEC0;
  --text-muted: #718096;
  --border: #2D3748;
  --success: #48BB78;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { opacity: 0.85; }

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

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,99,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-logo { font-size: 80px; margin-bottom: 16px; animation: float 3s ease-in-out infinite; }

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

.hero h1 {
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 900;
  letter-spacing: 8px;
  color: var(--primary);
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: clamp(14px, 3vw, 20px);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 16px;
  font-weight: 800;
  padding: 18px 48px;
  border-radius: 50px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(108,99,255,0.4);
}

.hero-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(108,99,255,0.5);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 2px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---- SECTIONS ---- */
section {
  padding: 100px 24px;
}

.section-title {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 900;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* ---- FEATURE CARDS ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ---- CATEGORIES ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  border-top: 3px solid;
  transition: transform 0.3s;
}

.category-card:hover { transform: translateY(-4px); }

.category-icon { font-size: 36px; margin-bottom: 12px; }

.category-card h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.category-card .stat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.category-card p {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 8px;
  line-height: 1.5;
}

/* ---- FLOW ---- */
.flow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.flow-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  width: 180px;
  position: relative;
}

.flow-step .step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 900;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step .step-icon { font-size: 32px; margin: 12px 0 8px; }
.flow-step p { color: var(--text-secondary); font-size: 13px; font-weight: 600; }

/* ---- SCRIPTURE ---- */
.scripture-section {
  background: var(--surface-alt);
  text-align: center;
}

.scripture-verse {
  font-size: clamp(18px, 3vw, 24px);
  font-style: italic;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

.scripture-ref {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.scripture-note {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- SHOP PREVIEW ---- */
.shop-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.shop-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  width: 140px;
  transition: transform 0.2s;
}

.shop-item:hover { transform: scale(1.05); }
.shop-item .item-icon { font-size: 32px; margin-bottom: 8px; }
.shop-item .item-name { font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.shop-item .item-price { color: var(--gold); font-size: 12px; font-weight: 800; }

/* ---- SCREENSHOTS ---- */
.screenshots-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.screenshot-placeholder {
  width: 220px;
  height: 440px;
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ---- CTA SECTION ---- */
.cta-section {
  text-align: center;
  padding: 120px 24px;
}

.cta-section h2 {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

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

.app-store-badge {
  display: inline-block;
  background: white;
  color: black;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 12px;
  letter-spacing: 1px;
  transition: transform 0.2s;
}

.app-store-badge:hover { transform: scale(1.05); color: black; }

/* ---- FOOTER ---- */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}

footer p { color: var(--text-muted); font-size: 13px; margin-bottom: 8px; }
footer a { color: var(--primary); }

.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; }
.footer-links a { color: var(--text-secondary); font-size: 13px; font-weight: 600; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  section { padding: 60px 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { gap: 16px; }
  .flow-step { width: 140px; padding: 16px; }
  .screenshot-placeholder { width: 160px; height: 320px; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .shop-items { gap: 12px; }
  .shop-item { width: 100px; padding: 12px; }
}
