/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #07070F;
  --surface:   #0E0E1C;
  --surface2:  #13132A;
  --border:    rgba(255,255,255,0.07);
  --text:      #F1F1F5;
  --muted:     #8890A4;
  --subtle:    rgba(255,255,255,0.04);
  --gold:      #F59E0B;
  --gold-l:    #FCD34D;
  --violet:    #8B5CF6;
  --violet-l:  #A78BFA;
  --r:         1rem;
  --r-lg:      1.5rem;
  --r-xl:      2rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Utility ──────────────────────────────────────────────────── */
.container  { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-gold  { color: var(--gold); }
.text-violet{ color: var(--violet); }
.text-muted { color: var(--muted); }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Nav ──────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(7,7,15,0.75);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.2rem; font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--gold), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: linear-gradient(135deg, var(--gold), #E08B05);
  color: #000 !important;
  font-size: 0.875rem !important; font-weight: 700 !important;
  padding: 9px 20px; border-radius: 100px;
  transition: opacity .2s, transform .2s !important;
}
.btn-nav:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 700;
  padding: 14px 28px; border-radius: 100px;
  transition: transform .2s, opacity .2s;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #E08B05 100%);
  color: #000;
}
.btn-ghost {
  background: var(--subtle);
  border: 1px solid var(--border);
  color: var(--text);
}

/* ── Orb glow background effects ─────────────────────────────── */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.orb-gold   { background: radial-gradient(circle, rgba(245,158,11,0.28) 0%, transparent 70%); }
.orb-violet { background: radial-gradient(circle, rgba(139,92,246,0.24) 0%, transparent 70%); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 0 80px;
}
.hero-orb1 { width: 600px; height: 600px; top: -100px; right: -100px; }
.hero-orb2 { width: 500px; height: 500px; bottom: -50px; left: -100px; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold); background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.hero-title span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-l) 50%, var(--violet-l) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem; color: var(--muted); max-width: 480px;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.appstore-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text); color: #000;
  padding: 12px 24px; border-radius: 14px;
  font-weight: 700; font-size: 0.9rem;
  transition: transform .2s, opacity .2s;
}
.appstore-btn:hover { transform: translateY(-2px); opacity: 0.92; }
.appstore-btn svg { flex-shrink: 0; }

/* ── Phone Mockup ─────────────────────────────────────────────── */
.phone-wrap {
  position: relative; display: flex;
  justify-content: center; align-items: center;
}
.phone-glow {
  position: absolute; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, rgba(139,92,246,0.15) 50%, transparent 70%);
  border-radius: 50%; filter: blur(40px);
}
.phone {
  position: relative; z-index: 1;
  width: 270px; height: 560px;
  background: #0A0A18;
  border-radius: 44px;
  border: 1.5px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.03),
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-notch {
  width: 90px; height: 28px; margin: 12px auto 0;
  background: #000; border-radius: 20px;
  flex-shrink: 0;
}
.phone-screen {
  flex: 1; padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.phone-companion-card {
  flex: 1; border-radius: 24px; overflow: hidden;
  background: linear-gradient(160deg, rgba(245,158,11,0.15) 0%, rgba(139,92,246,0.2) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; position: relative;
}
.phone-companion-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.phone-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--violet));
  margin-bottom: 8px; position: relative; z-index: 1;
}
.phone-name {
  font-size: 1.1rem; font-weight: 700;
  position: relative; z-index: 1;
}
.phone-match {
  font-size: 0.72rem; color: var(--gold); font-weight: 600;
  position: relative; z-index: 1;
}
.phone-actions {
  display: flex; justify-content: space-around; padding: 4px 8px;
}
.phone-action-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; border: 1.5px solid rgba(255,255,255,0.1);
}
.phone-action-btn.pass { background: rgba(239,68,68,0.15); }
.phone-action-btn.like { background: rgba(245,158,11,0.15); }

/* ── Section base ─────────────────────────────────────────────── */
section { padding: 100px 0; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  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: 560px; line-height: 1.7;
}

/* ── Features ─────────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 64px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: border-color .3s, transform .3s;
}
.feature-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-4px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.feature-icon.gold   { background: rgba(245,158,11,0.12); }
.feature-icon.violet { background: rgba(139,92,246,0.12); }
.feature-icon.teal   { background: rgba(20,184,166,0.12); }
.feature-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc  { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* ── How it works ─────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 64px; }
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; color: #fff;
  margin: 0 auto 20px;
}
.step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-desc  { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* ── Pricing ──────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 64px; align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  transition: transform .3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: rgba(245,158,11,0.4);
  background: linear-gradient(160deg, rgba(245,158,11,0.07) 0%, var(--surface) 60%);
  box-shadow: 0 0 40px rgba(245,158,11,0.1);
}
.pricing-card.platinum-card {
  border-color: rgba(139,92,246,0.35);
  background: linear-gradient(160deg, rgba(139,92,246,0.07) 0%, var(--surface) 60%);
  box-shadow: 0 0 40px rgba(139,92,246,0.1);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.pricing-badge.gold   { background: var(--gold);   color: #000; }
.pricing-badge.violet { background: var(--violet); color: #fff; }
.pricing-tier { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.pricing-price { font-size: 2.8rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing-period { font-size: 0.85rem; color: var(--muted); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-features li.locked::before { content: '🔒'; }
.pricing-cta {
  display: block; text-align: center;
  padding: 12px; border-radius: 12px;
  font-size: 0.9rem; font-weight: 700;
  transition: opacity .2s, transform .2s;
  cursor: pointer;
}
.pricing-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.pricing-cta.gold-cta    { background: var(--gold); color: #000; }
.pricing-cta.violet-cta  { background: var(--violet); color: #fff; }
.pricing-cta.ghost-cta   { background: var(--subtle); border: 1px solid var(--border); color: var(--muted); }

/* ── CTA Band ─────────────────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(245,158,11,0.1) 0%, rgba(139,92,246,0.12) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  padding: 80px 40px; text-align: center; margin: 0 0 100px;
}
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.03em; }
.cta-band p  { font-size: 1.05rem; color: var(--muted); margin-bottom: 36px; }

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 0.875rem; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.8rem; color: var(--muted); width: 100%; }

/* ── Legal Pages ──────────────────────────────────────────────── */
.legal-hero {
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}
.legal-hero h1 { font-size: 2.6rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 12px; }
.legal-hero p  { color: var(--muted); font-size: 0.95rem; }
.legal-content { max-width: 740px; margin: 0 auto; padding-bottom: 100px; }
.legal-content h2 {
  font-size: 1.25rem; font-weight: 700; margin: 48px 0 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.legal-content h3 { font-size: 1rem; font-weight: 600; margin: 28px 0 10px; color: var(--text); }
.legal-content p  { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.legal-content a  { color: var(--gold); }
.legal-content a:hover { text-decoration: underline; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-sub { max-width: none; }
  .hero-actions { justify-content: center; }
  .phone-wrap { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-links .hide-mobile { display: none; }
}
@media (max-width: 600px) {
  section { padding: 70px 0; }
  .cta-band { padding: 48px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
