:root {
  color-scheme: light;
  --sky: #11a6e8;
  --sky-2: #5ad5ff;
  --ink: #102b50;
  --muted: #456078;
  --cream: #fff4d8;
  --gold: #ffd247;
  --orange: #ff8f2e;
  --green: #36bd69;
  --coral: #ff5b5f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 221, 83, 0.45), transparent 22rem),
    linear-gradient(180deg, var(--sky), var(--sky-2) 58%, #d8fff7);
  min-height: 100vh;
}

a {
  color: inherit;
}

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 56px;
}

.hero,
.card {
  background: rgba(255, 251, 239, 0.93);
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(16, 43, 80, 0.16);
}

.hero {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px;
}

.icon {
  width: 112px;
  height: 112px;
  border-radius: 24px;
  box-shadow: 0 10px 22px rgba(16, 43, 80, 0.24);
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.95;
}

h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

p,
li {
  font-size: 17px;
  line-height: 1.6;
}

.muted {
  color: var(--muted);
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--orange));
  color: #102b50;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 8px 16px rgba(255, 143, 46, 0.26);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.card {
  padding: 22px;
  margin-top: 18px;
}

.badge {
  display: inline-block;
  margin: 4px 6px 4px 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
  font-weight: 900;
}

footer {
  margin-top: 24px;
  color: rgba(16, 43, 80, 0.72);
  font-weight: 700;
  text-align: center;
}

@media (max-width: 680px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .icon {
    margin: 0 auto;
  }

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

  .actions {
    justify-content: center;
  }
}
