@font-face {
  font-family: Inter;
  src: url("/inter.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fbfbfa;
  color: #161817;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid #285af5;
  outline-offset: 6px;
}
a:hover {
  color: #285af5;
}
.shell {
  width: min(1280px, calc(100% - 112px));
  margin: auto;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 112px;
  border-bottom: 1px solid #dbded9;
}
.wordmark {
  font-size: 32px;
  font-weight: 760;
  letter-spacing: -3px;
}
.wordmark span {
  color: #285af5;
}
nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
nav [aria-current="page"] {
  color: #285af5;
}
.hero {
  padding: 64px 0 62px;
}
.eyebrow {
  font-size: 13px;
  color: #626763;
  letter-spacing: 0.015em;
}
.hero h1 {
  font-size: clamp(52px, 7.5vw, 105px);
  font-weight: 530;
  line-height: 1.06;
  letter-spacing: -0.065em;
  margin: 32px 0;
}
.hero h1::first-line {
  color: #285af5;
}
.hero p {
  max-width: 670px;
  font-size: 20px;
  color: #626763;
  line-height: 1.7;
  margin: 0;
}
.collection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  border-top: 1px solid #dbded9;
  padding-top: 40px;
}
.card-image {
  display: block;
  aspect-ratio: 1.53;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #dfe7fd;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.card-image:hover img {
  transform: scale(1.025);
}
.type-art {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 35px;
  color: #183ebc;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 550;
  letter-spacing: -2px;
  line-height: 1.1;
}
.launch {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: #fbfbfa;
  color: #161817;
  display: grid;
  place-items: center;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 24px;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  font-size: 13px;
  color: #626763;
}
.card h2 {
  font-size: 28px;
  letter-spacing: -1px;
  font-weight: 550;
  line-height: 1.3;
  margin: 13px 0;
}
.card p {
  font-size: 16px;
  color: #626763;
  line-height: 1.7;
  margin: 0;
}
.card .controls {
  font-size: 14px;
  color: #505a50;
  margin-top: 18px;
}
.card-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.text-link {
  display: inline-flex;
  gap: 28px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
}
.about-project {
  font-size: 14px;
  color: #626763;
}
.collection-note {
  border-top: 1px solid #dbded9;
  margin-top: 70px;
  padding: 30px 0 55px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.collection-note p {
  font-size: 14px;
  max-width: 680px;
  color: #626763;
  margin: 0;
}
footer {
  border-top: 1px solid #dbded9;
  padding: 30px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 14px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: #161817;
  color: white;
  padding: 12px;
}
.skip-link:focus {
  top: 10px;
}
@media (max-width: 900px) {
  .shell {
    width: calc(100% - 56px);
  }
  header {
    height: 90px;
  }
  .hero {
    padding-block: 45px;
  }
  .collection {
    gap: 25px;
  }
  .collection-note {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .shell {
    width: calc(100% - 36px);
  }
  header {
    height: 82px;
  }
  nav {
    gap: 16px;
  }
  .hero {
    padding-block: 32px 40px;
  }
  .hero h1 {
    font-size: 53px;
    margin: 25px 0;
  }
  .hero p {
    font-size: 18px;
  }
  .collection {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 30px;
  }
  .card h2 {
    font-size: 25px;
  }
  .collection-note {
    margin-top: 45px;
    padding-bottom: 35px;
  }
  footer {
    flex-wrap: wrap;
  }
  .card-meta {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
