:root {
  --sky: #B8E4F0;
  --sky-light: #E0F4FA;
  --sky-pale: #F0FAFD;
  --mint: #D4F5E0;
  --teal: #4ECDC4;
  --blue-accent: #5B9BD5;
  --text-dark: #1A2B3C;
  --text-muted: #7A8A9A;
  --white: #FFFFFF;
  --font: 'Manrope', sans-serif;
  --font-display: 'Unbounded', 'Arial Black', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--sky-pale); font-family: var(--font); color: var(--text-dark); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; font-family: inherit; cursor: pointer; outline: none; color: inherit; }
.v19-brand,
.v19-card-name,
.v19-h2,
.v19-match-h2,
.v19-feat-title,
.v19-story-who,
.v19-f-brand {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.045em;
}

/* ═══════════════════════════════════════
   1. MINDATE HEADER + HERO
   ═══════════════════════════════════════ */
.v19-top-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px; background: var(--sky); position: sticky; top: 0; z-index: 100;
}
.v19-brand { font-size: 21px; color: var(--text-dark); }
.v19-top-actions { display: flex; gap: 10px; }
.v19-top-btn {
  width: 40px; height: 40px; border-radius: 50%; background: var(--white);
  display: flex; justify-content: center; align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.v19-top-btn svg { width: 18px; height: 18px; color: var(--text-dark); }
.v19-top-avatar {
  width: 40px; height: 40px; border-radius: 50%; background-size: cover; background-position: center;
  border: 2px solid var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Main Deck — Blue Sky Background */
.v19-hero {
  background: linear-gradient(180deg, var(--sky) 0%, var(--sky-light) 100%);
  padding: 0 20px 30px;
}

.v19-deck-wrap { position: relative; height: 480px; margin-bottom: 20px; }
#lp-hero-sizer { width: 100%; height: 100%; position: relative; }
.v19-deck-inner { position: absolute; inset: 0; }
.v19-deck-link { position: absolute; inset: 0; z-index: 20; }
.v19-showcase { position: absolute; inset: 0; z-index: 1; }

.heart {
  position: absolute; inset: 0; border-radius: 28px; overflow: hidden;
  background: var(--sky-light);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.heart__img { width: 100%; height: 100%; object-fit: cover; }
.heart[data-pos="front"] { transform: scale(1); opacity: 1; z-index: 5; }
.heart[data-pos="back"]  { transform: translate(15px, 10px) scale(0.94) rotate(4deg); opacity: 0.5; z-index: 4; }

/* "She likes you!" badge */
.v19-likes-badge {
  position: absolute; top: 16px; left: 16px; z-index: 15;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px);
  padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Card Info Overlay — Bottom */
.v19-card-ui {
  position: absolute; inset: 0; pointer-events: none; z-index: 10;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 50%);
  color: #fff;
}

.v19-card-loc {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 600;
  margin-bottom: 10px; width: fit-content;
}

.v19-card-name { font-size: 42px; line-height: 1.05; }
.v19-card-age { font-family: var(--font-display); font-size: 24px; font-weight: 900; vertical-align: super; margin-left: 8px; letter-spacing: -0.04em; }
.v19-card-bio { font-size: 14px; margin-top: 10px; opacity: 0.9; line-height: 1.4; }

/* Interest Tags */
.v19-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.v19-tag {
  background: rgba(255,255,255,0.2); backdrop-filter: blur(6px);
  padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.3);
}

/* Bottom Nav */
.v19-bottom-nav {
  display: flex; justify-content: center; gap: 8px;
  padding: 16px 20px 24px;
  background: linear-gradient(180deg, var(--sky-light) 0%, var(--sky-pale) 100%);
}
.v19-bnav-item {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--white); display: flex; justify-content: center; align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: 0.2s;
}
.v19-bnav-item--active { background: var(--text-dark); color: #fff; }
.v19-bnav-item svg { width: 22px; height: 22px; }

/* ═══════════════════════════════════════
   2. PROFILES SECTION
   ═══════════════════════════════════════ */
.v19-section { max-width: 500px; margin: 0 auto; padding: 40px 20px; }
.v19-h2 { font-size: 24px; margin-bottom: 6px; }
.v19-h2-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.v19-label { font-size: 14px; font-weight: 800; color: var(--teal); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }

.v19-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 40px; }

.pcard { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 0.75; background: var(--sky-light); }
.pcard__media { position: absolute; inset: 0; }
.pcard__img { width: 100%; height: 100%; object-fit: cover; }
.pcard__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%); color: #fff; }
.pcard__name { font-size: 15px; font-weight: 800; }
.pcard__meta { font-size: 11px; opacity: 0.8; }
.pcard__age { position: absolute; top: 10px; right: 10px; background: var(--teal); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 100px; }
.pcard__heart, .pcard__pin { display: none; }
.v19-error { color: var(--text-muted); font-size: 14px; text-align: center; }

/* ═══════════════════════════════════════
   3. SEARCH FORM
   ═══════════════════════════════════════ */
.v19-form-card {
  background: var(--white); border-radius: 28px; padding: 32px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.v19-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.v19-lbl { display: block; font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.v19-select {
  width: 100%; border: 2px solid #E8EFF5; border-radius: 16px; background: var(--sky-pale);
  padding: 14px 16px; font-family: inherit; font-size: 15px; font-weight: 700; color: var(--text-dark); outline: none;
  appearance: none; transition: border-color 0.2s;
}
.v19-select:focus { border-color: var(--teal); }

.v19-age-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.v19-age-val { font-weight: 800; color: var(--teal); }

.v19-slider { position: relative; height: 28px; }
.v19-slider__track { position: absolute; left: 0; right: 0; top: 50%; height: 6px; background: #E8EFF5; border-radius: 3px; transform: translateY(-50%); }
.v19-slider__input { position: absolute; width: 100%; appearance: none; background: transparent; pointer-events: none; }
.v19-slider__input::-webkit-slider-thumb {
  appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(78,205,196,0.3); pointer-events: auto; cursor: pointer;
}

.v19-btn-submit {
  width: 100%; background: var(--text-dark); color: var(--white);
  padding: 18px; border-radius: 100px; font-size: 16px; font-weight: 800;
  margin-top: 16px; transition: 0.2s;
  box-shadow: 0 10px 25px rgba(26,43,60,0.15);
}
.v19-btn-submit:hover { transform: translateY(-2px); }
.v19-warn { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ═══════════════════════════════════════
   4. ABOUT / FEATURES
   ═══════════════════════════════════════ */
.v19-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 40px; }
.v19-feat {
  background: var(--white); border-radius: 20px; padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03); transition: 0.2s;
}
.v19-feat:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.v19-feat-icon { font-size: 28px; margin-bottom: 12px; }
.v19-feat-title { font-size: 13px; margin-bottom: 6px; }
.v19-feat-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ═══════════════════════════════════════
   5. STORIES
   ═══════════════════════════════════════ */
.v19-stories-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.v19-stories-controls { display: flex; gap: 8px; }
.v19-stories-btn {
  width: 36px; height: 36px; border-radius: 50%; background: var(--white);
  display: flex; justify-content: center; align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); font-size: 18px; font-weight: 700; color: var(--text-muted);
}

.v19-stories-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding: 4px 0 20px;
  scrollbar-width: none; -ms-overflow-style: none; scroll-snap-type: x mandatory;
}
.v19-stories-scroll::-webkit-scrollbar { display: none; }

.v19-story-card {
  flex-shrink: 0; width: 300px; background: var(--white);
  border-radius: 24px; padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  scroll-snap-align: start;
}
.v19-story-who { font-size: 15px; margin-bottom: 4px; }
.v19-story-where { font-size: 12px; color: var(--teal); font-weight: 700; margin-bottom: 12px; }
.v19-story-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════
   6. FIRST STEP SECTION
   ═══════════════════════════════════════ */
.v19-match {
  background: linear-gradient(180deg, var(--sky-light) 0%, var(--mint) 100%);
  border-radius: 32px; padding: 40px 24px; text-align: center;
  margin-bottom: 40px;
}
.v19-match-photos { display: flex; justify-content: center; margin-bottom: 24px; position: relative; }
.v19-match-photo {
  position: relative;
  width: 100px; height: 130px; border-radius: 20px;
  background-size: cover; background-position: center;
  border: 4px solid var(--white); box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.v19-match-photo--you {
  background:
    radial-gradient(circle at 28% 24%, rgba(78,205,196,0.24), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.44));
  color: var(--text-dark);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 4px;
  border-style: dashed;
}
.v19-match-photo--you span { font: 900 24px/1 var(--font-display); letter-spacing: -0.06em; }
.v19-match-photo--you small { font-size: 11px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.v19-match-photo--candidate {
  background-color: rgba(255,255,255,0.55);
  overflow: hidden;
}
.v19-match-photo--candidate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(26,43,60,0.14));
  z-index: 1;
}
.v19-match-like {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: #ff4d8d;
  font: 900 20px/1 var(--font);
  box-shadow: 0 8px 18px rgba(26,43,60,0.18);
}
.v19-match-photo:first-child { transform: rotate(-8deg); z-index: 1; }
.v19-match-photo:last-child  { transform: rotate(8deg); margin-left: -20px; z-index: 2; }
.v19-match-heart {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--white);
  display: flex; justify-content: center; align-items: center; font-size: 22px; font-weight: 900;
  color: var(--blue-accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1); z-index: 10;
}

.v19-match-h2 { font-size: 30px; margin-bottom: 8px; }
.v19-match-p { font-size: 14px; color: var(--text-muted); margin: 0 auto 24px; max-width: 360px; line-height: 1.55; }
.v19-match-chat {
  min-height: 56px; border-radius: 999px; background: var(--white);
  padding: 0 24px;
  display: flex; justify-content: center; align-items: center; margin: 0 auto;
  width: fit-content;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08); font-size: 14px; font-weight: 900;
}

/* ═══════════════════════════════════════
   7. FOOTER
   ═══════════════════════════════════════ */
.v19-footer {
  max-width: 500px; margin: 0 auto; padding: 30px 20px 50px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;
}
.v19-f-brand { font-size: 15px; margin-bottom: 6px; }
.v19-f-muted { font-size: 11px; color: var(--text-muted); line-height: 1.5; max-width: 200px; }
.v19-f-links { display: flex; flex-direction: column; gap: 6px; }
.v19-f-link { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.v19-f-link:hover { color: var(--teal); }

@media (max-width: 600px) {
  .v19-card-name { font-size: 30px; }
  .v19-card-age { font-size: 20px; }
  .v19-deck-wrap { height: 440px; }
}
