* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0b0710;
  --bg-alt: #120a1c;
  --pink: #ff2e93;
  --purple: #8b2ff0;
  --yellow: #ffd23f;
  --cyan: #2ee6e6;
  --text: #f4f1f8;
  --text-dim: #b3a8c2;
  --card: #170f24;
  --border: rgba(255,255,255,0.08);
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, .logo, .price-tag__new, .plan__price {
  font-family: 'Russo One', sans-serif;
  letter-spacing: 0.5px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,46,147,0.18), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(139,47,240,0.22), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(46,230,230,0.10), transparent 40%);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn--primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,46,147,0.35);
}
.btn--primary:hover { box-shadow: 0 12px 32px rgba(255,46,147,0.5); }

.btn--ghost {
  background: rgba(255,255,255,0.06);
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); }

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: var(--text);
}
.btn--outline:hover { border-color: var(--pink); color: var(--pink); }

.btn--lg { padding: 18px 38px; font-size: 17px; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(11,7,16,0.7);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.logo span { color: var(--pink); }

.header__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--text-dim);
}
.nav a:hover { color: var(--text); }

.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
}
.lang-switch button,
.lang-switch a {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-switch button:hover,
.lang-switch a:hover { color: var(--text); }
.lang-switch button.active,
.lang-switch a.active {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav--mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 16px;
}
.nav--mobile.open { display: flex; }

/* Hero */
.hero { padding: 72px 0 56px; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,210,63,0.12);
  border: 1px solid rgba(255,210,63,0.35);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  margin-bottom: 20px;
}
.hero__title span {
  background: linear-gradient(135deg, var(--pink), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__price-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.price-tag { display: flex; align-items: baseline; gap: 10px; }
.price-tag__old {
  color: var(--text-dim);
  text-decoration: line-through;
  font-size: 16px;
}
.price-tag__new {
  font-size: 32px;
  color: var(--yellow);
}

.hero__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__points li {
  color: var(--text-dim);
  font-size: 14px;
  padding-left: 26px;
  position: relative;
}
.hero__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.hero__art { display: flex; justify-content: center; }
.art-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  border-radius: 24px;
  background: linear-gradient(160deg, #2a1240, #170a26 60%, #0b0710);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 60px -20px rgba(139,47,240,0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
}
.art-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.art-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,7,16,0.05) 30%, rgba(11,7,16,0.9) 100%);
  z-index: 1;
}
.art-card__footer {
  position: relative;
  z-index: 2;
}
.art-card__label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 6px;
}
.art-card__platform {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
}

/* Strip */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); }
.strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 24px;
  text-align: center;
}
.strip__item { display: flex; flex-direction: column; gap: 4px; }
.strip__item strong { font-size: 26px; color: var(--text); font-family: 'Russo One', sans-serif; }
.strip__item span { font-size: 13px; color: var(--text-dim); }

/* Sections */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); }
.section__title {
  font-size: clamp(28px, 4vw, 38px);
  text-align: center;
  margin-bottom: 12px;
}
.section__subtitle {
  text-align: center;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 15px;
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan h3 { font-size: 18px; margin-bottom: 12px; }
.plan__price {
  font-size: 32px;
  color: var(--text);
  margin-bottom: 20px;
}
.plan__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex-grow: 1; }
.plan__list li {
  font-size: 14px;
  color: var(--text-dim);
  padding-left: 22px;
  position: relative;
}
.plan__list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}
.plan .btn { width: 100%; }

.plan--popular {
  border-color: var(--pink);
  background: linear-gradient(160deg, rgba(255,46,147,0.08), var(--card) 60%);
  transform: scale(1.03);
}
.plan__ribbon {
  position: absolute;
  top: -14px;
  left: 28px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.feature__icon { font-size: 28px; margin-bottom: 16px; }
.feature h3 { font-size: 16px; margin-bottom: 10px; }
.feature p { font-size: 14px; color: var(--text-dim); line-height: 1.5; }

/* Requirements */
.req-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.req-col {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px;
}
.req-col h3 { margin-bottom: 18px; font-size: 18px; color: var(--cyan); }
.req-col ul { display: flex; flex-direction: column; gap: 14px; }
.req-col li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 10px;
}
.req-col li span { color: var(--text-dim); }
.req-col li b { font-weight: 600; text-align: right; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}
.faq__q::after {
  content: "+";
  font-size: 20px;
  color: var(--pink);
  transition: transform 0.2s ease;
}
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq__a p {
  padding: 0 22px 18px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

/* CTA */
.cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,46,147,0.12), rgba(139,47,240,0.18));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 12px; }
.cta p { color: var(--text-dim); margin-bottom: 28px; }

/* Footer */
.footer { padding: 64px 0 24px; background: var(--bg-alt); }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer__disclaimer {
  color: var(--text-dim);
  font-size: 12.5px;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 420px;
}
.footer__col h4 { font-size: 14px; margin-bottom: 16px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.footer__col a { display: block; font-size: 14px; color: var(--text-dim); margin-bottom: 10px; }
.footer__col a:hover { color: var(--text); }
.pay-icons { display: flex; flex-wrap: wrap; gap: 10px; }
.pay-icons span {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-dim);
}
.footer__copy {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  padding-top: 24px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--card);
  border: 1px solid var(--pink);
  color: var(--text);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 280px; margin: 0 auto; }
  .plans { grid-template-columns: 1fr; }
  .plan--popular { transform: none; order: -1; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .req-table { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }
  .strip__inner { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
}
