body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-main {
  flex: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.app-hero {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.app-icon {
  width: 240px;
  height: 240px;
  border-radius: 24px;
}

.hero-copy h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.app-tagline {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1rem;
}

.app-description {
  max-width: 640px;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.75rem;
}

.app-highlights {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.coming-soon-badge {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 0.5rem 1rem;
}

.app-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.app-legal a {
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
}

.app-legal a:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

.app-footer {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid #e8e8e8;
}

.app-footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.app-footer-nav a {
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
}

.app-footer-nav a:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

@media (max-width: 960px) {
  .app-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-icon {
    margin: 0 auto;
  }
}
