:root {
  --bg: #020319;
  --panel: #0d0f24;
  --panel-soft: #151728;
  --text: #ffffff;
  --muted: #a9aabd;
  --line: rgba(255, 255, 255, 0.08);
  --pink: #ed4fc8;
  --coral: #ff5d69;
  --violet: #a743ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(135, 37, 150, 0.15), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: "Poppins", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

main {
  overflow: hidden;
}

.shell {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(2, 3, 25, 0.72);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1120px, calc(100% - 128px));
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-heart {
  width: 49px;
  height: 49px;
  object-fit: contain;
  transform: scale(1.25);
  filter: drop-shadow(0 0 10px rgba(245, 80, 196, 0.62));
}

.header-inner nav,
.footer-inner nav {
  display: flex;
  align-items: center;
  gap: 44px;
}

.header-inner nav {
  gap: 36px;
}

.header-inner nav a,
.footer-inner nav a {
  color: #b6b5c7;
  font-size: 13px;
  transition: color 180ms ease;
}

.header-inner nav a {
  font-size: 12px;
}

.header-inner {
  height: 72px;
}

.gradient-button.header-button {
  min-height: 34px;
  padding-inline: 19px;
  font-size: 11px;
}

.header-inner nav a:hover,
.footer-inner nav a:hover {
  color: #ff4bd2;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.gradient-button,
.video-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 29px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: linear-gradient(180deg, #d944f4 0%, #f452c6 44%, #ff665c 100%);
  box-shadow:
    inset 0 4px 8px rgba(255, 255, 255, 0.3),
    0 9px 24px rgba(228, 67, 210, 0.24);
  color: white;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gradient-button:hover,
.video-button:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 4px 8px rgba(255, 255, 255, 0.36),
    0 14px 34px rgba(228, 67, 210, 0.34);
}

.hero {
  position: relative;
  min-height: 825px;
  padding: 42px 0 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  top: 152px;
  width: 360px;
  height: 410px;
  pointer-events: none;
  opacity: 0.52;
  filter: blur(70px);
}

.hero::before {
  left: 1%;
  background: #a636bd;
  transform: skewY(-18deg);
}

.hero::after {
  right: 1%;
  background: #f25175;
  transform: skewY(18deg);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  top: 100px;
  left: 50%;
  width: 760px;
  height: 540px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(237, 79, 200, 0.34), rgba(125, 38, 150, 0.14) 43%, transparent 72%);
  filter: blur(15px);
}

.hero-phone {
  position: relative;
  z-index: 2;
  width: 292px;
  height: 486px;
  object-fit: cover;
  object-position: top;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.55));
  animation: float-in 750ms ease both;
}

.hero-copy {
  position: relative;
  z-index: 3;
  margin-top: -70px;
  animation: fade-up 720ms 140ms ease both;
}

.eyebrow {
  margin: 0 0 10px;
  color: #f782dc !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 800;
  text-wrap: balance;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5.3vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-copy > p {
  margin-bottom: 25px;
  color: #b7b7c6;
  font-size: 15px;
  line-height: 1.55;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 158px;
  padding: 9px 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: #0b0d20;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  text-align: left;
  transition: border-color 180ms ease, transform 180ms ease;
}

.store-badge:hover {
  border-color: rgba(241, 83, 205, 0.48);
  transform: translateY(-2px);
}

.store-badge img {
  width: 29px;
  height: 29px;
}

.store-badge span {
  display: flex;
  flex-direction: column;
}

.store-badge small {
  color: #c6c5d2;
  font-size: 8px;
  line-height: 1.1;
}

.store-badge strong {
  font-size: 17px;
  line-height: 1.1;
}

.store-badge--compact {
  min-width: 138px;
  padding: 7px 13px;
}

.store-badge--compact img {
  width: 24px;
  height: 24px;
}

.store-badge--compact strong {
  font-size: 14px;
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.015), transparent 45%),
    var(--panel);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.comfort {
  min-height: 302px;
  padding: 58px 54px 45px;
  text-align: center;
}

.comfort h2,
.section-heading h2,
.support h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.perk-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 32px 0 25px;
}

.perk {
  min-height: 64px;
  padding: 9px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  background: #17192a;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.perk img {
  width: 29px;
  height: 29px;
}

.comfort > p,
.section-heading p,
.support p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.comfort > p {
  max-width: 600px;
  margin-inline: auto;
}

.advantages {
  padding-top: 112px;
}

.section-heading {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

.advantages-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(360px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.advantage-collage {
  display: grid;
  grid-template-rows: 292px 294px;
  gap: 15px;
}

.mini-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card,
.support-mini {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-card-photos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr 1.1fr;
  opacity: 0.62;
  filter: saturate(0.72) contrast(1.06);
  gap: 5px;
}

.stat-card-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(235, 65, 205, 0.17), transparent 42%),
    linear-gradient(180deg, rgba(13, 15, 36, 0.1), rgba(7, 8, 26, 0.95));
}

.stat-card-action,
.stat-card strong,
.stat-card span {
  position: relative;
  z-index: 2;
}

.stat-card-action {
  width: 126px;
  margin-bottom: -19px;
}

.stat-card strong {
  font-size: 56px;
  font-weight: 700;
  line-height: 0.92;
}

.stat-card span {
  margin-top: 5px;
  color: #e3e2eb;
  font-size: 14px;
  font-weight: 500;
}

.support-mini img {
  width: 82px;
  margin-bottom: 25px;
}

.support-mini strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.random-card {
  min-height: 294px;
  padding: 29px 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 27px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.2), transparent 35%),
    linear-gradient(180deg, #df42e8 0%, #ed4da6 50%, #ff675e 100%);
  box-shadow: inset 0 8px 19px rgba(255, 255, 255, 0.16), 0 24px 48px rgba(229, 66, 193, 0.16);
}

.random-members {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 86px 122px 86px 48px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.random-members img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.44);
}

.random-members .featured-member {
  width: 122px;
  height: 122px;
  border-width: 4px;
}

.mystery-member {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
}

.random-card .tabbar {
  width: 330px;
  max-width: 78%;
  margin: -8px 0 -3px;
  filter: drop-shadow(0 10px 14px rgba(35, 15, 45, 0.25));
}

.random-card > strong {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.private-chat-card {
  margin: 0;
  min-height: 601px;
  padding: 0 25px 37px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.private-phone-media {
  position: relative;
  width: min(308px, 92%);
  max-height: 524px;
  overflow: hidden;
  border-radius: 0 0 42px 42px;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.42));
}

.private-phone-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 1.5% auto;
  height: 30%;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(
    180deg,
    rgba(0, 1, 21, 1) 0%,
    rgba(0, 1, 21, 0.68) 40%,
    rgba(0, 1, 21, 0.3) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.private-phone-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.private-chat-card figcaption {
  padding-top: 17px;
  color: #f0eff6;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.steps {
  margin-top: 112px;
  padding: 48px 74px 25px;
}

.section-heading--tight {
  margin-bottom: 28px;
}

.steps .section-heading h2 {
  margin-bottom: 12px;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  min-height: 260px;
  padding: 38px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 21px;
  background: #171928;
  text-align: center;
}

.step-number {
  margin-bottom: 20px;
  background: linear-gradient(180deg, #e252ff, #fd3d65);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
}

.step-card p {
  min-height: 42px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.step-card > :last-child {
  margin-top: auto;
}

.step-card .store-badge--compact {
  min-width: 157px;
  min-height: 52px;
  padding: 8px 13px;
  border-radius: 11px;
}

.step-card .store-badge--compact img {
  width: 30px;
  height: 30px;
}

.step-card .store-badge--compact small {
  font-size: 9px;
}

.step-card .store-badge--compact strong {
  font-size: 12px;
}

.avatar-stack {
  display: flex;
  justify-content: center;
}

.avatar-stack img {
  width: 52px;
  height: 52px;
  border: 2px solid #171928;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-stack img + img {
  margin-left: 10px;
}

.video-button {
  width: 100%;
  min-height: 48px;
  padding-inline: 18px;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}

.video-button-icon {
  width: 26px;
  height: 20px;
  flex: none;
}

.progress-line {
  height: 27px;
  margin: 19px 7px 0;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) 27px minmax(0, 1fr) 27px;
  grid-template-rows: 27px;
  column-gap: 32px;
  align-items: center;
}

.progress-line::before,
.progress-line::after {
  content: "";
  grid-row: 1;
  height: 1px;
  align-self: center;
  background: #d94b9e;
}

.progress-line::before {
  grid-column: 2;
}

.progress-line::after {
  grid-column: 4;
}

.progress-line i {
  grid-row: 1;
  justify-self: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: linear-gradient(180deg, #df65ff 0%, #ff6974 100%);
  box-shadow: 0 0 27px rgba(238, 76, 179, 0.66), inset 0 -5px 8px rgba(255, 255, 255, 0.16);
}

.progress-line i:nth-child(1) {
  grid-column: 1;
}

.progress-line i:nth-child(2) {
  grid-column: 3;
}

.progress-line i:nth-child(3) {
  grid-column: 5;
}

.popular {
  position: relative;
  min-height: 850px;
  margin-top: 0;
  padding: 141px 0 130px;
  background: #020319;
}

.popular-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 43%, rgba(2, 3, 25, 0.42) 76%, #020319 100%),
    linear-gradient(124deg, transparent 7%, rgba(112, 27, 150, 0.2) 23%, rgba(215, 55, 175, 0.38) 43%, rgba(244, 98, 116, 0.26) 61%, transparent 80%),
    radial-gradient(ellipse at 48% 27%, rgba(224, 73, 177, 0.28), transparent 42%);
  filter: blur(4px);
  pointer-events: none;
}

.popular-inner {
  position: relative;
}

.popular .section-heading {
  margin-bottom: 36px;
}

.profile-deck {
  position: relative;
  width: min(1080px, 100%);
  height: auto;
  aspect-ratio: 1080 / 620;
  max-width: 100%;
  margin: 20px auto 0;
}

.profile-card {
  position: absolute;
  top: 10.16%;
  width: 33.8%;
  height: 75.81%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: clamp(20px, 1.83vw, 28px);
  background: #15131d;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.48);
}

.profile-card::before,
.profile-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  pointer-events: none;
}

.profile-card::before {
  top: 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(2, 3, 18, 0.76) 0%, rgba(2, 3, 18, 0.38) 43%, transparent 100%);
}

.profile-card::after {
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(4, 4, 14, 0.35));
}

.profile-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card--left {
  left: 4.35%;
  transform: rotate(-13deg);
}

.profile-card--center {
  z-index: 3;
  top: 3.23%;
  left: 50%;
  width: 32.78%;
  height: 77.42%;
  transform: translateX(-50%);
}

.profile-card--right {
  right: 4.35%;
  transform: rotate(13deg);
}

.profile-card--left img {
  object-position: 50% 0;
}

.profile-card--right img {
  object-position: 50% 43%;
  transform: scale(1.22);
  transform-origin: 50% 46%;
}

.profile-meta {
  position: absolute;
  z-index: 4;
  top: 4.25%;
  left: 6%;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 4px;
  color: white;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.profile-meta strong,
.profile-meta span {
  font-size: clamp(15px, 1.45vw, 22px);
  font-weight: 500;
}

.profile-meta small {
  grid-column: 1 / -1;
  color: #fff;
  font-size: clamp(9px, 0.92vw, 14px);
}

.profile-meta small::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: #20ef4f;
  box-shadow: 0 0 6px rgba(32, 239, 79, 0.7);
  vertical-align: 1px;
}

.support {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
  padding: 58px 24px 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.support > img {
  width: 92px;
  margin-bottom: 26px;
}

.support h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.support .light-button {
  margin-top: 25px;
}

.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 31px;
  border-radius: 10px;
  background: white;
  color: #181822;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.light-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 0;
  border: 0;
  background: #0d0f22;
}

.footer-inner {
  min-height: 356px;
  padding: 29px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-brand {
  margin-bottom: 42px;
  font-size: 22px;
}

.footer-brand .brand-heart {
  width: 49px;
  height: 49px;
  transform: scale(1.25);
}

.footer-company {
  width: 300px;
  color: #fff;
}

.footer-company h3 {
  margin: 0 0 13px;
  font-size: 18px;
  font-weight: 600;
}

.footer-company address {
  font-style: normal;
}

.footer-contact,
.footer-contact-row {
  display: flex;
  align-items: center;
}

.footer-contact {
  gap: 8px;
  color: #d9d9e2;
  font-size: 11px;
  line-height: 1.35;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: #ff748d;
}

.footer-contact-row {
  gap: 28px;
  margin-top: 10px;
}

.footer-inner .footer-legal {
  width: 273px;
  margin-top: 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.footer-inner .footer-legal a {
  color: #898a9b;
  font-size: 9px;
  white-space: nowrap;
}

.footer-inner .footer-legal a:hover {
  color: #ff4bd2;
}

.footer-button {
  width: 230px;
  min-width: 230px;
  min-height: 42px;
  margin-top: 36px;
  font-size: 11px;
}

.footer-inner > small {
  margin-top: 25px;
  color: #636479;
  font-size: 8px;
}

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

@keyframes float-in {
  from { opacity: 0; transform: translateY(-18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-section {
    animation: fade-up 700ms ease both;
    animation-timeline: view();
    animation-range: entry 8% cover 30%;
  }
}

@media (max-width: 900px) {
  .header-inner {
    position: relative;
    width: calc(100% - 28px);
    height: 72px;
  }

  .header-inner nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(10, 11, 35, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .header-inner nav a {
    padding: 13px 14px;
    border-radius: 10px;
  }

  .header-inner nav a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .site-header.is-open .header-inner nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-toggle {
    display: grid;
    align-content: space-between;
    margin-left: auto;
  }

  .site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero {
    min-height: 740px;
  }

  .perk-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .advantage-collage {
    max-width: 680px;
    margin-inline: auto;
  }

  .private-chat-card {
    min-height: 601px;
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }

  .steps {
    padding-inline: 35px;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 260px;
  }

  .progress-line {
    display: none;
  }

  .profile-deck {
    width: 390px;
    height: 390px;
    aspect-ratio: auto;
  }

  .profile-card,
  .profile-card--center {
    top: 25px;
    width: 190px;
    height: 300px;
    border-radius: 18px;
  }

  .profile-card--left {
    left: 6px;
  }

  .profile-card--right {
    right: 6px;
  }

  .profile-meta {
    top: 14px;
    left: 17px;
  }

  .profile-meta strong,
  .profile-meta span {
    font-size: 11px;
  }

  .profile-meta small {
    font-size: 9px;
  }

  .site-footer {
    padding-top: 20px;
    background: var(--bg);
  }

  .site-footer .footer-inner {
    width: min(375px, 100%);
    padding: 46px 16px 40px;
    align-items: stretch;
    border-radius: 42px 42px 0 0;
    background: rgba(255, 255, 255, 0.05);
  }

  .footer-brand {
    align-self: flex-start;
    margin-bottom: 44px;
    font-size: 22px;
  }

  .footer-brand .brand-heart {
    width: 49px;
    height: 49px;
  }

  .footer-company {
    width: 100%;
  }

  .footer-company h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .footer-contact {
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.45;
  }

  .footer-contact svg {
    width: 20px;
    height: 20px;
  }

  .footer-contact--address span {
    max-width: 285px;
  }

  .footer-contact-row {
    margin-top: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-inner .footer-legal {
    width: 100%;
    margin-top: 46px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }

  .footer-inner .footer-legal a {
    font-size: 9px;
  }

  .footer-button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    margin-top: 44px;
    font-size: 13px;
  }

  .footer-inner > small {
    align-self: center;
    margin-top: 25px;
    font-size: 10px;
  }
}

@media (max-width: 620px) {
  body.menu-open {
    overflow: hidden;
  }

  body.menu-open main {
    padding-top: 73px;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    z-index: 19;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    animation: mobile-menu-shade-in 240ms ease both;
  }

  .shell {
    width: min(100% - 28px, 520px);
  }

  .header-inner {
    height: 72px;
  }

  .site-header.is-open {
    position: fixed;
    z-index: 50;
    inset: 0 0 auto;
    height: 426px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .site-header.is-open .header-inner {
    position: relative;
    width: 100%;
    height: 426px;
    padding: 29px 22px 36px;
    display: block;
    border-radius: 0 0 26px 26px;
    background: #000;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
    animation: mobile-menu-slide-in 280ms cubic-bezier(0.22, 0.75, 0.24, 1) both;
  }

  .site-header.is-open .brand {
    position: absolute;
    z-index: 2;
    top: 29px;
    left: 22px;
    gap: 16px;
    font-size: 26px;
    line-height: 40px;
  }

  .site-header.is-open .brand-heart {
    width: 40px;
    height: 40px;
    transform: scale(1.35);
  }

  .site-header.is-open .header-inner nav {
    position: absolute;
    top: 126px;
    left: 0;
    right: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 29px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header.is-open .header-inner nav a {
    padding: 0;
    color: #f6f5f7;
    font-size: 18px;
    line-height: 28px;
  }

  .site-header.is-open .header-inner nav a:hover {
    background: transparent;
    color: #ff4bd2;
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
    padding: 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .site-header.is-open .menu-toggle {
    position: absolute;
    z-index: 3;
    top: 33px;
    right: 22px;
  }

  .site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  .header-button {
    display: none;
  }

  .site-header.is-open .header-button {
    position: absolute;
    right: 30px;
    bottom: 36px;
    left: 30px;
    width: auto;
    min-height: 55px;
    display: inline-flex;
    border-radius: 999px;
    font-size: 18px;
  }

  .hero {
    min-height: 690px;
    padding-top: 34px;
  }

  .hero-phone {
    width: 252px;
    height: 445px;
  }

  .hero-copy {
    margin-top: -64px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .comfort,
  .steps {
    padding: 42px 20px;
    border-radius: 25px;
  }

  .comfort h2 br {
    display: none;
  }

  .perk-row {
    grid-template-columns: 1fr;
  }

  .perk {
    justify-content: flex-start;
  }

  .advantages,
  .steps {
    margin-top: 78px;
  }

  .advantages {
    padding-top: 0;
  }

  .advantage-collage {
    grid-template-rows: auto auto;
    width: 100%;
  }

  .mini-features {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .support-mini {
    min-height: 280px;
  }

  .random-card {
    min-height: 270px;
    padding-inline: 16px;
  }

  .random-members {
    grid-template-columns: 38px 62px 90px 62px 38px;
    gap: 5px;
  }

  .random-members img {
    width: 62px;
    height: 62px;
  }

  .random-members .featured-member {
    width: 90px;
    height: 90px;
  }

  .mystery-member {
    width: 38px;
    height: 38px;
    font-size: 23px;
  }

  .random-card .tabbar {
    max-width: 92%;
    margin-top: 0;
  }

  .private-chat-card {
    min-height: 570px;
    border-radius: 25px;
  }

  .steps-row {
    gap: 14px;
  }

  .popular {
    min-height: auto;
    padding: 28px 0 32px;
    background: #020319;
  }

  .popular-glow {
    background:
      linear-gradient(180deg, rgba(60, 7, 62, 0.74) 0%, rgba(35, 7, 55, 0.58) 26%, rgba(2, 3, 25, 0.9) 74%, #020319 100%),
      radial-gradient(ellipse at 0% 4%, rgba(230, 60, 184, 0.42), transparent 48%);
    filter: none;
  }

  .popular-inner {
    width: min(343px, calc(100% - 20px));
  }

  .popular .section-heading {
    margin-bottom: 30px;
  }

  .popular .section-heading h2 {
    margin-bottom: 13px;
    font-size: 28px;
    line-height: 1.08;
  }

  .popular .section-heading p {
    font-size: 12px;
    line-height: 1.45;
  }

  .profile-deck {
    width: 100%;
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    aspect-ratio: auto;
  }

  .profile-card,
  .profile-card--center,
  .profile-card--left,
  .profile-card--right {
    position: relative;
    inset: auto;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 343 / 377;
    flex: 0 0 auto;
    border-radius: 20px;
    transform: none;
    box-shadow: none;
  }

  .profile-card::before {
    height: 33%;
    background: linear-gradient(180deg, rgba(2, 3, 18, 0.76) 0%, rgba(2, 3, 18, 0.32) 48%, transparent 100%);
  }

  .profile-card::after {
    display: none;
  }

  .profile-card--left img {
    object-position: 50% 4%;
  }

  .profile-card--center img {
    object-position: 50% 35%;
  }

  .profile-card--right img {
    object-position: 50% 45%;
    transform: none;
  }

  .profile-meta {
    top: 14px;
    left: 14px;
  }

  .profile-meta strong,
  .profile-meta span {
    font-size: 18px;
  }

  .profile-meta small {
    font-size: 11px;
  }

  .support {
    margin-bottom: 45px;
    padding-inline: 18px;
  }

}

@keyframes mobile-menu-slide-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

@keyframes mobile-menu-shade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
