/* ===== LuxeClaw Apps Landing — style.css ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --brand: #f97316;
  --brand-dark: #c2410c;
  --text: #1a1a2e;
  --text-soft: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f9fafb;
  --bg-card: #ffffff;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.1rem; text-decoration: none; color: var(--text);
}
.nav-logo .logo-dot {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; font-weight: 800;
}
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  text-decoration: none; color: var(--text-soft); font-size: 0.9rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--brand); }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.5rem 1.2rem; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  transition: all .2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--brand); color: white; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--brand); border: 1.5px solid var(--brand); }
.btn-outline:hover { background: var(--brand); color: white; }

.hero {
  padding: 6rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(160deg, #fff7f0 0%, #fff 60%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(249,115,22,.08) 0%, transparent 60%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff3e8; color: var(--brand);
  padding: 4px 12px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem;
  border: 1px solid rgba(249,115,22,.2);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -0.02em; margin-bottom: 1.2rem;
}
.hero h1 span { color: var(--brand); }
.hero p { font-size: 1.15rem; color: var(--text-soft); max-width: 580px; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.section { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 0.5rem;
}
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.section-sub { color: var(--text-soft); max-width: 520px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-soft); }

.etsy-disclaimer {
  background: #fffbeb; border: 1px solid #fcd34d;
  border-radius: var(--radius); padding: 1rem 1.5rem;
  font-size: 0.85rem; color: #78350f;
  margin: 3rem auto; max-width: 1100px;
}

footer {
  background: var(--bg-soft); border-top: 1px solid var(--border);
  padding: 2.5rem 2rem; text-align: center;
}
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-links a { text-decoration: none; color: var(--text-soft); font-size: 0.9rem; transition: color .2s; }
.footer-links a:hover { color: var(--brand); }
.footer-copy { font-size: 0.85rem; color: var(--text-soft); }

.policy-hero {
  background: linear-gradient(160deg, #fff7f0, #fff);
  padding: 4rem 2rem 3rem; text-align: center;
  border-bottom: 1px solid var(--border);
}
.policy-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.policy-hero .updated { font-size: 0.9rem; color: var(--text-soft); }

.policy-body { max-width: 760px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.policy-body h2 {
  font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.75rem;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.policy-body h2:first-of-type { border-top: none; margin-top: 0; }
.policy-body p, .policy-body li { font-size: 0.95rem; color: #374151; line-height: 1.8; margin-bottom: 0.75rem; }
.policy-body ul { padding-left: 1.4rem; }
.policy-body a { color: var(--brand); }

@media (max-width: 640px) {
  .nav { padding: 0 1rem; }
  .hero { padding: 4rem 1rem 3rem; }
  .section { padding: 3rem 1rem; }
}
