:root {
  --pink: #ff3e7f;
  --pink-glow: rgba(255, 62, 127, 0.4);
  --rose: #ff85aa;
  --purple: #b44fff;
  --dark: #0a0509;
  --dark2: #140b10;
  --dark3: #1d1018;
  --text: #f8eaf1;
  --muted: rgba(248, 234, 241, 0.55);
  --faint: rgba(248, 234, 241, 0.22);
  --line: rgba(255, 62, 127, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

em {
  font-style: italic;
}

/* ════ LANGUAGE MODAL ════ */
.lang-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.lang-modal[hidden] {
  display: none;
}

.lang-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 4, 8, 0.76);
  backdrop-filter: blur(14px);
}

.lang-modal__panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 400px);
  margin: min(16vh, 110px) auto 0;
  padding: 28px 24px;
  border: 1px solid rgba(255, 62, 127, 0.28);
  border-radius: 26px;
  background: linear-gradient(180deg, var(--dark3), var(--dark));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.lang-modal__eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
}

.lang-modal h2 {
  font-family: "Playfair Display", serif;
  margin: 12px 0 10px;
  font-size: clamp(24px, 7vw, 32px);
  line-height: 1.1;
}

.lang-modal__text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.lang-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.lang-choice {
  min-height: 54px;
  border: 1px solid rgba(255, 62, 127, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}

.lang-choice:active {
  transform: scale(0.97);
}

.lang-choice--en {
  background: linear-gradient(135deg, rgba(180, 79, 255, 0.18), rgba(255, 62, 127, 0.1));
}

.lang-modal__hint {
  margin-top: 14px;
  font-size: 12px;
  color: var(--faint);
}

/* ════ HERO ════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(10, 5, 9, 0.78) 0%, transparent 100%);
  z-index: 2;
}

.hero__blur {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44%;
  backdrop-filter: blur(8px) saturate(1.15);
  -webkit-backdrop-filter: blur(8px) saturate(1.15);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 48%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 48%);
  z-index: 3;
  pointer-events: none;
}

.hero__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 66%;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(10, 5, 9, 0.25) 20%,
      rgba(10, 5, 9, 0.65) 48%,
      rgba(10, 5, 9, 0.94) 74%,
      var(--dark) 100%);
  z-index: 4;
}

.topbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 0;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 26px var(--pink-glow);
  letter-spacing: 0.5px;
}

.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 5, 9, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 62, 127, 0.3);
  padding: 7px 13px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.dot {
  width: 7px;
  height: 7px;
  background: #3dff7a;
  border-radius: 50%;
  box-shadow: 0 0 8px #3dff7a;
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.lang-toggle {
  min-width: 46px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 62, 127, 0.3);
  border-radius: 20px;
  background: rgba(10, 5, 9, 0.55);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.hero__content {
  position: relative;
  z-index: 10;
  margin-top: auto;
  padding: 0 22px 36px;
  text-align: center;
}

.hero__content > * {
  opacity: 0;
  animation: up 0.5s ease forwards;
}

.hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.hero__content > *:nth-child(2) { animation-delay: 0.22s; }
.hero__content > *:nth-child(3) { animation-delay: 0.34s; }
.hero__content > *:nth-child(4) { animation-delay: 0.46s; }
.hero__content > *:nth-child(5) { animation-delay: 0.58s; }
.hero__content > *:nth-child(6) { animation-delay: 0.7s; }

@keyframes up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 11vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 10px;
}

.headline em {
  color: var(--pink);
  font-style: italic;
  display: block;
  text-shadow: 0 0 36px var(--pink-glow);
}

.sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.55;
}

/* trust row */
.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.trust__num {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}

.trust__lbl {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
}

.trust__sep {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.12);
}

/* ════ CTA ════ */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 18px 24px;
  background: linear-gradient(120deg, var(--pink), var(--purple), var(--pink));
  background-size: 200% 200%;
  animation: gradShift 3.4s ease infinite;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  box-shadow: 0 12px 40px rgba(255, 62, 127, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.15s;
}

.cta:active {
  transform: scale(0.98);
}

.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  animation: shine 2.8s ease-in-out infinite 1.2s;
}

@keyframes gradShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 210%; }
}

.cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 11px;
  text-align: center;
}

/* ════ SECTION SHELL ════ */
.section {
  max-width: 480px;
  margin: 0 auto;
  padding: 50px 20px 40px;
}

.section-label {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 7px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(27px, 8vw, 38px);
  font-weight: 900;
  text-align: center;
  line-height: 1.14;
  margin-bottom: 28px;
}

.section-title em {
  color: var(--pink);
  font-style: italic;
}

/* ════ FEATURES ════ */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.feat {
  background: linear-gradient(165deg, var(--dark3), var(--dark2));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 15px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.feat:active {
  transform: translateY(-2px);
}

.feat::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -24px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 62, 127, 0.16), transparent 70%);
}

.feat__ico {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}

.feat__name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}

.feat__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ════ STEPS ════ */
.steps {
  background: var(--dark2);
  max-width: none;
}

.steps-wrap {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.step {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--dark3);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
}

.step__num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 62, 127, 0.35);
}

.step__name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.step__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

/* ════ CHAT PREVIEW ════ */
.chat-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 16px;
  background: linear-gradient(165deg, var(--dark2), var(--dark));
  border: 1px solid var(--line);
  border-radius: 22px;
}

.msg {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.5;
}

.msg--her {
  background: var(--dark3);
  border: 1px solid rgba(255, 62, 127, 0.2);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.msg--him {
  background: linear-gradient(135deg, rgba(255, 62, 127, 0.2), rgba(180, 79, 255, 0.16));
  border: 1px solid rgba(255, 62, 127, 0.25);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.msg__who {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.msg--teaser {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
  opacity: 0.65;
}

.unlock {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--rose);
  margin: 18px 0 22px;
}

/* ════ FAQ ════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: linear-gradient(165deg, var(--dark3), var(--dark2));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  position: relative;
  padding-right: 26px;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  color: var(--pink);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ════ BOTTOM CTA ════ */
.bottom {
  text-align: center;
  position: relative;
  padding-bottom: 56px;
}

.bottom::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 62, 127, 0.12), transparent 70%);
  pointer-events: none;
}

.fomo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 62, 127, 0.08);
  border: 1px solid rgba(255, 62, 127, 0.22);
  border-radius: 30px;
  padding: 8px 17px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 22px;
}

.fomo strong {
  color: #fff;
}

.bottom .section-title {
  margin-bottom: 14px;
}

.bottom__sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 26px;
}

/* ════ FOOTER ════ */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 22px 32px;
  font-size: 11px;
  color: var(--faint);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer a {
  color: var(--muted);
}

/* ════ SCROLL REVEAL (wired to main.js [data-reveal] → .is-in) ════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .hero__content > *,
  [data-reveal] { opacity: 1; transform: none; }
}
