:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #ecf7f2;
  background: #071712;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 78% 10%, rgb(39 168 115 / 24%), transparent 30rem),
    linear-gradient(145deg, #0b211a 0%, #071712 56%, #05110d 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(72rem, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 9rem) 0 4rem;
}

.hero {
  max-width: 58rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgb(99 221 162 / 22%);
  border-radius: 999px;
  color: #a9dbc3;
  background: rgb(19 66 47 / 55%);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #63dda2;
  box-shadow: 0 0 0 0.3rem rgb(99 221 162 / 12%);
}

.framework {
  margin: 3rem 0 0.75rem;
  color: #63dda2;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.intro {
  max-width: 43rem;
  margin-bottom: 2rem;
  color: #a9beb5;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  border-radius: 0.55rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #062016;
  background: #63dda2;
}

.button-primary:hover {
  background: #82e8b7;
}

.button-secondary {
  border: 1px solid #315b48;
  color: #d4e8de;
  background: rgb(15 49 37 / 62%);
}

.button-secondary:hover {
  border-color: #4f8069;
  background: rgb(22 67 50 / 78%);
}

.next-steps {
  margin-top: clamp(5rem, 12vw, 9rem);
  padding-top: 2rem;
  border-top: 1px solid #244737;
}

.section-heading {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.section-number {
  margin: 0;
  color: #63dda2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8rem;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-grid li {
  display: flex;
  min-height: 9rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid #244737;
  border-radius: 0.75rem;
  background: rgb(10 35 26 / 78%);
}

.step-label {
  color: #8da99c;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

code {
  overflow-wrap: anywhere;
  color: #cff3e1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.55;
}

.step-grid a {
  color: #cff3e1;
  font-weight: 700;
  text-underline-offset: 0.2rem;
}

footer {
  display: flex;
  width: min(72rem, calc(100% - 3rem));
  justify-content: space-between;
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid #183529;
  color: #6f8e80;
  font-size: 0.82rem;
}

footer a {
  text-underline-offset: 0.2rem;
}

@media (max-width: 48rem) {
  .page-shell,
  footer {
    width: min(100% - 2rem, 72rem);
  }

  .page-shell {
    padding-top: 4rem;
  }

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

  .step-grid li {
    min-height: 7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
