/* Copyright (c) 2026 Minotera LLC. All rights reserved. */

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

:root {
  --bg-primary: #0f1123;
  --bg-secondary: #1a1d3a;
  --bg-card: #232750;
  --text-primary: #e8e9f3;
  --text-secondary: #9a9cc0;
  --accent: #7c6ff7;
  --accent-light: #a89cfa;
  --border: #2d3161;
  --max-width: 960px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--accent-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  text-align: center;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}

.site-header .company-name {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-banner {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero h1 {
  font-size: 2.8rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Store badges */
.store-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.badge-link {
  display: inline-block;
  transition: transform 0.2s;
}

.badge-link:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.badge-link img {
  height: 48px;
}

.badge-coming-soon {
  position: relative;
  display: inline-block;
}

.badge-coming-soon img {
  height: 48px;
  filter: grayscale(100%) brightness(0.6);
}

.badge-coming-soon .coming-soon-label {
  display: block;
  font-size: 0.7rem;
  color: var(--accent-light);
  text-align: center;
  margin-top: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* About section */
.about {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1rem;
}

.about h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: center;
}

.about p {
  color: var(--text-secondary);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1rem;
  font-size: 1.05rem;
}

/* Screenshots */
.screenshots {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.screenshots h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.screenshot-gallery img {
  width: 200px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--border);
}

/* Company section */
.company {
  background: var(--bg-secondary);
  padding: 3rem 1rem;
  text-align: center;
}

.company h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.company p {
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 0.75rem;
  font-size: 0.95rem;
}

.company a {
  color: var(--accent-light);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-secondary);
  margin: 0 0.75rem;
}

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

.footer-legal {
  font-size: 0.75rem;
  color: #666;
  max-width: 640px;
  margin: 1rem auto 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 640px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .tagline {
    font-size: 1rem;
  }

  .screenshot-gallery img {
    width: 150px;
    border-radius: 12px;
  }

  .screenshot-gallery {
    gap: 0.75rem;
  }
}

@media (max-width: 400px) {
  .screenshot-gallery img {
    width: 120px;
  }
}
