/* Fontshare font stack: Clash Display + Satoshi */
body {
  margin: 0;
  padding: 0;
  background-color: #FFF9F0;
  color: #222;
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}
/* Header */
.header {
  padding: 2rem;
  text-align: center;
}
.brand {
  font-family: 'Clash Display', 'Satoshi', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #FF6F61;
  letter-spacing: 0.5px;
}
/* Hero Section */
.hero {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  text-align: center;
}
.headline {
  font-family: 'Clash Display', 'Satoshi', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}
.subtext {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
/* Product Highlight */
.highlight {
  max-width: 740px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}
.product-name {
  font-family: 'Clash Display', 'Satoshi', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.product-name .glowly {
  color: #FF6F61;
  font-weight: 600;
}
.product-tagline {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.app-preview {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: transform 0.4s ease;
}
.app-preview:hover {
  transform: scale(1.01);
}
.store-badge img {
  height: 48px;
  transition: opacity 0.3s ease;
}
.store-badge img:hover {
  opacity: 0.9;
}
/* Contact Section */
.contact {
  text-align: center;
  font-size: 0.95rem;
  padding: 2rem;
  color: #666;
}
.contact a {
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}
.contact a:hover {
  border-color: #999;
}
/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}
