/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Inter, Helvetica, Arial, sans-serif;
  background: #07080c;
  color: #f1f1f6;
}

/* ===== PAGE ===== */
.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

/* ===== CARD (ГЛАВНЫЙ ФИКС) ===== */
.card {
  width: 100%;
  max-width: 380px;
  background: rgba(16, 18, 24, 0.95);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 28px 24px 30px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 30px 80px rgba(0,0,0,0.9);

  /* ВАЖНО */
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ===== BRAND ===== */
.logo {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.logo span {
  color: #d43a6b;
}

/* ===== HERO ===== */
h1 {
  text-align: center;
  font-size: 26px;
  line-height: 1.25;
}

.subtitle {
  text-align: center;
  font-size: 14px;
  color: #9ca0ad;
}

/* ===== LIVE ===== */
.live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #9fa3ff;
}

.dot {
  width: 8px;
  height: 8px;
  background: #4cff8f;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(76,255,143,0.8);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* ===== PREVIEW ===== */
/* ===== PREVIEW ===== */
/* ===== PREVIEW ===== */
.preview {
  height: 150px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: url("img.png") center / cover no-repeat;
}

/* лёгкое размытие */
.preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(6px);
  transform: scale(1.05);
}

/* затемнение + текст */
.preview::after {
  content: "Exclusive private profiles";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #ffffff;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.55)
  );
}


/* ===== SEO SIDE TEXT ===== */
.seo-left,
.seo-right {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;

  font-size: 22px;
  line-height: 1.5;
  color: #fafafc;

  pointer-events: none; /* не мешает кликам */
}

.seo-left {
  left: 80px;
  text-align: right;
}

.seo-right {
  right: 80px;
  text-align: left;
}

/* скрываем на мобиле */
@media (max-width: 980px) {
  .seo-left,
  .seo-right {
    display: none;
  }
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 28px;
  padding: 20px 12px 10px;
  text-align: center;
}

.footer-links {
  font-size: 12px;
  color: #7f8392;
}

.footer-links a {
  color: #7f8392;
  text-decoration: none;
  margin: 0 4px;
}

.footer-links a:hover {
  color: #bfc3ff;
}

.footer-links span {
  opacity: 0.4;
}

.footer-copy {
  margin-top: 8px;
  font-size: 11px;
  color: #5f6372;
}



/* ===== STEPS ===== */
.steps {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #8c90a3;
}

.steps div {
  position: relative;
}

.steps div::after {
  content: "›";
  position: absolute;
  right: -14px;
  color: #44485a;
}

.steps div:last-child::after {
  display: none;
}

/* ===== FEATURES ===== */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 10px 0;
  font-size: 13px;
  text-align: center;
}

/* ===== CTA ===== */
.cta {
  width: 100%;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e0467a, #b52d5a);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 12px 36px rgba(212,58,107,0.4);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 44px rgba(212,58,107,0.55);
}

/* ===== DISCLAIMER ===== */
.disclaimer {
  font-size: 11px;
  text-align: center;
  color: #7f8392;
  line-height: 1.4;
}

/* ===== BACKGROUND ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,58,107,0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(120,140,255,0.06), transparent 45%);
  pointer-events: none;
  z-index: -1;
}
/* ===== SUPPORT MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 10, 0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 340px;
  background: rgba(18, 20, 28, 0.98);
  border-radius: 18px;
  padding: 26px 22px 24px;
  text-align: center;
  position: relative;

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 30px 80px rgba(0,0,0,0.9);
}

.modal h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.modal p {
  font-size: 14px;
  line-height: 1.5;
  color: #c6c9d6;
}

.support-email {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
}

.support-email a {
  color: #d43a6b;
  text-decoration: none;
}

.support-email a:hover {
  text-decoration: underline;
}

/* close button */
.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #9ca0ad;
  font-size: 22px;
  cursor: pointer;
}

.modal-close:hover {
  color: #fff;
}

/* mobile */
@media (max-width: 360px) {
  .modal {
    padding: 22px 18px;
  }
}


/* ===== MOBILE ===== */
@media (max-width: 360px) {
  h1 {
    font-size: 22px;
  }
}

/* ===== MOBILE ADAPTATION ===== */
@media (max-width: 420px) {

  .page {
    padding: 14px;
  }

  .card {
    padding: 22px 18px 24px;
    border-radius: 18px;
    gap: 18px;
  }

  h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 13px;
  }

  .preview {
    height: 130px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta {
    height: 50px;
    font-size: 15px;
    border-radius: 14px;
  }

  .disclaimer {
    font-size: 10px;
  }

  /* отключаем hover на таче */
  .cta:hover {
    transform: none;
    box-shadow: 0 12px 36px rgba(212,58,107,0.4);
  }
}

