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

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

:root {
  --red:        #BF0020;
  --red-deep:   #8B0015;
  --purple:     #6B0FA0;
  --fuchsia:    #D42E7A;
  --coral:      #FF5F52;
  --bg:         #0D0D0F;
  --surface:    #161618;
  --card:       #1E1E22;
  --card-hi:    #26262C;
  --border:     #2E2E36;
  --border-soft:#242430;
  --text:       #F2F2F5;
  --text-sub:   #8A8A99;
  --text-dim:   #4A4A55;
  --success:    #00C896;
  --grad:       linear-gradient(135deg, #BF0020, #6B0FA0);
  --grad2:      linear-gradient(135deg, #D42E7A, #6B0FA0);
  --grad3:      linear-gradient(135deg, #D42E7A, #FF5F52);
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }

/* ── 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(13,13,15,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}

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

.nav-logo span {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--text-sub);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--grad);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: .875rem; font-weight: 600;
}
.nav-cta:hover { opacity: .9; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 5% 60px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(191,0,32,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(107,15,160,.15) 0%, transparent 60%),
    var(--bg);
  position: relative; overflow: hidden;
}

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(191,0,32,.12);
  border: 1px solid rgba(191,0,32,.3);
  color: #ff6b80;
  font-size: .75rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -1.5px;
  max-width: 800px; margin-bottom: 20px;
}

.hero h1 .grad-text {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-sub); max-width: 560px; margin-bottom: 40px;
}

.btn-group { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad);
  color: #fff; font-weight: 700; font-size: 1rem;
  padding: 14px 32px; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(191,0,32,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(191,0,32,.45); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text); font-weight: 600; font-size: 1rem;
  padding: 14px 32px; border-radius: 12px;
  transition: background .2s, border-color .2s;
}
.btn-secondary:hover { background: var(--card-hi); border-color: var(--border); }

/* ── PHONES MOCKUP ─────────────────────────────────────── */
.phones {
  margin-top: 60px;
  display: flex; gap: 20px; justify-content: center; align-items: flex-end;
  perspective: 800px;
}

.phone-mock {
  width: 160px; height: 320px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}

.phone-mock.center {
  width: 180px; height: 360px;
  border-color: rgba(191,0,32,.4);
  box-shadow: 0 0 0 1px rgba(191,0,32,.2), 0 24px 60px rgba(0,0,0,.6), 0 0 60px rgba(191,0,32,.1);
  transform: translateY(-20px);
}

.phone-screen {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  background: linear-gradient(160deg, #1E1E22, #0D0D0F);
}

.phone-screen .icon { font-size: 2rem; }
.phone-screen .label {
  font-size: .65rem; font-weight: 600; color: var(--text-sub);
  text-align: center; padding: 0 10px;
}

.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 6px;
  background: var(--border);
  border-radius: 3px; z-index: 2;
}

/* ── SECTION ─────────────────────────────────────────── */
section { padding: 80px 5%; max-width: 1100px; margin: 0 auto; }
section.full-width { max-width: unset; padding: 80px 0; }

.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -.5px; margin-bottom: 14px;
}

.section-sub { font-size: 1rem; color: var(--text-sub); max-width: 500px; }

/* ── FEATURES ─────────────────────────────────────────── */
#features { padding-top: 80px; padding-bottom: 40px; }

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.feat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}

.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: .875rem; color: var(--text-sub); line-height: 1.65; }

/* ── HOW IT WORKS ─────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; margin-top: 48px;
}

.step { text-align: center; }

.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad);
  color: #fff; font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(191,0,32,.3);
}

.step h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .85rem; color: var(--text-sub); }

/* ── ROLES ────────────────────────────────────────────── */
.roles-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px;
}

.role-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 20px; padding: 32px;
}

.role-card.accent { border-color: rgba(191,0,32,.3); }

.role-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 16px;
}

.role-badge.guide { background: rgba(191,0,32,.15); color: #ff6b80; }
.role-badge.member { background: rgba(107,15,160,.2); color: #c77dff; }

.role-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }

.role-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.role-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: var(--text-sub);
}
.role-list li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* ── STATS ────────────────────────────────────────────── */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 48px 5%;
}

.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}

.stat-num {
  font-size: 2rem; font-weight: 800; letter-spacing: -1px;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-lbl { font-size: .8rem; color: var(--text-sub); margin-top: 4px; font-weight: 500; }

/* ── DOWNLOAD CTA ─────────────────────────────────────── */
.cta-section {
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(191,0,32,.12) 0%, transparent 70%),
    var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 80px 5%;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -.5px; margin-bottom: 14px;
}

.cta-section p { color: var(--text-sub); margin-bottom: 36px; font-size: 1rem; }

.store-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border);
  padding: 12px 24px; border-radius: 14px;
  font-weight: 600; font-size: .9rem;
  transition: background .2s, border-color .2s;
}
.store-badge:hover { background: var(--card-hi); }
.store-badge .store-icon { font-size: 1.4rem; }
.store-badge small { display: block; font-size: .7rem; color: var(--text-sub); font-weight: 400; }

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

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

.footer-brand .logo-text {
  font-size: 1.1rem; font-weight: 800; letter-spacing: -.3px;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.footer-brand p { font-size: .8rem; color: var(--text-sub); max-width: 240px; line-height: 1.6; }

.footer-links h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-sub); margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { font-size: .85rem; color: var(--text-sub); transition: color .2s; }
.footer-links li a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1100px; margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .8rem; color: var(--text-dim);
}

/* ── PRIVACY PAGE ─────────────────────────────────────── */
.privacy-hero {
  padding: 120px 5% 60px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(107,15,160,.15) 0%, transparent 60%),
    var(--bg);
  text-align: center;
}

.privacy-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.5px; }
.privacy-hero p { color: var(--text-sub); margin-top: 12px; }

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

.privacy-body h2 {
  font-size: 1.2rem; font-weight: 700; margin: 40px 0 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border-soft);
}

.privacy-body h2:first-of-type { margin-top: 0; }
.privacy-body p { font-size: .9rem; color: var(--text-sub); margin-bottom: 14px; line-height: 1.75; }
.privacy-body ul { margin: 0 0 14px 20px; }
.privacy-body li { font-size: .9rem; color: var(--text-sub); margin-bottom: 6px; line-height: 1.7; }
.privacy-body a { color: #ff6b80; text-decoration: underline; }

.privacy-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,200,150,.1); border: 1px solid rgba(0,200,150,.25);
  color: var(--success); font-size: .75rem; font-weight: 600;
  padding: 4px 14px; border-radius: 999px; margin-top: 10px;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .roles-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .phones .phone-mock:not(.center) { display: none; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .btn-group { flex-direction: column; align-items: center; }
}
