﻿:root {
  --bg: #f4f2f8;
  --ink: #161222;
  --muted: #6d6678;
  --card: #ffffff;
  --line: #e6dfec;
  --brand-a: #ff5eb8;
  --brand-b: #e80088;
  --pill-a: #ffcc56;
  --pill-b: #f59e0b;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Sora, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}
.wrap { width: min(1120px, 92vw); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 72px;
}
.logo {
  font-family: Staatliches, sans-serif;
  letter-spacing: 0.04em;
  font-size: 30px;
  text-decoration: none;
  color: #2b2334;
}
.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
}
.nav a {
  text-decoration: none;
  color: #534860;
  font-weight: 600;
}
.crumbs {
  margin-top: 22px;
  font-size: 13px;
  color: #7f768d;
}
.crumbs a { color: #7f768d; text-decoration: none; }
.hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
}
.hero-image {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0e0c12;
}
.hero-image img {
  width: 100%;
  height: min(52vw, 560px);
  object-fit: cover;
  display: block;
}
.action-row {
  margin: 18px 0 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--brand-a), var(--brand-b));
}
.btn-soon {
  color: #2d1600;
  background: linear-gradient(90deg, var(--pill-a), var(--pill-b));
}
.grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 24px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  padding: 20px;
}
.card h2 {
  margin: 0 0 10px;
  font-size: 24px;
}
.card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.stats {
  display: grid;
  gap: 10px;
}
.stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fcfbfe;
}
.stat .label { font-size: 12px; color: #7b7287; text-transform: uppercase; letter-spacing: 0.08em; }
.stat .value { font-size: 18px; font-weight: 700; margin-top: 4px; }
.features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.feature {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
}
.feature h3 { margin: 0 0 8px; font-size: 17px; }
.feature p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.howto { margin-top: 32px; }
.howto h2 { margin: 0 0 14px; font-size: 28px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.step {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 14px;
}
.step .num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3f3346;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.other { margin: 36px 0 60px; }
.other h2 { margin: 0 0 14px; font-size: 28px; }
.other-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.other a {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.other img { width: 100%; height: 130px; object-fit: cover; display: block; }
.other span { display: block; padding: 10px; color: #2b2334; font-weight: 700; font-size: 14px; }
@media (max-width: 980px) {
  .grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .other-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .topbar .row { min-height: 62px; }
  .logo { font-size: 26px; }
  .nav { gap: 12px; font-size: 13px; }
  .hero-image img { height: 48vw; min-height: 220px; }
  .steps { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: 1fr; }
}
