:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #08090c;
  color: #f4f5f7;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 94, 31, .16), transparent 34rem),
    #08090c;
}

main {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 80px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 54px;
}

a { color: #ff8052; }
nav a { color: #c7cbd3; text-decoration: none; }
nav a:first-child { color: #fff; font-weight: 700; margin-right: auto; }

h1 {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
}

h2 {
  margin: 42px 0 10px;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}

p, li {
  color: #b9bec8;
  font-size: 1rem;
  line-height: 1.7;
}

.lead { color: #e7e9ed; font-size: 1.2rem; }
.eyebrow { color: #ff8052; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #ff5e1f;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.card {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid #292d35;
  border-radius: 20px;
  background: rgba(20, 22, 28, .78);
}
.muted { color: #858b96; }

footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid #252831;
  color: #858b96;
  font-size: .9rem;
}
