:root {
  --bg: #f3edf8;
  --ink: #1d1730;
  --muted: #5f5978;
  --line: #d9cbea;
  --primary: #f20078;
  --primary-2: #8a37ff;
  --header: linear-gradient(120deg, #6a3ea6 0%, #7f4bb8 52%, #945ec7 100%);
  --card: #ffffff;
  --shadow: 0 16px 32px rgba(55, 24, 94, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% -8%, #efe2ff 0%, transparent 35%), radial-gradient(circle at 85% 8%, #ffe7f5 0%, transparent 28%), var(--bg);
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-top {
  background: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.site-top-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", "Nunito Sans", sans-serif;
  font-weight: 700;
}

.brand img {
  width: clamp(116px, 16vw, 132px);
  height: auto;
  display: block;
}

.brand span {
  display: none;
}

.nav-link {
  color: #f7efff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 14px;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.page-hero {
  padding: 38px 0 24px;
}

.page-title {
  margin: 0;
  font-family: "Montserrat", "Nunito Sans", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.page-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border-radius: 18px;
  border: 1px solid rgba(129, 73, 194, 0.18);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card h2,
.card h3 {
  margin: 0;
  font-family: "Montserrat", "Nunito Sans", sans-serif;
  color: #2b1b43;
}

.card p {
  margin: 10px 0 0;
  color: #4f4168;
  line-height: 1.55;
}

.meta {
  color: #78638c;
  font-size: 13px;
  margin-top: 8px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 14px;
  border: 0;
  padding: 0 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(120deg, var(--primary) 0%, #ff127f 45%, #ff2e8f 100%);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f4e8ff;
  color: #6b3cab;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-space {
  height: 34px;
}

.preview-alert {
  margin: 0;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  background: #8e5bbb;
}

@media (max-width: 860px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
