:root {
  color-scheme: light dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.16), transparent 42%),
    linear-gradient(315deg, rgba(163, 230, 53, 0.18), transparent 36%),
    #f8fafc;
}

main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.shell {
  width: min(100%, 840px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 72px;
  font-size: 17px;
  font-weight: 700;
}

.brand img {
  width: 44px;
  height: 44px;
}

.hero {
  display: grid;
  gap: 24px;
}

.eyebrow {
  margin: 0;
  color: #0369a1;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 9vw, 104px);
  line-height: 0.94;
}

.summary {
  max-width: 620px;
  margin: 0;
  color: #334155;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.pill.primary {
  border-color: #0f172a;
  background: #0f172a;
  color: #ffffff;
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #020617;
    color: #f8fafc;
  }

  body {
    background:
      linear-gradient(135deg, rgba(56, 189, 248, 0.22), transparent 42%),
      linear-gradient(315deg, rgba(163, 230, 53, 0.18), transparent 36%),
      #020617;
  }

  .summary {
    color: #cbd5e1;
  }

  .eyebrow {
    color: #7dd3fc;
  }

  .pill {
    border-color: #334155;
    background: rgba(15, 23, 42, 0.7);
    color: #f8fafc;
  }

  .pill.primary {
    border-color: #e2e8f0;
    background: #f8fafc;
    color: #020617;
  }
}

@media (max-width: 560px) {
  main {
    place-items: start;
    padding: 24px;
  }

  .brand {
    margin-bottom: 56px;
  }

  .actions {
    flex-direction: column;
  }

  .pill {
    width: 100%;
  }
}
