﻿:root {
  --page: #050711;
  --page-soft: #0d1020;
  --text: #f8f9ff;
  --muted: #9da3b7;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-hover: rgba(255, 255, 255, 0.105);
  --violet: #8157ff;
  --cyan: #1bc7ff;
  --radius: 28px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% -8%, rgba(129, 87, 255, 0.28), transparent 30%),
    radial-gradient(circle at 82% 58%, rgba(129, 87, 255, 0.2), transparent 34%),
    radial-gradient(circle at 28% 100%, rgba(12, 194, 141, 0.2), transparent 32%),
    linear-gradient(180deg, #111426 0%, #060713 44%, #03040a 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  filter: blur(1.6px);
  opacity: .82;
  pointer-events: none;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 22px 24px;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black 0%, transparent 72%);
  opacity: 0.36;
  pointer-events: none;
}

.site-shell::after {
  content: none;
}

.header {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  animation: header-in 700ms cubic-bezier(.2,.8,.2,1) both;
}

.header__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px 16px 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(8, 10, 20, 0.7);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
}

.header__bar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: radial-gradient(circle at 14% 50%, rgba(129, 87, 255, 0.28), transparent 58%);
  pointer-events: none;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 250px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  padding: 6px;
  border: 1px solid rgba(27, 199, 255, 0.38);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 32%, rgba(27, 199, 255, 0.22), transparent 58%),
    linear-gradient(145deg, #171b35 0%, #0a0d1d 100%);
  box-shadow:
    0 0 34px rgba(27, 199, 255, 0.22),
    0 0 46px rgba(129, 87, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(27, 199, 255, 0.22));
}

.brand__name {
  display: block;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brand__tagline {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
}

.nav__link,
.theme-toggle,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(248, 249, 255, 0.82);
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav__link {
  gap: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.nav__link:hover,
.theme-toggle:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  color: var(--text);
  background: var(--glass-hover);
}

.nav__link--primary {
  border-color: rgba(27, 199, 255, 0.34);
  background: linear-gradient(135deg, rgba(27, 199, 255, 0.18), rgba(129, 87, 255, 0.12));
}

.nav__link--activation {
  border-color: rgba(32, 226, 167, 0.32);
  background: linear-gradient(135deg, rgba(32, 226, 167, 0.14), rgba(129, 87, 255, 0.1));
}

.nav__link--activation .nav__icon {
  color: #20e2a7;
}

.nav__icon {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  color: var(--cyan);
}

.theme-toggle,
.menu-toggle {
  width: 46px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.theme-toggle__sun {
  display: none;
}

body.is-light {
  --page: #eef4ff;
  --page-soft: #ffffff;
  --text: #101426;
  --muted: #5b6478;
  --line: rgba(17, 24, 39, 0.12);
  --line-strong: rgba(17, 24, 39, 0.2);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-hover: rgba(255, 255, 255, 0.94);
  background:
    radial-gradient(circle at 13% 0%, rgba(129, 87, 255, 0.18), transparent 28%),
    radial-gradient(circle at 72% 14%, rgba(27, 199, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #f7f9ff 0%, #eef4ff 100%);
}

body.is-light .header__bar {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 70px rgba(68, 78, 110, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

body.is-light .theme-toggle__moon {
  display: none;
}

body.is-light .theme-toggle__sun {
  display: inline;
}

.hero {
  position: relative;
  width: min(100%, var(--max-width));
  min-height: calc(100vh - 148px);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 70px) 0 10px;
  overflow: visible;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  right: -280px;
  top: 130px;
  width: 720px;
  height: 520px;
  background: radial-gradient(circle, rgba(129, 87, 255, 0.2), transparent 72%);
  filter: blur(22px);
}

.hero::after {
  left: -180px;
  bottom: -250px;
  width: 920px;
  height: 560px;
  background: radial-gradient(circle, rgba(12, 194, 141, 0.24), transparent 72%);
  filter: blur(24px);
}

.hero__stars {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero__stars span {
  position: absolute;
  width: var(--star-size, 3px);
  height: var(--star-size, 3px);
  border-radius: 50%;
  background: #7e92ff;
  box-shadow: 0 0 12px rgba(126, 146, 255, 0.85);
  animation: star-pulse 2.8s ease-in-out infinite;
}

.hero__stars span:nth-child(1) {
  --star-size: 3px;
  left: 9%;
  top: 18%;
}

.hero__stars span:nth-child(2) {
  --star-size: 4px;
  left: 31%;
  top: 6%;
  animation-delay: .35s;
}

.hero__stars span:nth-child(3) {
  left: 47%;
  top: 20%;
  animation-delay: .75s;
}

.hero__stars span:nth-child(4) {
  left: 69%;
  top: 9%;
  animation-delay: 1.1s;
}

.hero__stars span:nth-child(5) {
  --star-size: 4px;
  left: 83%;
  top: 31%;
  animation-delay: .2s;
}

.hero__stars span:nth-child(6) {
  left: 21%;
  top: 61%;
  animation-delay: 1.4s;
}

.hero__stars span:nth-child(7) {
  --star-size: 4px;
  left: 38%;
  top: 77%;
  animation-delay: .9s;
}

.hero__stars span:nth-child(8) {
  left: 57%;
  top: 66%;
  animation-delay: 1.8s;
}

.hero__stars span:nth-child(9) {
  --star-size: 4px;
  left: 75%;
  top: 72%;
  animation-delay: .55s;
}

.hero__content {
  display: grid;
  justify-items: center;
  text-align: center;
  animation: hero-in 800ms 120ms cubic-bezier(.2,.8,.2,1) both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(126, 146, 255, 0.42);
  border-radius: 999px;
  color: #bac5ff;
  background:
    linear-gradient(135deg, rgba(126, 146, 255, 0.18), rgba(129, 87, 255, 0.08)),
    rgba(13, 16, 32, 0.7);
  box-shadow: 0 14px 40px rgba(95, 106, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.hero__title {
  max-width: 760px;
  margin: 26px 0 16px;
  color: #ffffff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(34px, 5.2vw, 66px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 1.08;
}

.hero__title span {
  background: linear-gradient(90deg, #42d2c3 0%, #65b7f6 46%, #9b7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text {
  max-width: 560px;
  margin: 0;
  color: rgba(248, 249, 255, 0.68);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 700;
  line-height: 1.45;
}

.hero__text strong {
  color: #ffffff;
  font-weight: 800;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 238px;
  min-height: 58px;
  margin-top: 30px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #7486ff 0%, #a77aff 100%);
  box-shadow:
    0 24px 64px rgba(117, 134, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 18px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero__cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 30px 78px rgba(117, 134, 255, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  align-items: center;
  gap: clamp(26px, 5vw, 64px);
  width: 100%;
  margin: clamp(58px, 9vw, 84px) 0 0;
  padding: 0;
  list-style: none;
  animation: hero-in 800ms 260ms cubic-bezier(.2,.8,.2,1) both;
}

.hero__features li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(248, 249, 255, 0.66);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.hero__feature-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: #d9e2f0;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.16), transparent 54%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.hero__feature-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border-radius: 50%;
  background: currentColor;
  filter: blur(16px);
  opacity: .3;
}

.hero__feature-icon svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
}

.hero__feature-icon--lock {
  color: #ffd55e;
  border-color: rgba(255, 213, 94, 0.26);
  background:
    radial-gradient(circle at 42% 28%, rgba(255, 213, 94, 0.18), transparent 56%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
}

.hero__feature-icon--bolt {
  color: #ffc83d;
  border-color: rgba(255, 200, 61, 0.28);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 200, 61, 0.22), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
}

.hero__feature-icon--success {
  color: #28d95f;
  border-color: rgba(40, 217, 95, 0.32);
  background:
    radial-gradient(circle at 50% 28%, rgba(40, 217, 95, 0.2), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
}

.hero__feature-icon--chat {
  color: #a9b7ff;
  border-color: rgba(169, 183, 255, 0.32);
  background:
    radial-gradient(circle at 50% 28%, rgba(169, 183, 255, 0.2), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
}

.security-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin: 32px auto 0;
  padding: 32px 40px;
  border: 1px solid rgba(12, 194, 141, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 7% 50%, rgba(12, 194, 141, 0.18), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(9, 11, 21, 0.62);
  box-shadow:
    0 0 70px rgba(12, 194, 141, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  animation: hero-in 800ms 360ms cubic-bezier(.2,.8,.2,1) both;
}

.security-card__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(12, 194, 141, 0.44);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(12, 194, 141, 0.25), transparent 70%),
    rgba(12, 194, 141, 0.1);
  box-shadow: 0 0 42px rgba(12, 194, 141, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.security-card__content {
  display: grid;
  gap: 6px;
}

.security-card__content strong {
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 26px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.security-card__content span {
  color: rgba(248, 249, 255, 0.82);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.plans {
  width: min(100%, var(--max-width));
  margin: 92px auto 0;
  padding-bottom: 72px;
}

.section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 34px;
}

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(126, 146, 255, 0.34);
  border-radius: 999px;
  color: #bac5ff;
  background: rgba(126, 146, 255, 0.09);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.section-heading__title {
  max-width: 780px;
  margin: 18px 0 12px;
  color: #ffffff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1.08;
}

.section-heading__text {
  max-width: 650px;
  margin: 0;
  color: rgba(248, 249, 255, 0.64);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.plan-card {
  --card-accent: #7c8cff;
  --card-accent-soft: rgba(124, 140, 255, 0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 30px 26px 26px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 46%, transparent);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, var(--card-accent-soft), transparent 34%),
    radial-gradient(circle at 12% 100%, rgba(12, 194, 141, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 19, 0.72);
  box-shadow:
    0 24px 74px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 28%),
    radial-gradient(circle at 50% 100%, var(--card-accent-soft), transparent 45%);
  opacity: .55;
  pointer-events: none;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--card-accent) 72%, transparent);
  box-shadow:
    0 34px 90px color-mix(in srgb, var(--card-accent) 22%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-card--chatgpt {
  --card-accent: #68a4ff;
  --card-accent-soft: rgba(104, 164, 255, 0.2);
}

.plan-card--suno {
  --card-accent: #ffcb52;
  --card-accent-soft: rgba(255, 203, 82, 0.18);
}

.plan-card--claude {
  --card-accent: #c28a66;
  --card-accent-soft: rgba(194, 138, 102, 0.2);
}

.plan-card--google {
  --card-accent: #6ce0b8;
  --card-accent-soft: rgba(108, 224, 184, 0.18);
}

.plan-card__icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 46%, transparent);
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--card-accent) 36%, transparent), transparent 62%),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 42px color-mix(in srgb, var(--card-accent) 22%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.plan-card h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1.1;
  text-align: center;
}

.plan-card__period {
  align-self: center;
  min-width: 138px;
  margin-top: 16px;
  padding: 11px 20px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--card-accent), #9f78ff);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--card-accent) 28%, transparent);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}

.plan-card__description {
  min-height: 76px;
  margin: 22px 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--card-accent) 38%, transparent);
  color: rgba(248, 249, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.plan-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin: 0 0 8px;
  color: #ffffff;
  text-shadow: 0 0 22px color-mix(in srgb, var(--card-accent) 30%, transparent);
}

.plan-card__currency {
  position: relative;
  top: -7px;
  color: var(--card-accent);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.plan-card__price strong {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(40px, 4.4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: .9;
}

.plan-card__term {
  padding-bottom: 7px;
  color: rgba(248, 249, 255, 0.74);
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.plan-card__status {
  margin-bottom: 22px;
  color: #28e4a0;
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

.plan-card__features {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card__features li {
  position: relative;
  padding-left: 26px;
  color: rgba(248, 249, 255, 0.78);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.38;
}

.plan-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, var(--card-accent), #9f78ff);
  box-shadow: 0 0 18px color-mix(in srgb, var(--card-accent) 35%, transparent);
}

.plan-card__features li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(.2em + 4px);
  width: 6px;
  height: 3px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.plan-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.plan-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(248, 249, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 850;
}

.plan-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 16px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--card-accent), #9f78ff);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--card-accent) 28%, transparent);
  font-size: 16px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.plan-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px color-mix(in srgb, var(--card-accent) 38%, transparent);
}

.audience {
  width: min(100%, var(--max-width));
  margin: 34px auto 0;
  padding: 26px 0 88px;
}

.audience__title {
  position: relative;
  width: fit-content;
  margin: 0 auto 42px;
  padding-left: 22px;
  color: #ffffff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(26px, 3.3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1.1;
}

.audience__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: calc(100% - 8px);
  min-height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7c8cff, #a77aff);
  box-shadow: 0 0 24px rgba(124, 140, 255, 0.6);
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.audience-card {
  display: grid;
  justify-items: center;
  min-height: 234px;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 100%, rgba(12, 194, 141, 0.09), transparent 52%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 19, 0.64);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 140, 255, 0.34);
  background:
    radial-gradient(circle at 50% 100%, rgba(12, 194, 141, 0.12), transparent 52%),
    radial-gradient(circle at 50% 0%, rgba(124, 140, 255, 0.14), transparent 44%),
    rgba(8, 10, 19, 0.72);
}

.audience-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border: 1px solid rgba(124, 140, 255, 0.34);
  border-radius: 18px;
  color: #e7ebff;
  background:
    radial-gradient(circle at 50% 30%, rgba(124, 140, 255, 0.28), transparent 62%),
    rgba(124, 140, 255, 0.12);
  box-shadow: 0 0 34px rgba(124, 140, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.audience-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

.audience-card p {
  margin: 0;
  color: rgba(248, 249, 255, 0.68);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.42;
}

.comparison {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 12px 0 96px;
}

.comparison__title {
  position: relative;
  width: fit-content;
  margin: 0 auto 34px;
  padding-left: 22px;
  color: #ffffff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(26px, 3.3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1.1;
}

.comparison__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: calc(100% - 8px);
  min-height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7c8cff, #a77aff);
  box-shadow: 0 0 24px rgba(124, 140, 255, 0.6);
}

.comparison__table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 100%, rgba(12, 194, 141, 0.1), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(129, 87, 255, 0.12), transparent 36%),
    rgba(9, 10, 18, 0.74);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.comparison__table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  color: rgba(248, 249, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.comparison__table th,
.comparison__table td {
  padding: 20px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
  vertical-align: middle;
}

.comparison__table thead th {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 950;
}

.comparison__table thead th:not(:first-child) {
  color: #28e4a0;
}

.comparison__table th:first-child {
  width: 22%;
  color: #ffffff;
  text-align: left;
}

.comparison__table tbody tr:last-child th,
.comparison__table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison__table tbody tr {
  transition: background 180ms ease;
}

.comparison__table tbody tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

.comparison__check {
  color: #28e4a0;
  font-size: 19px;
  font-weight: 950;
}

.comparison__dash {
  color: rgba(248, 249, 255, 0.34);
  font-size: 19px;
  font-weight: 900;
}

.workflow {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 48px 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 100%, rgba(12, 194, 141, 0.11), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(129, 87, 255, 0.11), transparent 40%),
    rgba(8, 10, 18, 0.66);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.workflow__title {
  position: relative;
  width: fit-content;
  margin: 0 0 34px;
  padding-left: 22px;
  color: #ffffff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(26px, 3.3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1.1;
}

.workflow__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: calc(100% - 8px);
  min-height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7c8cff, #a77aff);
  box-shadow: 0 0 24px rgba(124, 140, 255, 0.6);
}

.workflow__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.workflow-card {
  min-height: 244px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 100%, rgba(12, 194, 141, 0.09), transparent 52%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.workflow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 140, 255, 0.34);
  background:
    radial-gradient(circle at 50% 100%, rgba(12, 194, 141, 0.12), transparent 52%),
    radial-gradient(circle at 0% 0%, rgba(124, 140, 255, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.workflow-card__number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #7486ff, #a77aff);
  box-shadow: 0 14px 34px rgba(124, 140, 255, 0.34);
  font-size: 18px;
  font-weight: 950;
}

.workflow-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

.workflow-card p {
  margin: 0;
  color: rgba(248, 249, 255, 0.66);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.52;
}

.workflow-card__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.workflow-card__payments span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(124, 140, 255, 0.22);
  border-radius: 999px;
  color: #bac5ff;
  background: rgba(124, 140, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.faq {
  width: min(100%, var(--max-width));
  margin: 34px auto 0;
  padding: 42px 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 100%, rgba(12, 194, 141, 0.1), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(129, 87, 255, 0.1), transparent 38%),
    rgba(8, 10, 18, 0.66);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.faq__title {
  position: relative;
  width: fit-content;
  margin: 0 0 30px;
  padding-left: 22px;
  color: #ffffff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1.1;
}

.faq__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: calc(100% - 8px);
  min-height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7c8cff, #a77aff);
  box-shadow: 0 0 24px rgba(124, 140, 255, 0.6);
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(124, 140, 255, 0.58);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(124, 140, 255, 0.11), rgba(124, 140, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 20px 26px;
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 950;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  color: rgba(248, 249, 255, 0.68);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.55;
}

.faq-item__icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #9da7ff;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] {
  background:
    radial-gradient(circle at 90% 20%, rgba(124, 140, 255, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(124, 140, 255, 0.16), rgba(124, 140, 255, 0.06)),
    rgba(255, 255, 255, 0.045);
}

.faq-item[open] .faq-item__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.footer {
  width: min(100%, var(--max-width));
  margin: 34px auto 0;
  padding: 52px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer__inner {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.footer__copyright {
  margin: 0;
  color: rgba(248, 249, 255, 0.68);
  font-size: 15px;
  font-weight: 900;
}

.footer__legal {
  max-width: 720px;
  margin: 0;
  color: rgba(248, 249, 255, 0.5);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.55;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
  margin-top: 16px;
}

.footer__nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(248, 249, 255, 0.62);
  font-size: 14px;
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease;
}

.footer__nav a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer__support svg {
  color: #bac5ff;
}

.checkout-modal {
  width: min(92vw, 470px);
  max-height: min(92vh, 820px);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, rgba(129, 87, 255, 0.12), transparent 35%),
    radial-gradient(circle at 0% 100%, rgba(12, 194, 141, 0.12), transparent 38%),
    #161718;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: auto;
}

.checkout-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(7px);
}

.checkout {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 30px;
}

.checkout__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  color: rgba(248, 249, 255, 0.72);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.checkout__close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
}

.checkout__head h2 {
  margin: 0 34px 8px 0;
  color: #ffffff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.checkout__head p {
  margin: 0;
  color: rgba(248, 249, 255, 0.55);
  font-size: 13px;
  font-weight: 760;
}

.checkout__steps {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(12, 194, 141, 0.23);
  border-radius: 12px;
  background: rgba(12, 194, 141, 0.08);
}

.checkout__steps > strong {
  color: #20e2a7;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout__step {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 12px;
}

.checkout__step span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  color: #ffffff;
  background: linear-gradient(135deg, #20cfa3, #21b98d);
  font-size: 12px;
  font-weight: 950;
}

.checkout__step p {
  margin: 0;
  color: rgba(248, 249, 255, 0.62);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
}

.checkout__step-link {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 5px;
  padding: 0 9px;
  border-radius: 7px;
  color: #ffffff;
  background: rgba(32, 226, 167, 0.16);
  font-size: 11px;
  font-weight: 950;
  white-space: nowrap;
}

.checkout__step-link::before {
  content: "✓";
  margin-right: 5px;
  color: #20e2a7;
}

.checkout__field {
  display: grid;
  gap: 8px;
}

.checkout__field span,
.checkout__quantity > span {
  color: rgba(248, 249, 255, 0.9);
  font-size: 13px;
  font-weight: 950;
}

.checkout__field input,
.checkout__field select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.18);
  padding: 0 12px;
  outline: none;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.checkout__field select option {
  color: #101426;
}

.checkout__field input:focus,
.checkout__field select:focus {
  border-color: rgba(32, 226, 167, 0.54);
  box-shadow: 0 0 0 3px rgba(32, 226, 167, 0.09);
}

.checkout__field input::placeholder {
  color: rgba(248, 249, 255, 0.32);
}

.checkout__promo {
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 8px;
  align-items: end;
}

.checkout__promo button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
}

.checkout__quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 2px;
}

.checkout__counter {
  display: inline-grid;
  grid-template-columns: 32px 36px 32px;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  overflow: hidden;
}

.checkout__counter button {
  height: 38px;
  border: 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
  font-size: 17px;
  font-weight: 950;
}

.checkout__counter strong {
  color: #ffffff;
  text-align: center;
  font-size: 14px;
}

.checkout__summary {
  display: grid;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.checkout__summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(248, 249, 255, 0.62);
  font-size: 13px;
  font-weight: 760;
}

.checkout__summary strong {
  color: rgba(248, 249, 255, 0.86);
}

.checkout__total span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

.checkout__total strong {
  color: #20e2a7;
  font-size: 24px;
  font-weight: 950;
}

.checkout__pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #18c597, #18a984);
  box-shadow: 0 18px 42px rgba(24, 197, 151, 0.25);
  cursor: pointer;
  font-size: 15px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.checkout__pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(24, 197, 151, 0.34);
}

.legal-footer {
  margin-top: 58px;
  padding-bottom: 8px;
}

.legal-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 32px 24px 72px;
  isolation: isolate;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.legal-header__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(248, 249, 255, 0.78);
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.legal-header__back:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  color: #ffffff;
  background: var(--glass-hover);
}

.legal-main {
  width: min(100%, 980px);
  margin: 0 auto;
}

.legal-hero {
  display: grid;
  justify-items: center;
  padding: clamp(74px, 10vw, 120px) 0 58px;
  text-align: center;
}

.legal-hero h1 {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(42px, 6.3vw, 78px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1.08;
}

.legal-hero h1 span {
  background: linear-gradient(90deg, #42d2c3 0%, #65b7f6 46%, #9b7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(248, 249, 255, 0.62);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 760;
  line-height: 1.55;
}

.legal-card {
  margin-top: 22px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 100%, rgba(12, 194, 141, 0.1), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(129, 87, 255, 0.1), transparent 38%),
    rgba(8, 10, 18, 0.68);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.legal-card h2 {
  position: relative;
  margin: 0 0 26px;
  padding-left: 22px;
  color: #ffffff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(22px, 2.7vw, 32px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1.15;
}

.legal-card h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: calc(100% - 8px);
  min-height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7c8cff, #a77aff);
  box-shadow: 0 0 24px rgba(124, 140, 255, 0.6);
}

.legal-card__text {
  display: grid;
  gap: 16px;
}

.legal-card__text p {
  margin: 0;
  color: rgba(248, 249, 255, 0.62);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.7;
}

.legal-card__text ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: rgba(248, 249, 255, 0.62);
}

.legal-card__text li {
  padding-left: 4px;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.7;
}

.activation-shell {
  padding-bottom: 48px;
}

.activation-page {
  width: min(100%, 540px);
  margin: 0 auto;
  padding-top: clamp(62px, 8vw, 96px);
}

.activation-page h1 {
  margin: 0 0 38px;
  color: #ffffff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(30px, 4.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1.1;
  text-align: center;
}

.activation-page h1 span {
  background: linear-gradient(90deg, #20e2a7, #42d2c3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.activation-guide {
  display: grid;
  gap: 15px;
  padding: 24px;
  border: 1px solid rgba(32, 226, 167, 0.24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 0% 100%, rgba(32, 226, 167, 0.08), transparent 40%),
    rgba(32, 226, 167, 0.065);
}

.activation-guide__title {
  color: #20e2a7;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.activation-step {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
}

.activation-step span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  color: #ffffff;
  background: linear-gradient(135deg, #20cfa3, #21b98d);
  font-size: 12px;
  font-weight: 950;
}

.activation-step p {
  margin: 2px 0 0;
  color: rgba(248, 249, 255, 0.66);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}

.activation-step a,
.activation-step button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  grid-column: 2;
  justify-self: start;
  min-height: 38px;
  margin-top: 8px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  color: #101426;
  background: linear-gradient(135deg, #27e8b1, #20cfa3);
  box-shadow: 0 12px 28px rgba(32, 226, 167, 0.22);
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.activation-step a:hover,
.activation-step button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(32, 226, 167, 0.32);
  filter: brightness(1.05);
}

.activation-step a::before,
.activation-step button::before {
  font-size: 13px;
  line-height: 1;
}

.activation-step__button--external::before {
  content: "↗";
}

.activation-step__button--download::before {
  content: "↧";
}

.activation-step__button--key::before {
  content: "↻";
}

.activation-warning {
  margin: 22px 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 194, 61, 0.38);
  border-radius: 12px;
  color: #ffc83d;
  background: rgba(255, 194, 61, 0.08);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.activation-form {
  display: grid;
  gap: 18px;
}

.activation-field {
  display: grid;
  gap: 9px;
}

.activation-field span {
  color: rgba(248, 249, 255, 0.92);
  font-size: 14px;
  font-weight: 950;
}

.activation-field input,
.activation-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.16);
  outline: none;
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.activation-field input {
  min-height: 50px;
  padding: 0 16px;
}

.activation-field textarea {
  min-height: 92px;
  padding: 16px;
  resize: vertical;
}

.activation-field input:focus,
.activation-field textarea:focus {
  border-color: rgba(32, 226, 167, 0.54);
  box-shadow: 0 0 0 3px rgba(32, 226, 167, 0.09);
}

.activation-field input::placeholder,
.activation-field textarea::placeholder {
  color: rgba(248, 249, 255, 0.32);
}

.activation-submit,
.activation-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.activation-submit {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #18c597, #18a984);
  box-shadow: 0 18px 42px rgba(24, 197, 151, 0.25);
}

.activation-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(24, 197, 151, 0.34);
}

.activation-check {
  border: 1px solid rgba(32, 226, 167, 0.34);
  color: rgba(248, 249, 255, 0.72);
  background: rgba(0, 0, 0, 0.12);
}

.activation-check:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 226, 167, 0.54);
  color: #ffffff;
}

.activation-check-panel {
  display: block;
  padding: 18px;
  border: 1px solid rgba(124, 140, 255, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 0% 100%, rgba(32, 226, 167, 0.09), transparent 38%),
    rgba(255, 255, 255, 0.025);
  animation: panel-in 220ms ease both;
}

.activation-check-panel[hidden] {
  display: none;
}

body.is-light .hero__title,
body.is-light .hero__text strong {
  color: #101426;
}

body.is-light .hero__text,
body.is-light .hero__features li {
  color: rgba(16, 20, 38, 0.66);
}

body.is-light .hero__badge {
  color: #4652a8;
  background: rgba(255, 255, 255, 0.74);
}

body.is-light .hero__feature-icon {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(16, 20, 38, 0.1);
}

body.is-light .hero__feature-icon--lock {
  color: #d99c00;
}

body.is-light .hero__feature-icon--bolt {
  color: #e0a500;
}

body.is-light .hero__feature-icon--success {
  color: #14a845;
}

body.is-light .hero__feature-icon--chat {
  color: #6474dd;
}

body.is-light .security-card {
  background:
    radial-gradient(circle at 7% 50%, rgba(12, 194, 141, 0.16), transparent 18%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(12, 194, 141, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.is-light .security-card__content strong {
  color: #101426;
}

body.is-light .security-card__content span {
  color: rgba(16, 20, 38, 0.72);
}

body.is-light .security-card__icon {
  background: rgba(12, 194, 141, 0.12);
}

body.is-light .section-heading__title,
body.is-light .plan-card h3,
body.is-light .audience__title,
body.is-light .audience-card h3,
body.is-light .comparison__title,
body.is-light .workflow__title,
body.is-light .workflow-card h3,
body.is-light .faq__title,
body.is-light .faq-item summary {
  color: #101426;
}

body.is-light .section-heading__text,
body.is-light .plan-card__description,
body.is-light .plan-card__features li,
body.is-light .plan-card__term {
  color: rgba(16, 20, 38, 0.7);
}

body.is-light .plan-card__price {
  color: #101426;
}

body.is-light .plan-card {
  background:
    radial-gradient(circle at 50% 0%, var(--card-accent-soft), transparent 34%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(68, 78, 110, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

body.is-light .plan-card__tags span {
  color: rgba(16, 20, 38, 0.68);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(16, 20, 38, 0.1);
}

body.is-light .audience-card {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 58px rgba(68, 78, 110, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

body.is-light .audience-card p {
  color: rgba(16, 20, 38, 0.66);
}

body.is-light .comparison__table-wrap {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 70px rgba(68, 78, 110, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

body.is-light .comparison__table {
  color: rgba(16, 20, 38, 0.7);
}

body.is-light .comparison__table th:first-child,
body.is-light .comparison__table thead th {
  color: #101426;
}

body.is-light .comparison__table thead th:not(:first-child) {
  color: #0fa36d;
}

body.is-light .comparison__table th,
body.is-light .comparison__table td {
  border-bottom-color: rgba(16, 20, 38, 0.09);
}

body.is-light .workflow,
body.is-light .workflow-card {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 70px rgba(68, 78, 110, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

body.is-light .workflow-card p {
  color: rgba(16, 20, 38, 0.66);
}

body.is-light .faq,
body.is-light .faq-item {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 70px rgba(68, 78, 110, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

body.is-light .faq-item p {
  color: rgba(16, 20, 38, 0.66);
}

body.is-light .footer {
  border-top-color: rgba(16, 20, 38, 0.12);
}

body.is-light .footer__copyright,
body.is-light .footer__nav a {
  color: rgba(16, 20, 38, 0.68);
}

body.is-light .footer__legal {
  color: rgba(16, 20, 38, 0.5);
}

body.is-light .footer__nav a:hover {
  color: #101426;
}

body.is-light .legal-header__back {
  color: rgba(16, 20, 38, 0.72);
}

body.is-light .legal-header__back:hover,
body.is-light .legal-hero h1,
body.is-light .legal-card h2 {
  color: #101426;
}

body.is-light .legal-hero p,
body.is-light .legal-card__text p,
body.is-light .legal-card__text ul {
  color: rgba(16, 20, 38, 0.64);
}

body.is-light .activation-page h1,
body.is-light .activation-field span {
  color: #101426;
}

body.is-light .activation-step p {
  color: rgba(16, 20, 38, 0.66);
}

body.is-light .activation-guide,
body.is-light .activation-field input,
body.is-light .activation-field textarea {
  background: rgba(255, 255, 255, 0.74);
}

body.is-light .activation-field input,
body.is-light .activation-field textarea {
  color: #101426;
}

body.is-light .legal-card {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 70px rgba(68, 78, 110, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes star-pulse {
  0%,
  100% {
    opacity: .28;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.55);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .comparison {
    display: none;
  }

  .header__bar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .theme-toggle {
    order: 2;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 3;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 260ms ease, opacity 220ms ease, padding-top 220ms ease;
  }

  .nav.is-open {
    max-height: 260px;
    padding-top: 8px;
    opacity: 1;
  }

  .nav__link {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 620px;
    margin: 48px auto 0;
  }

  .hero__features li {
    justify-content: flex-start;
    white-space: normal;
  }

  .security-card {
    margin-top: 24px;
    padding: 26px;
  }

  .plans {
    margin-top: 72px;
  }

  .plans__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card {
    min-height: 560px;
  }

  .audience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow {
    padding: 34px 26px;
  }

  .workflow__grid {
    gap: 16px;
  }

  .faq {
    padding: 34px 26px;
  }

  .footer__nav {
    gap: 16px 24px;
  }

  .legal-header {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-shell {
    padding: 12px;
  }

  .header__bar {
    min-height: 70px;
    padding: 10px;
    border-radius: 22px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand__mark {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

  .brand__tagline {
    max-width: 160px;
    font-size: 11px;
  }

  .nav {
    grid-template-columns: 1fr;
  }

  .nav__link {
    justify-content: flex-start;
    min-height: 44px;
  }

  .theme-toggle,
  .menu-toggle {
    width: 42px;
    min-height: 42px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero__badge {
    min-height: 36px;
    padding: 0 16px;
    font-size: 12px;
  }

  .hero__title {
    margin-top: 22px;
    font-size: clamp(31px, 10vw, 43px);
    letter-spacing: -0.065em;
  }

  .hero__text {
    font-size: 15px;
  }

  .hero__cta {
    min-width: 100%;
    min-height: 54px;
    margin-top: 24px;
    font-size: 17px;
  }

  .hero__features {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .hero__feature-icon {
    width: 40px;
    height: 40px;
  }

  .security-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    margin-top: 22px;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .security-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .security-card__content span {
    font-size: 14px;
  }

  .plans {
    margin-top: 54px;
    padding-bottom: 44px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading__title {
    font-size: clamp(28px, 9vw, 38px);
  }

  .section-heading__text {
    font-size: 15px;
  }

  .plans__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plan-card {
    min-height: auto;
    padding: 24px 20px 20px;
    border-radius: 22px;
  }

  .plan-card__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    border-radius: 19px;
  }

  .plan-card__description {
    min-height: auto;
  }

  .audience {
    padding-bottom: 54px;
  }

  .audience__title {
    margin-bottom: 26px;
    font-size: clamp(24px, 8vw, 34px);
  }

  .audience__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .workflow {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .workflow__title {
    margin-bottom: 24px;
    font-size: clamp(24px, 8vw, 34px);
  }

  .workflow__grid {
    grid-template-columns: 1fr;
  }

  .workflow-card {
    min-height: auto;
    padding: 22px;
  }

  .faq {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .faq__title {
    margin-bottom: 22px;
    font-size: clamp(23px, 7vw, 30px);
  }

  .faq-item summary {
    min-height: 60px;
    padding: 18px;
    font-size: 14px;
  }

  .faq-item p {
    padding: 0 18px 20px;
    font-size: 13px;
  }

  .footer {
    margin-top: 26px;
    padding: 38px 0 30px;
  }

  .footer__nav {
    gap: 14px 18px;
  }

  .footer__nav a {
    font-size: 13px;
  }

  .checkout-modal {
    width: min(94vw, 470px);
    max-height: 90vh;
    border-radius: 18px;
  }

  .checkout {
    padding: 24px 18px;
  }

  .checkout__promo {
    grid-template-columns: 1fr;
  }

  .legal-shell {
    padding: 18px 12px 44px;
  }

  .legal-header {
    flex-direction: column;
    align-items: stretch;
  }

  .legal-header .brand {
    min-width: 0;
  }

  .legal-header__back {
    min-height: 46px;
  }

  .legal-hero {
    padding: 48px 0 34px;
  }

  .legal-hero h1 {
    font-size: clamp(36px, 12vw, 50px);
  }

  .legal-hero p {
    font-size: 15px;
  }

  .legal-card {
    border-radius: 22px;
  }

  .legal-card__text p {
    font-size: 14px;
  }

  .legal-card__text li {
    font-size: 14px;
  }

  .activation-page {
    padding-top: 44px;
  }

  .activation-guide {
    padding: 18px;
  }

  .activation-step {
    gap: 10px;
  }

  .activation-warning {
    font-size: 13px;
  }
}


