:root {
  color-scheme: dark;
  --bg: #09080d;
  --bg-soft: #0f0d14;
  --surface: rgba(21, 18, 28, .76);
  --surface-strong: rgba(27, 23, 35, .94);
  --surface-soft: rgba(255, 255, 255, .055);
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .18);
  --text: #fbf8ff;
  --muted: #afa8ba;
  --muted-2: #827a8d;
  --rose: #ff5f8f;
  --rose-soft: #ff8caf;
  --violet: #8b5cf6;
  --violet-soft: #b59cff;
  --mint: #5be0be;
  --amber: #ffc767;
  --shadow-xl: 0 34px 90px rgba(0, 0, 0, .48);
  --shadow-lg: 0 22px 58px rgba(0, 0, 0, .34);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 2%, rgba(255, 95, 143, .13), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(139, 92, 246, .15), transparent 31rem),
    radial-gradient(circle at 50% 82%, rgba(91, 224, 190, .06), transparent 34rem),
    linear-gradient(180deg, #0b0910 0%, #08070b 52%, #060609 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
@supports not (overflow: clip) { html, body { overflow-x: hidden; } }

body::before {
  content: "";
  position: fixed;
  inset: -30vh 0 auto;
  width: 100%;
  height: 68vh;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 55%, rgba(255, 95, 143, .22), transparent 24%),
    radial-gradient(circle at 73% 38%, rgba(139, 92, 246, .24), transparent 28%),
    radial-gradient(circle at 52% 80%, rgba(91, 224, 190, .09), transparent 22%);
  filter: blur(34px);
  opacity: .72;
  animation: auroraDrift 13s ease-in-out infinite alternate;
  will-change: transform;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .16;
  background-image: radial-gradient(rgba(255,255,255,.16) .55px, transparent .55px);
  background-size: 6px 6px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

img, picture, video, canvas, svg { max-width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.topbar {
  position: sticky;
  top: 14px;
  z-index: 35;
  width: min(1160px, calc(100% - 36px));
  margin: 14px auto 0;
  padding: 11px 12px 11px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(13,11,17,.67);
  box-shadow: 0 14px 46px rgba(0,0,0,.26);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 830; letter-spacing: -.025em; }
.logo {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  color: white;
  background: linear-gradient(135deg, #ff6b9d 0%, #ad5cff 52%, #6d77ff 100%);
  box-shadow: 0 12px 34px rgba(170,83,255,.35), inset 0 1px 0 rgba(255,255,255,.34);
}
.logo::after {
  content: "";
  position: absolute;
  inset: -70% -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.36), transparent 65%);
  transform: translateX(-50%) rotate(15deg);
  animation: logoShine 5s ease-in-out infinite;
}

.top-cta,
.hero-actions button,
.final-cta a:not(.secondary-final),
.continue-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  border-radius: 17px;
  color: white;
  background: linear-gradient(110deg, #ff5f8f 0%, #a65cff 54%, #6c72ff 100%);
  box-shadow: 0 14px 34px rgba(139,92,246,.26), inset 0 1px 0 rgba(255,255,255,.25);
  font-weight: 820;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.top-cta::after,
.hero-actions button::after,
.final-cta a:not(.secondary-final)::after,
.continue-btn::after {
  content: "";
  position: absolute;
  inset: -80% -35%;
  z-index: -1;
  background: linear-gradient(110deg, transparent 34%, rgba(255,255,255,.32), transparent 66%);
  transform: translateX(-62%) rotate(12deg);
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
}
.top-cta:hover,
.hero-actions button:hover,
.final-cta a:not(.secondary-final):hover,
.continue-btn:hover { transform: translateY(-2px); box-shadow: 0 19px 44px rgba(139,92,246,.34), inset 0 1px 0 rgba(255,255,255,.32); }
.top-cta:hover::after,
.hero-actions button:hover::after,
.final-cta a:not(.secondary-final):hover::after,
.continue-btn:hover::after { transform: translateX(62%) rotate(12deg); }
.top-cta:active,
.hero-actions button:active,
.final-cta a:active,
.continue-btn:active { transform: translateY(0) scale(.985); }
.top-cta { padding: 13px 19px; }

main { width: min(1160px, 100%); margin: 0 auto; padding: 0 22px 72px; }
.section-label { color: var(--rose-soft); font-size: 12px; font-weight: 900; letter-spacing: .17em; }

.hero {
  min-height: 690px;
  padding: 92px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .78fr);
  gap: 68px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.online-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #d8d2df;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  font-size: 14px;
  font-weight: 760;
  animation: heroFade .65s .05s both;
}
.online-pill span,
.profile-status span,
.modal-profile span i {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(91,224,190,.10), 0 0 18px rgba(91,224,190,.82);
  animation: onlinePulse 1.9s ease-out infinite;
}
.hero h1 {
  max-width: 720px;
  margin: 29px 0 23px;
  font-size: clamp(62px, 6.4vw, 88px);
  line-height: .94;
  letter-spacing: -.064em;
  font-weight: 900;
  animation: heroFade .72s .13s both;
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(95deg, #ff83aa 4%, #c278ff 49%, #818cff 95%);
  background-size: 160% 160%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientShift 7s ease-in-out infinite alternate;
}
.hero-copy > p { max-width: 650px; margin: 0 0 31px; color: var(--muted); font-size: 19px; line-height: 1.58; letter-spacing: -.012em; animation: heroFade .72s .21s both; }
.hero-actions { display: flex; gap: 12px; animation: heroFade .72s .29s both; }
.hero-actions button,
.hero-actions a {
  min-height: 58px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-weight: 820;
}
.hero-actions a {
  color: #f4eff9;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.hero-actions a:hover { transform: translateY(-2px); border-color: var(--line-strong); background: rgba(255,255,255,.09); }
.trust-row { margin-top: 23px; display: flex; flex-wrap: wrap; gap: 9px; animation: heroFade .72s .36s both; }
.trust-row span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; color: #c8c1cf; background: rgba(255,255,255,.035); font-size: 13px; font-weight: 720; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--mint); font-weight: 900; }

.hero-preview { position: relative; min-height: 520px; animation: heroFade .82s .2s both; }
.preview-card { position: absolute; left: 50%; width: 300px; height: 410px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 34px; background: #18131d; box-shadow: var(--shadow-xl); transform-origin: 50% 95%; }
.preview-card img { width: 100%; height: 100%; object-fit: cover; }
.preview-card-back { top: 42px; transform: translateX(-66%) rotate(-10deg) scale(.9); opacity: .52; }
.preview-card-mid { top: 24px; transform: translateX(-34%) rotate(9deg) scale(.94); opacity: .7; }
.preview-card-front { top: 62px; transform: translateX(-50%); z-index: 2; animation: phoneFloat 5s ease-in-out infinite; }
.preview-card-front::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(180deg, transparent, rgba(5,4,8,.88)); }
.preview-caption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; display: flex; justify-content: space-between; align-items: end; }
.preview-caption b { font-size: 25px; }
.preview-caption span { display: flex; align-items: center; gap: 7px; color: #d8d2df; font-size: 13px; font-weight: 760; }
.preview-caption i { width: 8px; height: 8px; display: inline-block; border-radius: 50%; background: var(--mint); }
.preview-message { position: absolute; z-index: 4; right: -6px; top: 42px; max-width: 210px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.15); border-radius: 20px 20px 5px 20px; background: rgba(31,25,39,.9); box-shadow: var(--shadow-lg); backdrop-filter: blur(16px); font-size: 14px; line-height: 1.35; font-weight: 720; animation: messageFloat 4.2s ease-in-out infinite; }
.preview-people { position: absolute; z-index: 4; left: 4px; bottom: 15px; padding: 10px 13px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(18,14,23,.82); box-shadow: var(--shadow-lg); backdrop-filter: blur(16px); font-size: 13px; font-weight: 760; }
.avatar-stack { display: flex; align-items: center; }
.avatar-stack img { width: 34px; height: 34px; object-fit: cover; border: 2px solid #17121c; border-radius: 50%; }
.avatar-stack img + img { margin-left: -10px; }

.steps { padding: 62px 0 88px; }
.steps h2,
.benefits h2,
.reviews h2 { max-width: 760px; margin: 14px 0 30px; font-size: clamp(40px, 5vw, 58px); line-height: 1.02; letter-spacing: -.045em; }
.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.steps-grid article { min-height: 165px; padding: 24px; display: flex; gap: 18px; border: 1px solid var(--line); border-radius: 25px; background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025)); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.steps-grid article > span { color: var(--rose-soft); font-size: 14px; font-weight: 900; letter-spacing: .08em; }
.steps-grid b { display: block; margin-bottom: 8px; font-size: 21px; }
.steps-grid p { margin: 0; color: var(--muted); line-height: 1.48; }

.showcase {
  position: relative;
  isolation: isolate;
  padding: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 58px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)), rgba(16,13,21,.83);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}
.showcase::before { content: ""; position: absolute; z-index: -1; width: 460px; height: 460px; right: -180px; top: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,.23), transparent 67%); }
.copy h2 { max-width: 660px; margin: 13px 0 18px; font-size: clamp(48px, 5vw, 66px); line-height: .98; letter-spacing: -.052em; }
.copy > p { max-width: 610px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.56; }
.match-points { margin-top: 27px; display: grid; gap: 13px; }
.match-points > div { display: flex; align-items: flex-start; gap: 13px; }
.match-points > div > span { width: 29px; height: 29px; flex: 0 0 29px; display: grid; place-items: center; border-radius: 10px; color: #0a1612; background: var(--mint); font-weight: 950; }
.match-points p { margin: 0; }
.match-points b { display: block; margin-bottom: 4px; font-size: 16px; }
.match-points small { display: block; color: var(--muted); font-size: 14px; line-height: 1.4; }
.profiles-live { width: fit-content; margin-top: 28px; padding: 10px 14px 10px 10px; display: flex; align-items: center; gap: 11px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.035); color: #d7d1dc; font-size: 13px; font-weight: 760; }

.phone { width: 100%; padding: 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 38px; background: linear-gradient(160deg, #211925, #100d14); box-shadow: 0 34px 75px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.1); animation: phoneFloat 5.4s ease-in-out infinite; }
.phone-head { padding: 7px 6px 12px; display: flex; justify-content: space-between; align-items: center; color: #f0eaf5; font-size: 14px; font-weight: 800; }
.phone-head b { padding: 6px 9px; border-radius: 999px; color: #c9c2d1; background: rgba(255,255,255,.07); font-size: 12px; }
.profile-card { position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 29px; background: #17131b; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); cursor: grab; transition: transform .22s ease, opacity .22s ease; }
.profile-card.dragging { cursor: grabbing; transition: none; }
.profile-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; pointer-events: none; user-select: none; }
.profile-card::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(180deg, transparent, rgba(4,3,7,.9)); pointer-events: none; }
.profile-overlay { position: absolute; z-index: 2; left: 15px; right: 15px; bottom: 15px; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 23px; background: rgba(13,10,17,.48); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.profile-status { margin-bottom: 6px; display: flex; align-items: center; gap: 7px; color: #d2ccd7; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.profile-status span { width: 7px; height: 7px; animation: none; box-shadow: 0 0 12px rgba(91,224,190,.8); }
.profile-overlay h3 { margin: 0; font-size: 29px; letter-spacing: -.035em; }
.profile-overlay small { display: block; margin-top: 3px; color: #c1bac8; font-size: 14px; }
.tags { margin-top: 11px; display: flex; flex-wrap: wrap; gap: 7px; }
.tags span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; color: #eee9f2; background: rgba(255,255,255,.07); font-size: 12px; font-weight: 720; }
.swipe-actions { padding-top: 12px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 10px; }
.swipe-actions button { min-height: 59px; display: flex; justify-content: center; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.11); border-radius: 19px; cursor: pointer; transition: transform .2s ease, filter .2s ease; }
.swipe-actions button:active { transform: scale(.98); }
.swipe-actions button span { font-size: 27px; line-height: 1; }
.swipe-actions button small { font-size: 13px; font-weight: 850; }
.swipe-actions .skip { color: #d7d0dc; background: rgba(255,255,255,.055); }
.swipe-actions .like { color: white; background: linear-gradient(115deg, #ff5f8f, #a65cff); box-shadow: 0 13px 28px rgba(145,77,218,.27); }
.swipe-hint { padding: 10px 4px 1px; color: var(--muted-2); text-align: center; font-size: 12px; }
#card.liked { transform: translateX(130px) rotate(7deg) scale(.96); opacity: 0; }

.benefits { padding: 100px 0 85px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.benefit-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 27px; background: rgba(255,255,255,.035); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.benefit-icon { width: 48px; height: 48px; margin-bottom: 21px; display: grid; place-items: center; border-radius: 16px; color: white; background: linear-gradient(135deg, rgba(255,95,143,.86), rgba(139,92,246,.9)); box-shadow: 0 12px 30px rgba(139,92,246,.2); font-size: 23px; }
.benefit-grid b { display: block; margin-bottom: 9px; font-size: 20px; }
.benefit-grid p { margin: 0; color: var(--muted); line-height: 1.5; }

.reviews { padding: 70px 0 85px; overflow: hidden; }
.reviews > p { max-width: 650px; margin: -12px 0 0; color: var(--muted); font-size: 17px; line-height: 1.55; }
.reviews-swipe-hint { display: none; }
.review-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.review-grid article { min-height: 220px; padding: 23px; border: 1px solid var(--line); border-radius: 25px; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025)); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); transition: transform .22s ease, border-color .22s ease; }
.review-grid article:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 48px; height: 48px; flex: 0 0 48px; object-fit: cover; border-radius: 16px; }
.review-meta { min-width: 0; }
.review-meta b { display: block; }
.review-meta span { display: block; margin-top: 3px; color: var(--muted-2); font-size: 12px; }
.review-stars { margin: 18px 0 11px; color: var(--amber); letter-spacing: .07em; }
.review-grid p { margin: 0; color: #d4ced9; line-height: 1.55; }

.final-cta { padding: 43px; display: flex; justify-content: space-between; align-items: center; gap: 35px; border: 1px solid rgba(255,255,255,.13); border-radius: 34px; background: linear-gradient(130deg, rgba(255,95,143,.12), rgba(139,92,246,.13) 48%, rgba(91,224,190,.06)); box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.06); }
.final-cta h2 { max-width: 660px; margin: 11px 0 8px; font-size: clamp(36px, 4.2vw, 54px); line-height: 1; letter-spacing: -.046em; }
.final-cta p { margin: 0; color: var(--muted); }
.final-actions { display: flex; gap: 10px; flex-shrink: 0; }
.final-actions a { min-height: 56px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 18px; font-weight: 820; }
.secondary-final { border: 1px solid var(--line); background: rgba(255,255,255,.055); }

.modal { position: fixed; z-index: 100; inset: 0; padding: 20px; display: grid; place-items: center; background: rgba(3,2,5,.76); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .23s ease, visibility 0s linear .23s; }
.modal:not(.hidden) { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
.modal-card { position: relative; width: min(540px, 100%); max-height: min(760px, calc(100vh - 40px)); padding: 25px; overflow-y: auto; border: 1px solid rgba(255,255,255,.15); border-radius: 31px; background: rgba(24,19,30,.96); box-shadow: var(--shadow-xl); opacity: 0; transform: translateY(30px) scale(.97); transition: transform .32s cubic-bezier(.2,.85,.25,1), opacity .23s ease; }
.modal:not(.hidden) .modal-card { opacity: 1; transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 15px; right: 15px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 14px; color: #d9d2de; background: rgba(255,255,255,.055); cursor: pointer; font-size: 24px; }
.modal-profile { padding-right: 50px; display: flex; align-items: center; gap: 13px; }
.modal-profile img { width: 56px; height: 56px; object-fit: cover; border-radius: 18px; }
.modal-profile b { display: block; font-size: 21px; }
.modal-profile span { margin-top: 4px; display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12px; }
.modal-profile span i { width: 7px; height: 7px; animation: none; }
.modal-kicker { margin: 25px 0 8px; color: var(--rose-soft); font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.chat-bubble { margin: 0 0 18px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 21px 21px 21px 6px; background: rgba(255,255,255,.06); font-size: 17px; line-height: 1.45; }
.chat-bubble.user { margin-left: 12%; border-radius: 21px 21px 6px 21px; background: linear-gradient(115deg, rgba(255,95,143,.23), rgba(139,92,246,.24)); }
.answer-title { margin: 0 0 10px; color: #d4ced9; font-size: 13px; font-weight: 760; }
.quick-replies { margin-bottom: 11px; display: flex; flex-wrap: wrap; gap: 8px; }
.quick-replies button { padding: 10px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #eee9f2; background: rgba(255,255,255,.055); cursor: pointer; font-size: 13px; font-weight: 720; transition: background .2s ease, border-color .2s ease; }
.quick-replies button:hover { border-color: rgba(255,140,175,.42); background: rgba(255,95,143,.11); }
.answer-area { display: grid; grid-template-columns: 1fr auto; gap: 9px; }
.answer-area input { min-width: 0; min-height: 54px; padding: 0 15px; border: 1px solid var(--line); border-radius: 17px; outline: none; color: white; background: rgba(255,255,255,.055); }
.answer-area input:focus { border-color: rgba(181,156,255,.58); box-shadow: 0 0 0 4px rgba(139,92,246,.10); }
.answer-area button { min-width: 91px; border: 0; border-radius: 17px; color: white; background: linear-gradient(115deg, #ff5f8f, #a65cff); cursor: pointer; font-weight: 850; }
.skip-to-vk { margin-top: 13px; display: block; color: #bcb4c5; text-align: center; text-decoration: underline; text-decoration-color: rgba(255,255,255,.22); text-underline-offset: 4px; font-size: 13px; }
.answer-ready { margin: 7px 0 17px; padding: 14px; display: flex; gap: 12px; align-items: center; border: 1px solid rgba(91,224,190,.2); border-radius: 18px; background: rgba(91,224,190,.07); }
.answer-ready > span { width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center; border-radius: 11px; color: #071510; background: var(--mint); font-weight: 950; }
.answer-ready b { display: block; }
.answer-ready p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.continue-btn { width: 100%; min-height: 58px; display: flex; align-items: center; justify-content: center; }
.hidden { display: none !important; }
.reveal-pending { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal-visible { opacity: 1; transform: translateY(0); }

@keyframes auroraDrift { from { transform: translate3d(-2%,-2%,0) scale(1); } to { transform: translate3d(3%,2%,0) scale(1.06); } }
@keyframes logoShine { 0%,58% { transform: translateX(-62%) rotate(15deg); opacity: 0; } 68% { opacity: 1; } 88%,100% { transform: translateX(62%) rotate(15deg); opacity: 0; } }
@keyframes onlinePulse { 0% { box-shadow: 0 0 0 0 rgba(91,224,190,.34), 0 0 18px rgba(91,224,190,.75); } 70% { box-shadow: 0 0 0 9px rgba(91,224,190,0), 0 0 18px rgba(91,224,190,.75); } 100% { box-shadow: 0 0 0 0 rgba(91,224,190,0), 0 0 18px rgba(91,224,190,.75); } }
@keyframes gradientShift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
@keyframes heroFade { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes phoneFloat { 0%,100% { transform: translateY(0) rotate(.15deg); } 50% { transform: translateY(-9px) rotate(-.15deg); } }
@keyframes messageFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes hintPulse { 0%,100% { opacity: .62; } 50% { opacity: 1; } }
@keyframes hintArrow { from { transform: translateX(0); } to { transform: translateX(8px); } }

@media (max-width: 1050px) {
  .hero { grid-template-columns: minmax(0,1fr) 360px; gap: 34px; }
  .hero-preview { transform: scale(.9); transform-origin: center; }
  .showcase { grid-template-columns: minmax(0,1fr) 390px; gap: 38px; padding: 44px; }
  .review-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 760px) {
  html, body { overscroll-behavior-x: none; }
  body::before { inset: -22vh 0 auto; width: 100%; max-width: 100%; height: 54vh; opacity: .58; }
  .topbar { top: 8px; width: calc(100% - 24px); margin: 8px 12px 0; padding: 9px 11px 9px 13px; border-radius: 19px; }
  .brand { gap: 10px; font-size: 15px; }
  .logo { width: 38px; height: 38px; border-radius: 13px; }
  .top-cta { padding: 10px 12px; font-size: 12px; }
  main { width: 100%; max-width: 100%; padding: 0 18px 118px; overflow-x: clip; }

  .hero { min-height: auto; padding: 68px 0 52px; display: grid; grid-template-columns: 1fr; gap: 38px; text-align: center; overflow: hidden; }
  .online-pill { margin-inline: auto; padding: 9px 13px; font-size: 13px; }
  .hero h1 { max-width: 365px; margin: 25px auto 19px; font-size: clamp(45px, 13.4vw, 61px); line-height: .95; letter-spacing: -.061em; }
  .hero-copy > p { max-width: 360px; margin: 0 auto 29px; font-size: 17px; line-height: 1.5; }
  .hero-actions { display: grid; justify-items: center; gap: 11px; }
  .hero-actions button { width: min(340px, 92vw); min-height: 70px; padding: 0 28px; border-radius: 23px; font-size: 20px; }
  .hero-actions a { width: min(310px, 86vw); min-height: 58px; }
  .trust-row { max-width: 350px; margin: 19px auto 0; justify-content: center; }
  .trust-row span { font-size: 12px; }

  .hero-preview { min-height: 385px; width: 100%; max-width: 365px; margin-inline: auto; transform: none; }
  .preview-card { width: 220px; height: 305px; border-radius: 28px; }
  .preview-card-back { top: 35px; transform: translateX(-67%) rotate(-10deg) scale(.9); }
  .preview-card-mid { top: 22px; transform: translateX(-33%) rotate(9deg) scale(.94); }
  .preview-card-front { top: 48px; }
  .preview-caption { left: 16px; right: 16px; bottom: 15px; }
  .preview-caption b { font-size: 20px; }
  .preview-caption span { font-size: 11px; }
  .preview-message { right: 0; top: 20px; max-width: 170px; padding: 11px 13px; font-size: 12px; }
  .preview-people { left: 0; bottom: 4px; padding: 8px 11px; font-size: 11px; }
  .avatar-stack img { width: 30px; height: 30px; }

  .steps { padding: 50px 0 64px; }
  .steps h2, .benefits h2, .reviews h2 { margin: 12px auto 24px; font-size: 38px; text-align: center; }
  .steps .section-label, .benefits .section-label, .reviews .section-label { text-align: center; }
  .steps-grid { grid-template-columns: 1fr; gap: 10px; }
  .steps-grid article { min-height: 0; padding: 20px; }

  .showcase { width: 100%; max-width: 100%; padding: 28px 14px 29px; grid-template-columns: 1fr; gap: 25px; border-radius: 30px; }
  .showcase .copy { display: grid; gap: 8px; text-align: center; }
  .copy h2 { max-width: 345px; margin: 4px auto 0; font-size: 43px; line-height: 1; }
  .copy > p { max-width: 340px; margin-inline: auto; font-size: 17px; line-height: 1.45; }
  .match-points { max-width: 350px; margin: 20px auto 0; text-align: left; }
  .profiles-live { margin: 17px auto 0; }
  .phone { width: min(100%, 350px); margin-inline: auto; padding: 10px; border-radius: 32px; animation: none; }
  .phone-head { padding: 4px 4px 10px; }
  .profile-card { border-radius: 25px; }
  .profile-overlay { left: 12px; right: 12px; bottom: 12px; padding: 13px; border-radius: 20px; }
  .profile-overlay h3 { font-size: 25px; }
  .profile-overlay small { font-size: 14px; }
  .tags { gap: 6px; margin-top: 9px; }
  .tags span { padding: 6px 9px; font-size: 12px; }
  .swipe-actions { gap: 8px; padding-top: 10px; }
  .swipe-actions button { min-height: 57px; border-radius: 18px; }
  .swipe-actions button small { font-size: 12px; }
  .swipe-hint { display: none; }
  #card.liked { transform: translateX(42vw) rotate(7deg) scale(.96); }

  .benefits { padding: 72px 0 58px; }
  .benefit-grid { grid-template-columns: 1fr; gap: 10px; }
  .benefit-grid article { padding: 23px; }

  .reviews { width: 100%; max-width: 100%; padding: 65px 0 38px; overflow: hidden; }
  .reviews > p { max-width: 340px; margin: -10px auto 0; text-align: center; font-size: 16px; line-height: 1.48; }
  .reviews-swipe-hint { margin: 18px 0 -7px; display: flex; justify-content: center; align-items: center; gap: 7px; color: var(--rose-soft); font-size: 14px; font-weight: 800; animation: hintPulse 1.7s ease-in-out infinite; }
  .reviews-swipe-hint span { display: inline-block; animation: hintArrow 1.05s ease-in-out infinite alternate; }
  .review-grid { margin: 25px -18px 0; padding: 0 18px 13px; display: grid; grid-template-columns: none; grid-template-rows: repeat(2,minmax(235px,auto)); grid-auto-flow: column; grid-auto-columns: min(84vw,350px); column-gap: 16px; row-gap: 14px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scroll-padding-inline: 18px; overscroll-behavior-x: contain; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .review-grid::-webkit-scrollbar { display: none; }
  .review-grid article { width: 100%; min-width: 0; min-height: 235px; padding: 20px; overflow: hidden; border-radius: 22px; scroll-snap-align: start; }
  .review-grid article:hover { transform: none; }

  .final-cta { width: 100%; max-width: 100%; padding: 28px 20px; display: grid; gap: 22px; text-align: center; }
  .final-cta h2 { font-size: 34px; }
  .final-actions { display: grid; width: 100%; }
  .final-actions a { width: 100%; }

  .modal { top: var(--lovesta-viewport-top,0px); bottom: auto; height: var(--lovesta-viewport-height,100dvh); padding: 0; align-items: end; }
  .modal-card { width: 100%; max-height: calc(var(--lovesta-viewport-height,100dvh) - 5px); padding: 18px 16px calc(16px + env(safe-area-inset-bottom)); border-radius: 27px 27px 0 0; scroll-padding-bottom: 110px; }
  .modal-close { top: 13px; right: 13px; }
  .modal-profile img { width: 49px; height: 49px; }
  .modal-profile b { font-size: 20px; }
  .modal-kicker { margin-top: 20px; }
  .chat-bubble { padding: 14px 16px; font-size: 16px; }
  .quick-replies { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .quick-replies::-webkit-scrollbar { display: none; }
  .quick-replies button { flex: 0 0 auto; }
  .answer-area { position: sticky; bottom: 0; z-index: 4; padding-top: 8px; background: linear-gradient(180deg, transparent, rgba(24,19,30,.98) 24%); }
  .answer-area input { min-height: 52px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
