/* PeopleDrop – Global Styles */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0a0a0a;
  --surface: #111111;
  --card:    #181818;
  --border:  rgba(255,255,255,0.08);
  --accent:  #6c63ff;
  --accent2: #a78bfa;
  --white:   #ffffff;
  --muted:   #9ca3af;
  --radius:  16px;
  --font:    -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,99,255,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(167,139,250,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,99,255,0.15);
  border: 1px solid rgba(108,99,255,0.35);
  color: var(--accent2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before { content: '⚡'; }

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 820px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 64px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.12);
}

.btn-primary svg { width: 22px; height: 22px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.25); color: var(--white); }

/* Hero pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── HERO MOCKUP ── */
.hero-mockup {
  position: relative;
  margin-top: 72px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
}

.mockup-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

.mockup-card.main {
  width: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-card.secondary {
  width: 200px;
  padding: 20px;
  margin-bottom: -24px;
  opacity: 0.7;
  transform: scale(0.92);
}

.mockup-qr {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
}

.mockup-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.02em;
}

.mockup-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.mockup-info { flex: 1; min-width: 0; }
.mockup-name { font-size: 0.92rem; font-weight: 600; }
.mockup-role { font-size: 0.75rem; color: var(--muted); }

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

.mockup-share-btn {
  flex: 1;
  background: rgba(108,99,255,0.15);
  border: 1px solid rgba(108,99,255,0.25);
  border-radius: 10px;
  padding: 8px 4px;
  font-size: 0.72rem;
  color: var(--accent2);
  text-align: center;
}

/* ── SECTION SHARED ── */
section { padding: 100px 5%; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── FEATURES ── */
#features { background: var(--surface); }

.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-sub { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s;
}

.feature-card:hover {
  border-color: rgba(108,99,255,0.4);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(108,99,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.feature-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* ── HOW IT WORKS ── */
#how-it-works { background: var(--black); }

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.steps { display: flex; flex-direction: column; gap: 32px; }

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.step-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.how-visual {
  display: flex;
  justify-content: center;
}

.how-phone {
  width: 260px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 28px 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-logo { width: 32px; height: 32px; border-radius: 8px; }
.phone-title { font-size: 0.9rem; font-weight: 700; }

.phone-qr {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 1;
}

.phone-qr img { width: 100%; height: 100%; object-fit: contain; }

.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.phone-action {
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  font-size: 0.7rem;
  color: var(--accent2);
}

.phone-action-icon { font-size: 1.1rem; margin-bottom: 4px; }

/* ── PRIVACY CALLOUT ── */
#privacy-callout {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.privacy-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.privacy-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.privacy-badge {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.privacy-badge-icon { font-size: 1.8rem; margin-bottom: 8px; }
.privacy-badge-label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* ── FAQ ── */
#faq { background: var(--black); }

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-header { text-align: center; margin-bottom: 52px; }
.faq-header .section-sub { margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item + .faq-item { margin-top: 8px; }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 600;
  user-select: none;
  list-style: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform 0.25s;
}

details[open] .faq-chevron { transform: rotate(180deg); }

.faq-a {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA BANNER ── */
#cta {
  background: linear-gradient(135deg, rgba(108,99,255,0.25) 0%, rgba(167,139,250,0.12) 100%);
  border-top: 1px solid rgba(108,99,255,0.2);
  text-align: center;
  padding: 100px 5%;
}

#cta .section-title { max-width: 600px; margin: 0 auto 16px; }
#cta .section-sub { margin: 0 auto 44px; }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 5% 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
}

.footer-brand img { width: 28px; height: 28px; border-radius: 7px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* ── INNER PAGES ── */
.page-hero {
  padding: 140px 5% 64px;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-hero p { color: var(--muted); font-size: 1.05rem; }

.page-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5% 100px;
}

.page-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 40px 0 12px;
  letter-spacing: -0.02em;
}

.page-body h2:first-child { margin-top: 0; }

.page-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.page-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.page-body ul li {
  font-size: 0.95rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.page-body ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent2);
}

.page-body a { color: var(--accent2); }
.page-body a:hover { text-decoration: underline; }

/* Support page */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.support-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.support-card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.support-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.support-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

.contact-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  margin: 40px 0;
}

.contact-block h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.contact-block p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.contact-email:hover { opacity: 0.85; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }

  .how-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .how-visual { order: -1; }

  .privacy-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-mockup { gap: 12px; }
  .mockup-card.secondary { display: none; }
  .mockup-card.main { width: 240px; }

  footer .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .btn-primary, .btn-secondary { font-size: 0.92rem; padding: 12px 22px; }
}
