/* Leemen landing (leemen.app, EN + RU).
   Section styles only — tokens, header, footer & primitives live in theme.css. */

/* ---- hero ---- */
.hero {
  position: relative; overflow: hidden;
  text-align: center; padding: 96px 24px 70px;
}
.hero::before {
  content: ""; position: absolute; inset: -1px 0 auto 0; height: 560px; z-index: 0;
  background: radial-gradient(120% 70% at 50% -16%, var(--hero-glow) 0%, transparent 62%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero .pill { margin-bottom: 22px; }
.hero h1 {
  margin: 0 auto; max-width: 16ch;
  font-size: clamp(40px, 7.2vw, 74px); font-weight: 800;
  line-height: 1.04; letter-spacing: -.035em; color: var(--ink);
}
.hero h1 .hl { color: var(--accent); }
.hero .lead {
  margin: 24px auto 0; max-width: 600px;
  font-size: clamp(17px, 2.4vw, 20px); color: var(--body);
}
.hero-cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px;
}
.chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: 34px;
}
.chip { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--muted); }
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

/* ---- generic section scaffolding ---- */
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 {
  font-size: clamp(28px, 4.2vw, 42px); font-weight: 800;
  line-height: 1.08; margin: 0; letter-spacing: -.03em;
}
.section-head .intro { font-size: 18px; color: var(--body); margin: 16px auto 0; }
.section-head .intro a { font-weight: 600; }

/* ---- features grid ---- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(284px, 1fr)); gap: 20px;
}
.feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 26px 30px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--accent) 38%, var(--border));
}
.feature .icon {
  width: 48px; height: 48px; border-radius: 13px; margin-bottom: 18px;
  display: grid; place-items: center; font-size: 22px; line-height: 1;
  color: var(--accent); background: var(--accent-tint);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
}
.feature h3 { font-size: 18.5px; font-weight: 700; margin: 0 0 8px; }
.feature p { margin: 0; font-size: 15px; line-height: 1.62; color: var(--body); }

/* ---- band (alternate background) ---- */
.band { background: var(--bg-subtle); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---- trust stats ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.stat {
  text-align: center; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 16px; box-shadow: var(--shadow-sm);
}
.stat .num { font-size: clamp(30px, 5vw, 38px); font-weight: 800; color: var(--accent); line-height: 1; letter-spacing: -.03em; }
.stat .lab { margin-top: 10px; font-size: 13.5px; color: var(--muted); font-weight: 500; }

/* ---- company ---- */
.company .body { max-width: 700px; margin: 0 auto; text-align: center; }
.company .body p { font-size: 17.5px; color: var(--body); margin: 0 0 14px; }
.company .contact { font-weight: 600; }
.company .disclaim { font-size: 14.5px; color: var(--muted); }

/* ---- final CTA band ---- */
.cta-band {
  text-align: center; padding: 90px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent-tint) 100%);
  border-top: 1px solid var(--border);
}
.cta-band h2 { font-size: clamp(28px, 4.6vw, 44px); font-weight: 800; margin: 12px 0 0; letter-spacing: -.03em; }
.cta-band p { font-size: 18px; color: var(--body); margin: 16px auto 0; max-width: 560px; }
.store-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }
.store-row .store {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 14px; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--ink); font-weight: 600; font-size: 15px;
  box-shadow: var(--shadow-sm); opacity: .7; cursor: default;
}
.store-row .store .soon { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.cta-note { margin-top: 26px; font-size: 15px; color: var(--muted); }
.cta-note a { font-weight: 600; }

/* ---- responsive ---- */
@media (max-width: 680px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
  .hero { padding: 72px 24px 56px; }
}
@media (max-width: 380px) {
  .hero-cta .btn, .store-row .store { width: 100%; }
}
