:root {
  --wine: #c64b12;
  --wine-dark: #98271f;
  --rose: #ec8800;
  --blush: #fff0d5;
  --cream: #fffaf0;
  --gold: #f8b900;
  --ink: #2b1c17;
  --muted: #766962;
  --line: rgba(3, 2, 1, 0.15);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 1000;
  padding: 12px 18px;
  background: #fff;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 24px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font: 700 25px var(--serif);
  letter-spacing: -.5px;
  color: var(--wine);
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--wine);
}

.site-nav .nav-cta {
  padding: 12px 20px;
  border: 1px solid var(--wine);
  border-radius: 99px;
  color: var(--wine);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--wine);
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 150px 0 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 78% 30%, #ffe2a8 0, transparent 33%), linear-gradient(135deg, #fffaf0 35%, #fff2dc 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(to top right, var(--wine) 49%, transparent 50%);
  opacity: .045;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 70px;
  z-index: 2;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.eyebrow>span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: #f3c7b4;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -2.3px;
}

h1 {
  font-size: clamp(54px, 6.1vw, 84px);
}

h1 em,
h2 em {
  color: var(--wine);
  font-weight: 600;
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  border: 0;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--wine-dark), var(--rose) 65%, var(--gold));
  color: #fff;
  box-shadow: 0 12px 30px rgba(198, 75, 18, .24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #7f201a, var(--wine), #e9a900);
  transform: translateY(-2px);
}

.text-link {
  color: var(--wine);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.trust-row {
  display: flex;
  margin-top: 54px;
}

.trust-row div {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.trust-row div:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-row strong {
  font: 700 19px var(--serif);
  color: var(--wine);
}

.trust-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  z-index: 3;
  width: 278px;
  padding: 10px;
  border: 3px solid #542018;
  border-radius: 43px;
  background: #291713;
  box-shadow: 0 36px 70px rgba(127, 44, 13, .24);
  transform: rotate(3deg);
}

.phone-top {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 50%;
  width: 82px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 30px;
  background: #291713;
}

.phone-screen {
  overflow: hidden;
  min-height: 534px;
  border-radius: 32px;
  background: #fffaf6;
}

.app-bar {
  display: flex;
  justify-content: space-between;
  padding: 31px 18px 13px;
  color: var(--wine);
  font: 18px var(--serif);
}

.profile-photo {
  position: relative;
  height: 316px;
  margin: 0 12px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(#e7b8ae 0 55%, #77324a 55%);
}

.profile-photo::before,
.profile-photo::after {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: #d99a8b;
  filter: blur(1px);
  opacity: .55;
}

.profile-photo::before {
  top: 15px;
  left: -20px;
}

.profile-photo::after {
  top: 50px;
  right: -30px;
}

.arch {
  position: absolute;
  inset: 28px 40px -20px;
  border: 11px solid rgba(255, 248, 236, .65);
  border-bottom: 0;
  border-radius: 100px 100px 0 0;
}

.couple {
  position: absolute;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
  inset: 83px 0 0;
}

.couple span {
  position: relative;
  display: block;
  width: 60px;
  height: 157px;
  border-radius: 38px 38px 10px 10px;
  background: linear-gradient(145deg, #5b1832, #c67a77);
}

.couple span::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -36px;
  width: 40px;
  height: 48px;
  border-radius: 50%;
  background: #9b5a4d;
}

.couple span:first-child {
  height: 142px;
  background: linear-gradient(145deg, #eee1d3, #b5907e);
}

.photo-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .84);
  color: var(--wine);
  font-size: 9px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.profile-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 17px 7px;
}

.profile-info h3 {
  margin: 0;
  font: 700 16px var(--serif);
}

.profile-info p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.verified {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-size: 10px;
}

.match-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 10px;
}

.match-actions button {
  width: 38px;
  height: 38px;
  border: 1px solid #ead8d6;
  border-radius: 50%;
  background: #fff;
  color: var(--rose);
  font-size: 19px;
}

.match-actions .heart {
  width: 47px;
  height: 47px;
  margin-top: -5px;
  background: var(--wine);
  color: #fff;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(110, 25, 59, .13);
  border-radius: 50%;
}

.orbit-one {
  width: 470px;
  height: 470px;
}

.orbit-two {
  width: 570px;
  height: 570px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 9px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 35px rgba(81, 31, 50, .13);
  backdrop-filter: blur(12px);
}

.floating-card>span {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--wine);
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card b {
  font-size: 11px;
}

.floating-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}

.card-match {
  top: 90px;
  left: -10px;
}

.card-vendor {
  right: -12px;
  bottom: 100px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .5;
}

.glow-one {
  width: 240px;
  height: 240px;
  right: -80px;
  top: 20px;
  background: #f1c7bd;
}

.glow-two {
  width: 170px;
  height: 170px;
  left: 35%;
  bottom: -80px;
  background: #f3d7bb;
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  background: linear-gradient(90deg, var(--wine-dark), var(--wine), var(--rose));
  color: #fff7e6;
}

.marquee div {
  width: max-content;
  display: flex;
  gap: 34px;
  align-items: center;
  padding-left: 2vw;
  font: 600 13px var(--serif);
  letter-spacing: .6px;
}

.marquee i {
  color: #d8a75a;
  font-size: 8px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

h2 {
  font-size: clamp(39px, 4.6vw, 62px);
}

.section-heading>p:last-child {
  color: var(--muted);
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  position: relative;
  min-height: 440px;
  padding: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border: 45px solid currentColor;
  border-radius: 50%;
  opacity: .05;
}

.match-card {
  background: #fff;
  color: var(--wine);
}

.vendor-card {
  background: linear-gradient(145deg, #fff4df, #ffe3aa);
  color: #9b3b15;
}

.feature-number {
  position: absolute;
  right: 28px;
  top: 20px;
  font: 600 70px var(--serif);
  opacity: .07;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 35px;
  border-radius: 50%;
  background: currentColor;
  color: #fff;
  font-size: 25px;
}

.feature-card h3 {
  max-width: 370px;
  margin: 0 0 15px;
  color: var(--ink);
  font: 600 31px/1.17 var(--serif);
}

.feature-card>p {
  max-width: 450px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-card ul {
  display: grid;
  gap: 11px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.feature-card li::before {
  content: "✓";
  margin-right: 10px;
  color: currentColor;
}

.safety-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #8f241e 0%, #bd3e16 58%, #df7400 100%);
  color: #fff;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: center;
}

.safety-copy>p:nth-of-type(2) {
  max-width: 570px;
  color: #d3bfc7;
  line-height: 1.75;
}

.safety-points {
  display: grid;
  gap: 23px;
  margin-top: 35px;
}

.safety-points>div {
  display: flex;
  gap: 16px;
  align-items: center;
}

.safety-points>div>span {
  display: grid;
  flex: 0 0 45px;
  place-items: center;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: #f2c49f;
  font-weight: 700;
}

.safety-points p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.safety-points small {
  margin-top: 4px;
  color: #bfa8b1;
}

.safety-card {
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 24px 24px 0 rgba(255, 255, 255, .025);
}

.shield {
  display: grid;
  place-items: center;
  width: 54px;
  height: 59px;
  margin-bottom: 24px;
  clip-path: polygon(50% 0, 94% 18%, 85% 75%, 50% 100%, 15% 75%, 6% 18%);
  background: #f0c29d;
  color: var(--wine-dark);
  font-size: 22px;
  font-weight: 800;
}

.safety-card h3 {
  margin: 0;
  font: 600 30px var(--serif);
}

.safety-card p {
  color: #d3bfc7;
  font-size: 14px;
  line-height: 1.7;
}

.safety-card a {
  display: inline-flex;
  gap: 14px;
  margin-top: 12px;
  color: #f0c29d;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.privacy-section {
  background: #fffdf9;
}

.privacy-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.privacy-intro {
  position: sticky;
  top: 100px;
}

.privacy-intro>p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.privacy-intro .updated {
  margin-top: 30px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.policy-list {
  border-top: 1px solid var(--line);
}

.policy-list details {
  border-bottom: 1px solid var(--line);
}

.policy-list summary {
  display: grid;
  grid-template-columns: 45px 1fr 20px;
  align-items: center;
  gap: 10px;
  padding: 24px 4px;
  cursor: pointer;
  font: 600 18px var(--serif);
  list-style: none;
}

.policy-list summary::-webkit-details-marker {
  display: none;
}

.policy-list summary span {
  color: var(--rose);
  font: 700 10px var(--sans);
}

.policy-list summary i {
  color: var(--wine);
  font: normal 22px var(--sans);
  transition: .2s;
}

.policy-list details[open] summary i {
  transform: rotate(45deg);
}

.policy-list details div {
  padding: 0 35px 24px 59px;
}

.policy-list details p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.policy-list details a {
  color: var(--wine);
  font-weight: 700;
}

.download-section {
  padding: 20px 0 100px;
  background: #fffdf9;
}

.download-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 70px;
  background: linear-gradient(125deg, var(--wine-dark) 0, var(--wine) 52%, var(--gold) 140%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.download-card::after {
  content: "♡";
  position: absolute;
  right: 40%;
  bottom: -100px;
  color: rgba(255, 255, 255, .06);
  font: 250px var(--serif);
}

.download-card h2 {
  font-size: clamp(35px, 4vw, 52px);
}

.store-buttons {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  min-width: 230px;
}

.store-buttons a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 18px;
  border-radius: 6px;
  background: #241511;
  color: #fff;
  text-decoration: none;
}

.store-icon {
  font-size: 22px;
  color: var(--gold);
}

.store-buttons small {
  display: flex;
  flex-direction: column;
  font-size: 8px;
  letter-spacing: .5px;
}

.store-buttons b {
  font-size: 17px;
  letter-spacing: 0;
}

footer {
  padding: 75px 0 25px;
  background: #351914;
  color: #c9aaa0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr 1fr;
  gap: 40px;
}

.footer-brand {
  color: #ffe6bd;
}

.footer-grid>div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-grid b {
  margin-bottom: 8px;
  color: #fff0d5;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.footer-grid a:not(.brand) {
  color: #c9aaa0;
  font-size: 12px;
  text-decoration: none;
}

.footer-grid p {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 10px;
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: .12s;
}

@media (max-width: 900px) {
  .site-header {
    padding: 18px 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf4;
    box-shadow: 0 16px 40px rgba(60, 21, 36, .16);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .site-nav .nav-cta {
    margin-top: 7px;
    text-align: center;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    margin: auto;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    margin-top: -10px;
  }

  .card-match {
    left: 8%;
  }

  .card-vendor {
    right: 7%;
  }

  .safety-grid,
  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .privacy-intro {
    position: static;
    max-width: 600px;
  }

  .download-card {
    padding: 55px 40px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid>div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: auto;
    padding: 120px 0 75px;
  }

  h1 {
    font-size: 48px;
    letter-spacing: -1.6px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .trust-row div {
    padding: 0 14px;
  }

  .hero-visual {
    min-height: 500px;
    transform: scale(.9);
    margin: -25px -20px -45px;
  }

  .orbit-two {
    width: 480px;
    height: 480px;
  }

  .card-match {
    left: 0;
  }

  .card-vendor {
    right: 0;
  }

  .section,
  .safety-section {
    padding: 78px 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
    padding: 35px 28px;
  }

  .feature-card h3 {
    font-size: 27px;
  }

  .safety-grid {
    gap: 45px;
  }

  .safety-card {
    padding: 32px 25px;
  }

  .privacy-layout {
    gap: 38px;
  }

  .policy-list summary {
    grid-template-columns: 34px 1fr 18px;
    font-size: 16px;
  }

  .policy-list details div {
    padding-left: 38px;
  }

  .download-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 42px 26px;
  }

  .store-buttons {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid>div:first-child,
  .footer-grid>div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button {
    transition: none;
  }
}