:root {
  --ink: #3b2758;
  --ink-soft: #6d5b86;
  --cream: #fff8ee;
  --coral: #ff7b6c;
  --gold: #ffe14a;
  --grape: #8b74ff;
  --mint: #b8f4ea;
  --sky: #9ae7ff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Nunito, "Segoe UI", sans-serif;
  background: #eaf9ff;
}
a { color: var(--grape); }
img { max-width: 100%; }
.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 900;
}
.brand img { width: 44px; height: 44px; border-radius: 12px; }
.nav-links { display: flex; gap: 22px; align-items: center; font-weight: 800; }
.nav-links a { text-decoration: none; color: var(--ink); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2d1b4e;
  color: var(--cream) !important;
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  padding: 14px 22px;
  box-shadow: 0 6px 0 #1a0f30;
}
.btn.soon { background: var(--coral); box-shadow: 0 6px 0 #c63d52; }
.hero {
  background: linear-gradient(180deg, #9ae7ff 0%, #d4fff3 42%, #ffe7b8 100%);
  padding: 12px 0 64px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: #2d1b4e;
  color: #fff8ee;
  font-size: 13px;
  letter-spacing: 1.2px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
}
h1 {
  font-family: Fredoka, Nunito, sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.92;
  margin: 18px 0 14px;
}
h1 span {
  display: inline-block;
  background: var(--gold);
  padding: 0 12px 6px;
  border-radius: 18px;
  transform: rotate(-2deg);
}
.lead { font-size: 22px; font-weight: 800; color: var(--ink-soft); max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.phone {
  width: min(320px, 100%);
  margin: 0 auto;
  background: #2d1b4e;
  border-radius: 36px;
  padding: 10px 10px 0;
  box-shadow: 0 28px 0 #1a0f30, 0 40px 60px #2d1b4e44;
  transform: rotate(-3deg);
}
.phone img { display: block; width: 100%; border-radius: 28px 28px 0 0; }
section { padding: 72px 0; }
h2 {
  font-family: Fredoka, Nunito, sans-serif;
  font-size: 42px;
  margin: 0 0 12px;
}
.steps, .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.card {
  background: #fff;
  border: 4px solid #ffd7a0;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 10px 0 #3b275822;
}
.card strong { display: block; font-size: 22px; margin-bottom: 8px; }
.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
}
.shots img {
  width: 100%;
  border-radius: 28px;
  border: 6px solid #2d1b4e;
  box-shadow: 0 16px 0 #1a0f30;
}
.cta {
  text-align: center;
  background: linear-gradient(135deg, #cdb6ff, #8b74ff);
  color: #fff;
  border-radius: 36px;
  padding: 48px 24px;
}
.cta h2, .cta p { color: #fff; }
.cta p { font-weight: 800; }
.footer {
  padding: 28px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 800;
  color: var(--ink-soft);
}
.footer a { color: var(--ink); text-decoration: none; }
.legal {
  background: #fff;
  min-height: 100vh;
}
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 0 80px;
}
.legal-body h1 { font-size: 48px; }
.legal-body h2 { margin-top: 36px; font-size: 28px; }
.legal-body p, .legal-body li { line-height: 1.65; font-size: 17px; }
.notice {
  background: #fff3c4;
  border: 4px solid #ffe14a;
  border-radius: 24px;
  padding: 18px 20px;
  font-weight: 800;
}
@media (max-width: 860px) {
  .hero-grid, .steps, .features, .shots { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .phone { transform: none; }
}
