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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  background: #C8E2F6;
  color: #1d1d1f;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  width: 100%;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-icon {
  flex-shrink: 0;
}

.app-icon {
  width: 256px;
  height: 256px;
}

.hero-text {
  text-align: left;
}

.app-name {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #00AAFF, #0055DD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1d1d1f;
  margin-bottom: 0.75rem;
}

.description {
  font-size: 1.05rem;
  color: #6e6e73;
  line-height: 1.6;
}

.coming-soon {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #0055DD;
  background: rgba(0, 85, 221, 0.1);
  border: 1px solid rgba(0, 85, 221, 0.25);
  border-radius: 100px;
}

.screenshot {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}

.screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.platforms {
  font-size: 0.9rem;
  color: #6e6e73;
  margin-bottom: 2rem;
  text-align: center;
}

.links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.links a {
  color: #0066cc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.links a:hover {
  color: #0088ff;
}

@media (max-width: 600px) {
  body { padding: 1rem 0.5rem; }
  .screenshot { margin-left: -0.5rem; margin-right: -0.5rem; width: calc(100% + 1rem); }
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .hero-text { text-align: left; }
  .app-name { font-size: 2.5rem; text-align: center; }
  .tagline { font-size: 1.2rem; text-align: center; }
  .description { font-size: 0.95rem; text-align: left; }
  .app-icon { width: 180px; height: 180px; }
}
