/* IfYes landing page — matches the app prototype's design language */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0f;
  --surface: #14141c;
  --surface-2: #1d1d28;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f2f2f7;
  --text-dim: #8e8e99;
  --accent: #ff2d78;
  --accent-2: #7b5cff;
  --gradient: linear-gradient(135deg, #ff2d78, #7b5cff);
  --green: #30d158;
  --radius: 22px;
  --squircle: 28%;
  --pill: 999px;
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-float: 0 12px 40px rgba(255, 45, 120, 0.08), 0 4px 16px rgba(0, 0, 0, 0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============ background flowers ============ */
.bg-flower {
  position: fixed;
  color: var(--accent-2);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.bg-flower-1 { width: 420px; top: -120px; right: -140px; }
.bg-flower-2 { width: 340px; bottom: -100px; left: -120px; color: var(--accent); }

main { position: relative; z-index: 1; }

/* ============ hero ============ */
.hero {
  text-align: center;
  padding: 96px 0 72px;
}

.hero-icon {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  border-radius: var(--squircle);
  box-shadow: var(--shadow-float);
}

.hero h1 {
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 30%, #ffb3cf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  max-width: 520px;
  margin: 20px auto 0;
  font-size: 18px;
  color: var(--text-dim);
}

/* ============ waitlist ============ */
.waitlist { max-width: 460px; margin: 40px auto 0; }

.waitlist-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.waitlist-row { display: flex; gap: 8px; }

.waitlist-input {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--pill);
  padding: 14px 18px;
  font-size: 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.waitlist-input:focus { border-color: var(--accent); }
.waitlist-country { width: 74px; flex-shrink: 0; text-align: center; padding: 14px 8px; }
.waitlist-phone { flex: 1 1 0; min-width: 0; }

.waitlist-btn {
  flex-shrink: 0;
  background: var(--gradient);
  border: none;
  border-radius: var(--pill);
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 45, 120, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.waitlist-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 26px rgba(255, 45, 120, 0.45); }
.waitlist-btn:disabled { opacity: 0.6; cursor: default; transform: none; }

.waitlist-msg { min-height: 22px; margin-top: 12px; font-size: 14px; color: var(--text-dim); }
.waitlist-msg.ok { color: var(--green); }
.waitlist-msg.err { color: var(--accent); }

/* ============ scroll cue ============ */
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 44px auto 0;
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: inherit;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  animation: cue-bounce 2s ease-in-out infinite;
  transition: color 0.15s;
}
.scroll-cue:hover { color: var(--accent); }
.scroll-cue svg { color: var(--accent); }

@keyframes cue-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(9px); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
}

/* ============ bottom CTA ============ */
.bottom-cta {
  text-align: center;
  padding: 24px 0 88px;
}

.bottom-cta h2 {
  font-size: clamp(28px, 4.5vw, 40px);
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, #fff 30%, #ffb3cf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bottom-cta .tagline { margin: 10px auto 0; }
.bottom-cta .waitlist { margin-top: 28px; }

/* ============ value props ============ */
.value-props { padding: 48px 0; }

.value-row {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 56px 0;
}
.value-row-reverse { flex-direction: row-reverse; }

.value-copy { flex: 1; }
.value-copy h3 { font-size: 28px; letter-spacing: -0.5px; margin-bottom: 12px; }
.value-copy p { color: var(--text-dim); font-size: 16px; }
.value-detail { margin-top: 12px; font-size: 14px !important; color: var(--accent) !important; font-weight: 600; }

.value-shot {
  position: relative;
  flex-shrink: 0;
  width: 300px;
}

.step-num {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 36px;
  height: 36px;
  border-radius: var(--squircle);
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(255, 45, 120, 0.4);
}

/* ============ CSS phone mocks ============ */
.mock {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 32px;
  padding: 22px;
  box-shadow: var(--shadow-float);
}

.mock-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}
.mock-user strong { color: var(--text); }

.mock-avatar {
  width: 30px;
  height: 30px;
  border-radius: var(--squircle);
  background: linear-gradient(135deg, #7b5cff, #4a3aa8);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-avatar-pink { background: var(--gradient); }
.mock-avatar-anon { background: repeating-linear-gradient(45deg, #23232e, #23232e 4px, #1a1a24 4px, #1a1a24 8px); color: var(--text-dim); }

.mock-question { font-size: 19px; font-weight: 700; letter-spacing: -0.3px; line-height: 1.3; }

.mock-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
}
.mock-expiry { color: var(--accent-2); }

.mock-btns { display: flex; gap: 8px; }
.mock-btns span {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 700;
}
.mock-no { background: var(--surface); border: 1.5px solid var(--border); color: var(--text-dim); }
.mock-yes { background: var(--gradient); color: #fff; box-shadow: 0 4px 14px rgba(255, 45, 120, 0.35); }

.mock-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
}

.mock-friend {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  font-size: 15px;
  font-weight: 600;
}
.mock-friend.picked { border-color: var(--accent); background: rgba(255, 45, 120, 0.08); }

.mock-radio {
  margin-left: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.mock-radio.on { border-color: var(--accent); background: radial-gradient(circle, var(--accent) 45%, transparent 50%); }

.mock-match {
  text-align: center;
  padding: 40px 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 45, 120, 0.18), transparent 65%),
    var(--surface);
}

.mock-match-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.mock-match-avatars span {
  width: 56px;
  height: 56px;
  border-radius: var(--squircle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  border: 3px solid var(--bg);
}
.mock-match-avatars span:first-child { background: linear-gradient(135deg, #7b5cff, #4a3aa8); }
.mock-match-avatars span:last-child { background: var(--gradient); margin-left: -14px; }

.mock-match-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mock-match-sub { margin-top: 6px; font-size: 14px; color: var(--text-dim); }

/* ============ privacy section ============ */
section { padding: 40px 0 72px; }
.value-props + section { padding-top: 24px; }

.section-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.8px;
  margin-bottom: 28px;
}

.privacy-highlight {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.privacy-highlight .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--squircle);
  background: rgba(48, 209, 88, 0.12);
  color: var(--green);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-highlight h3 { font-size: 18px; margin-bottom: 8px; }
.privacy-highlight p { color: var(--text-dim); font-size: 15px; }

/* ============ inner pages (privacy / support / faq) ============ */
.page-hero { padding: 72px 24px 8px; }

.back-home {
  display: inline-block;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.back-home:hover { color: var(--text); text-decoration: none; }

.page-hero h1 {
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 30%, #ffb3cf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.updated { margin-top: 8px; font-size: 14px; color: var(--text-dim); }

.legal-content {
  padding-top: 24px;
  padding-bottom: 72px;
  max-width: 720px;
}

.legal-content h2 {
  font-size: 22px;
  letter-spacing: -0.4px;
  margin: 40px 0 14px;
}

.legal-content .legal-sub {
  font-size: 16px;
  margin: 24px 0 8px;
}

.legal-content p { color: var(--text-dim); font-size: 15px; margin-bottom: 12px; }
.legal-content ul { margin: 0 0 16px 20px; }
.legal-content li { color: var(--text-dim); font-size: 15px; margin-bottom: 8px; }
.legal-content strong { color: var(--text); }

.contact-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
}
.contact-card h2 { margin-top: 0 !important; }
.contact-card p:last-child { margin-bottom: 0; }

.contact-note {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  border-radius: var(--pill);
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 13px !important;
}

.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 12px;
}
.faq-item h3 { font-size: 16px; margin-bottom: 8px; }
.faq-item p { margin-bottom: 0; }

.page-crosslink { margin-top: 32px; font-size: 15px; }

/* ============ footer ============ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-links a { color: var(--text-dim); font-size: 14px; }
.footer-links a:hover { color: var(--text); }

.footer-copy { font-size: 13px; color: var(--text-dim); }

/* ============ responsive ============ */
@media (max-width: 760px) {
  .hero { padding: 64px 0 48px; }

  .value-row,
  .value-row-reverse {
    flex-direction: column;
    gap: 28px;
    padding: 40px 0;
  }

  .value-shot { width: 100%; max-width: 320px; }
  .value-copy { text-align: center; }

  .waitlist-row { flex-wrap: wrap; }
  .waitlist-btn { width: 100%; }
}
