@font-face {
  font-family: 'Lemon Sans Rounded';
  src: url('fonts/Lemon Sans Rounded Light.otf') format('opentype');
  font-weight: 300; font-display: swap;
}
@font-face {
  font-family: 'Lemon Sans Rounded';
  src: url('fonts/Lemon Sans Rounded Regular.otf') format('opentype');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Lemon Sans Rounded';
  src: url('fonts/Lemon Sans Rounded Bold.otf') format('opentype');
  font-weight: 700; font-display: swap;
}

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

body {
  font-family: 'Lemon Sans Rounded', system-ui, sans-serif;
  color: #1a1a2e;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #ea0029 0%, #c20024 50%, #8f001a 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%; left: -15%;
  width: 55%; height: 180%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  margin: 0 auto 1.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero .tagline {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

/* ── Cards Section ──────────────────────────────────── */
.download-section {
  padding: 4rem 1.5rem;
  text-align: center;
  background: #f9fafb;
}

.download-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.4rem;
}

.download-section .sub {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

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

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  width: 210px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(234,0,41,0.12);
  border-color: #ea0029;
}

.card.coming-soon {
  pointer-events: none;
  cursor: default;
}

.card.coming-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: #e5e7eb;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(80, 80, 80, 0.72);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-icon {
  width: 52px;
  height: 52px;
  color: #ea0029;
}

.card-icon svg { width: 100%; height: 100%; }

.card-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
}

.card-sub {
  font-size: 0.82rem;
  color: #9ca3af;
  font-weight: 400;
}

/* ── Footer / Developer ─────────────────────────────── */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.footer-dev {
  margin-bottom: 1.5rem;
}

.footer-dev .built {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.footer-dev .company {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.footer-dev .company-sub {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.2rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #9ca3af;
  padding: 0.45rem 1rem;
  border: 1px solid #374151;
  border-radius: 9999px;
  transition: all 0.2s;
}

.footer-link:hover {
  color: #fff;
  border-color: #ea0029;
  background: rgba(234,0,41,0.1);
}

.divider {
  width: 60px;
  height: 1px;
  background: #374151;
  margin: 1.75rem auto;
}

.footer .copy {
  font-size: 0.75rem;
  color: #4b5563;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 640px) {
  .hero { padding: 4rem 1.25rem 3rem; }
  .hero h1 { font-size: 2rem; }
  .hero .tagline { font-size: 1rem; }
  .hero-icon { width: 80px; height: 80px; }

  .download-section { padding: 3rem 1.25rem; }
  .download-section h2 { font-size: 1.35rem; }

  .cards { flex-direction: column; align-items: center; }
  .card { width: 100%; max-width: 300px; }
}
