@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk-latin-variable.woff2') format('woff2');
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #fffdf7;
  color: #18181b;
  font-family: Inter, system-ui, sans-serif;
}
a {
  color: inherit;
}
a:focus-visible {
  outline: 3px solid #7350c6;
  outline-offset: 6px;
}
.header,
.footer {
  max-width: 1160px;
  margin: auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 23px;
  font-weight: 700;
}
.brand img {
  border-radius: 10px;
}
.learn-more {
  font-size: 14px;
  text-underline-offset: 5px;
}
.download {
  max-width: 1080px;
  margin: 32px auto 64px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 72px;
}
.eyebrow {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 5.5vw, 70px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.055em;
}
h1 span {
  background: linear-gradient(transparent 65%, #e2d1f9 65%);
}
.intro {
  max-width: 420px;
  margin: 26px 0 32px;
  color: #515158;
  font-size: 18px;
  line-height: 1.65;
}
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.store-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  padding: 12px 22px;
  border: 2px solid #18181b;
  border-radius: 12px;
  background: #18181b;
  color: #fff;
  text-decoration: none;
  box-shadow: 4px 4px 0 #d8c1f3;
}
.store-link:hover {
  background: #343438;
}
.store-link small {
  display: block;
  font-size: 12px;
  line-height: 1.25;
}
.store-link strong {
  display: block;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 600;
}
.availability {
  margin: 18px 0 0;
  color: #626267;
  font-size: 12px;
}
.artwork {
  margin: 0;
  border: 1px solid #e8e0d0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 10px 12px 0 #eee6d6;
}
.artwork video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 704 / 1280;
  object-fit: contain;
}
.footer {
  border-top: 1px solid #e8e0d0;
  color: #626267;
  font-size: 12px;
  line-height: 1.6;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer a {
  text-underline-offset: 4px;
}

@media (max-width: 700px) {
  .header {
    padding: 22px 24px;
  }
  .brand {
    font-size: 20px;
    gap: 10px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .learn-more {
    font-size: 12px;
  }
  .download {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 26px;
    margin: 34px auto 48px;
    text-align: center;
  }
  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }
  h1 {
    font-size: clamp(44px, 12vw, 64px);
  }
  .intro {
    max-width: 370px;
    margin: 22px auto 26px;
    font-size: 16px;
  }
  .store-buttons {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  .store-link {
    justify-content: center;
  }
  .artwork {
    width: min(100%, 350px);
    justify-self: center;
  }
  .footer {
    padding: 24px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.desktop-downloads {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 14px;
  font-size: 14px;
  color: #4e5a6b;
}
.desktop-downloads a { text-underline-offset: 4px; }
.desktop-downloads span { margin-left: 5px; }
@media (max-width: 700px) {
  .desktop-downloads { justify-content: center; }
}
