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

:root {
  --bg: #030712;
  --bg-gradient: radial-gradient(circle at top, #111827, #030712);
  --card: rgba(17, 24, 39, 0.4);
  --alt: #0a0f1c;
  --text: #f8fafc;
  --muted: #94a3b8;
  --primary: #6366f1;
  --primary-gradient: linear-gradient(135deg, #4f46e5, #8b5cf6, #d946ef);
  --primary-2: #a5b4fc;
  --border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(17, 24, 39, 0.65);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  background-image: var(--bg-gradient);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .brand {
  font-family: "Outfit", sans-serif;
}

a {
  color: var(--primary-2);
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
  70% { box-shadow: 0 0 20px 10px rgba(139, 92, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.5rem 6rem;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(3, 7, 18, 0.95) 0%,
    rgba(3, 7, 18, 0.8) 50%,
    rgba(3, 7, 18, 0.6) 100%
  );
}

.nav {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  animation: fadeInUp 0.8s ease-out;
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  letter-spacing: 0.5px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  margin: 6rem auto 0;
  flex: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-main {
  text-align: left;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.kicker {
  color: #d946ef;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(217, 70, 239, 0.1);
  border: 1px solid rgba(217, 70, 239, 0.2);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.lead {
  color: var(--muted);
  font-size: 1.25rem;
  max-width: 50ch;
  margin-bottom: 2rem;
}

.store-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.store-badge {
  display: inline-block;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-badge img {
  display: block;
  height: 52px;
  width: auto;
}

.store-badge.ios img {
  height: 52px;
}

.store-badge:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.note {
  color: #94a3b8;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.note::before {
  content: '✓';
  color: #10b981;
  font-weight: bold;
}

.hero-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
  width: 100%;
  animation: float 6s ease-in-out infinite, fadeInUp 0.8s ease-out 0.4s both;
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  padding: 2px;
  background: var(--primary-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}

.hero-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-card h3::before {
  content: '📊';
  font-size: 1.8rem;
}

.hero-card .bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-card .bullets li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: #e2e8f0;
}

.hero-card .bullets li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-2);
  margin-top: 0.45rem;
  box-shadow: 0 0 10px var(--primary-2);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1.5rem;
  text-align: center;
  font-weight: 700;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section.alt {
  background: var(--alt);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  max-width: 100%;
  padding: 6rem 2rem;
}

.section.alt h2 {
  margin-bottom: 3rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
}

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

/* Bullet Lists generally */
.benefits-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.benefits-list li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.benefits-list li:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.05);
}

.benefits-list li::before {
  content: '✦';
  color: var(--primary-2);
  font-size: 1.5rem;
}

.footer {
  padding: 4rem 2rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: #02040a;
}

.footer p {
  margin: 0.5rem 0;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

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

/* Privacy Policy Formatting */
.policy-wrap {
  max-width: 900px;
  margin: 4rem auto;
  padding: 4rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  box-shadow: var(--glass-shadow);
}

.policy-wrap h1 {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-align: left;
}

.policy-wrap h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  text-align: left;
  color: #e2e8f0;
}

.policy-wrap p, .policy-wrap ul {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 1.2rem;
}

.policy-wrap ul {
  padding-left: 1.5rem;
}

.policy-wrap li {
  margin-bottom: 0.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  color: var(--primary-2);
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.back-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-4px);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-main {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .store-row {
    justify-content: center;
  }
  
  .hero-card {
    margin: 0 auto;
  }
  
  .nav {
    flex-direction: column;
    border-radius: 16px;
    padding: 1.5rem;
  }
  
  .policy-wrap {
    padding: 2rem;
    margin: 2rem 1rem;
  }
}
