/* ── Variables ─────────────────────────────────── */
:root {
  --indigo:       #6366f1;
  --indigo-light: #ede9fe;
  --gray-50:      #f9fafb;
  --gray-200:     #e5e7eb;
  --gray-400:     #9ca3af;
  --gray-500:     #6b7280;
  --gray-700:     #374151;
  --gray-900:     #111827;
  --white:        #ffffff;
  --radius:       8px;
  --max-w:        1100px;
  --font:         system-ui, -apple-system, sans-serif;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); color: var(--gray-900); background: var(--white); }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

/* ── Layout ─────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section   { padding: 64px 0; }
.section--alt { background: var(--gray-50); }
.section__heading {
  text-align: center; font-size: 1.75rem; font-weight: 800;
  color: var(--gray-900); margin-bottom: 40px;
}

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--gray-200);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav__logo  { font-size: 1.25rem; font-weight: 900; color: var(--gray-900); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__lang  { font-size: 0.875rem; color: var(--gray-500); }
.nav__lang:hover { color: var(--indigo); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-block; padding: 12px 28px;
  background: var(--indigo); color: var(--white);
  border-radius: var(--radius); font-size: 1rem; font-weight: 700;
  border: none; cursor: pointer; transition: opacity 0.15s;
}
.btn:hover { opacity: 0.88; }
.btn--sm { padding: 7px 16px; font-size: 0.875rem; }

/* ── Hero ────────────────────────────────────────── */
.hero {
  padding: 80px 0 64px;
  background: linear-gradient(to bottom, var(--gray-50), var(--white));
  text-align: center;
}
.hero__badge {
  display: inline-block;
  background: var(--indigo-light); color: var(--indigo);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 20px;
}
.hero__headline {
  font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; line-height: 1.1;
  color: var(--gray-900); margin-bottom: 16px;
}
.hero__headline .accent { color: var(--indigo); }
.hero__subtext {
  font-size: 1.125rem; color: var(--gray-500); line-height: 1.65;
  max-width: 520px; margin: 0 auto 32px;
}
.hero__cta { margin-bottom: 12px; }
.hero__meta { font-size: 0.8125rem; color: var(--gray-400); }

/* ── Features ────────────────────────────────────── */
.features__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  max-width: 640px; margin: 0 auto;
}
@media (min-width: 768px) {
  .features__grid { grid-template-columns: repeat(4, 1fr); max-width: var(--max-w); }
}
.feature-card {
  background: var(--gray-50); border-radius: var(--radius); padding: 24px 20px;
}
.feature-card__icon { font-size: 1.75rem; margin-bottom: 10px; }
.feature-card__title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 6px; }
.feature-card__body  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.5; }

/* ── How it works ────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 24px; max-width: 520px; margin: 0 auto; }
.step  { display: flex; align-items: flex-start; gap: 16px; }
.step__number {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--indigo); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9375rem;
}
.step__title { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.step__body  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.5; }

/* ── Screenshots ─────────────────────────────────── */
.screenshots__row {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.screenshot-frame {
  border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  width: 195px;   /* display at half native size */
}
.screenshot-frame img { width: 195px; height: 422px; object-fit: cover; }

/* ── FAQ ─────────────────────────────────────────── */
.faq__list { max-width: 640px; margin: 0 auto; }

/* Svelte FaqAccordion styles are scoped inside the component */

/* ── Footer ──────────────────────────────────────── */
.footer { background: var(--gray-900); padding: 32px 0; text-align: center; }
.footer__logo      { font-size: 1.125rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.footer__copyright { font-size: 0.8125rem; color: var(--gray-500); }
