:root {
  color-scheme: dark;
  --bg: #170d13;
  --panel: #25111b;
  --panel-2: #341321;
  --text: #fff7f9;
  --muted: #d9b9c4;
  --hot: #ff3f72;
  --gold: #ffd238;
  --line: rgba(255, 255, 255, 0.14);
  font-family: "Malgun Gothic", "Apple SD Gothic Neo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 63, 114, 0.28), transparent 28rem),
    linear-gradient(135deg, #160b12 0%, #230f19 52%, #3a121f 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  min-height: min(760px, 86vh);
  margin: 0 auto;
  padding: 54px 0 34px;
}

.hero-media {
  position: relative;
  min-height: 520px;
}

.photo-strip {
  position: absolute;
  inset: 42px auto auto 0;
  display: grid;
  gap: 16px;
  width: min(330px, 88vw);
  transform: rotate(-4deg);
  opacity: 0.72;
}

.photo-strip img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.phone {
  position: absolute;
  right: 0;
  top: 0;
  width: min(300px, 78vw);
  height: 548px;
  padding: 24px 18px;
  border: 10px solid #10080d;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(160deg, #321421 0%, #180c12 100%);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.55);
}

.phone-top {
  width: 72px;
  height: 7px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.profile {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 36%, #ffd8c9 0 18%, transparent 19%),
    radial-gradient(circle at 47% 54%, #efb19c 0 35%, transparent 36%),
    linear-gradient(135deg, #f45c83, #60203c);
}

.profile strong,
.profile span {
  display: block;
}

.profile span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.chat {
  display: grid;
  gap: 16px;
  margin: 42px 0 24px;
}

.bubble {
  max-width: 82%;
  margin: 0;
  padding: 13px 14px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.35;
}

.bubble.left {
  justify-self: start;
  background: #fff;
  color: #221118;
}

.bubble.right {
  justify-self: end;
  background: var(--hot);
  color: #fff;
}

.typing {
  display: flex;
  gap: 6px;
  width: max-content;
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.age-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(255, 210, 56, 0.45);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 210, 56, 0.1);
  font-size: 14px;
  font-weight: 800;
}

h1 {
  max-width: 560px;
  margin: 18px 0 16px;
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 600px;
  margin: 28px 0 24px;
}

.benefits div,
.flow-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.benefits div {
  padding: 16px 14px;
}

.benefits span,
.flow-item b {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.benefits strong,
.flow-item strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
}

.benefits p,
.flow-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 64px;
  padding: 0 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff316b, #ff6a2f);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(255, 49, 107, 0.3);
  transition: transform 160ms ease, filter 160ms ease;
}

.play-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.play-button svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: currentColor;
}

.play-button small,
.play-button span {
  display: block;
}

.play-button small {
  font-size: 12px;
  opacity: 0.82;
}

.play-button span {
  font-size: 19px;
  font-weight: 900;
}

.note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(960px, calc(100% - 40px));
  margin: -8px auto 26px;
}

.flow-item {
  padding: 18px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 36px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px 0 18px;
  }

  .hero-media {
    min-height: 390px;
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .photo-strip {
    inset: 36px auto auto 0;
    width: min(285px, 80vw);
  }

  .phone {
    right: 2vw;
    width: min(246px, 68vw);
    height: 390px;
    padding: 18px 14px;
    border-width: 8px;
    border-radius: 28px;
  }

  .chat {
    gap: 10px;
    margin: 24px 0 16px;
  }

  .bubble {
    padding: 10px 11px;
    font-size: 13px;
  }

  .benefits,
  .proof {
    grid-template-columns: 1fr;
  }

  .play-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .hero,
  .proof,
  .footer {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: 39px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-media {
    min-height: 360px;
  }
}
