/* Anwe Landing Page — Dark Mode Only */
:root {
  --gold: #D9B356;
  --gold-dim: rgba(217, 179, 86, 0.15);
  --bg: #0D0D0D;
  --bg-card: #18181A;
  --text: #E5E2E1;
  --text-dim: rgba(229, 226, 225, 0.5);
  --border: rgba(255, 255, 255, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }

/* Nav */
body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
body > nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
.nav-logo { font-size: 1.25rem; font-weight: 800; letter-spacing: 0.1em; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.nav-icon { max-width: 1.5rem; max-height: 1.5rem; flex-shrink: 0; }
.nav-cta {
  background: var(--gold); color: var(--bg);
  padding: 0.5rem 1.25rem; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700; text-decoration: none;
  letter-spacing: 0.05em; transition: all 0.2s;
}
.nav-cta:hover { background: #c49f3e; }

/* Hero */
.hero {
  padding: 8rem 1.5rem 3rem; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
  pointer-events: none;
}
.hero-tag {
  display: inline-block;
  border: 1px solid rgba(217, 179, 86, 0.3);
  color: var(--gold); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 999px; margin-bottom: 2rem;
}
.hero h1 {
  font-size: 3rem; font-weight: 900; letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem; color: var(--text-dim); max-width: 520px;
  margin: 0 auto 2.5rem; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--bg);
  padding: 0.85rem 2rem; border-radius: 999px;
  font-size: 0.9rem; font-weight: 700; text-decoration: none;
  letter-spacing: 0.05em; transition: all 0.2s;
}
.btn-primary:hover { background: #c49f3e; transform: translateY(-1px); }
.btn-secondary {
  border: 1px solid var(--border); color: var(--text);
  padding: 0.85rem 2rem; border-radius: 999px;
  font-size: 0.9rem; font-weight: 700; text-decoration: none;
  letter-spacing: 0.05em; transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* Screenshots */
.screenshots { padding: 2rem 0 4rem; }
.screenshots-title {
  text-align: center; font-size: 2rem; font-weight: 800;
  margin-bottom: 2.5rem; letter-spacing: -0.02em;
}
.screenshots-title span { color: var(--gold); }
.screenshot-carousel {
  display: flex; gap: 1.25rem; overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 1.5rem 1rem;
  max-width: 100%;
}
.screenshot-carousel::-webkit-scrollbar { display: none; }
.screenshot-frame {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: 1.5rem; overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 9 / 16;
  transition: transform 0.2s, border-color 0.2s;
}
.screenshot-frame:hover {
  transform: translateY(-4px); border-color: var(--gold);
}
.screenshot-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  display: block;
}

/* Features */
.features {
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--border);
}
.features h2 {
  text-align: center; font-size: 2rem; font-weight: 800;
  margin-bottom: 3rem; letter-spacing: -0.02em;
}
.features h2 span { color: var(--gold); }
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; max-width: 960px; margin: 0 auto;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 2rem;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(217, 179, 86, 0.3); }
.feature-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 0.75rem;
  background: var(--gold-dim); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem;
  color: var(--gold);
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

/* CTA */
.cta {
  padding: 5rem 1.5rem; text-align: center;
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute;
  bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
  pointer-events: none;
}
.cta h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.cta p { color: var(--text-dim); max-width: 480px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer {
  padding: 3rem 0; border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-dim);
}
.footer-row {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
}
.footer-tagline { opacity: 0.5; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }
  .features h2 { font-size: 1.5rem; }
  .cta h2 { font-size: 1.5rem; }
  .screenshots-title { font-size: 1.5rem; }
  .screenshot-frame { flex: 0 0 180px; }
}
