/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Layout ─── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Hero ─── */
.hero {
  background-color: #00687A;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.hero-content {
  max-width: 560px;
}

.logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  object-fit: contain;
  background-color: #00687A;
  padding: 13px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.tagline {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ─── CTA ─── */
.cta-buttons {
  margin-bottom: 12px;
}

.app-store-btn {
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.app-store-btn:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.coming-soon {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

/* ─── Features ─── */
.features {
  padding: 80px 24px;
  background-color: #f8f9fa;
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #00687A;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #00687A;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* ─── Footer ─── */
footer {
  background-color: #002b33;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 24px;
}

.footer-content {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.contact-info {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #fff;
}

.copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── Legal Pages ─── */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-header {
  background-color: #00687A;
  padding: 32px 24px;
  text-align: center;
}

.legal-header a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
}

.legal-header a:hover {
  color: #fff;
}

.legal-header h1 {
  color: #fff;
  font-size: 1.8rem;
  margin-top: 12px;
}

.legal-page .last-updated {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #00687A;
  margin-top: 28px;
  margin-bottom: 8px;
}

.legal-page p,
.legal-page ul {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 20px;
}

.legal-page li {
  margin-bottom: 6px;
}

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

  .subtitle {
    font-size: 1rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features h2 {
    font-size: 1.6rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
