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

:root {
  --bg: #FFFFFF;
  --text: #13151A;
  --text-secondary: #6B7280;
  --primary: #D6FF60;
  --primary-fg: #13151A;
  --app-bg: #13151A;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero — full viewport, two columns */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0 80px 80px;
  gap: 60px;
  max-width: 100%;
  margin: 0 auto;
  min-height: calc(100vh - 80px);
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 540px;
}

.hero-content h1 {
  font-size: 76px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: var(--text);
}

.hero-content h1 span {
  color: var(--primary);
}

.subtitle {
  font-size: 21px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 44px;
  max-width: 380px;
}

.app-store-badge img {
  height: 52px;
  transition: transform 0.2s;
  border-radius: 0;
}

.app-store-badge:hover img {
  transform: translateY(-2px);
}

/* Phone mockup — right side, no background block */
.hero-phone {
  position: relative;
  flex-shrink: 0;
  margin-right: 80px;
}

.phone-bg {
  display: none;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 570px;
  background: var(--app-bg);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  border: 6px solid #2a2a2a;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer {
  padding: 28px 24px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
  border-top: 1px solid #E5E7EB;
}

.footer-links {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

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

.dot {
  color: #D1D5DB;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 60px 32px;
    gap: 60px;
    text-align: center;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 48px;
    letter-spacing: -1px;
  }

  .subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-phone {
    margin-right: 0;
  }

  .phone-frame {
    width: 240px;
    height: 490px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 20px;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .subtitle {
    font-size: 17px;
  }

  .phone-frame {
    width: 220px;
    height: 450px;
  }
}

/* Legal nav */
.legal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  max-width: 800px;
  margin: 0 auto;
  gap: 32px;
}

.legal-nav .logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.legal-nav .logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
}

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

/* Legal Pages */
.legal {
  padding: 60px 24px;
  max-width: 700px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.legal .updated {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 14px;
}

.legal h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text);
}

.legal p, .legal ul {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal ul {
  padding-left: 24px;
}

.legal li {
  margin-bottom: 8px;
}

.legal strong {
  color: var(--text);
}
