:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --ink: #17324d;
  --muted: #50627a;
  --panel: #fff8ec;
  --line: rgba(23, 50, 77, 0.16);
  --sun: #ffd166;
  --leaf: #4fba6f;
  --ocean: #2477b8;
  --coral: #e76f51;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f6fbff;
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 251, 255, 0.92), rgba(246, 251, 255, 0.54) 48%, rgba(246, 251, 255, 0.08));
}

.hero__content {
  position: relative;
  width: min(620px, calc(100% - 32px));
  margin-left: clamp(16px, 7vw, 96px);
  padding: 24px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--ocean);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.4rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: var(--muted);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.button--primary {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.72);
}

.trust {
  margin-top: 18px;
  font-weight: 700;
}

.release,
.install,
.document {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.release {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  padding: 56px 0 36px;
}

.release h2,
.install h2,
.document h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.release p,
.install p,
.document p {
  line-height: 1.7;
  color: var(--muted);
}

.release__meta {
  display: grid;
  gap: 12px;
  margin: 0;
}

.release__meta div,
.steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}

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

dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.install {
  padding: 32px 0 70px;
}

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

.steps span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--sun);
  font-weight: 900;
}

.steps h3 {
  margin: 16px 0 8px;
}

.page {
  background: #fffdf8;
}

.document {
  padding: 48px 0;
  max-width: 760px;
}

.back {
  color: var(--ocean);
  font-weight: 800;
}

@media (max-width: 760px) {
  .hero {
    min-height: 88vh;
    align-items: end;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(246, 251, 255, 0.96), rgba(246, 251, 255, 0.36));
  }

  .hero__content {
    margin: 0 auto;
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .release,
  .steps {
    grid-template-columns: 1fr;
  }
}

