:root {
  --bg: #1b1b1b;
  --footer-bg: #0a0412;
  --text: #f5f2ee;
  --muted: rgba(245, 242, 238, 0.56);
  --line: rgba(255, 255, 255, 0.08);
  --ease: cubic-bezier(.19, 1, .22, 1);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  width: 100%;
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
  overflow-x: clip;
}

.nav {
  position: fixed;
  inset: 22px 26px auto 26px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  pointer-events: none;
}

.brand,
.nav-pill {
  pointer-events: auto;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand img {
  display: block;
  width: clamp(142px, 10vw, 178px);
  height: auto;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.045);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .11);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-pill a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.72);
  opacity: .72;
  text-shadow: none;
  transition: opacity .24s var(--ease), color .24s var(--ease), text-shadow .24s var(--ease);
}

.nav-pill a.is-active {
  color: #fff;
  opacity: 1;
  text-shadow: 0 0 7px rgba(255, 255, 255, .32), 0 0 14px rgba(255, 255, 255, .08);
}

.nav-pill:has(a:hover) a {
  opacity: .34;
  color: rgba(255, 255, 255, .42);
  text-shadow: none;
}

.nav-pill:has(a:hover) a:hover {
  opacity: 1;
  color: #fff;
  text-shadow: 0 0 7px rgba(255, 255, 255, .36), 0 0 14px rgba(255, 255, 255, .1);
}

.hero {
  width: 100%;
  min-height: 100svh;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(92px, 10vh, 118px) 0 0;
  overflow: hidden;
  background: var(--bg);
}

@media (min-width: 1061px) {
  .hero {
    height: 100svh;
    min-height: 720px;
  }
}

.hero-copy {
  width: min(1280px, 92vw);
  margin: 0 auto;
  text-align: center;
}

h1 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  font-size: clamp(56px, 6.8vw, 126px);
  line-height: .88;
  letter-spacing: -0.07em;
  font-weight: 850;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-subline {
  width: 100%;
  max-width: none;
  margin: clamp(18px, 2.4vh, 26px) auto 0;
  color: rgba(255, 255, 255, .52);
  font-size: clamp(13px, .92vw, 16px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.product-strip {
  width: 100%;
  margin-top: clamp(36px, 5vh, 58px);
  padding: 0 clamp(16px, 2.5vw, 42px) clamp(34px, 4.8vh, 58px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 18px);
  align-items: stretch;
}

.product-card {
  position: relative;
  height: clamp(360px, 42vh, 430px);
  overflow: hidden;
  border-radius: 0;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
  isolation: isolate;
  transform: translateZ(0);
  transition: transform .55s var(--ease), border-color .55s var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, .22);
}

.product-info {
  position: absolute;
  inset: auto 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-name {
  font-size: clamp(26px, 2.25vw, 43px);
  line-height: .88;
  letter-spacing: -0.07em;
  font-weight: 690;
  text-transform: uppercase;
  max-width: 9ch;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  height: 25px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .78);
}

.buy-now {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .96);
  text-shadow: 0 0 10px rgba(255, 255, 255, .14);
}

.card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  font-size: 0;
}

.footer {
  min-height: 100vh;
  width: 100%;
  background: var(--footer-bg);
  position: sticky;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 26px 32px;
}

.footer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  z-index: 1;
  pointer-events: none;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .055);
  z-index: 4;
  pointer-events: none;
}

.footer-copy {
  position: relative;
  z-index: 3;
  text-align: center;
  width: min(940px, 94vw);
  margin: 0 auto;
}

.footer-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.2vw, 104px);
  line-height: .95;
  letter-spacing: -0.07em;
  font-weight: 560;
  text-wrap: balance;
}

.footer-copy h2 span {
  display: block;
  margin-top: .08em;
  color: #fff;
  font-size: .62em;
  letter-spacing: -0.055em;
}

.footer-bottom {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: rgba(255, 255, 255, .47);
  font-size: 14px;
  letter-spacing: -0.02em;
  z-index: 3;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  border-bottom: 1px solid rgba(255, 255, 255, .34);
}

@media (max-height: 800px) and (min-width: 1061px) {
  .hero {
    min-height: 640px;
  }

  h1 {
    font-size: clamp(52px, 6.2vw, 104px);
  }

  .product-strip {
    margin-top: clamp(28px, 4vh, 44px);
    padding-bottom: 28px;
  }

  .product-card {
    height: clamp(320px, 38vh, 370px);
  }
}

@media (max-width: 1180px) {
  .hero {
    height: auto;
    min-height: 100svh;
    justify-content: flex-start;
    padding: 132px 0 56px;
    overflow: hidden;
  }

  .hero-copy {
    width: min(900px, 92vw);
  }

  .hero-subline {
    white-space: normal;
    max-width: 640px;
  }

  .product-strip {
    width: min(920px, 100%);
    margin: clamp(42px, 6vh, 64px) auto 0;
    padding: 0 clamp(16px, 3.5vw, 28px) 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .product-card {
    height: 360px;
  }
}

@media (max-width: 860px) {
  .nav {
    inset: 16px 16px auto 16px;
    grid-template-columns: 1fr;
    row-gap: 14px;
    justify-items: center;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    width: 138px;
  }

  .nav-pill {
    justify-self: center;
    gap: 22px;
    min-height: 44px;
    padding: 0 18px;
  }

  .hero {
    padding: 148px 0 54px;
  }

  h1 {
    max-width: 92vw;
    font-size: clamp(46px, 12.8vw, 74px);
    line-height: .91;
    letter-spacing: -0.065em;
  }

  .hero-subline {
    max-width: 470px;
    margin-top: 18px;
    padding: 0 10px;
    font-size: clamp(14px, 3.6vw, 16px);
    line-height: 1.35;
  }

  .product-strip {
    width: min(520px, 100%);
    margin-top: 38px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-card {
    height: clamp(320px, 54svh, 420px);
  }

  .product-name {
    font-size: clamp(32px, 9vw, 48px);
  }

  .product-meta {
    font-size: 12px;
  }

  .footer {
    position: relative;
    min-height: 100svh;
    padding: 118px 18px 82px;
  }

  .footer-copy h2 {
    font-size: clamp(44px, 13vw, 74px);
    line-height: .98;
  }

  .footer-copy h2 span {
    font-size: clamp(24px, 7vw, 38px);
    letter-spacing: -0.04em;
  }

  .footer-bottom {
    left: 18px;
    right: 18px;
    bottom: 24px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .nav {
    inset: 15px 14px auto 14px;
    row-gap: 12px;
  }

  .brand img {
    width: 126px;
  }

  .nav-pill {
    width: min(100%, 332px);
    gap: 0;
    justify-content: space-between;
    padding: 0 22px;
  }

  .nav-pill a {
    font-size: 16px;
  }

  .hero {
    padding-top: 140px;
  }

  h1 {
    font-size: clamp(42px, 13.2vw, 58px);
  }

  .hero-subline {
    max-width: 340px;
    font-size: 14px;
  }

  .product-strip {
    margin-top: 34px;
  }

  .product-card {
    height: 330px;
  }

  .product-info {
    inset: auto 16px 16px;
  }

  .product-name {
    font-size: clamp(30px, 8vw, 38px);
  }

  .footer-bottom {
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
  }
}
