:root {
  --bg-0: #060609;
  --bg-1: #0b0710;
  --bg-2: #120712;
  --surface: rgba(16, 10, 19, 0.82);
  --surface-strong: rgba(11, 8, 15, 0.94);
  --line: rgba(255, 255, 255, 0.10);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.90);
  --soft: rgba(255,255,255,0.72);
  --accent: #ff2d75;
  --accent-2: #ff4f97;
  --accent-3: #ff7bb2;
  --accent-deep: #7f113f;
  --accent-glow: rgba(255, 45, 117, 0.48);
  --orange: #ff6b3d;
  --green: #84f8a1;
  --button-shadow: 0 0 0 1px rgba(255,255,255,.07), 0 0 18px rgba(255,255,255,.18), 0 0 38px rgba(255,45,117,.34);
  --card-radius: 30px;
  --content-width: 760px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 45, 117, 0.12), transparent 22%),
    radial-gradient(circle at left 65%, rgba(255, 45, 117, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 46%, #09090c 100%);
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    radial-gradient(circle at 16px 16px, rgba(255,45,117,.22) 0 2px, transparent 2.5px),
    radial-gradient(circle at 56px 26px, rgba(255,45,117,.14) 0 1.5px, transparent 2px),
    linear-gradient(135deg, transparent 0 46%, rgba(255,45,117,.12) 46% 48%, transparent 48% 100%),
    linear-gradient(45deg, transparent 0 46%, rgba(255,45,117,.09) 46% 48%, transparent 48% 100%);
  background-size: 120px 120px, 150px 150px, 180px 180px, 180px 180px;
  mix-blend-mode: screen;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 1000;
}
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.hero-shell {
  width: min(100%, 930px);
  margin: 0 auto;
  padding: 34px 20px 0;
}
.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 34px 34px;
  padding: 22px 22px 54px;
  background: linear-gradient(180deg, rgba(24, 10, 22, .82), rgba(10, 9, 13, .62));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}
.lang-switch,
.flag-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}
.lang-switch button,
.flag-chip {
  appearance: none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  padding: 2px;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.lang-switch button:hover,
.lang-switch button:focus-visible,
.flag-chip:hover,
.flag-chip:focus-visible {
  transform: translateY(-1px) scale(1.08) rotate(-2deg);
  box-shadow: 0 0 0 3px rgba(255,45,117,.10), 0 0 18px rgba(255,45,117,.22);
  border-color: rgba(255,255,255,.36);
  outline: none;
}
.lang-switch button.is-active { border-color: rgba(255,255,255,.55); }
.lang-switch img,
.flag-chip img { width: 44px; height: 30px; border-radius: 7px; object-fit: cover; }
.hero-main {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  text-align: center;
}
.profile-wrap,
.avatar-ring {
  position: relative;
  width: clamp(160px, 34vw, 250px);
  margin: 14px auto 26px;
}
.profile-wrap img,
.avatar-ring img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(39, 0, 26, 0.76);
  box-shadow: 0 0 0 5px rgba(255, 45, 117, .16), 0 0 28px rgba(255,45,117,.24);
}
.hero-main h1,
.page-headline {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}
.subtitle {
  max-width: 770px;
  margin: 22px auto 0;
  font-size: clamp(1rem, 3.3vw, 1.28rem);
  line-height: 1.32;
  color: var(--muted);
  text-wrap: balance;
}
.section-heading,
.block-kicker {
  margin: 58px 0 22px;
  font-size: clamp(1rem, 3.7vw, 1.2rem);
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
}
.button-stack {
  display: grid;
  gap: 26px;
}
.cta-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 20px 22px;
  border-radius: 26px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: clamp(1.1rem, 3vw, 1.34rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 42%, var(--accent-deep) 100%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--button-shadow);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  isolation: isolate;
  overflow: hidden;
}
.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,.24) 40%, transparent 62%);
  transform: translateX(-130%);
  transition: transform .7s ease;
  z-index: -1;
}
.cta-button:hover::before,
.cta-button:focus-visible::before,
.cta-button.is-pulsing::before { transform: translateX(130%); }
.cta-button:hover,
.cta-button:focus-visible,
.cta-button.is-pulsing {
  transform: translateY(-2px) scale(1.01);
  filter: saturate(1.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 0 28px rgba(255,255,255,.22), 0 0 52px rgba(255,45,117,.40);
  outline: none;
}
.cta-button:active { transform: translateY(0) scale(.99); }
.cta-button span { position: relative; z-index: 1; }
.hero-footer-gap { height: 76px; }
.site-footer {
  margin-top: auto;
  background: #050507;
  text-align: center;
  padding: 34px 16px 48px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-icon { width: 58px; margin: 0 auto 18px; }
.site-footer h2 { margin: 0 0 18px; font-size: clamp(1.5rem, 5vw, 2rem); letter-spacing: 0.02em; }
.footer-links { display: grid; gap: 10px; }
.footer-links a {
  color: #d55f55;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(1.05rem, 3.8vw, 1.22rem);
}
.footer-links a:hover,.footer-links a:focus-visible { text-decoration: underline; outline: none; }
.content-page {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 28px 20px 70px;
}
.page-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.back-link {
  color: rgba(255,255,255,.95);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .01em;
}
.back-link:hover,.back-link:focus-visible{text-decoration:underline;outline:none;}
.content-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.mobile-frame {
  max-width: 760px;
  margin: 0 auto;
}
.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 6px 0 26px;
}
.top-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.page-hero {
  text-align: center;
  margin-bottom: 34px;
}
.page-hero .page-headline {
  font-size: clamp(2rem, 5.2vw, 3rem);
  margin: 16px auto 0;
}
.signup-copy {
  margin: 34px 0 14px;
  color: var(--text);
  font-size: clamp(1.4rem, 5vw, 2.3rem);
  line-height: 1.06;
  font-weight: 900;
}
.lead-list,
.check-list {
  margin: 0 0 26px;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  line-height: 1.44;
}
.lead-list li,
.check-list li { margin: 10px 0; }
.telegram-bot {
  display: inline-flex;
  margin: 2px auto 18px;
  background: rgba(255,255,255,.08);
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset;
}
.telegram-bot:hover,.telegram-bot:focus-visible { box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset, 0 0 18px rgba(255,45,117,.22); outline: none; }
.promo-panel {
  margin: 34px 0;
}
.promo-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 6vw, 3.1rem);
  line-height: 1.03;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}
.note-copy,
.intro-cta,
.promo-copy {
  color: var(--muted);
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  line-height: 1.42;
}
.preview-hero {
  width: min(100%, 420px);
  margin: 8px auto 10px;
}
.points {
  margin: 22px 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}
.points strong { color: #fff; }
.benefit-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}
.benefit-item {
  font-size: clamp(1.35rem, 3vw, 1.55rem);
  line-height: 1.28;
  font-weight: 800;
}
.media-stack {
  display: grid;
  gap: 28px;
  margin-top: 22px;
}
.placeholder-video,
.placeholder-photo,
.placeholder-chat {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(255, 107, 61, .9);
  background: linear-gradient(180deg, #131316, #09090b);
  box-shadow: 0 16px 48px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.05) inset;
}
.placeholder-video {
  aspect-ratio: 16 / 10;
}
.placeholder-photo {
  aspect-ratio: 3 / 4;
}
.placeholder-chat {
  aspect-ratio: 3 / 5;
  background: linear-gradient(180deg, #16131b, #0b0b10);
}
.placeholder-video::before,
.placeholder-photo::before,
.placeholder-chat::before {
  content: attr(data-label);
  position: absolute;
  inset: auto 18px 18px 18px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.placeholder-photo::after,
.placeholder-chat::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,.14);
}
.play-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 107, 61, .92);
  box-shadow: 0 0 26px rgba(255,107,61,.32);
}
.play-badge::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 29px;
  border-left: 28px solid #fff;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
}
.video-controls {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
}
.video-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  position: relative;
  overflow: hidden;
}
.video-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  background: linear-gradient(90deg, #ff6b3d, #ff8f6d);
}
.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.88);
  font-size: clamp(.95rem, 2.7vw, 1.12rem);
  font-weight: 700;
}
.meta-left,
.meta-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin: 20px 0 28px;
}
.gallery-grid.three-col { grid-template-columns: repeat(3, minmax(0,1fr)); }
.gallery-grid.two-col { grid-template-columns: repeat(2, minmax(0,1fr)); }
.gallery-card {
  background: rgba(255,255,255,.03);
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(255, 107, 61, .92);
  transition: transform .18s ease, box-shadow .18s ease;
  height:180px;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-card:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 8px 24px rgba(255,45,117,.18); }
.gallery-label {
  padding: 10px 12px 12px;
  font-weight: 700;
  font-size: .96rem;
}
.placeholder-grid .placeholder-photo { background: linear-gradient(180deg, #0f0f13, #050507); }
.policy-copy,
.remove-copy {
  color: rgba(255,255,255,.88);
  line-height: 1.72;
  font-size: 1rem;
}
.policy-copy h2,
.remove-copy h2 {
  margin-top: 28px;
  font-size: 1.15rem;
  color: #fff;
}
.remove-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.remove-form label { display: grid; gap: 6px; font-weight: 700; }
.remove-form input,
.remove-form select,
.remove-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: #fff;
  padding: 14px 16px;
  font: inherit;
}
.remove-form textarea { min-height: 140px; resize: vertical; }
.remove-form button {
  width: 100%;
  border: 0;
  min-height: 56px;
  border-radius: 18px;
  cursor: pointer;
  color: #fff;
  font: inherit;
  font-weight: 800;
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 42%, var(--accent-deep) 100%);
  box-shadow: var(--button-shadow);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.section-spacer { height: 20px; }
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-grid.three-col { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-grid.two-col { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 700px) {
  .hero-shell { padding-top: 16px; }
  .hero-card { padding: 14px 14px 48px; border-radius: 0 0 26px 26px; }
  .section-heading { margin-top: 48px; }
  .cta-button { min-height: 82px; border-radius: 22px; font-size: 1rem; }
  .content-page { padding: 20px 16px 60px; }
  .utility-bar { align-items: flex-start; }
  .signup-copy { margin-top: 26px; }
  .promo-title { font-size: clamp(1.8rem, 9vw, 2.7rem); }
  .gallery-grid,
  .gallery-grid.three-col,
  .gallery-grid.two-col { grid-template-columns: 1fr; }
  .placeholder-video { aspect-ratio: 16 / 10.5; }
  .play-badge { width: 82px; height: 82px; }
  .play-badge::before { left: 34px; top: 24px; border-left-width: 24px; border-top-width: 16px; border-bottom-width: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}


.flag-chip { display: inline-flex; align-items: center; justify-content: center; }
.flag-chip.is-active,
.lang-switch button.is-active { border-color: rgba(255,255,255,.55); box-shadow: 0 0 0 3px rgba(255,45,117,.10), 0 0 18px rgba(255,45,117,.22); }
.inline-flag {
  width: 28px;
  height: 20px;
  border-radius: 4px;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}
.inline-flag-lg {
  width: 34px;
  height: 24px;
  margin-right: 12px;
}
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 2px solid rgba(255, 107, 61, .92);
  background: linear-gradient(180deg, #131316, #09090b);
  box-shadow: 0 16px 48px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.05) inset;
}
.media-card img,
.preview-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.video-card,
.media-slot .video-card,
.media-slot { aspect-ratio: 16 / 10; }
.media-ratio-photo { aspect-ratio: 3 / 4; }
.media-ratio-chat { aspect-ratio: 3 / 5; }
.media-gallery-slot .media-card { height: auto; }
.preview-video {
  background: #000;
}
.remove-form button:hover,
.remove-form button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}
@media (max-width: 700px) {
  .inline-flag { width: 24px; height: 18px; margin-right: 8px; }
  .inline-flag-lg { width: 28px; height: 20px; }
}

.payment-flags-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.payment-flags-line img {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}
.media-stack {
  display: grid;
  gap: 34px;
}
.media-stack article {
  display: grid;
  gap: 16px;
}
.media-slot .video-card,
.media-slot,
.media-stack > article > .media-card.video-card {
  aspect-ratio: 9 / 16;
  max-width: 420px;
  margin-inline: auto;
}
.media-gallery-slot {
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.media-gallery-slot .media-card {
  aspect-ratio: 3 / 4;
}
.preview-video--auto {
  background: #000;
}
.proof-benefits {
  margin-top: 8px;
}
.gallery-grid.media-gallery-slot.two-col {
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (max-width: 700px) {
  .media-gallery-slot {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 12px;
  }
  .media-gallery-slot .media-card {
    border-radius: 16px;
  }
  .gallery-grid {
    gap: 12px;
  }
  .media-slot .video-card,
  .media-slot,
  .media-stack > article > .media-card.video-card {
    max-width: 100%;
    width: min(100%, 420px);
  }
}
