:root {
  --pink: #e91e8c;
  --pink-light: #ff4daa;
  --pink-dark: #c0186e;
  --dark: #0a0a0a;
  --dark-2: #111;
  --dark-3: #1a1a1a;
  --cream: #f5f0e8;
  --white: #fff;
  --gray: #888;
  --border-dark: rgba(255, 255, 255, 0.08);
  --display: "Plus Jakarta Sans", sans-serif;
  --body: "Inter", sans-serif;
  --script: "Dancing Script", cursive;
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--dark);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
a { color: inherit; }
svg { display: block; }

::selection { background: var(--pink); color: var(--white); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--pink-dark); border-radius: 5px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 40px;
}
.center { margin: 0; text-align: center; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(14px);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--container));
  height: 64px;
  margin-inline: auto;
  padding-inline: 40px;
}
.logo {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo span { color: var(--pink); }
.desktop-nav { display: flex; gap: 32px; }
.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s, color 0.2s, background 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: var(--pink-light); }
.btn-outline { border-color: rgba(255, 255, 255, 0.35); color: var(--white); }
.btn-outline:hover { border-color: rgba(255, 255, 255, 0.75); background: rgba(255, 255, 255, 0.06); }
.btn-pink-outline { border-color: var(--pink); color: var(--pink); background: transparent; padding: 12px 28px; }
.btn-pink-outline:hover { background: var(--pink); color: var(--white); }
.btn-large { min-height: 46px; padding: 13px 30px; font-size: 14px; }
:focus-visible { outline: 3px solid rgba(255, 77, 170, 0.75); outline-offset: 3px; }

.hamburger {
  display: none;
  width: 34px;
  height: 34px;
  padding: 7px 6px;
  border: 0;
  background: none;
  cursor: pointer;
}
.hamburger span { display: block; width: 22px; height: 2px; margin: 4px 0; background: var(--white); }
.mobile-nav {
  visibility: hidden;
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 10, 0.985);
  opacity: 0;
  transition: visibility 0.25s, opacity 0.25s;
}
.mobile-nav.open { visibility: visible; opacity: 1; }
.mobile-nav nav { display: flex; flex-direction: column; align-items: center; gap: 25px; }
.mobile-nav nav > a:not(.btn) {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-nav-close {
  position: absolute;
  top: 22px;
  right: 24px;
  border: 0;
  background: none;
  color: var(--white);
  font-size: 34px;
  cursor: pointer;
}

.hero {
  position: relative;
  display: flex;
  min-height: 700px;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg, .cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.hero-bg { opacity: 0.66; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94) 24%, rgba(0, 0, 0, 0.44) 65%, rgba(0, 0, 0, 0.1));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 110px 40px 55px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.eyebrow svg { width: 13px; height: 13px; fill: none; stroke: var(--pink); stroke-width: 2; }
.hero-headline {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}
.hero-headline span { color: var(--pink); }
.hero-sub { margin: 0 0 32px; color: rgba(255, 255, 255, 0.72); font-size: 16px; line-height: 1.6; }
.hero-ctas { display: flex; align-items: center; gap: 18px; margin-bottom: 35px; }
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.play-icon { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.38); border-radius: 50%; }
.play-icon svg { width: 15px; height: 15px; fill: currentColor; }
.btn-play:hover { color: var(--pink); }
.trust-row, .cta-trust { display: flex; flex-wrap: wrap; padding: 0; margin: 0; list-style: none; }
.trust-row { gap: 20px; }
.trust-row li, .cta-trust li { display: flex; align-items: center; gap: 6px; color: rgba(255, 255, 255, 0.62); font-size: 12px; font-weight: 500; }
.check, .cta-trust span { color: var(--pink); }

.profiles-section, .features-section, .cities-section, .testimonials-section, .app-section, .home-blog-section, .faq-section { padding: 80px 0; }
.profiles-section, .cities-section { background: var(--dark-2); }
.features-section, .testimonials-section { background: var(--cream); color: #111; }
.section-header { margin-bottom: 40px; text-align: center; }
.section-label { margin: 0 0 8px; color: var(--pink); font-family: var(--script); font-size: 19px; line-height: 1.2; }
.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}
.section-title.light { color: var(--white); }
.section-title span { color: var(--pink); }

.profile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.profile-card {
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  background: var(--dark-3);
  transition: transform 0.25s, box-shadow 0.25s;
}
.profile-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); }
.profile-image { position: relative; overflow: hidden; aspect-ratio: 3 / 4; }
.profile-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 48%); }
.profile-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.4s; }
.profile-card:hover .profile-image img { transform: scale(1.045); }
.profile-info { padding: 14px 16px 17px; }
.profile-info p { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 12px; line-height: 1.5; }
.profile-name-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.profile-name-row h3 { display: flex; align-items: center; gap: 6px; margin: 0; font-family: var(--display); font-size: 16px; }
.verified { display: inline-grid; width: 16px; height: 16px; place-items: center; border-radius: 50%; background: var(--pink); color: var(--white); font-size: 10px; }
.heart-btn { display: grid; flex: 0 0 auto; width: 32px; height: 32px; padding: 8px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50%; background: rgba(255, 255, 255, 0.05); color: rgba(255, 255, 255, 0.65); cursor: pointer; }
.heart-btn svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.heart-btn:hover, .heart-btn.liked { border-color: var(--pink); background: rgba(233, 30, 140, 0.15); color: var(--pink); }
.heart-btn.liked svg { fill: currentColor; }
.profile-info .location { display: flex; align-items: center; gap: 5px; margin-bottom: 6px; color: var(--gray); }
.location span { color: var(--pink); font-size: 8px; }

.features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; margin-top: 50px; }
.feature-item { position: relative; text-align: center; }
.feature-item:not(:last-child)::after { content: ""; position: absolute; top: 68px; right: -16px; width: 1px; height: 82px; background: rgba(0, 0, 0, 0.1); }
.feature-icon { display: grid; width: 54px; height: 54px; margin: 0 auto 16px; place-items: center; border: 1px solid rgba(233, 30, 140, 0.3); border-radius: 50%; color: var(--pink); }
.feature-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.feature-item h3 { margin: 0 0 8px; font-family: var(--display); font-size: 14px; }
.feature-item p { margin: 0; color: #666; font-size: 13px; line-height: 1.6; }

.cities-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-bottom: 40px; }
.city-card { position: relative; overflow: hidden; min-width: 0; aspect-ratio: 2 / 3; border-radius: 12px; }
.city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.city-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.12) 65%, transparent); transition: background 0.3s; }
.city-info { position: absolute; inset: auto 0 0; padding: 16px; }
.city-info h3 { margin: 0 0 5px; font-family: var(--display); font-size: 14px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.city-info p { min-height: 32px; margin: 0 0 11px; color: rgba(255, 255, 255, 0.72); font-size: 11px; line-height: 1.45; }
.city-arrow { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 50%; transition: background 0.2s, border-color 0.2s; }
.city-card:hover img { transform: scale(1.08); }
.city-card:hover .city-overlay { background: linear-gradient(0deg, rgba(233, 30, 140, 0.62), rgba(0, 0, 0, 0.38) 65%, transparent); }
.city-card:hover .city-arrow { border-color: var(--pink); background: var(--pink); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.testimonial-card { position: relative; margin: 0; padding: 28px; border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 16px; background: var(--white); box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06); }
.quote-mark { display: block; height: 42px; color: var(--pink); font-family: Georgia, serif; font-size: 58px; font-weight: 800; line-height: 1; }
.testimonial-card blockquote { min-height: 72px; margin: 0 0 20px; color: #444; font-size: 14px; font-style: italic; line-height: 1.7; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 12px; }
.testimonial-card figcaption img { width: 46px; height: 46px; border: 2px solid var(--pink); border-radius: 50%; object-fit: cover; }
.testimonial-card strong, .testimonial-card small { display: block; }
.testimonial-card strong { margin-bottom: 3px; font-family: var(--display); font-size: 14px; }
.testimonial-card small { color: var(--gray); font-size: 12px; }

.app-section { overflow: hidden; background: #0c0c0f; }
.app-section-intro, .home-blog-intro { max-width: 680px; margin: 16px auto 0; line-height: 1.7; }
.app-section-intro { color: rgba(255, 255, 255, 0.62); }
.app-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr); gap: clamp(36px, 6vw, 78px); align-items: center; }
.app-visual { position: relative; margin: 0; }
.app-visual::before { content: ""; position: absolute; inset: 12% 8%; border-radius: 50%; background: rgba(233, 30, 140, 0.2); filter: blur(70px); }
.app-visual img { position: relative; z-index: 1; display: block; width: 100%; height: auto; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42); }
.app-tools-list { display: grid; gap: 4px; }
.app-tool { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 16px; padding: 19px 0; border-bottom: 1px solid var(--border-dark); }
.app-tool:first-child { border-top: 1px solid var(--border-dark); }
.app-tool-icon { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(233, 30, 140, 0.42); border-radius: 13px; background: rgba(233, 30, 140, 0.08); color: var(--pink); }
.app-tool-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.app-tool h3 { margin: 0 0 6px; color: var(--white); font-family: var(--display); font-size: 16px; }
.app-tool p { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 13px; line-height: 1.6; }

.home-blog-section { background: var(--cream); color: #111; }
.home-blog-intro { color: #666; }
.home-blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin: 44px 0 38px; }
.home-blog-card { overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 16px; background: var(--white); box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.home-blog-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09); }
.home-blog-image { display: block; overflow: hidden; aspect-ratio: 16 / 9; background: #171717; }
.home-blog-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.home-blog-card:hover .home-blog-image img { transform: scale(1.035); }
.home-blog-copy { padding: 22px; }
.home-blog-copy > p { margin: 0 0 9px; color: var(--pink); font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.home-blog-copy h3 { margin: 0 0 11px; font-family: var(--display); font-size: 19px; line-height: 1.35; }
.home-blog-copy h3 a { color: #171717; text-decoration: none; }
.home-blog-copy > span { display: block; min-height: 63px; color: #666; font-size: 13px; line-height: 1.6; }
.home-blog-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: #171717; font-size: 12px; font-weight: 700; text-decoration: none; }
.home-blog-link > span { color: var(--pink); transition: transform 0.2s ease; }
.home-blog-link:hover { color: var(--pink); }
.home-blog-link:hover > span { transform: translateX(4px); }

.faq-section { background: var(--dark-2); color: var(--white); }
.faq-layout { display: grid; grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.45fr); gap: clamp(42px, 7vw, 90px); align-items: start; }
.faq-intro { position: sticky; top: 110px; }
.faq-intro .section-title { max-width: 430px; text-transform: none; }
.faq-intro > p:not(.section-label) { max-width: 430px; margin: 20px 0 24px; color: rgba(255, 255, 255, 0.66); font-size: 15px; line-height: 1.75; }
.faq-intro > a { display: inline-flex; align-items: center; gap: 9px; color: var(--pink); font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; text-decoration: none; }
.faq-intro > a span { transition: transform 0.2s ease; }
.faq-intro > a:hover span { transform: translateX(4px); }
.faq-list { border-top: 1px solid var(--border-dark); }
.faq-item { border-bottom: 1px solid var(--border-dark); }
.faq-item summary { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 22px; padding: 20px 4px; color: var(--white); font-family: var(--display); font-size: clamp(16px, 1.7vw, 21px); font-weight: 700; line-height: 1.35; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; display: grid; flex: 0 0 auto; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(233, 30, 140, 0.55); border-radius: 50%; color: var(--pink); font-family: Inter, sans-serif; font-size: 22px; font-weight: 400; line-height: 1; transition: transform 0.2s ease, background 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); background: rgba(233, 30, 140, 0.12); }
.faq-item summary:hover { color: var(--pink); }
.faq-item summary:focus-visible { outline: 2px solid var(--pink); outline-offset: 5px; }
.faq-answer { max-width: 720px; padding: 0 58px 24px 4px; }
.faq-answer p { margin: 0 0 12px; color: rgba(255, 255, 255, 0.68); font-size: 14px; line-height: 1.75; }
.faq-answer p:last-child { margin-bottom: 0; }

.cta-section { position: relative; display: flex; min-height: 500px; align-items: center; overflow: hidden; background: var(--dark); }
.cta-bg { opacity: 0.52; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, 0.94) 35%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.08)); }
.cta-content { position: relative; z-index: 2; width: min(100%, var(--container)); margin-inline: auto; padding: 80px 40px; }
.cta-headline { margin: 0 0 16px; font-family: var(--display); font-size: clamp(48px, 7vw, 88px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.95; text-transform: uppercase; }
.cta-copy { margin: 0 0 28px; color: rgba(255, 255, 255, 0.82); font-family: var(--display); font-size: 18px; font-weight: 500; }
.cta-trust { gap: 20px; margin-top: 20px; }

.site-footer { padding: 64px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.06); background: #080808; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 12px; font-size: 24px; }
.footer-brand > p { max-width: 220px; margin: 0 0 20px; color: rgba(255, 255, 255, 0.52); font-size: 13px; line-height: 1.6; }
.footer-col h2 { margin: 0 0 16px; color: rgba(255, 255, 255, 0.44); font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-col ul { padding: 0; margin: 0; list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.58); font-size: 13px; text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.34); font-size: 12px; text-align: center; }

/* Interior pages */
.page-main { background: var(--cream); color: #171717; }
.page-hero {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: end start;
  overflow: hidden;
  background: #090909;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.2)), var(--page-image, url("../assets/images/hero.webp")) center / cover;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero:has(.page-hero-bg)::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.2));
}
.page-hero-content { position: relative; z-index: 2; width: min(100%, var(--container)); margin-inline: auto; padding: 125px 40px 64px; }
.page-hero .section-label { text-align: left; }
.page-hero h1 { max-width: 900px; margin: 0 0 16px; color: var(--white); font-family: var(--display); font-size: clamp(38px, 6vw, 72px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; text-transform: uppercase; }
.page-hero p:last-child { max-width: 700px; margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 17px; line-height: 1.65; }
.breadcrumbs { margin-bottom: 18px; color: rgba(255, 255, 255, 0.62); font-size: 12px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--pink); }
.page-section { padding: 72px 0; }
.content-grid { display: grid; grid-template-columns: minmax(0, 2.2fr) minmax(240px, 0.8fr); gap: 52px; align-items: start; }
.prose { max-width: 820px; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin: 48px 0 16px; font-family: var(--display); font-size: clamp(25px, 3vw, 36px); letter-spacing: -0.025em; line-height: 1.15; }
.prose h3 { margin: 30px 0 10px; font-family: var(--display); font-size: 20px; line-height: 1.3; }
.prose p, .prose li { color: #444; font-size: 16px; line-height: 1.78; }
.prose p { margin: 0 0 20px; }
.prose ul, .prose ol { margin: 0 0 24px; padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose a { color: var(--pink-dark); font-weight: 600; text-underline-offset: 3px; }
.prose strong { color: #171717; }
.prose .lead { color: #222; font-size: 19px; line-height: 1.7; }
.key-box, .note-box, .contact-card, .sidebar-card { padding: 26px; border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 16px; background: #fff; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05); }
.key-box { margin: 30px 0; border-left: 4px solid var(--pink); }
.key-box h2, .note-box h2 { margin-top: 0; font-size: 22px; }
.key-box ul { margin-bottom: 0; }
.note-box { margin: 28px 0; background: #fff8fc; }
.note-box p:last-child { margin-bottom: 0; }
.sidebar-card { position: sticky; top: 88px; }
.sidebar-card h2 { margin: 0 0 16px; font-family: var(--display); font-size: 17px; text-transform: uppercase; }
.sidebar-card ul { padding: 0; margin: 0; list-style: none; }
.sidebar-card li + li { border-top: 1px solid rgba(0, 0, 0, 0.08); }
.sidebar-card a { display: block; padding: 11px 0; color: #444; font-size: 14px; line-height: 1.4; text-decoration: none; }
.sidebar-card a:hover { color: var(--pink-dark); }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: -4px 0 28px; color: #777; font-size: 13px; }
.source-list { padding-top: 18px; border-top: 1px solid rgba(0, 0, 0, 0.1); }
.source-list li { font-size: 14px; word-break: break-word; }
.related-grid, .blog-grid, .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.07); border-radius: 16px; background: #fff; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05); }
.blog-card img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-intro { max-width: 900px; margin: 0 auto 34px; text-align: center; }
.blog-card .tag { margin: 0 0 10px; color: var(--pink-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.blog-card h2, .blog-card h3 { margin: 0 0 12px; font-family: var(--display); font-size: 21px; line-height: 1.25; }
.blog-card p { margin: 0 0 18px; color: #666; font-size: 14px; line-height: 1.65; }
.text-link { color: var(--pink-dark); font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-decoration: none; text-transform: uppercase; }
.contact-card h2 { margin: 0 0 10px; font-family: var(--display); font-size: 21px; }
.contact-card p { margin: 0; color: #666; font-size: 14px; line-height: 1.7; }
.contact-card a, .page-hero a[href^="mailto:"] { color: var(--pink-light); font-weight: 700; text-underline-offset: 3px; }
.legal-date { display: inline-flex; margin-bottom: 28px; padding: 8px 13px; border-radius: 999px; background: #f1e9e2; color: #6a625c; font-size: 12px; font-weight: 600; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.legal-nav a { padding: 9px 14px; border: 1px solid rgba(0, 0, 0, 0.12); border-radius: 999px; color: #333; font-size: 13px; text-decoration: none; }
.blog-cta { margin-top: 50px; padding: 34px; border-radius: 18px; background: #111; color: #fff; }
.blog-cta h2 { margin-top: 0; color: #fff; }
.blog-cta p { color: rgba(255, 255, 255, 0.7); }
.compact-footer .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

.motion-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.motion-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 80ms !important; }
.delay-2 { transition-delay: 160ms !important; }
.delay-3 { transition-delay: 240ms !important; }
.delay-4 { transition-delay: 320ms !important; }
.delay-5 { transition-delay: 400ms !important; }
@keyframes fade-in-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-up { animation: fade-in-up 0.7s ease both; }

@media (max-width: 1024px) {
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 22px; }
  .feature-item:nth-child(3)::after { display: none; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  .container, .header-inner, .hero-content, .cta-content { padding-inline: 20px; }
  .desktop-nav { display: none; }
  .hamburger { display: block; width: 44px; height: 44px; padding: 12px 11px; }
  .hero { min-height: 620px; }
  .hero-content { padding-top: 100px; }
  .hero-bg { object-position: 63% center; }
  .hero-headline { max-width: 520px; font-size: clamp(38px, 10vw, 60px); }
  .profiles-section, .features-section, .cities-section, .testimonials-section, .app-section, .home-blog-section, .faq-section { padding: 66px 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(3)::after { display: block; }
  .feature-item:nth-child(even)::after { display: none; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card blockquote { min-height: auto; }
  .app-layout { grid-template-columns: 1fr; gap: 34px; }
  .app-visual { max-width: 720px; margin-inline: auto; }
  .home-blog-grid { grid-template-columns: 1fr; }
  .home-blog-card { display: grid; grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr); }
  .home-blog-image { height: 100%; aspect-ratio: auto; }
  .home-blog-copy > span { min-height: 0; }
  .faq-layout { grid-template-columns: 1fr; gap: 34px; }
  .faq-intro { position: static; }
  .faq-intro .section-title, .faq-intro > p:not(.section-label) { max-width: 640px; }
  .cta-content { padding-block: 70px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-content { padding: 110px 20px 52px; }
  .content-grid { grid-template-columns: 1fr; gap: 36px; }
  .sidebar-card { position: static; }
  .blog-grid, .related-grid, .contact-grid { grid-template-columns: 1fr; }
  .compact-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .login-link { display: none; }
  .nav-actions { gap: 6px; }
  .nav-actions > .btn-pink { display: none; }
  .hero { min-height: 680px; align-items: flex-end; }
  .hero-bg { object-position: 66% center; opacity: 0.52; }
  .hero-overlay { background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.3)), linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 52%); }
  .hero-content { padding-bottom: 48px; }
  .eyebrow { font-size: 11px; }
  .hero-headline { font-size: clamp(32px, 9.5vw, 44px); }
  .hero-ctas { align-items: flex-start; flex-direction: column; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
  .profile-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .profile-card { border-radius: 11px; }
  .profile-info { padding: 11px 10px 13px; }
  .profile-name-row h3 { font-size: 13px; }
  .heart-btn { width: 44px; height: 44px; padding: 12px; }
  .profile-info p { font-size: 12px; line-height: 1.45; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item::after { display: none !important; }
  .feature-item { max-width: 330px; margin-inline: auto; }
  .cities-grid { gap: 10px; }
  .city-info { padding: 12px; }
  .city-info h3 { font-size: 12px; }
  .city-info p { font-size: 12px; line-height: 1.45; }
  .cta-bg { object-position: 65% center; opacity: 0.42; }
  .cta-overlay { background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.28)); }
  .cta-headline { font-size: 46px; }
  .section-title { font-size: 32px; }
  .app-visual img { border-radius: 16px; }
  .app-tool { grid-template-columns: 42px minmax(0, 1fr); gap: 13px; }
  .home-blog-grid { gap: 16px; }
  .home-blog-card { display: block; }
  .home-blog-image { height: auto; aspect-ratio: 16 / 9; }
  .home-blog-copy { padding: 19px; }
  .home-blog-copy h3 { font-size: 17px; }
  .faq-item summary { min-height: 70px; padding-block: 18px; font-size: 16px; }
  .faq-item summary::after { width: 30px; height: 30px; font-size: 20px; }
  .faq-answer { padding: 0 42px 22px 4px; }
  .faq-answer p { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .compact-footer .footer-grid { grid-template-columns: 1fr; }
  .page-section { padding: 55px 0; }
  .page-hero { min-height: 350px; }
  .page-hero h1 { font-size: 34px; }
  .prose p, .prose li { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .motion-ready .reveal { opacity: 1; transform: none; }
}
