:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --card: #f8fafc;
  --ring: #e2e8f0;
  --accent: #6b5cff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(2, 6, 23, .06);
  --hero-bg: #6b5cff;
  --hero-text: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--text);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #c7d2fe;
  outline-offset: 2px;
}

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

.site-header {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
}

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

.site-nav a {
  margin-left: 16px;
  font-size: 14px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.hero {
  padding: 60px 0 40px;
  color: var(--hero-text);
  text-align: center;
  background: var(--hero-bg);
  border-radius: 24px;
}

.hero.compact {
  padding: 48px 0 32px;
}

.hero .icon {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
}

.hero .logo {
  display: block;
  width: auto;
  height: 120px;
  margin: 0 auto 20px;
}

.hero h1,
.section h2 {
  font-family: "Zilla Slab", serif;
  font-weight: 700;
}

.hero h1 {
  margin: 18px 0;
  font-size: 44px;
  line-height: 1.1;
}

.hero.compact h1 {
  margin: 0 0 8px;
  font-size: 40px;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 22px;
  font-size: 18px;
}

.hero.compact p {
  margin-bottom: 0;
  opacity: .95;
}

.back {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: #e2e8f0;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}

.app-store-badge {
  height: 60px;
}

.grid {
  display: grid;
  gap: 16px;
}

.features {
  padding: 40px 0;
}

.section {
  padding: 40px 0;
  text-align: center;
}

.section-left {
  text-align: left;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

.card {
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 6px;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  border-radius: 16px;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--ring);
  border-radius: 14px;
}

details[open] {
  box-shadow: var(--shadow);
}

summary {
  font-weight: 600;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

.answer {
  margin-top: 10px;
  color: #334155;
}

form,
.cta-box {
  display: grid;
  gap: 10px;
}

.cta-box {
  max-width: 640px;
  margin: 0 auto;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  border: 1px solid var(--ring);
  border-radius: 14px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  color: var(--accent);
  font-weight: 600;
  background: #ffffff;
  border: 1px solid var(--accent);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.btn.primary,
button.btn {
  color: #ffffff;
  background: var(--accent);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.footer-meta {
  margin-top: 10px;
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 20px;
  line-height: 1.6;
}

.legal h1,
.legal strong {
  color: var(--text);
}

.legal a {
  font-weight: 700;
  color: var(--accent);
}

.hidden {
  display: none;
}

@media (min-width: 700px) {
  .hero h1 {
    font-size: 56px;
  }

  .hero.compact h1 {
    font-size: 52px;
  }

  .grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav a {
    margin: 0 16px 0 0;
  }
}
