:root {
  --rose: #e23d5c;
  --ink: #f4efe8;
  --ink-soft: #d8cfc6;
  --cream: #f7f1ea;
  --muted: #b7a99c;
  --line: rgba(255, 244, 232, 0.12);
  --white: #ffffff;
  --gold: #e0a45a;
  --app: #110e0c;
  --glass: rgba(255, 244, 232, 0.07);
  --glass-line: rgba(255, 236, 220, 0.12);
  --grad: linear-gradient(90deg, #e23d5c, #e07a4a);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: Outfit, sans-serif;
  background: #120f0d;
  color: var(--ink);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

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

.stage {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background:
    radial-gradient(1200px 500px at 50% -10%, #5a2233 0%, transparent 55%),
    #120f0d;
}

.phone {
  width: min(390px, 100%);
  height: min(844px, 100vh);
  background: var(--app);
  border-radius: 42px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 10px #1a1614,
    0 40px 80px rgba(0, 0, 0, 0.55);
}

.notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 126px;
  height: 28px;
  background: #0c0a09;
  border-radius: 20px;
  z-index: 8;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--rose);
}

.brand.light {
  color: var(--white);
}

.brand svg {
  width: 22px;
  height: 22px;
}

.brand-name {
  font-family: Fraunces, serif;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 54px 18px 92px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.topbar h1 {
  font-family: Fraunces, serif;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.ghost-chip {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.stack {
  position: relative;
  flex: 1;
}

.card,
.card-back {
  position: absolute;
  inset: 0 0 12px;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.card-back {
  transform: scale(0.94) translateY(14px);
  filter: saturate(0.8);
}

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

.card {
  color: white;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 18px 40px rgba(26, 16, 20, 0.22);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 16, 0.05) 35%, rgba(20, 12, 16, 0.82));
}

.photo-hit {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 2;
}

.photo-hit.left {
  left: 0;
}

.photo-hit.right {
  right: 0;
}

.photo-dots {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.photo-dots span {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
}

.photo-dots span.on {
  background: white;
}

.stamp {
  position: absolute;
  top: 72px;
  z-index: 3;
  border: 3px solid;
  padding: 6px 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  border-radius: 10px;
}

.stamp.right {
  left: 18px;
  color: #7dffb0;
  border-color: #7dffb0;
  transform: rotate(-18deg);
}

.stamp.left {
  right: 18px;
  color: #ff8aa4;
  border-color: #ff8aa4;
  transform: rotate(18deg);
}

.card-meta {
  position: relative;
  z-index: 2;
  padding: 22px;
}

.card-meta h2 {
  font-family: Fraunces, serif;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.card-meta h2 span {
  font-family: Outfit, sans-serif;
  font-weight: 500;
  font-size: 24px;
  opacity: 0.86;
}

.job,
.distance {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 4px;
  font-size: 14px;
}

.bio {
  margin-top: 10px;
  line-height: 1.45;
  font-size: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tags span {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.round {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  box-shadow: 0 10px 24px rgba(26, 16, 20, 0.12);
  color: var(--ink);
}

.round.pass {
  color: #8a6a72;
}

.round.super {
  width: 50px;
  height: 50px;
  color: #e0a45a;
}

.round.like {
  width: 68px;
  height: 68px;
  background: var(--rose);
  color: white;
}

.icon {
  width: 22px;
  height: 22px;
}

.fly-left {
  animation: flyLeft 0.28s ease forwards;
}

.fly-right {
  animation: flyRight 0.28s ease forwards;
}

@keyframes flyLeft {
  to {
    transform: translateX(-130%) rotate(-14deg);
    opacity: 0;
  }
}

@keyframes flyRight {
  to {
    transform: translateX(130%) rotate(14deg);
    opacity: 0;
  }
}

.dock {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 64px;
  border-radius: 22px;
  background: rgba(255, 248, 244, 0.92);
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-around;
  align-items: center;
  backdrop-filter: blur(16px);
  z-index: 6;
}

.dock-btn {
  width: 44px;
  height: 44px;
  color: #b19aa3;
  position: relative;
}

.dock-btn.active {
  color: var(--rose);
}

.badge {
  position: absolute;
  top: 6px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: var(--rose);
  border-radius: 50%;
}

.splash {
  height: 100%;
  background:
    radial-gradient(circle at 50% 38%, #4a1c22 0%, #1a1210 48%, #0e0c0b 100%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 90px 24px 48px;
}

.orbit {
  position: relative;
  width: 320px;
  height: 420px;
  margin-top: 24px;
}

.ring {
  position: absolute;
  left: 50%;
  top: 46%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2px));
}

.ring-a {
  width: 168px;
  height: 168px;
  background: linear-gradient(140deg, #e23d5c, #e07a4a 55%, #f0b27a);
}

.ring-b {
  width: 248px;
  height: 248px;
  background: linear-gradient(160deg, #e23d5c, #e07a4a 70%, #f0b27a);
  opacity: 0.9;
}

.ring-c {
  width: 320px;
  height: 320px;
  background: linear-gradient(180deg, #e23d5c, #c45c3a 55%, #8a3a28);
  opacity: 0.6;
}

.core {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 168px;
  height: 168px;
  display: grid;
  place-content: center;
  text-align: center;
  z-index: 2;
}

.core-heart {
  color: #e23d5c;
  font-size: 22px;
  line-height: 1;
}

.core strong {
  font-family: Outfit, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.core span:last-child {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.orb {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: #3a2418;
  border: 3px solid #3a1c22;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.orb-top {
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
}

.orb-left {
  left: 4px;
  top: 118px;
}

.orb-right {
  right: 10px;
  top: 210px;
  width: 54px;
  height: 54px;
}

.orb-bottom {
  right: 62px;
  bottom: 28px;
}

.pill {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 12px;
}

.pill-green {
  width: 16px;
  height: 16px;
  background: #22c55e;
  left: 92px;
  top: 28px;
}

.pill-chat,
.pill-bell {
  color: white;
}

.pill-chat .icon,
.pill-bell .icon {
  width: 16px;
  height: 16px;
}

.pill-chat {
  width: 32px;
  height: 32px;
  background: #ff5a1f;
  left: 58px;
  top: 72px;
}

.pill-bell {
  width: 34px;
  height: 34px;
  background: #e07a4a;
  right: 78px;
  top: 48px;
}

.pill-heart {
  width: 28px;
  height: 28px;
  background: #e23d5c;
  color: white;
  right: 28px;
  bottom: 78px;
  font-size: 14px;
}

.specks {
  position: absolute;
  left: 78px;
  bottom: 70px;
  display: flex;
  gap: 6px;
}

.specks i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.specks i:nth-child(1) {
  background: #22c55e;
}

.specks i:nth-child(2) {
  background: #fb923c;
}

.specks i:nth-child(3) {
  background: #e23d5c;
}

.get-started {
  color: #e23d5c;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.get-started span {
  font-size: 22px;
}

.primary {
  margin-top: 12px;
  background: var(--rose);
  color: white;
  border-radius: 999px;
  padding: 16px 18px;
  font-weight: 600;
  width: 100%;
}

.legal {
  font-size: 12px;
}

.ghost-btn {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 600;
}

.phone-auth {
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px 28px;
  color: white;
  background:
    radial-gradient(circle at 50% 18%, #5a2233 0%, #1a1210 42%, #110e0c 100%);
}

.phone-auth.compact {
  padding: 56px 22px 20px;
  justify-content: flex-start;
}

.phone-auth.compact .login-copy {
  margin-bottom: 12px;
  margin-top: 8px;
}

.phone-auth.compact .login-copy h1 {
  font-size: 32px;
}

.phone-auth.compact .or-round {
  margin: 12px 0 8px;
}

.phone-auth.compact .auth-switch {
  margin-top: 12px;
}

.phone-auth.compact .name-field {
  margin-bottom: 10px;
}

.auth-back {
  position: absolute;
  top: 52px;
  left: 18px;
  width: 40px;
  height: 40px;
  color: white;
  z-index: 2;
}

.login-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 61, 154, 0.28), transparent 68%);
  pointer-events: none;
}

.login-copy {
  text-align: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.login-copy h1 {
  font-family: Outfit, sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.login-copy p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  font-size: 14px;
}

.phone-auth .auth-form {
  width: 100%;
  position: relative;
  z-index: 1;
}

.phone-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 16px 4px 10px;
  border-radius: 999px;
  background: rgba(17, 14, 12, 0.72);
  box-shadow:
    0 0 0 1.5px transparent,
    0 10px 30px rgba(224, 122, 74, 0.18);
  background-image:
    linear-gradient(rgba(17, 14, 12, 0.92), rgba(17, 14, 12, 0.92)),
    linear-gradient(90deg, #e23d5c, #e07a4a);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 1.5px solid transparent;
}

.dial {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-weight: 600;
  padding: 10px 6px;
  white-space: nowrap;
}

.flag {
  font-size: 18px;
}

.caret {
  font-size: 11px;
  opacity: 0.7;
}

.phone-split {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
}

.phone-auth .phone-shell input {
  flex: 1;
  width: auto;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 0;
  color: white;
  padding: 14px 4px;
  letter-spacing: 0.04em;
}

.phone-shell input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.code-menu {
  margin-top: 10px;
  background: rgba(22, 16, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.code-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  color: white;
  text-align: left;
}

.code-menu button.on,
.code-menu button:hover {
  background: rgba(255, 255, 255, 0.06);
}

.code-menu em {
  margin-left: auto;
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
}

.submit-glow {
  width: 100%;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  padding: 15px 18px;
  color: white;
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(90deg, #e23d5c 0%, #e07a4a 52%, #e07a4a 100%);
  box-shadow: 0 12px 28px rgba(226, 61, 92, 0.28);
}

.or-round {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.or-round::before,
.or-round::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.or-round span {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.login-using {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 12px;
}

.method-stack {
  width: 100%;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.method-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 16px 18px;
  border-radius: 20px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.method-btn .icon {
  width: 28px;
  height: 28px;
  color: #e07a4a;
  flex-shrink: 0;
}

.method-btn strong {
  display: block;
  font-size: 16px;
}

.method-btn em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.bio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  margin-bottom: 14px;
}

.bio-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 16px;
  color: white;
  font-weight: 600;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bio-btn .icon {
  width: 20px;
  height: 20px;
  color: #e07a4a;
}

.social-rounds {
  display: flex;
  gap: 18px;
}

.auth-switch {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.phone-auth .text-link {
  color: #e07a4a;
  font-size: 14px;
}

.name-field {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.phone-auth .name-field input {
  background: rgba(17, 14, 12, 0.72);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: white;
  padding: 14px 16px;
}

.scan-layer {
  position: absolute;
  inset: 0;
  background: rgba(8, 4, 16, 0.72);
  display: grid;
  place-items: center;
  z-index: 12;
  padding: 24px;
}

.scan-card {
  width: 100%;
  text-align: center;
  background: rgba(20, 10, 36, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 28px 20px 22px;
}

.scan-card h2 {
  margin-top: 16px;
  font-size: 22px;
}

.scan-card p {
  margin: 8px 0 16px;
  color: rgba(255, 255, 255, 0.62);
}

.scan-face,
.scan-finger {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  color: white;
  background: radial-gradient(circle, #e07a4a, #e23d5c);
}

.scan-face .icon,
.scan-finger .icon {
  width: 42px;
  height: 42px;
}

.scan-face i,
.scan-finger i {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255, 122, 176, 0.5);
  border-radius: 50%;
  animation: pulse 1.2s ease infinite;
}

@keyframes pulse {
  to {
    transform: scale(1.12);
    opacity: 0;
  }
}

.round-fb,
.round-g {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
}

.round-fb {
  background: #2f6bff;
}

.round-g {
  background: #ff4b6b;
}

.otp-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.phone-auth .otp-box {
  width: 58px;
  height: 64px;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 14, 12, 0.72);
  color: white;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  outline: none;
  padding: 0;
}

.otp-box:focus {
  border-color: #e23d5c;
}

.resend {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.phone-auth .auth-error {
  margin-top: 12px;
  color: #ffb0c5;
  background: rgba(255, 59, 107, 0.12);
  border: 0;
}

.auth-head {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  margin-bottom: 18px;
}

.auth-screen h1 {
  font-family: Fraunces, serif;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.auth-lead {
  color: var(--muted);
  margin: 8px 0 22px;
  line-height: 1.45;
}

.auth-form {
  display: grid;
  gap: 12px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.auth-form input {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
}

.auth-form input:focus {
  border-color: var(--rose);
}

.password-wrap {
  position: relative;
  display: block;
}

.password-wrap input {
  padding-right: 48px;
}

.eye {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.text-link {
  color: var(--rose);
  font-weight: 600;
  font-size: 13px;
  justify-self: end;
}

.auth-error {
  color: var(--rose-deep, #d91f52);
  background: rgba(255, 59, 107, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
}

.auth-notice {
  color: var(--ink-soft);
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
}

.or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.or::before,
.or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 10px;
  font-weight: 600;
}

.auth-foot {
  margin-top: auto;
  padding-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.likes-screen {
  padding: 46px 16px 72px;
  background:
    radial-gradient(ellipse at 85% -10%, rgba(224, 122, 74, 0.32), transparent 46%),
    var(--app);
  color: white;
  overflow: hidden;
}

.likes-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex: 0 0 auto;
}

.likes-head h1 {
  margin: 0;
  color: white;
  font-family: Fraunces, serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.likes-tools {
  display: flex;
  align-items: center;
  gap: 6px;
}

.likes-tools button {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #f4ebe4;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
}

.likes-tools .icon {
  width: 17px;
  height: 17px;
}

.likes-tools .has-dot::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e23d5c;
}

.story-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 auto;
  margin-bottom: 16px;
}

.story-add,
.story-ava {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0;
}

.story-add {
  background: linear-gradient(180deg, #e23d5c, #c45c3a);
  color: white;
  box-shadow: 0 8px 14px rgba(225, 29, 72, 0.32);
}

.story-add span {
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
}

.story-ava {
  padding: 2px;
  background: linear-gradient(135deg, #e23d5c, #e07a4a);
}

.story-ava img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--app);
}

.likes-tabs {
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 0 0 auto;
  margin-bottom: 12px;
  padding: 4px;
  border-bottom: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  overflow-x: auto;
}

.likes-tabs button {
  position: relative;
  color: #b8a89c;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
}

.likes-tabs button.on {
  color: white;
  background: var(--grad);
}

.likes-tabs button.on::after {
  display: none;
}

.likes-screen .likes-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: start;
  overflow-y: auto;
  padding-bottom: 4px;
}

.likes-empty {
  grid-column: 1 / -1;
  margin: 24px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.like-tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.12;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #2a221c;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.like-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.like-tile .online {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(22, 8, 42, 0.55);
}

.like-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 9px 8px;
  background: linear-gradient(180deg, transparent, rgba(12, 4, 24, 0.92));
  text-align: left;
  color: white;
}

.like-meta strong {
  display: block;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.like-meta span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.like-meta em {
  font-style: normal;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.like-meta b {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex: 0 0 auto;
  font-weight: 600;
  color: #e07a4a;
}

.like-meta b .icon {
  width: 10px;
  height: 10px;
}

.like-card {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  background: white;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
}

.like-card img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.like-card div {
  padding: 10px 12px 14px;
}

.like-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.stories {
  display: flex;
  gap: 14px;
  overflow: auto;
  padding-bottom: 8px;
}

.story {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 12px;
}

.story img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  padding: 3px;
  border: 2px solid var(--rose);
}

.threads {
  list-style: none;
  margin-top: 8px;
}

.thread-row {
  width: 100%;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.thread-row img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.thread-row strong {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 7px;
  height: 7px;
  background: var(--rose);
  border-radius: 50%;
}

.thread-row p,
.thread-row time {
  color: var(--muted);
  font-size: 13px;
}

.thread-screen {
  padding-bottom: 18px;
}

.chat-head {
  display: grid;
  grid-template-columns: 32px 42px 1fr;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
}

.chat-head img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-head span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.bubbles {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding: 8px 0 16px;
}

.bubble {
  max-width: 78%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.4;
  font-size: 14px;
}

.bubble.them {
  background: white;
  border: 1px solid var(--line);
  align-self: flex-start;
}

.bubble.me {
  background: var(--rose);
  color: white;
  align-self: flex-end;
}

.composer {
  display: flex;
  gap: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
}

.composer input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
}

.composer button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
}

.me-hero img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 24px;
  background: #eadcd3;
}

.me-hero div {
  margin-top: 14px;
}

.me-hero h2 {
  font-family: Fraunces, serif;
  font-size: 30px;
}

.profile-screen .bio {
  color: var(--ink);
}

.profile-screen .tags span {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.stats div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
}

.stats strong {
  display: block;
  font-family: Fraunces, serif;
  font-size: 26px;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
}

.match {
  position: absolute;
  inset: 0;
  background: rgba(16, 8, 12, 0.72);
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 24px;
}

.match-card {
  width: 100%;
  background: #1a1014;
  color: white;
  border-radius: 28px;
  padding: 28px 22px;
  text-align: center;
}

.its {
  margin-top: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
}

.match-card h2 {
  font-family: Fraunces, serif;
  font-size: 26px;
  margin: 8px 0 20px;
}

.match-photos {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.match-photos img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #1a1014;
}

.match-photos img:first-child {
  transform: translateX(10px);
}

.match-photos img:last-child {
  transform: translateX(-10px);
}

.text-btn {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.empty {
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 8px;
}

@media (max-width: 420px) {
  .stage {
    padding: 0;
  }

  .phone {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
  }
}

.icon {
  width: 18px;
  height: 18px;
  display: block;
}

.login-page {
  justify-content: flex-start;
  padding: 70px 22px 28px;
  overflow-y: auto;
}

.login-page .login-copy {
  margin-bottom: 18px;
}

.login-page .login-copy h1 {
  font-size: 34px;
  letter-spacing: -0.05em;
}

.login-page .login-copy p {
  margin-top: 4px;
  font-size: 14px;
}

.login-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, #e23d5c, #e07a4a);
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(226, 61, 92, 0.35);
}

.login-glow-2 {
  top: auto;
  bottom: 80px;
  width: 260px;
  height: 180px;
  background: radial-gradient(circle, rgba(224, 122, 74, 0.22), transparent 70%);
}

.login-card {
  width: 100%;
  display: grid;
  gap: 12px;
  padding: 18px 16px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
}

.login-card .field input {
  background: rgba(17, 14, 12, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.login-card .field input:focus {
  border-color: #e07a4a;
  box-shadow: 0 0 0 3px rgba(226, 61, 92, 0.15);
}

.login-page .submit-glow {
  margin-top: 4px;
  box-shadow: 0 14px 30px rgba(226, 61, 92, 0.32);
}

.fill-quiet {
  color: rgba(240, 210, 196, 0.85);
  font-size: 12px;
  font-weight: 600;
}

.login-page .or-round {
  margin: 16px 0 12px;
}

.quick-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.quick {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 18px;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 600;
}

.quick .icon {
  width: 22px;
  height: 22px;
  color: #e07a4a;
}

.login-page .social-rounds {
  margin-top: 2px;
}

.login-page .auth-switch {
  margin-top: 16px;
}

.phone-auth.signup-page {
  justify-content: flex-start;
  padding: 64px 22px 28px;
  overflow: auto;
}

.phone-auth.signup-page .login-copy {
  margin-bottom: 16px;
}

.phone-auth.signup-page .login-copy h1 {
  font-size: 32px;
}

.phone-auth.signup-page .login-copy p {
  margin-top: 6px;
}

.signup-form {
  display: grid;
  gap: 12px;
}

.signup-card {
  width: 100%;
  padding: 16px 14px 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
}

.signup-card .field input,
.signup-card .field select {
  background: rgba(17, 14, 12, 0.55);
}

.signup-card .submit-glow {
  margin-top: 4px;
}

.name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  background: rgba(17, 14, 12, 0.72);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: white;
  padding: 13px 14px;
  outline: none;
}

.field input[type="date"],
.field select {
  color-scheme: dark;
}

.phone-shell {
  padding: 4px 6px 4px 10px;
}

.inline-verify {
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: white;
  background: linear-gradient(90deg, #e23d5c, #e07a4a);
  box-shadow: 0 6px 16px rgba(226, 61, 92, 0.28);
}

.inline-verify.ok,
.inline-verify:disabled {
  background: linear-gradient(90deg, #1aa86a, #2ecf88);
  box-shadow: 0 6px 16px rgba(26, 168, 106, 0.28);
}

.email-shell {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px 4px 4px;
  border-radius: 999px;
  background: rgba(17, 14, 12, 0.72);
  box-shadow:
    0 0 0 1.5px transparent,
    0 10px 30px rgba(224, 122, 74, 0.18);
  background-image:
    linear-gradient(rgba(17, 14, 12, 0.92), rgba(17, 14, 12, 0.92)),
    linear-gradient(90deg, #e23d5c, #e07a4a);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 1.5px solid transparent;
}

.email-shell input {
  flex: 1;
  min-width: 0;
  width: auto;
  border: 0;
  outline: none;
  background: transparent !important;
  border-radius: 0;
  color: white;
  padding: 14px 12px;
}

.phone-auth .phone-shell input,
.phone-auth .email-shell input {
  background: transparent;
  border: 0;
  color: white;
}

.sms-box {
  margin-top: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(17, 14, 12, 0.45);
  border: 1px solid rgba(255, 122, 176, 0.22);
}

.sms-box p {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.sms-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 8px;
  align-items: stretch;
}

.sms-row input {
  width: 100%;
  min-width: 0;
  letter-spacing: 0.28em;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
}

.sms-submit {
  width: auto;
  min-width: 88px;
  margin-top: 0;
  padding: 12px 16px;
  font-size: 13px;
  white-space: nowrap;
}

.submit-glow.is-wait,
.submit-glow:disabled {
  opacity: 0.42;
  box-shadow: none;
  filter: grayscale(0.15);
}

.step-bar {
  display: flex;
  gap: 6px;
  width: 100%;
  margin: 8px 0 6px;
}

.step-bar span {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.step-bar span.on,
.step-bar span.done {
  background: linear-gradient(90deg, #e23d5c, #e07a4a);
}

.step-count {
  width: 100%;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.verify-btn {
  justify-self: start;
  margin-top: 2px;
  border: 1px solid rgba(224, 122, 74, 0.4);
  color: #e07a4a;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
}

.verify-btn.ok {
  color: #7dffb0;
  border-color: rgba(125, 255, 176, 0.4);
}

.ghost-detect {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 600;
}

.upload-box {
  display: grid;
  gap: 6px;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1.5px dashed rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.upload-box input {
  display: none;
}

.upload-box strong {
  color: white;
  font-size: 15px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.photo-thumb {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pending-pill {
  display: inline-block;
  background: rgba(244, 195, 106, 0.16);
  color: #f4c36a;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pending-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px;
  margin: 8px 0 18px;
}

.pending-card span {
  display: block;
  margin-top: 6px;
  color: #f4c36a;
  font-size: 13px;
}

.choice-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
}

.choice.on {
  background: linear-gradient(90deg, #e23d5c, #e07a4a);
  border-color: transparent;
  color: white;
}

.interests-page {
  padding-top: 72px;
}

.interests-skip {
  position: absolute;
  top: 52px;
  right: 22px;
  z-index: 2;
  color: #ff4d6d;
  font-weight: 700;
  font-size: 15px;
}

.interests-page .login-copy {
  margin-bottom: 18px;
}

.interests-page .login-copy h1 {
  font-size: 34px;
  letter-spacing: -0.04em;
}

.interests-page .login-copy p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.interests-form {
  width: 100%;
  gap: 14px;
}

.looking-field select {
  border-radius: 999px;
  padding: 12px 16px;
}

.like-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 10px;
}

.like-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #f0d2c4;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  background: rgba(22, 16, 14, 0.92);
  border: 1.5px solid #6a4038;
}

.like-chip.on {
  color: white;
  background-image:
    linear-gradient(#110e0c, #110e0c),
    linear-gradient(90deg, #e23d5c, #e07a4a);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 8px 18px rgba(224, 122, 74, 0.18);
}

.like-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

.like-chip.on .like-ico {
  opacity: 1;
}

.load-more {
  color: #e23d5c;
  font-weight: 700;
  font-size: 16px;
  padding: 6px 8px 2px;
}

.interests-form .submit-glow {
  margin-top: 8px;
}

.discover {
  padding: 48px 14px 86px;
  color: white;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(226, 61, 92, 0.28), transparent 42%),
    radial-gradient(ellipse at 92% 8%, rgba(224, 122, 74, 0.22), transparent 40%),
    #110e0c;
}

.disc-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
}

.disc-orb {
  position: absolute;
  pointer-events: none;
  filter: blur(18px);
  z-index: 0;
}

.disc-orb-a {
  width: 240px;
  height: 240px;
  top: 70px;
  left: -90px;
  border-radius: 50%;
  background: rgba(226, 61, 92, 0.22);
}

.disc-orb-b {
  width: 210px;
  height: 210px;
  top: 40px;
  right: -80px;
  border-radius: 50%;
  background: rgba(224, 122, 74, 0.2);
}

.disc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.add-story {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-self: start;
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.02em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.add-story span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e07a4a, #e23d5c);
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(226, 61, 92, 0.45);
}

.add-story b {
  font-weight: 700;
}

.disc-tools {
  display: flex;
  gap: 6px;
  justify-self: end;
}

.disc-tools button {
  width: 34px;
  height: 34px;
  color: #f4ebe4;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.disc-tools .icon {
  width: 15px;
  height: 15px;
}

.disc-tools .has-dot {
  position: relative;
}

.disc-tools .has-dot::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e23d5c;
  box-shadow: 0 0 0 2px #110e0c, 0 0 10px #e23d5c;
}

.discover .stack {
  margin: 4px 2px 0;
  z-index: 1;
}

.card-deco {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 10px;
  height: 68%;
  border-radius: 32px;
  background: linear-gradient(160deg, #c45c3a, #3a2418);
  box-shadow: 0 18px 40px rgba(80, 40, 30, 0.35);
}

.card-deco.deco-a {
  transform: rotate(-11deg) translate(-14px, 18px) scale(0.96);
  opacity: 0.55;
}

.card-deco.deco-b {
  transform: rotate(9deg) translate(14px, 12px) scale(0.97);
  opacity: 0.7;
  background-size: cover;
  background-position: center;
  filter: saturate(1.2) brightness(0.85);
}

.discover .card,
.discover .card-back {
  inset: 18px 6px 4px;
  border-radius: 32px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 28px 60px rgba(0, 0, 0, 0.55);
}

.discover .card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.discover .card::after {
  background:
    linear-gradient(180deg, rgba(17, 14, 12, 0.12) 18%, rgba(17, 14, 12, 0.12) 42%, rgba(17, 14, 12, 0.92) 100%);
}

.discover .card-share,
.discover .card-msg {
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(10, 6, 22, 0.42);
  color: white;
  display: grid;
  place-items: center;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex: 0 0 auto;
}

.discover .card-share {
  position: absolute;
  top: 28px;
  right: 12px;
}

.discover .card-share .icon,
.discover .card-msg .icon {
  width: 15px;
  height: 15px;
}

.discover .card-meta {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 0 14px 16px;
}

.card-copy {
  min-width: 0;
  flex: 1;
}

.discover .card-meta h2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-family: Fraunces, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
}

.discover .card-meta h2 em {
  font-family: Outfit, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  opacity: 0.8;
}

.card-role {
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #f0d2c4;
}

.discover .distance {
  margin-top: 3px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.card-ava-wrap {
  position: relative;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 180deg, #e23d5c, #e07a4a, #f0b27a, #e23d5c);
}

.card-ava {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #110e0c;
}

.card-ava-wrap i {
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px #110e0c, 0 0 10px #22c55e;
}

.discover .photo-dots {
  top: 12px;
  left: 12px;
  right: 56px;
  bottom: auto;
  width: auto;
  gap: 4px;
}

.discover .photo-dots span {
  flex: 1;
  width: auto;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
}

.discover .photo-dots span.on {
  width: auto;
  background: white;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.85);
}

.card-info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 92px;
  z-index: 4;
  padding: 14px 14px 12px;
  border-radius: 20px;
  background: rgba(17, 14, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.discover .empty {
  color: rgba(255, 255, 255, 0.75);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 20px;
}

.discover .actions {
  gap: 12px;
  margin: 12px 18px 0;
  padding: 10px 14px;
  position: relative;
  z-index: 2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.go {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease;
}

.go::before {
  content: "";
  position: absolute;
  inset: 2px 2px auto;
  height: 45%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent);
  pointer-events: none;
}

.go:active {
  transform: scale(0.92);
}

.go .icon {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

.go-up {
  background: linear-gradient(180deg, #4ade80, #16a34a);
  box-shadow: 0 10px 18px rgba(22, 163, 74, 0.4);
}

.go-heart {
  width: 58px;
  height: 58px;
  background: linear-gradient(180deg, #ff9a62, #ff3d2e);
  box-shadow: 0 12px 22px rgba(255, 61, 46, 0.48);
}

.go-down {
  background: linear-gradient(180deg, #e07a4a, #c45c3a);
  box-shadow: 0 10px 20px rgba(196, 92, 58, 0.42);
}

.go-info {
  background: linear-gradient(180deg, #e0a45a, #c47a32);
  box-shadow: 0 10px 20px rgba(224, 164, 90, 0.42);
}

.inbox-screen {
  padding: 46px 16px 72px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(224, 122, 74, 0.28), transparent 42%),
    var(--app);
  color: white;
  overflow-y: auto;
}

.inbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.add-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.add-msg-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ff6b8a, #ff2d55);
  box-shadow: 0 6px 14px rgba(255, 45, 85, 0.35);
}

.add-msg-mark .icon {
  width: 14px;
  height: 14px;
  color: white;
}

.inbox-tool {
  width: 34px;
  height: 34px;
  color: #e8ddd4;
  display: grid;
  place-items: center;
}

.inbox-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px 4px 16px;
  border-radius: 999px;
  background: rgba(12, 6, 24, 0.7);
  box-shadow:
    0 0 0 1.5px transparent,
    0 8px 20px rgba(224, 122, 74, 0.16);
  background-image:
    linear-gradient(rgba(17, 14, 12, 0.92), rgba(17, 14, 12, 0.92)),
    linear-gradient(90deg, #e23d5c, #e07a4a);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 1.5px solid transparent;
}

.inbox-search input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  color: white;
  padding: 10px 0;
}

.inbox-search input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.inbox-search .icon {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.55);
}

.inbox-label {
  margin: 18px 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4b4a8;
}

.match-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.match-ava img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.msg-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.msg-row {
  width: 100%;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  text-align: left;
  color: white;
}

.msg-row img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
}

.msg-copy strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.online {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22d36a;
  box-shadow: 0 0 0 3px rgba(34, 211, 106, 0.18);
}

.msg-copy p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.msg-meta {
  display: grid;
  justify-items: end;
  align-self: start;
  gap: 10px;
  padding-top: 2px;
}

.msg-meta time {
  color: rgba(180, 150, 220, 0.7);
  font-size: 11px;
  white-space: nowrap;
}

.unread {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #e23d5c;
  color: white;
  font-size: 10px;
  font-weight: 700;
}

.msg-empty {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  padding: 12px 4px;
}

.thread-screen {
  padding: 0;
  background: var(--app);
  color: white;
  overflow: hidden;
  position: relative;
}

.thread-head {
  position: relative;
  flex: 0 0 auto;
  background: transparent;
}

.thread-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 16px 44px;
  background: linear-gradient(90deg, rgba(226, 61, 92, 0.95), rgba(224, 122, 74, 0.95));
}

.thread-icon {
  width: 32px;
  height: 32px;
  color: white;
  display: grid;
  place-items: center;
}

.thread-icon .icon {
  width: 16px;
  height: 16px;
}

.thread-hero {
  margin-top: -36px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px 14px;
}

.thread-hero img {
  width: 86px;
  height: 86px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #1a0d2c;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.thread-hero h2 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.thread-hero .online {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.thread-ghost {
  margin: 6px auto 0;
  max-width: 240px;
  color: rgba(196, 168, 230, 0.42);
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mute-flag {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #c9b3e8;
  font-size: 11px;
}

.thread-calls {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 14px;
}

.call-audio,
.call-video {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  background: none;
  border: 0;
}

.call-orb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
}

.call-audio .call-orb {
  background: #2ad4e8;
  box-shadow: 0 8px 16px rgba(42, 212, 232, 0.3);
}

.call-video .call-orb {
  background: #e23d5c;
  box-shadow: 0 8px 16px rgba(226, 61, 92, 0.3);
}

.call-audio .icon,
.call-video .icon {
  width: 16px;
  height: 16px;
}

.thread-screen .bubbles {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: auto;
  padding: 4px 16px 10px;
}

.chat-day {
  align-self: center;
  margin: 2px 0;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.thread-screen .bubble {
  max-width: 78%;
  padding: 10px 12px 12px;
  border-radius: 18px;
  line-height: 1.4;
  font-size: 13px;
}

.thread-screen .bubble header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
  font-size: 11px;
}

.thread-screen .bubble strong {
  font-size: 12px;
}

.thread-screen .bubble time {
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  white-space: nowrap;
}

.thread-screen .bubble.them {
  background: #2a221c;
  border: 0;
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.88);
  border-bottom-left-radius: 6px;
}

.thread-screen .bubble.me {
  background: linear-gradient(180deg, #e23d5c, #e07a4a);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 6px;
}

.thread-foot {
  flex: 0 0 auto;
  padding: 6px 14px 16px;
  background: linear-gradient(180deg, transparent, #14110f 18%);
}

.thread-screen .composer {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 4px 0 0;
}

.composer-tools {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
}

.thread-screen .composer input {
  flex: 1;
  min-width: 0;
  color: white;
  font-size: 14px;
}

.thread-screen .composer input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.thread-screen .composer button[type="submit"] {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  color: #e8ddd4;
}

.thread-screen .composer button[type="submit"] .icon {
  width: 18px;
  height: 18px;
}

.comp-tool {
  width: 32px;
  height: 32px;
  color: #e8a07a;
  display: grid;
  place-items: center;
}

.comp-tool .icon {
  width: 16px;
  height: 16px;
}

.profile-screen {
  padding: 0 0 70px;
  background: var(--app);
  color: white;
  overflow-y: auto;
}

.pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 16px 12px;
  background: linear-gradient(90deg, rgba(226, 61, 92, 0.95), rgba(224, 122, 74, 0.95));
}

.pro-round {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.18);
}

.pro-round .icon {
  width: 15px;
  height: 15px;
}

.pro-hero {
  display: grid;
  grid-template-columns: 1fr 78px;
  background: #161310;
}

.pro-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0 0 0 22px;
}

.pro-photo {
  position: relative;
  min-height: 210px;
}

.pro-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
}

.pro-edit {
  position: absolute;
  right: 12px;
  bottom: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #3d7bff;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(61, 123, 255, 0.4);
}

.pro-edit .icon {
  width: 15px;
  height: 15px;
}

.pro-stats {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.pro-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pro-stats div:last-child {
  border-bottom: 0;
}

.pro-stats .icon,
.pro-stats span {
  color: #ead9cc;
  font-size: 14px;
}

.pro-stats .icon {
  width: 16px;
  height: 16px;
}

.pro-body {
  padding: 18px 18px 12px;
}

.pro-body h2 {
  font-family: Fraunces, serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.pro-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 8px 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.pro-contact span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pro-contact .icon {
  width: 14px;
  height: 14px;
  color: #ead9cc;
}

.pro-body h3 {
  font-size: 16px;
  margin: 6px 0 8px;
}

.pro-copy,
.pro-empty,
.pro-more {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.pro-more p {
  margin-bottom: 8px;
}

.pro-more strong {
  display: block;
  color: white;
  font-size: 12px;
  margin-bottom: 2px;
}

.pro-tabs {
  display: flex;
  gap: 16px;
  margin: 6px 0 14px;
  overflow-x: auto;
}

.pro-tabs button {
  color: rgba(180, 150, 220, 0.7);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 0 8px;
  white-space: nowrap;
}

.pro-tabs button.on {
  color: #e23d5c;
  box-shadow: inset 0 -2px 0 #e23d5c;
}

.pro-pics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.pro-pics img {
  width: 100%;
  height: 74px;
  min-height: 74px;
  object-fit: cover;
  border-radius: 14px;
}

.pro-ints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #ead9cc;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pro-ints span,
.pro-ints button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ead9cc;
}

.pro-ints button.on {
  background: rgba(226, 61, 92, 0.16);
  color: white;
}

.pro-ints .like-ico {
  width: 16px;
  height: 16px;
}

.pro-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.pro-name-row h2 em {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
}

.pro-link {
  color: #e23d5c;
  font-size: 13px;
  font-weight: 700;
}

.pro-name-row h2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.blue-tick {
  display: inline-flex;
  vertical-align: middle;
}

.blue-tick .set-ico {
  width: 18px;
  height: 18px;
  color: #1d9bf0;
}

.pro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}

.verify-chip,
.rank-chip,
.plan-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.verify-chip {
  background: rgba(52, 211, 153, 0.16);
  color: #6ee7b7;
}

.rank-chip.silver {
  background: rgba(203, 213, 225, 0.18);
  color: #e2e8f0;
}

.rank-chip.gold {
  background: rgba(251, 191, 36, 0.18);
  color: #fbbf24;
}

.rank-chip.platinum {
  background: rgba(167, 139, 250, 0.2);
  color: #e8a07a;
}

.plan-chip {
  background: rgba(226, 61, 92, 0.14);
  color: #f0b27a;
}

.verify-status {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #eadfd4;
  font-size: 14px;
}

.verify-status.approved {
  background: rgba(52, 211, 153, 0.12);
  color: #6ee7b7;
}

.verify-status.pending {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}

.verify-status.rejected {
  background: rgba(248, 113, 113, 0.12);
  color: #fca5a5;
}

.rank-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.rank-card.on {
  outline: 1px solid #e07a4a;
}

.rank-card strong {
  display: block;
  font-size: 15px;
}

.rank-card span {
  display: block;
  margin-top: 4px;
  color: #c4b4a8;
  font-size: 12px;
}

.rank-card em {
  font-style: normal;
  color: #6ee7b7;
  font-size: 12px;
  font-weight: 700;
}

.rank-card button {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e23d5c, #e07a4a);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.pro-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.pro-facts span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #e8ddd4;
  font-size: 11px;
}

.pro-add {
  min-height: 74px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #ff8ab5;
  font-size: 12px;
  font-weight: 700;
}

.pro-pic {
  position: relative;
}

.pro-pic button:first-child {
  display: block;
  width: 100%;
  padding: 0;
}

.pro-pic.is-avatar img {
  outline: 2px solid #e23d5c;
  outline-offset: -2px;
}

.pro-x {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(12, 4, 24, 0.7);
  color: white;
  font-size: 12px;
  line-height: 1;
}

.pro-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.pro-clip {
  position: relative;
  min-height: 110px;
  overflow: hidden;
  border-radius: 14px;
  background: #1a0d30;
}

.pro-clip video {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.pro-play {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(12, 4, 24, 0.7);
  color: white;
  font-size: 11px;
  font-weight: 700;
}

.pro-bio-box {
  margin-bottom: 16px;
}

.video-layer {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  background: rgba(8, 4, 16, 0.88);
}

.video-layer video {
  width: 90%;
  max-height: 70%;
  border-radius: 12px;
  background: black;
}

.video-layer button {
  margin-top: 12px;
  color: #ff8ab5;
  font-weight: 700;
}

.sheet select.sheet-input {
  appearance: none;
}

.dock {
  height: 56px;
  border-radius: 20px;
}

.dock-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

.dock-btn .icon {
  width: 18px;
  height: 18px;
}

.badge {
  top: 4px;
  right: 4px;
  width: 6px;
  height: 6px;
}

.dock-dark {
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 58px;
  border-radius: 20px;
  background: rgba(16, 8, 32, 0.88);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(18px);
}

.dock-dark .dock-btn {
  color: #a8988c;
  width: 34px;
  height: 34px;
}

.dock-dark .dock-btn .icon {
  width: 17px;
  height: 17px;
}

.dock-dark .dock-btn.active {
  color: white;
}

.dock-dark .dock-btn.active::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #e23d5c, #e07a4a);
}

.app-toast {
  position: absolute;
  z-index: 80;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(20, 8, 32, 0.92);
  color: white;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.sheet-layer {
  position: absolute;
  inset: 0;
  z-index: 70;
  display: grid;
  align-items: end;
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 4, 16, 0.55);
}

.sheet {
  position: relative;
  z-index: 1;
  margin: 0 10px 18px;
  padding: 18px 16px 16px;
  border-radius: 22px;
  background: #1c102e;
  color: white;
  max-height: 72%;
  overflow: auto;
}

.sheet h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.sheet-copy {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.sheet-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 8px;
  padding: 8px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.sheet-row.plain {
  min-height: 44px;
}

.sheet-row img,
.sheet-hero {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.sheet-hero {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  margin-bottom: 12px;
}

.sheet-input {
  width: 100%;
  margin: 0 0 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font: inherit;
}

.thread-more-layer {
  position: absolute;
  inset: 0;
  z-index: 20;
}

.thread-more-dim {
  position: absolute;
  inset: 0;
  background: rgba(17, 14, 12, 0.45);
}

.thread-more {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 280px;
  padding: 52px 8px 12px;
  border-radius: 0 0 0 28px;
  background: linear-gradient(180deg, #e23d5c 0%, #c45c48 50%, #e07a4a 100%);
  box-shadow: -12px 18px 40px rgba(0, 0, 0, 0.28);
}

.thread-more button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 16px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: white;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
}

.thread-more button:last-child {
  border-bottom: 0;
}

.thread-more .set-ico {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: white;
}

.thread-search,
.thread-media {
  position: absolute;
  left: 12px;
  right: 12px;
  z-index: 6;
  padding: 10px 12px;
  border-radius: 16px;
  background: #231338;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.thread-search {
  bottom: 70px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.thread-search input {
  flex: 1;
  min-width: 0;
  color: white;
  background: transparent;
  border: 0;
  outline: none;
}

.thread-search button,
.thread-media-head button {
  color: #ff9ec4;
  font-weight: 700;
  font-size: 13px;
}

.thread-media {
  top: 90px;
  bottom: 70px;
  overflow: auto;
}

.thread-media-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.thread-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.thread-media-grid img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}

.thread-media-grid p {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.emoji-pad {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.emoji-pad button {
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.bubble-pic {
  display: block;
  max-width: 180px;
  border-radius: 12px;
  margin-top: 6px;
}

.voice-player {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  min-width: 168px;
  padding: 6px 8px 6px 6px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.voice-play {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: #e23d5c;
}

.bubble.me .voice-play {
  color: #e07a4a;
}

.voice-play .icon {
  width: 13px;
  height: 13px;
}

.voice-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 18px;
  flex: 1;
}

.voice-wave i {
  width: 2px;
  height: var(--h, 8px);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
}

.voice-player.playing .voice-wave i {
  animation: voice-bar 0.7s ease-in-out infinite;
  animation-delay: calc(var(--h) * -40ms);
}

.voice-time {
  font-size: 11px;
  opacity: 0.8;
}

@keyframes voice-bar {
  50% {
    transform: scaleY(1.7);
  }
}

.call-layer.is-audio .call-card img {
  animation: call-ring 1.6s ease-out infinite;
}

.call-pulse {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(42, 212, 232, 0.25);
  color: #2ad4e8;
  margin-bottom: 6px;
}

.call-actions {
  display: grid;
  justify-items: center;
}

@keyframes call-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  }
  100% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

.comp-tool.on {
  color: #e23d5c;
}

.call-layer {
  position: absolute;
  inset: 0;
  z-index: 75;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.call-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) brightness(0.45);
}

.call-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: white;
  text-align: center;
}

.call-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.call-end {
  margin-top: 12px;
  padding: 10px 28px;
  border: 0;
  border-radius: 999px;
  background: #e23d5c;
  color: white;
  font: inherit;
  cursor: pointer;
}

.settings-screen {
  padding: 0 18px 28px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(224, 122, 74, 0.28), transparent 46%),
    var(--app);
  color: white;
  overflow-y: auto;
}

.set-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0 8px;
}

.set-round {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.set-round .icon {
  width: 15px;
  height: 15px;
}

.settings-screen h1 {
  margin: 8px 0 6px;
  font-family: Fraunces, serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.set-list {
  display: grid;
  gap: 6px;
}

.set-row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 14px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #e8a07a;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
}

.set-sub {
  margin: 0 0 18px;
  color: #b7a99c;
  font-size: 13px;
  line-height: 1.4;
}

.set-row span {
  background: linear-gradient(90deg, #e07a4a 0%, #e23d5c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.set-ico {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #e07a4a;
}

.set-rule {
  margin: 10px 0 8px;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e07a4a 15%, #e23d5c 85%, transparent);
}

.set-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: #c4b4a8;
  font-size: 12px;
}

.set-field input,
.set-field select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  color: #eadfd4;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pref-switch {
  min-width: 48px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #c4b4a8;
  font-size: 12px;
  font-weight: 700;
}

.pref-switch.on {
  background: linear-gradient(90deg, #e23d5c, #e07a4a);
  color: white;
}

.set-plan {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  text-align: left;
  font-weight: 600;
}

.set-plan.on {
  background: linear-gradient(90deg, #e23d5c, #e07a4a);
}

.set-danger {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(226, 61, 92, 0.15);
  color: #ff6b9d;
  font-weight: 700;
}

.set-copy {
  margin: 0 0 14px;
  color: #c4b4a8;
  font-size: 14px;
  line-height: 1.55;
}

.set-match {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
}

.set-match img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.set-match button {
  color: #ff6b9d;
  font-size: 13px;
  font-weight: 700;
}

.settings-screen .submit-glow {
  margin-top: 8px;
}

.patient-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px 56px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(226, 61, 92, 0.28), transparent 46%),
    #14110f;
  color: white;
}

.patient-orbit {
  position: relative;
  width: 260px;
  height: 260px;
  margin-bottom: 28px;
}

.patient-ring {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  pointer-events: none;
}

.patient-ring.r1 {
  inset: 58px;
  border: 3px solid #e23d5c;
  box-shadow: 0 0 18px rgba(226, 61, 92, 0.35);
}

.patient-ring.r2 {
  inset: 36px;
  border-color: rgba(224, 122, 74, 0.55);
}

.patient-ring.r3 {
  inset: 16px;
  border-color: rgba(224, 164, 90, 0.4);
}

.patient-ring.r4 {
  inset: 0;
  border-color: rgba(90, 50, 40, 0.35);
}

.patient-orbit .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.patient-orbit .d1 { left: 8px; top: 118px; background: #e07a4a; }
.patient-orbit .d2 { left: 28px; top: 78px; background: #22c55e; }
.patient-orbit .d3 { left: 22px; top: 168px; background: #e23d5c; }
.patient-orbit .d4 { right: 18px; top: 72px; background: #e0a45a; }
.patient-orbit .d5 { right: 10px; top: 148px; background: #c45c3a; }

.sad-heart {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108px;
  height: 108px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 12px 18px rgba(255, 45, 100, 0.35));
}

.sad-heart svg {
  width: 100%;
  height: 100%;
}

.patient-screen h1 {
  margin: 0 0 10px;
  font-family: Outfit, sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.patient-screen p {
  margin: 0 0 28px;
  color: #c9b3e0;
  font-size: 14px;
  line-height: 1.5;
}

.start-swipe {
  background: linear-gradient(90deg, #e23d5c, #e07a4a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18px;
  font-weight: 700;
}

.filter-screen {
  padding: 0 18px 28px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(224, 122, 74, 0.24), transparent 46%),
    var(--app);
  color: white;
  overflow-y: auto;
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0 4px;
}

.filter-screen h1 {
  margin: 8px 0 8px;
  font-family: Fraunces, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.filter-lead {
  margin: 0 0 22px;
  color: #b7a99c;
  font-size: 13px;
  line-height: 1.45;
}

.filter-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.filter-field > span {
  color: #e07a4a;
  font-size: 13px;
  font-weight: 600;
}

.filter-field select,
.filter-loc select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1.5px solid #e07a4a;
  background: #1a1412;
  color: white;
  font-size: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23e07a4a' stroke-width='1.6' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.filter-loc {
  position: relative;
}

.filter-pin {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: #e07a4a;
  pointer-events: none;
}

.filter-pin .set-ico {
  width: 16px;
  height: 16px;
}

.filter-km-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.filter-range {
  width: 100%;
  accent-color: #e23d5c;
}

.filter-advance {
  display: block;
  margin: 8px 0 18px;
  background: linear-gradient(90deg, #e23d5c, #e07a4a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 15px;
  font-weight: 700;
}

.filter-apply {
  display: block;
  width: min(240px, 100%);
  margin: 8px auto 0;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e23d5c, #e07a4a);
  color: white;
  font-size: 16px;
  font-weight: 700;
}

.dock-six {
  padding: 0 6px;
}

.dock-six .dock-btn {
  width: 30px;
  height: 34px;
}

.live-screen,
.dates-screen {
  padding: 46px 16px 72px;
  background:
    radial-gradient(ellipse at 85% -10%, rgba(224, 122, 74, 0.32), transparent 48%),
    var(--app);
  color: white;
  overflow: auto;
}

.date-form {
  padding: 14px;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
}

.go-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e23d5c, #e07a4a);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.go-live .icon {
  width: 14px;
  height: 14px;
}

.live-lead {
  margin: 0 0 14px;
  color: #c4b4a8;
  font-size: 13px;
  line-height: 1.4;
}

.live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.live-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 18px;
  text-align: left;
  color: white;
}

.live-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-tile .live-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 10px 10px;
  background: linear-gradient(transparent, rgba(8, 4, 16, 0.92));
}

.live-tile strong,
.live-tile em {
  display: block;
}

.live-tile em {
  margin-top: 2px;
  font-style: normal;
  font-size: 11px;
  color: #eadfd4;
}

.live-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #ef4444;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.live-tile .live-viewers {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 4px #000;
}

.live-studio {
  position: relative;
  height: 100%;
  background: #110e0c;
  color: white;
  overflow: hidden;
}

.live-cam,
.live-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-cover {
  background-size: cover;
  background-position: center;
}

.live-studio-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 48px 14px 0;
}

.live-studio-head button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: white;
  font-weight: 700;
}

.live-studio .live-pill {
  position: static;
}

.live-studio .live-viewers {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
}

.live-host-chip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
}

.live-host-chip img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.live-host-chip em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: #eadfd4;
}

.live-comments {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 78px;
  max-height: 160px;
  overflow: auto;
}

.live-comments p {
  margin: 0 0 6px;
  font-size: 13px;
  text-shadow: 0 1px 4px #000;
}

.live-bar {
  position: absolute;
  z-index: 2;
  left: 12px;
  right: 12px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.live-bar input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.live-bar button {
  width: 44px;
  border-radius: 50%;
  background: linear-gradient(90deg, #e23d5c, #e07a4a);
  color: white;
}

.live-end {
  width: auto !important;
  padding: 0 14px;
  border-radius: 999px !important;
  background: #ef4444 !important;
  font-size: 13px;
  font-weight: 700;
}

.date-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.date-card img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 14px;
}

.date-card strong,
.date-card span,
.date-card em,
.date-card p {
  display: block;
}

.date-card span,
.date-card em,
.date-card p {
  font-size: 12px;
  color: #e8ddd4;
}

.date-card em {
  font-style: normal;
  color: #f0b27a;
}

.date-card p {
  margin: 4px 0 0;
}

.date-actions {
  display: grid;
  gap: 6px;
}

.date-actions button {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 11px;
  font-weight: 700;
}

.date-form-title {
  margin: 18px 0 10px;
  font-size: 15px;
}

.date-ideas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}

.date-ideas button {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #eadfd4;
  font-size: 11px;
}

.date-ideas button.on {
  background: linear-gradient(90deg, #e23d5c, #e07a4a);
  color: white;
}
