:root {
  --paper: #f4f1eb;
  --paper-light: #fbfaf7;
  --ink: #11202e;
  --ink-soft: #52606c;
  --line: rgba(17, 32, 46, 0.13);
  --blue: #356df3;
  --blue-deep: #2456d6;
  --blue-soft: #e8eefe;
  --mint: #a9e2ce;
  --peach: #f6c2a1;
  --shadow: 0 30px 80px rgba(33, 50, 67, 0.13);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 6%, rgba(169, 226, 206, 0.22), transparent 25rem),
    var(--paper);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.hero,
.trust-strip,
.downloads,
.install-notes,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 720;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(17, 32, 46, 0.18);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 0.65rem;
  letter-spacing: -0.04em;
}

.header-label {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  align-items: center;
  min-height: 660px;
  padding-block: 76px 88px;
  overflow: hidden;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(53, 109, 243, 0.12);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(3.25rem, 6.3vw, 6.4rem);
  font-weight: 650;
  letter-spacing: -0.067em;
  line-height: 0.94;
}

.hero__lede {
  max-width: 590px;
  margin: 2rem 0 2.2rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.78rem 1.35rem;
  border: 0;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 720;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button--quiet {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.button--quiet:hover {
  background: #fff;
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 26px rgba(53, 109, 243, 0.2);
}

.button--primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(53, 109, 243, 0.28);
}

.button--disabled {
  cursor: not-allowed;
  color: #8a949c;
  background: #edf0f1;
  box-shadow: none;
}

.hero-art {
  position: relative;
  min-height: 450px;
  margin-left: 4rem;
}

.hero-art__window {
  position: absolute;
  z-index: 2;
  top: 25px;
  right: 8px;
  width: min(540px, 88%);
  overflow: hidden;
  border: 1px solid rgba(17, 32, 46, 0.16);
  border-radius: 25px;
  background: rgba(253, 253, 251, 0.94);
  box-shadow: var(--shadow);
  transform: rotate(1.8deg);
}

.hero-art__toolbar {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(17, 32, 46, 0.08);
}

.hero-art__toolbar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd1d4;
}

.hero-art__toolbar > span:first-child {
  background: var(--peach);
}

.hero-art__toolbar-line {
  width: 25%;
  height: 7px;
  margin-left: auto;
  border-radius: 999px;
  background: #e8eaeb;
}

.hero-art__body {
  display: grid;
  grid-template-columns: 31% 69%;
  min-height: 330px;
}

.hero-art__sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 33px 24px;
  background: #f0f1ef;
}

.hero-art__sidebar span {
  width: 75%;
  height: 8px;
  border-radius: 99px;
  background: #d9dddc;
}

.hero-art__sidebar .is-active {
  width: 92%;
  height: 30px;
  margin: -11px -11px 2px;
  background: var(--blue-soft);
}

.hero-art__document {
  padding: 43px 40px;
}

.hero-art__headline {
  width: 53%;
  height: 17px;
  margin-bottom: 28px;
  border-radius: 99px;
  background: var(--ink);
}

.hero-art__line {
  width: 65%;
  height: 7px;
  margin-bottom: 11px;
  border-radius: 99px;
  background: #d8dcdd;
}

.hero-art__line--wide {
  width: 88%;
}

.hero-art__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  padding: 25px;
  border: 1px solid rgba(53, 109, 243, 0.16);
  border-radius: 16px;
  background: #f5f7fe;
}

.hero-art__card span {
  width: 90%;
  height: 7px;
  border-radius: 99px;
  background: #bfc9e2;
}

.hero-art__card span:nth-child(2) {
  width: 70%;
}

.hero-art__card span:nth-child(3) {
  width: 35%;
  background: var(--blue);
}

.hero-art__phone {
  position: absolute;
  z-index: 3;
  right: 74%;
  bottom: 0;
  width: 170px;
  height: 340px;
  padding: 16px;
  border: 7px solid #182530;
  border-radius: 36px;
  background: var(--paper-light);
  box-shadow: 0 30px 70px rgba(17, 32, 46, 0.24);
  transform: rotate(-5deg);
}

.hero-art__island {
  width: 58px;
  height: 15px;
  margin: -7px auto 31px;
  border-radius: 999px;
  background: #182530;
}

.hero-art__phone-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-art__phone-copy > div {
  width: 58%;
  height: 15px;
  margin-bottom: 7px;
  border-radius: 99px;
  background: var(--ink);
}

.hero-art__phone-copy > span {
  height: 38px;
  border: 1px solid #dde1df;
  border-radius: 11px;
  background: #fff;
}

.hero-art__phone-copy button {
  width: 38px;
  height: 38px;
  align-self: flex-end;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 1.2rem;
}

.hero-art__glow {
  position: absolute;
  z-index: 1;
  top: 15%;
  right: -10%;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: var(--mint);
  filter: blur(2px);
  opacity: 0.72;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 86px;
  align-items: center;
  border-block: 1px solid var(--line);
}

.trust-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 45px;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.trust-strip > div:first-child {
  justify-content: flex-start;
}

.trust-strip > div:last-child {
  justify-content: flex-end;
  border-right: 0;
}

.trust-strip strong {
  color: var(--ink);
}

.trust-strip__icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-weight: 760;
}

.downloads {
  padding-block: 130px 100px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(290px, 0.58fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 54px;
}

.section-heading .eyebrow,
.install-notes .eyebrow {
  margin-bottom: 1rem;
}

h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.release-card {
  position: relative;
  min-height: 620px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 104% -7%, rgba(169, 226, 206, 0.48), transparent 15rem),
    var(--paper-light);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.release-card--ios {
  background:
    radial-gradient(circle at 104% -7%, rgba(246, 194, 161, 0.5), transparent 15rem),
    var(--paper-light);
}

.release-card--available {
  box-shadow: 0 25px 60px rgba(17, 32, 46, 0.08);
}

.release-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
}

.platform-symbol {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(17, 32, 46, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 #fff;
}

.platform-symbol--mac span {
  width: 25px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 3px;
}

.platform-symbol--mac span::after {
  display: block;
  width: 15px;
  height: 2px;
  margin: 20px auto 0;
  border-radius: 9px;
  background: var(--ink);
  content: "";
}

.platform-symbol--phone span {
  width: 16px;
  height: 27px;
  border: 2px solid var(--ink);
  border-radius: 5px;
}

.platform-symbol--phone span::after {
  display: block;
  width: 3px;
  height: 3px;
  margin: 19px auto 0;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.release-status {
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(17, 32, 46, 0.1);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-card--available .release-status {
  color: #276850;
  border-color: rgba(39, 104, 80, 0.14);
  background: #e9f7f1;
}

.release-card__platform {
  margin: 0 0 0.85rem;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-card h3 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.release-card__description {
  min-height: 54px;
  margin: 1.25rem 0 2.4rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.release-meta {
  display: grid;
  margin: 0 0 2.2rem;
  border-top: 1px solid var(--line);
}

.release-meta__item {
  display: grid;
  grid-template-columns: minmax(100px, 0.42fr) 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.release-meta dt {
  color: var(--ink-soft);
}

.release-meta dd {
  margin: 0;
  font-weight: 650;
  text-align: right;
}

.release-actions {
  display: flex;
  align-items: center;
}

.release-actions .button {
  width: 100%;
}

.checksum {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.checksum code {
  overflow: hidden;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checksum__label {
  font-weight: 720;
}

.copy-button {
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 720;
}

.install-notes {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 7rem;
  padding-block: 100px 130px;
  border-top: 1px solid var(--line);
}

.install-notes__intro h2 {
  max-width: 460px;
  font-size: clamp(2.2rem, 3.8vw, 4rem);
}

.install-notes__items article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.install-notes__items article:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--blue-deep);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.install-notes h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.install-notes article p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 130px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.76rem;
}

footer p {
  margin: 0;
  text-align: center;
}

footer > a:last-child {
  justify-self: end;
  font-weight: 650;
  text-decoration: none;
}

.brand--footer {
  font-size: 0.8rem;
}

.brand--footer .brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 0.56rem;
}

:focus-visible {
  outline: 3px solid rgba(53, 109, 243, 0.4);
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-art {
    min-height: 420px;
    margin: 5rem 0 0 3rem;
  }

  .hero-art__window {
    right: 4%;
    width: 80%;
  }

  .hero-art__phone {
    right: auto;
    left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .release-card {
    padding: 30px;
  }

  .install-notes {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer p {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .trust-strip,
  .downloads,
  .install-notes,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 76px;
  }

  .header-label {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 58px 70px;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5.1rem);
  }

  .hero-art {
    min-height: 310px;
    margin: 4rem -2rem 0 1rem;
  }

  .hero-art__window {
    width: 86%;
    border-radius: 19px;
  }

  .hero-art__body {
    min-height: 230px;
  }

  .hero-art__document {
    padding: 30px 22px;
  }

  .hero-art__sidebar {
    padding: 26px 15px;
  }

  .hero-art__phone {
    width: 125px;
    height: 250px;
    border-width: 5px;
    border-radius: 28px;
  }

  .hero-art__phone-copy {
    gap: 10px;
  }

  .hero-art__phone-copy > span {
    height: 29px;
  }

  .hero-art__phone-copy > button {
    width: 30px;
    height: 30px;
  }

  .hero-art__glow {
    width: 280px;
    height: 280px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding-block: 13px;
  }

  .trust-strip > div,
  .trust-strip > div:first-child,
  .trust-strip > div:last-child {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip > div:last-child {
    border-bottom: 0;
  }

  .downloads {
    padding-block: 92px 74px;
  }

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

  .release-card {
    min-height: 0;
    border-radius: 24px;
  }

  .release-card__topline {
    margin-bottom: 40px;
  }

  .release-card h3 {
    font-size: 2.5rem;
  }

  .release-meta__item {
    grid-template-columns: 90px 1fr;
  }

  .install-notes {
    gap: 2.5rem;
    padding-block: 74px 90px;
  }

  .install-notes__items article {
    gap: 1rem;
  }

  footer {
    min-height: 96px;
  }

  footer > a:last-child {
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
