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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #111;
  background: #fff;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: #6C63FF; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #6C63FF 0%, #FF6584 60%, #ffb347 100%);
  padding: 88px 40px;
  text-align: center;
  color: #fff;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 7px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* APPS SECTION */
.apps-section {
  background: #fff;
  padding: 72px 40px;
}

.apps-section > .section-eyebrow,
.apps-section > .section-title {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6C63FF;
  margin-bottom: 8px;
}

.section-title {
  font-size: 30px;
  font-weight: 800;
  color: #111;
  margin-bottom: 44px;
  letter-spacing: -0.3px;
}

.app-list {
  max-width: 780px;
  margin: 0 auto;
}

.app-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #f0f0f0;
}

.app-row:last-child { border-bottom: none; }

.app-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-info { flex: 1; }

.app-name {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin-bottom: 4px;
}

.app-meta {
  font-size: 12px;
  font-weight: 600;
  color: #6C63FF;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.app-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  max-width: 480px;
}

.app-privacy {
  font-size: 12px;
  color: #6C63FF;
  text-decoration: none;
  margin-top: 6px;
  display: inline-block;
  opacity: 0.7;
}

.app-privacy:hover { opacity: 1; }

.badges {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.badge {
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.badge-ios { background: #f0f0ff; color: #6C63FF; }
.badge-android { background: #f0fff4; color: #22863a; }

/* ABOUT SECTION */
.about-section {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(255, 101, 132, 0.05));
  padding: 72px 40px;
  text-align: center;
}

.about-inner { max-width: 600px; margin: 0 auto; }

.about-section p {
  font-size: 17px;
  color: #444;
  line-height: 1.75;
}

/* FOOTER */
footer {
  background: #111;
  color: #fff;
  padding: 40px 40px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-copy {
  width: 100%;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
}

/* PRIVACY PAGE */
.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 40px;
}

.page-content h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.page-content .updated {
  font-size: 13px;
  color: #888;
  margin-bottom: 40px;
}

.page-content h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 10px;
}

.page-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  nav { padding: 14px 20px; }
  .nav-links { gap: 16px; }
  .hero { padding: 64px 24px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  .apps-section { padding: 48px 24px; }
  .app-row { flex-wrap: wrap; }
  .badges { width: 100%; }
  footer { padding: 32px 24px; }
  .page-content { padding: 48px 24px; }
}
