@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --wine: #722F37;
  --wine-deep: #5A242B;
  --gold: #C9A961;
  --gold-deep: #A88A48;
  --cream: #FAF7F2;
  --surface: #FFFFFF;
  --ink: #1A1410;
  --muted: #8B7E73;
  --muted-soft: #B8AC9F;
  --border: #E8E0D5;
  --border-soft: #F0E8DC;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.75; }

/* ── Nav ─────────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-brand-text {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--wine);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 640px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 7vw, 52px);
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 18px;
}

.hero h1 em {
  font-style: italic;
  color: var(--wine);
}

.hero p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 32px;
}

.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  cursor: default;
  opacity: 0.88;
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.35);
  letter-spacing: 0.1px;
}

/* ── Screenshot ──────────────────────────────────────── */
.screenshot-wrap {
  max-width: 300px;
  margin: 48px auto 0;
}

.screenshot-wrap img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 24px 64px rgba(26, 20, 16, 0.14);
  border: 1px solid var(--border);
}

/* ── Features ────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 72px auto;
  padding: 0 40px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* ── Footer ──────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border-soft);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}

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

/* ── Legal pages ─────────────────────────────────────── */
.legal-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.legal-wrap h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin-bottom: 6px;
}

.legal-wrap .updated {
  font-size: 13px;
  color: var(--muted-soft);
  margin-bottom: 36px;
}

.legal-wrap h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin: 32px 0 10px;
}

.legal-wrap p, .legal-wrap li {
  font-size: 15px;
  line-height: 1.7;
  color: #4A3F38;
  margin-bottom: 10px;
}

.legal-wrap ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.legal-wrap a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Support ─────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 10px;
}

.faq-item h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  footer { padding: 20px; flex-direction: column; align-items: flex-start; }
  .features { padding: 0 20px; }
  .hero { padding: 56px 20px 40px; }
}
