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

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

a {
  color: inherit;
  text-decoration: none;
}

/* ── Nav ─────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 100;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.logo-img {
  height: 56px;
  width: auto;
}

.logo-text {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #1a1a2e;
}

/* ── Hero ────────────────────────────────────────── */

.hero {
  padding: 10rem 2rem 6rem;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #f5f5f7 100%);
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Apps Section ────────────────────────────────── */

.apps-section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.apps-section h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  text-align: center;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.app-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.app-card:hover {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.app-card.coming-soon {
  opacity: 0.55;
  cursor: default;
}

.app-card.coming-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.08);
}

.app-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.app-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.app-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
}

.app-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
}

/* ── Footer ──────────────────────────────────────── */

footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand-img {
  height: 16px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: #888;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: #aaa;
}

/* ── Legal Pages ─────────────────────────────────── */

.legal {
  padding: 8rem 2rem 4rem;
  max-width: 720px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.legal .updated {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 3rem;
}

.legal h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.legal p,
.legal ul {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal ul {
  padding-left: 1.5rem;
}

.legal li {
  margin-bottom: 0.5rem;
}

.legal a {
  color: #2563eb;
}

.legal a:hover {
  text-decoration: underline;
}

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 640px) {
  .hero {
    padding: 8rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
