:root {
  --rose: #e7335b;
  --rose-dark: #b91f42;
  --teal: #078ca8;
  --ink: #1f2733;
  --muted: #5f6874;
  --line: #e8edf1;
  --soft: #f7f4f2;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(31, 39, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(31, 39, 51, 0.66);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.static-header {
  position: static;
  margin-top: 18px;
  background: #293241;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
}

.brand-mark img,
.footer-brand img {
  display: block;
  width: auto;
  height: 76px;
  max-width: min(360px, 48vw);
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background: #293241;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("hero-couple.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.94);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(31, 39, 51, 0.86), rgba(31, 39, 51, 0.48) 44%, rgba(31, 39, 51, 0.1)),
    linear-gradient(180deg, rgba(31, 39, 51, 0.24), rgba(31, 39, 51, 0.34));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  min-height: 740px;
  margin: 0 auto;
  padding: 130px 0 56px;
}

.hero-copy {
  width: 100%;
  max-width: 650px;
  color: var(--white);
}

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

.hero-copy .eyebrow,
.final-cta .eyebrow {
  color: #ffb6c6;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 9ch;
  margin: 0;
  font-size: 4.4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: 2.25rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.hero-copy p {
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-lede {
  margin: 22px 0 10px;
  font-size: 1.55rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
}

.button.primary,
.final-cta .button.primary {
  background: var(--rose);
  color: var(--white);
}

.button.primary:hover,
.final-cta .button.primary:hover {
  background: var(--rose-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-row article {
  padding: 34px 24px;
  background: var(--white);
  text-align: center;
}

.trust-icon {
  display: inline-grid;
  place-items: center;
  min-width: 72px;
  min-height: 72px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--white);
  font-weight: 800;
}

.trust-row h2 {
  font-size: 1.1rem;
}

.trust-row p,
.content-copy,
.section-card p,
.steps p,
.faq-grid p,
.legal-content p {
  color: var(--muted);
}

.content-band,
.how-section,
.faq-section,
.legal-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.image-feature {
  min-height: 320px;
  margin-top: 44px;
  border-radius: 8px;
  background-image:
    linear-gradient(90deg, rgba(31, 39, 51, 0.22), rgba(31, 39, 51, 0.02)),
    url("dating-cafe.webp");
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}

.image-feature-one {
  background-position: center;
  background-size: cover;
}

.image-feature-two {
  grid-column: 1 / -1;
  min-height: 390px;
  margin-top: 0;
  background-image:
    linear-gradient(90deg, rgba(31, 39, 51, 0.18), rgba(31, 39, 51, 0.01)),
    url("dating-walk.webp");
  background-position: center top;
  background-size: cover;
}

.split-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 76px;
}

.section-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card {
  background: var(--soft);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

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

.steps article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #e8f5f8;
  color: var(--teal);
  font-weight: 800;
}

.faq-section {
  padding-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

details {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 54px max(24px, calc((100vw - 1120px) / 2));
  background: #293241;
  color: var(--white);
}

.final-cta p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px max(16px, calc((100vw - 1120px) / 2));
  background: #151b24;
  color: var(--white);
}

.footer-brand img {
  height: 58px;
  max-width: 280px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h1 {
  max-width: none;
  font-size: 3rem;
}

.legal-content h2 {
  margin-top: 32px;
  font-size: 1.5rem;
}

@media (max-width: 920px) {
  .site-header,
  .site-footer,
  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links,
  .site-footer nav {
    flex-wrap: wrap;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 170px;
  }

  h1 {
    max-width: 11ch;
    font-size: 3.35rem;
  }

  .trust-row,
  .content-grid,
  .split-section,
  .steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 10px;
    align-items: center;
  }

  .brand {
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .brand-mark img {
    height: 64px;
    max-width: calc(100vw - 40px);
  }

  .nav-links {
    display: none;
  }

  .hero-media {
    background-position: 62% center;
    background-size: cover;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(31, 39, 51, 0.9), rgba(31, 39, 51, 0.72));
  }

  .hero-inner {
    width: calc(100% - 24px);
    padding: 190px 0 34px;
  }

  .hero-inner > *,
  .hero-copy {
    min-width: 0;
    max-width: calc(100vw - 24px);
  }

  h1 {
    max-width: 10ch;
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-lede {
    font-size: 1.25rem;
  }

  .hero-copy p {
    width: auto;
    max-width: 32ch;
    font-size: 1rem;
  }

  .hero-copy .hero-lede {
    max-width: 28ch;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .image-feature {
    min-height: 220px;
    margin-top: 30px;
  }

  .image-feature-one {
    background-position: center;
    background-size: cover;
  }

  .image-feature-two {
    min-height: 260px;
    background-position: center top;
    background-size: cover;
  }

  .section-card,
  .steps article,
  details {
    padding: 22px;
  }

  .content-band,
  .how-section,
  .faq-section,
  .legal-page {
    width: calc(100% - 24px);
    padding: 54px 0;
  }

  .split-section {
    width: calc(100% - 24px);
    padding-bottom: 54px;
  }

  .final-cta {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .site-footer {
    align-items: flex-start;
  }

  .legal-content h1 {
    font-size: 2.35rem;
  }
}
