@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --pink: #ff397f;
  --pink-soft: #ff6da3;
  --purple: #9d4edd;
  --violet: #6f3bf5;
  --bg: #090613;
  --bg-soft: #120b21;
  --card: #171126;
  --card-light: #211735;
  --text: #fffafd;
  --muted: #aaa2ba;
  --border: rgba(255,255,255,.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 8%, rgba(124,58,237,.19), transparent 28rem),
    radial-gradient(circle at 2% 48%, rgba(255,23,107,.13), transparent 32rem),
    var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(5vw, 24px);
  background: rgba(9,6,19,.76);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { border-radius: 12px; object-fit: cover; }
.brand > span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -.05em;
}
.brand > span span { color: var(--pink); }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { color: var(--muted); font-size: .76rem; font-weight: 700; white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  padding: 11px 18px;
  border-radius: 13px;
  color: #fff;
  background: var(--pink);
}

.hero {
  width: min(1180px, 90%);
  min-height: 100vh;
  margin: auto;
  padding: 132px 0 70px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: #d8d1e2;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span { width: 24px; height: 2px; background: var(--pink); border-radius: 9px; }
.hero h1, h2 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -.055em;
  line-height: .98;
}
.hero h1 { max-width: 700px; font-size: clamp(3.8rem, 7vw, 6.7rem); }
.hero h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(100deg, var(--pink), #ff6c9f 42%, #b552f0);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-copy > p {
  max-width: 570px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.btn-primary {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 10px 24px;
  border-radius: 18px;
  background: linear-gradient(120deg, var(--pink), #ec258f);
  box-shadow: 0 14px 40px rgba(255,57,127,.28);
  font-size: 1rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(255,57,127,.36); }
.btn-primary small { display: block; margin-bottom: -3px; font-size: .62rem; font-weight: 600; opacity: .8; }
.play-mark { font-size: 1.25rem; }
.btn-secondary {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  color: #ded8e7;
  border: 1px solid var(--border);
  border-radius: 18px;
  font-size: .9rem;
  font-weight: 700;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 34px; }
.trust-row span { color: #9b93aa; font-size: .75rem; font-weight: 700; }
.trust-row span::before { content: '✓'; margin-right: 7px; color: var(--pink); }

.hero-visual { position: relative; min-height: 620px; display: grid; place-items: center; }
.glow { position: absolute; border-radius: 50%; filter: blur(10px); }
.glow-one { width: 460px; height: 460px; background: rgba(157,78,221,.13); }
.glow-two { width: 260px; height: 260px; right: 0; bottom: 20px; background: rgba(255,57,127,.16); }
.phone {
  position: relative;
  z-index: 2;
  width: min(340px, 78vw);
  height: 600px;
  padding: 24px 18px 16px;
  border: 7px solid #292039;
  border-radius: 48px;
  background: #0d0917;
  box-shadow: 0 34px 90px rgba(0,0,0,.55);
  transform: rotate(3deg);
}
.phone::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 80px;
  height: 20px;
  border-radius: 20px;
  background: #050309;
  transform: translateX(-50%);
}
.phone-top { height: 54px; display: flex; justify-content: space-between; align-items: center; font-weight: 800; }
.phone-top b { padding: 6px 12px; border-radius: 20px; background: #21172d; color: #ffc22f; }
.profile-card { overflow: hidden; border-radius: 28px; background: var(--card); border: 1px solid var(--border); }
.profile-art {
  height: 390px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,130,178,.7), transparent 26%),
    linear-gradient(155deg, #7d2ce0, #e72583 55%, #411227);
}
.mini-heart { font-size: 9rem; color: rgba(255,255,255,.9); text-shadow: 0 15px 50px rgba(46,3,29,.4); }
.profile-copy { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 18px; }
.profile-copy strong, .profile-copy small { display: block; }
.profile-copy strong { font-size: .9rem; }
.profile-copy small { margin-top: 3px; color: var(--muted); font-size: .68rem; }
.profile-copy button { width: 43px; height: 43px; border: 0; border-radius: 50%; color: white; background: var(--pink); font-size: 1.2rem; }
.phone-tabs { display: flex; justify-content: space-around; align-items: center; padding: 16px 4px 0; color: #746b82; }
.phone-tabs b { width: 38px; height: 34px; display: grid; place-items: center; border-radius: 12px; color: white; background: var(--pink); }
.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 17px;
  background: rgba(29,20,45,.9);
  box-shadow: 0 18px 40px rgba(0,0,0,.32);
  backdrop-filter: blur(14px);
}
.float-card > span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: var(--pink); }
.float-card b, .float-card small { display: block; }
.float-card b { font-size: .78rem; }
.float-card small { color: var(--muted); font-size: .65rem; }
.match-card { top: 120px; left: -30px; }
.safe-card { right: -25px; bottom: 90px; }
.safe-card > span { background: var(--violet); }

.feature-section, .safety-section { width: min(1180px, 90%); margin: auto; padding: 120px 0; }
.section-heading { margin-bottom: 44px; }
.section-heading > span { color: var(--pink); font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.section-heading h2, .safety-copy h2, .download-section h2 { margin: 12px 0 16px; font-size: clamp(2.8rem, 5vw, 4.8rem); }
.section-heading p, .safety-copy > p, .download-section p { color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 18px; }
.feature-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(34,25,52,.94), rgba(18,12,31,.94));
}
.feature-card h3 { margin: 22px 0 9px; font-family: 'Outfit', sans-serif; font-size: 1.45rem; }
.feature-card p { max-width: 290px; color: var(--muted); font-size: .9rem; }
.feature-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; color: white; background: var(--violet); font-size: 1.4rem; }
.feature-icon.pink { background: var(--pink); }
.feature-icon.purple { background: var(--purple); }
.radar { position: absolute; right: -60px; bottom: -80px; width: 280px; height: 280px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.11); }
.radar i { position: absolute; width: 66%; height: 66%; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.radar i:nth-child(2) { width: 38%; height: 38%; }
.radar i:nth-child(3) { width: 88%; height: 88%; }
.radar b { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--pink); box-shadow: 0 0 34px rgba(255,57,127,.55); }

.safety-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; align-items: center; }
.safety-art { min-height: 470px; display: grid; place-items: center; border-radius: 42px; background: radial-gradient(circle, rgba(255,57,127,.18), transparent 58%); }
.shield {
  position: relative;
  width: 250px;
  height: 285px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255,255,255,.2);
  border-radius: 110px 110px 140px 140px;
  color: var(--pink);
  background: linear-gradient(145deg, #251637, #110b1d);
  font-size: 5rem;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}
.shield span { position: absolute; right: 22px; bottom: 35px; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--violet); font-size: 1.5rem; }
.safety-copy ul { margin-top: 34px; list-style: none; display: grid; gap: 20px; }
.safety-copy li { position: relative; padding-left: 42px; }
.safety-copy li::before { content: '✓'; position: absolute; left: 0; top: 2px; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 9px; color: white; background: rgba(255,57,127,.24); }
.safety-copy li b, .safety-copy li span { display: block; }
.safety-copy li b { font-size: .95rem; }
.safety-copy li span { margin-top: 3px; color: var(--muted); font-size: .84rem; }

.download-section {
  width: min(1080px, 90%);
  margin: 40px auto 120px;
  padding: 80px 30px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 110%, rgba(255,57,127,.38), transparent 42%),
    linear-gradient(135deg, #211137, #100a1d);
}
.download-section img { border-radius: 22px; box-shadow: 0 15px 45px rgba(255,57,127,.22); }
.download-section p { margin-bottom: 28px; }

.site-footer { width: min(1180px, 90%); margin: auto; padding: 38px 0 26px; border-top: 1px solid var(--border); }
.footer-top, .footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer-mail { color: var(--pink-soft); font-size: .86rem; font-weight: 700; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; margin: 34px 0; }
.footer-links a { color: var(--muted); font-size: .78rem; }
.footer-links a:hover { color: white; }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06); color: #746d82; font-size: .7rem; }

/* Legal and support pages */
.page-container {
  width: min(860px, calc(100% - 40px));
  margin: 130px auto 70px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(23,17,38,.94);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.page-container h1 {
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.08;
}
.page-container h2 { margin: 32px 0 12px; font-family: 'Outfit', sans-serif; font-size: 1.25rem; }
.policy-date {
  display: inline-flex;
  margin: -12px 0 26px !important;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,57,127,.08);
  color: #d8d1e2 !important;
  font-size: .78rem !important;
}
.page-container p, .page-container ul { margin-bottom: 14px; color: var(--muted); font-size: .92rem; }
.page-container ul { padding-left: 22px; }
.page-container li { margin-bottom: 8px; }
.highlight, .contact-link { color: var(--pink-soft) !important; font-weight: 700; }
.contact-box { margin-top: 28px; padding: 21px; border: 1px solid var(--border); border-radius: 16px; background: #0d0917; }
.contact-box p:last-child { margin-bottom: 0; }
.safety-summary {
  margin: -4px 0 28px;
  border-color: rgba(255,57,127,.28);
  background: linear-gradient(135deg, rgba(255,57,127,.11), rgba(124,58,237,.08));
}
.steps-list {
  padding: 0 !important;
  list-style: none;
  display: grid;
  gap: 12px;
}
.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}
.steps-list li > span {
  flex: 0 0 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: white;
  background: var(--pink);
  font-size: .75rem;
  font-weight: 800;
}
.warning-box {
  margin: 28px 0;
  padding: 20px;
  border: 1px solid rgba(255,76,118,.35);
  border-radius: 16px;
  background: rgba(255,52,102,.09);
}
.warning-box strong { color: #ff7da5; }
.warning-box p { margin: 5px 0 0; }
body:not(.landing) footer { padding: 35px 20px; text-align: center; color: #81798e; font-size: .76rem; border-top: 1px solid var(--border); }
body:not(.landing) > nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 max(5vw, 24px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(9,6,19,.88);
  backdrop-filter: blur(18px);
}
body:not(.landing) nav .logo {
  font-family: 'Outfit', sans-serif;
  color: white;
  font-size: 1.45rem;
  font-weight: 800;
}
body:not(.landing) nav .logo::after { content: 'GO'; color: var(--pink); }
body:not(.landing) nav .logo { font-size: 0; }
body:not(.landing) nav .logo::before { content: 'Love'; color: white; font-size: 1.45rem; }
body:not(.landing) nav .logo::after { font-size: 1.45rem; }

@media (max-width: 900px) {
  .site-nav {
    height: 112px;
    align-items: flex-start;
    padding-top: 12px;
  }
  .site-nav .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 9px;
    overflow-x: auto;
    padding: 0 18px 3px;
    scrollbar-width: none;
  }
  .site-nav .nav-links::-webkit-scrollbar { display: none; }
  .site-nav .nav-cta { order: -1; }
  body:not(.landing) > nav {
    min-height: 112px;
    align-items: flex-start;
    padding-top: 14px;
  }
  body:not(.landing) > nav .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    overflow-x: auto;
    padding: 0 20px 3px;
    scrollbar-width: none;
  }
  body:not(.landing) > nav .nav-links::-webkit-scrollbar { display: none; }
  body:not(.landing) .page-container { margin-top: 132px; }
  .hero { grid-template-columns: 1fr; padding-top: 150px; text-align: center; }
  .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 660px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-main { grid-column: 1 / -1; }
  .safety-section { grid-template-columns: 1fr; gap: 30px; }
  .safety-art { min-height: 360px; }
}

@media (max-width: 620px) {
  .site-nav { height: 112px; padding: 12px 18px 0; }
  .brand > span { font-size: 1.4rem; }
  .nav-links .nav-cta { padding: 9px 12px; font-size: .72rem; }
  .hero { width: calc(100% - 36px); padding: 120px 0 50px; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 4.3rem); }
  .hero-copy > p { font-size: .96rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions > a { width: 100%; justify-content: center; }
  .trust-row { gap: 10px 16px; }
  .hero-visual { min-height: 610px; }
  .phone { height: 550px; transform: none; }
  .profile-art { height: 345px; }
  .float-card { transform: scale(.88); }
  .match-card { left: -12px; }
  .safe-card { right: -12px; }
  .feature-section, .safety-section { padding: 80px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-main { grid-column: auto; }
  .feature-card { min-height: 290px; }
  .section-heading h2, .safety-copy h2, .download-section h2 { font-size: 2.8rem; }
  .safety-art { min-height: 300px; }
  .shield { width: 190px; height: 220px; font-size: 4rem; }
  .download-section { margin-bottom: 80px; padding: 60px 22px; border-radius: 28px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-links { gap: 13px 18px; }
  .page-container { margin-top: 100px; border-radius: 22px; }
  body:not(.landing) > nav {
    min-height: 112px;
    align-items: flex-start;
    padding: 14px 20px 0;
  }
  body:not(.landing) > nav .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding: 0 20px 3px;
    scrollbar-width: none;
  }
  body:not(.landing) > nav .nav-links::-webkit-scrollbar { display: none; }
  body:not(.landing) .page-container { margin-top: 132px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
