* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: #eeeae1;
  color: #111;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font-family: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 100;
}

/* HEADER */

.site-header {
  height: 82px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,.1);
  background: rgba(238,234,225,.9);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
}

.brand-mark {
  font-size: 22px;
}

.brand-dim {
  opacity: .45;
  font-weight: 500;
}

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
}

.main-nav a {
  opacity: .65;
  transition: .2s;
}

.main-nav a:hover {
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.button-small {
  padding: 11px 17px;
}

.button-outline {
  border: 1px solid rgba(0,0,0,.2);
}

.button-primary {
  background: #111;
  color: white;
}

.menu-button {
  display: none;
  background: none;
  border: 0;
}

/* HERO */

.hero {
  min-height: 680px;
  padding: 80px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  overflow: hidden;
}

.eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pulse {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #111;
  margin-right: 7px;
}

.hero h1 {
  font-size: clamp(65px, 9vw, 125px);
  line-height: .82;
  letter-spacing: -7px;
  margin: 25px 0;
}

.hero h1 em,
.download-section h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-text {
  max-width: 530px;
  font-size: 17px;
  opacity: .65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
}

.text-link {
  font-size: 13px;
  font-weight: 600;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
}

.hero-stats strong {
  display: block;
  font-size: 28px;
}

.hero-stats strong span {
  font-size: 16px;
}

.hero-stats small {
  opacity: .5;
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

/* HERO PHONE */

.hero-art {
  height: 560px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 50%;
}

.orbit-one {
  width: 500px;
  height: 500px;
}

.orbit-two {
  width: 370px;
  height: 370px;
}

.phone {
  width: 245px;
  height: 490px;
  border-radius: 38px;
  padding: 10px;
  background: #151515;
  box-shadow: 30px 35px 70px rgba(0,0,0,.25);
  transform: rotate(5deg);
  position: relative;
  z-index: 3;
}

.phone-screen {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  padding: 20px;
  background: linear-gradient(145deg,#d7e2ff,#c9d7b9);
}

.phone-speaker {
  position: absolute;
  width: 65px;
  height: 5px;
  border-radius: 10px;
  background: #000;
  left: 50%;
  top: 17px;
  transform: translateX(-50%);
  z-index: 5;
}

.screen-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.weather {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.weather strong {
  font-size: 75px;
  font-weight: 400;
}

.sun {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #eee49d;
  position: absolute;
  right: -30px;
  top: 150px;
}

.screen-dock {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  height: 58px;
  border-radius: 20px;
  background: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.art-label {
  position: absolute;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  z-index: 4;
}

.label-top {
  top: 70px;
  left: 20px;
}

.label-bottom {
  bottom: 50px;
  right: 20px;
}

.sparkle {
  position: absolute;
  font-size: 25px;
}

.sparkle-a {
  top: 110px;
  right: 60px;
}

.sparkle-b {
  bottom: 110px;
  left: 40px;
}

/* TICKER */

.ticker {
  padding: 18px 6%;
  background: #111;
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

/* COMMON SECTIONS */

.section {
  padding: 110px 6%;
}

.section-kicker {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  opacity: .5;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 45px;
}

.intro-grid h2 {
  font-size: clamp(50px,7vw,90px);
  line-height: .9;
  letter-spacing: -4px;
}

.intro-grid h2 span {
  font-family: Georgia, serif;
  font-weight: 400;
}

.large-copy {
  font-size: 25px;
  max-width: 600px;
  margin-bottom: 30px;
}

/* FEATURES */

.feature-section {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  padding-top: 20px;
}

.feature-card {
  min-height: 460px;
  padding: 30px;
  border-radius: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-dark {
  background: #151515;
  color: white;
}

.feature-lime {
  background: #d8ef68;
}

.feature-paper {
  background: #f8f5ed;
}

.card-number {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  opacity: .5;
}

.card-icon {
  font-size: 35px;
  margin-top: 50px;
}

.feature-card h3 {
  font-size: 43px;
  line-height: .9;
  margin: 25px 0;
  letter-spacing: -2px;
}

.feature-card h3 em {
  font-family: Georgia, serif;
  font-weight: 400;
}

.feature-card p {
  opacity: .65;
  font-size: 14px;
  max-width: 330px;
}

.card-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
}

/* DEVICES */

.device-section {
  position: relative;
  overflow: hidden;
}

.install-header {
  margin-bottom: 45px;
}

.install-header h2 {
  font-size: clamp(50px,7vw,90px);
  line-height: .9;
  letter-spacing: -4px;
  margin: 15px 0 30px;
}

.brand-select {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 999px;
  background: #f8f5ed;
  font-family: "DM Mono", monospace;
  font-size: 12px;
}

.brand-select select {
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.install-card {
  min-height: 520px;
  padding: 22px;
  border-radius: 28px;
  background: #f8f5ed;
  border: 1px solid rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: .3s;
}

.install-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.device-art {
  height: 250px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 18px;
  margin-bottom: 22px;
}

.device-art::before {
  content: "";
  position: absolute;
  width: 145px;
  height: 245px;
  left: 50%;
  top: 25px;
  transform: translateX(-50%);
  border-radius: 25px;
  background: #111;
  box-shadow: 0 20px 35px rgba(0,0,0,.25);
}

.device-art::after {
  content: "";
  position: absolute;
  width: 127px;
  height: 227px;
  left: 50%;
  top: 34px;
  transform: translateX(-50%);
  border-radius: 19px;
  background: linear-gradient(145deg,#dce7ff,#7c91b4);
}

.device-art-one {
  background: #d9e0d6;
}

.device-art-two {
  background: #ded7cc;
}

.device-art-three {
  background: #d8dde2;
}

.device-art span {
  position: relative;
  z-index: 3;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  opacity: .55;
}

.codename {
  width: fit-content;
  background: #111;
  color: white;
  border-radius: 8px;
  padding: 6px 10px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  margin-bottom: 13px;
}

.install-card h3 {
  font-size: 21px;
  line-height: 1.15;
}

.maintainer {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding-top: 25px;
  font-size: 12px;
}

.maintainer span {
  opacity: .5;
}

.download-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 14px 17px;
  background: #111;
  color: white;
  border-radius: 12px;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  transition: .2s;
}

.download-pill:hover {
  background: #333;
  transform: translateX(4px);
}

/* ORBS */

.install-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  pointer-events: none;
}

.install-orb-left {
  left: -150px;
  top: 100px;
  background: #a8c5ff;
}

.install-orb-right {
  right: -150px;
  bottom: 50px;
  background: #d8ef68;
}

/* DOWNLOAD */

.download-section {
  padding: 120px 6%;
  background: #111;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.download-section h2 {
  font-size: clamp(60px,8vw,110px);
  line-height: .85;
  letter-spacing: -5px;
  margin-top: 25px;
}

.download-side {
  align-self: center;
  max-width: 430px;
}

.download-side p {
  font-size: 20px;
  opacity: .65;
  margin-bottom: 30px;
}

.download-side small {
  display: block;
  margin-top: 18px;
  opacity: .45;
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

/* FOOTER */

footer {
  background: #111;
  color: white;
  padding: 35px 6%;
  border-top: 1px solid rgba(255,255,255,.15);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-top p {
  opacity: .5;
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 20px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  opacity: .7;
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  opacity: .45;
}

/* MOBILE */

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .intro-grid,
  .download-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-art {
    height: 500px;
  }

  .feature-section,
  .device-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 0 20px;
  }

  .site-header > .button {
    display: none;
  }

  .hero,
  .section,
  .download-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero h1 {
    font-size: 70px;
    letter-spacing: -4px;
  }

  .hero-stats {
    gap: 25px;
  }

  .hero-art {
    transform: scale(.8);
  }

  .feature-section,
  .device-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 35px;
  }

  .large-copy {
    font-size: 20px;
  }

  .download-section h2 {
    font-size: 65px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}