:root {
  color-scheme: light;
  --ink: #0b0e14;
  --muted: #686f7d;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #fff;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.site-header,
.hero {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.site-header {
  padding-top: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 27px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.brand img {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.hero {
  display: flex;
  align-items: center;
  padding-block: 72px 96px;
}

.hero-copy {
  width: min(100%, 760px);
}

h1 {
  margin: 0;
  font-size: clamp(58px, 7vw, 94px);
  line-height: 0.99;
  letter-spacing: -0.067em;
  font-weight: 760;
}

.lede {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.45;
  letter-spacing: -0.026em;
}

.testflight-status {
  margin-top: 46px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 560;
  letter-spacing: -0.012em;
}

@media (max-width: 680px) {
  .site-header,
  .hero {
    width: min(100% - 40px, 1180px);
  }

  .site-header {
    padding-top: 24px;
  }

  .brand {
    gap: 11px;
    font-size: 23px;
  }

  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .hero {
    align-items: flex-start;
    padding-block: 74px 80px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 64px);
    line-height: 1.01;
  }

  .lede {
    margin-top: 26px;
    font-size: 20px;
  }

  .desktop-break {
    display: none;
  }

  .testflight-status {
    margin-top: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
