:root {
  --ink: #172126;
  --muted: #60727a;
  --paper: #fbf8ef;
  --panel: #ffffff;
  --line: #d9e1df;
  --green: #38bf72;
  --teal: #1598a6;
  --amber: #f5b84b;
  --red: #e55342;
  --night: #10232b;
  --shadow: 0 18px 55px rgba(16, 35, 43, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: #0b7887;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 239, .92);
  border-bottom: 1px solid rgba(23, 33, 38, .1);
  backdrop-filter: blur(12px);
}

.nav {
  max-width: 1120px;
  min-height: 74px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

main {
  overflow: hidden;
}

.hero {
  max-width: 1120px;
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: 70px 22px 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 410px);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(54px, 6vw, 84px);
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
}

h3 {
  font-size: 22px;
}

.lede {
  max-width: 620px;
  margin: 22px 0 0;
  color: #35474e;
  font-size: 21px;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  background: var(--green);
}

.button.secondary {
  background: var(--amber);
}

.device-art {
  display: grid;
  place-items: center;
  min-height: 440px;
}

.hero-device {
  display: block;
  width: 100%;
  max-width: 410px;
  height: auto;
  filter: drop-shadow(0 24px 29px rgba(16, 35, 43, .24));
}

.screen {
  position: relative;
  width: min(82vw, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, #163640 0 48%, #0b181d 49% 70%, #05090b 71% 100%);
  box-shadow:
    inset 0 0 0 12px #111,
    inset 0 0 0 20px #242b2d,
    0 24px 58px rgba(16, 35, 43, .28);
  color: #effcff;
  display: grid;
  place-items: center;
  text-align: center;
}

.screen::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -72px;
  width: 66px;
  height: 104px;
  transform: translateX(-50%);
  background: #1f2528;
  border-radius: 0 0 18px 18px;
  z-index: -1;
}

.screen-ring {
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  border: 12px solid rgba(56, 191, 114, .22);
  border-top-color: var(--amber);
  border-right-color: var(--green);
  border-bottom-color: var(--red);
}

.screen-title,
.screen-value,
.screen-grid,
.screen-pill {
  position: absolute;
}

.screen-title {
  top: 92px;
  font-weight: 900;
  font-size: 25px;
}

.screen-value {
  top: 132px;
  color: #fff;
  font-weight: 900;
  font-size: 64px;
}

.screen-grid {
  top: 222px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  color: #c8f6ff;
  font-weight: 800;
}

.screen-pill {
  bottom: 90px;
  padding: 6px 18px;
  color: #04140b;
  background: var(--green);
  border: 2px solid rgba(255, 255, 255, .65);
  font-weight: 900;
}

.notice,
.section,
.footer {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.section {
  padding-top: 82px;
  padding-bottom: 28px;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 28px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.steps article,
.copy-block,
.download-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.steps article {
  min-height: 245px;
  padding: 22px;
}

.step-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  place-items: center;
  background: var(--amber);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.steps p,
.copy-block p,
.copy-block li,
.latest p,
.compact p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
}

.copy-block {
  padding: 28px;
}

.copy-block ol {
  padding-left: 22px;
}

.copy-block li + li {
  margin-top: 10px;
}

.small-note {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.text-link {
  font-weight: 900;
}

.alt .copy-block {
  border-top: 6px solid var(--green);
}

.download-panel {
  padding: 0;
  overflow: hidden;
}

.latest {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  background: #effbf4;
  border-bottom: 1px solid var(--line);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

td {
  color: #35474e;
}

.tag {
  display: inline-flex;
  min-width: 72px;
  justify-content: center;
  padding: 4px 8px;
  border: 1px solid var(--line);
  background: #f4f6f3;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.tag.good {
  background: var(--green);
  border-color: var(--green);
  color: #04140b;
}

.compact {
  max-width: 840px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 34px;
  padding-bottom: 34px;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 42px;
  }

  .device-art {
    min-height: 360px;
  }

  .hero-device {
    width: min(82vw, 390px);
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 32px;
  }

  .lede {
    font-size: 18px;
  }

  .hero-actions,
  .latest,
  .notice {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .section {
    padding-top: 60px;
  }

  .screen-title {
    top: 82px;
    font-size: 21px;
  }

  .screen-value {
    top: 122px;
    font-size: 54px;
  }

  .screen-grid {
    top: 202px;
    gap: 34px;
  }

  .screen-pill {
    bottom: 78px;
  }
}
