/*
  Layout for the marketing landing page (public/index.html), separate from
  the shared tokens in site.css and the long-form legal layout in legal.css.
*/

.wordmark {
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
}
.wordmark span {
  color: var(--accent);
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px 0;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 20px 8px;
  text-align: center;
}
.hero h1 {
  font-weight: 900;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}
.hero h1 .accent {
  color: var(--accent);
}
.hero .lead {
  color: var(--muted);
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 28px;
}
.hero-art {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-art img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Store CTAs ───────────────────────────────────────────────────────────── */
.store-ctas {
  margin: 32px auto 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 14px;
  transition: transform 0.05s ease, opacity 0.2s ease;
}
.store-btn:active {
  transform: scale(0.98);
}
.store-btn-primary {
  background: var(--accent);
  color: #06231a;
}
.store-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: default;
}
.store-btn-icon {
  font-size: 20px;
  line-height: 1;
}

/* ── "How it works" steps ────────────────────────────────────────────────── */
.how {
  max-width: 1040px;
  margin: 64px auto 0;
  padding: 0 20px;
}
.how h2 {
  text-align: center;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 30px);
  margin-bottom: 36px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}
.step {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 24px 20px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(78, 222, 163, 0.14);
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  max-width: 1040px;
  margin: 72px auto 0;
  padding: 28px 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.site-footer .legal {
  font-size: 13px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.site-footer .legal a {
  color: var(--accent);
  text-decoration: none;
}
.site-footer .copyright {
  color: var(--muted);
  font-size: 12px;
}
