:root {
  --bg: #fff8f1;
  --ink: #21151e;
  --muted: #75636f;
  --rose: #a93467;
  --rose-dark: #65193e;
  --gold: #d9a94f;
  --cream: #fff3e3;
  --dark: #120812;
  --card: rgba(255, 255, 255, 0.78);
  --border: rgba(101, 25, 62, 0.14);
  --shadow: 0 24px 70px rgba(56, 13, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #ffe7ee 0, transparent 34rem), var(--bg);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(840px, calc(100% - 32px));
}

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 241, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 10px 28px rgba(169, 52, 103, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--rose);
}

.nav-cta {
  color: #fff !important;
  background: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: 0.25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding-top: 86px;
  color: #fff;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("../img/banner.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(18, 8, 18, 0.88) 0%, rgba(18, 8, 18, 0.66) 44%, rgba(18, 8, 18, 0.34) 100%), linear-gradient(180deg, rgba(18, 8, 18, 0.18), rgba(18, 8, 18, 0.78));
}

.hero-grid,
.split-grid,
.dark-grid,
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 660px;
  font-size: clamp(2.35rem, 3.5vw, 4.25rem);
}

h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.9rem);
}

h3 {
  font-size: 1.12rem;
}

.hero-text,
.section-head p,
.seo-copy p,
.dark-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 243, 227, 0.88);
}

.hero .eyebrow {
  color: #ffd37b;
}

.hero .trust-row span {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  box-shadow: 0 16px 34px rgba(169, 52, 103, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
}

.btn-light {
  margin-top: 28px;
  color: var(--dark);
  background: #fff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-card {
  justify-self: end;
  width: min(430px, 100%);
}

.phone-frame {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 229, 238, 0.64));
  box-shadow: var(--shadow);
}

.match-card,
.signup-card,
.feature-card,
.testimonial-grid blockquote,
.faq details {
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(56, 13, 39, 0.08);
}

.match-card {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 16px;
  border-radius: 30px;
}

.match-card img {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  border: 4px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(101, 25, 62, 0.22);
}

.match-card div {
  padding: 0;
}

.avatar-status {
  display: inline-flex !important;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  font-size: 0.72rem;
  font-weight: 800;
}

.match-card strong,
.match-card span {
  display: block;
}

.match-card span {
  color: var(--muted);
  margin-top: 4px;
}

.signup-card {
  position: relative;
  margin: -34px 12px 0;
  padding: 24px;
  border-radius: 28px;
}

.signup-card h2 {
  font-family: Inter, sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.signup-card label {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
}

.signup-card input,
.signup-card select {
  width: 100%;
  height: 48px;
  margin-top: 7px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.signup-card button {
  width: 100%;
  margin-top: 18px;
}

.signup-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.logos {
  padding: 32px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-grid div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--border);
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  font-size: 1.28rem;
}

.stat-grid span {
  color: var(--muted);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.feature-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 255px;
  padding: 28px;
  border-radius: 30px;
}

.feature-card span {
  color: var(--gold);
  font-weight: 900;
}

.feature-card h3 {
  margin: 54px 0 12px;
}

.feature-card p,
.step p,
.testimonial-grid blockquote,
.faq p,
.footer p,
.footer a {
  color: var(--muted);
}

.app-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff, #fff0e7 48%, #ffe5ef);
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 56px;
  align-items: center;
}

.app-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.app-points {
  display: grid;
  gap: 14px;
  margin: 26px 0 28px;
}

.app-points div {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.app-points strong,
.app-points span {
  display: block;
}

.app-points span {
  margin-top: 4px;
  color: var(--muted);
}

.app-preview {
  display: flex;
  justify-content: center;
}

.app-image {
  width: min(430px, 100%);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.app-phone {
  width: min(360px, 100%);
  padding: 20px;
  border: 10px solid #21151e;
  border-radius: 42px;
  background: linear-gradient(180deg, #fff8f1, #fff);
  box-shadow: var(--shadow);
}

.app-topbar {
  width: 80px;
  height: 6px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: rgba(33, 21, 30, 0.18);
}

.app-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
}

.app-profile.second {
  margin-top: 12px;
}

.app-profile img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

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

.app-profile span {
  color: var(--muted);
  font-size: 0.84rem;
}

.chat-bubble {
  width: fit-content;
  max-width: 86%;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 18px 18px 18px 4px;
  color: #fff;
  background: var(--rose);
  font-size: 0.92rem;
}

.chat-bubble.right {
  margin-left: auto;
  border-radius: 18px 18px 4px 18px;
  color: var(--ink);
  background: #ffe8c1;
}

.audience-section {
  overflow: hidden;
  background: #fffaf4;
}

.audience-section-alt {
  background: linear-gradient(135deg, #fff0e7, #fff8f1 58%, #ffe9f1);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 56px;
  align-items: center;
}

.audience-grid.reverse {
  grid-template-columns: 1fr 0.92fr;
}

.audience-image {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.audience-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(18, 8, 18, 0.35));
}

.audience-image img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
}

.audience-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.audience-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 28px;
}

.audience-list div {
  position: relative;
  padding: 18px 20px 18px 48px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.audience-list div::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(217, 169, 79, 0.16);
}

.audience-list strong,
.audience-list span {
  display: block;
}

.audience-list span {
  margin-top: 4px;
  color: var(--muted);
}

.cities-section {
  background: radial-gradient(circle at 20% 10%, rgba(217, 169, 79, 0.18), transparent 28rem), #fff;
}

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

.city-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(56, 13, 39, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(56, 13, 39, 0.16);
}

.city-card img {
  width: 100%;
  aspect-ratio: 4 / 2.8;
  object-fit: cover;
}

.city-card div {
  padding: 22px;
}

.city-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--rose);
  background: rgba(169, 52, 103, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.city-card h3 {
  margin-bottom: 10px;
}

.city-card p {
  margin: 0;
  color: var(--muted);
}

.places-guide {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  background: linear-gradient(180deg, #fff8ef 0%, #fff2e5 100%);
}

.places-guide::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: linear-gradient(rgba(101, 25, 62, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(101, 25, 62, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.places-guide-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.places-guide h2 {
  max-width: 680px;
  margin: 0 auto;
}

.place-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 32px auto 24px;
}

.place-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(255, 211, 123, 0.24);
  border-radius: 999px;
  color: #ffd37b;
  background: #210812;
  box-shadow: 0 14px 30px rgba(33, 8, 18, 0.12);
  font-weight: 800;
  font-size: 0.94rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.place-pills a:hover {
  transform: translateY(-3px);
  background: var(--rose-dark);
}

.places-note {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.split-section {
  background: linear-gradient(180deg, transparent, #fff0e5 38%, transparent);
}

.image-panel {
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  margin-top: 22px;
}

.step b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
}

.step p {
  margin: 8px 0 0;
}

.dark-section {
  color: #fff;
  background: radial-gradient(circle at 20% 0, rgba(217, 169, 79, 0.25), transparent 28rem), var(--dark);
}

.dark-section .eyebrow,
.dark-section p {
  color: #f1c8d7;
}

.safety-list {
  display: grid;
  gap: 16px;
}

.safety-list div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.safety-list strong,
.safety-list span {
  display: block;
}

.safety-list span {
  color: #d8c3ce;
  margin-top: 6px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 28px;
  border-radius: 28px;
  font-size: 1.02rem;
}

.testimonial-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(56, 13, 39, 0.18);
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
}

.testimonial-grid cite {
  display: block;
  margin-top: 24px;
  color: var(--rose);
  font-style: normal;
  font-weight: 800;
}

.seo-copy {
  padding-top: 50px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px 22px;
  border-radius: 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.subpage {
  background: var(--bg);
}

.sub-hero {
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 20% 0, rgba(217, 169, 79, 0.22), transparent 30rem), linear-gradient(135deg, #120812, #34142a 62%, #120812);
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.sub-hero p:not(.eyebrow) {
  max-width: 660px;
  color: #f1c8d7;
  font-size: 1.08rem;
}

.sub-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.sub-content {
  max-width: 980px;
}

.sub-content > p,
.legal-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.sub-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.sub-card-grid article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(56, 13, 39, 0.08);
}

.sub-card-grid p {
  color: var(--muted);
}

.legal-copy h2:not(:first-child) {
  margin-top: 34px;
}

.footer {
  padding: 70px 0 28px;
  color: #fff;
  background: radial-gradient(circle at 15% 0, rgba(217, 169, 79, 0.22), transparent 28rem), linear-gradient(135deg, #120812, #2b1022 56%, #120812);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.92fr 1.45fr;
  gap: 52px;
  align-items: start;
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 24px;
  color: #d8c3ce;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer h3 {
  margin-bottom: 14px;
  color: #fff;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #d8c3ce;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: #bba8b4;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .section {
    padding: 70px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-grid,
  .split-grid,
  .dark-grid,
  .app-grid,
  .audience-grid,
  .audience-grid.reverse,
  .sub-hero-grid,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    padding-top: 58px;
  }

  .hero-card {
    justify-self: stretch;
  }

  .feature-grid,
  .testimonial-grid,
  .stat-grid,
  .city-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(2rem, 8.8vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.55rem, 6.6vw, 2.05rem);
  }

  .hero-actions,
  .btn,
  .place-pills a {
    width: 100%;
  }

  .feature-grid,
  .testimonial-grid,
  .stat-grid,
  .city-grid,
  .sub-card-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card h3 {
    margin-top: 34px;
  }

  .phone-frame {
    border-radius: 30px;
    padding: 12px;
  }

  .signup-card {
    margin: -26px 6px 0;
  }
}
