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

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #fffbf5;
  color: #1c1917;
}

/* ── Hero ── */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 64px;
  background: linear-gradient(160deg, #fff7ed 0%, #fffbf5 60%);
}

.hero__logo {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1c1917;
  line-height: 1.1;
}

.hero__title span {
  color: #f97316;
}

.hero__tagline {
  margin-top: 16px;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #78716c;
  font-weight: 400;
  max-width: 480px;
}

.hero__cta {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 32px;
  background-color: #f97316;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.hero__cta:hover {
  background-color: #ea6c0a;
  transform: translateY(-1px);
}

/* ── Apps ── */

.apps {
  padding: 48px 24px 80px;
  max-width: 960px;
  margin: 0 auto;
}

.apps__heading {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a8a29e;
  margin-bottom: 24px;
  text-align: center;
}

.apps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.app-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, transform 0.1s ease;
}

.app-card:hover {
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);
  transform: translateY(-2px);
}

.app-card__icon {
  width: 40px;
  height: 40px;
  background-color: #fef3c7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.app-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1c1917;
}

.app-card__desc {
  margin-top: 6px;
  font-size: 0.875rem;
  color: #78716c;
  line-height: 1.5;
}

.app-card__arrow {
  margin-top: auto;
  padding-top: 20px;
  font-size: 1.25rem;
  color: #f97316;
}

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

.app-card__badge {
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a8a29e;
}

/* ── Footer ── */

footer {
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
  color: #a8a29e;
  border-top: 1px solid #fde8d0;
}
