@font-face {
  font-family: "SUIT";
  src: url("../../assets/SUIT.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: #000;
  color: #fff;
  font-family: "SUIT", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scrollbar-width: none;
  text-size-adjust: 100%;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  margin: 0;
  min-width: 320px;
  background: #000;
}

img,
svg {
  display: block;
}

.page-shell {
  min-height: 100dvh;
  background: #000;
  color: #fff;
}

.phone-frame {
  width: 100%;
  margin: 0 auto;
  background: #000;
}

.phone-screen {
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  background: #000;
}

.profile {
  text-align: center;
}

.hero-media {
  width: 100%;
  height: min(100vw, 473px);
  margin: 0 0 10px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-mask-image: linear-gradient(#000 80%, transparent);
  mask-image: linear-gradient(#000 80%, transparent);
}

h1 {
  margin: 0;
  padding: 0 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 15px 0;
}

.video-card {
  width: 100%;
  aspect-ratio: 83 / 45;
  overflow: hidden;
  border-radius: 14px;
  background: #050505;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.store-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.store-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  width: 100%;
  min-height: 84px;
  overflow: hidden;
  border-radius: 14px;
  background: #414143;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  transform: translateZ(0);
  transition:
    transform 150ms ease,
    background-color 150ms ease,
    box-shadow 150ms ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.store-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 150ms ease;
  pointer-events: none;
}

.store-card:hover::after,
.store-card:focus-visible::after {
  opacity: 1;
}

.store-card:active {
  transform: scale(0.98);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.16);
}

.store-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.store-card img {
  width: 64px;
  height: 64px;
  margin-left: 10px;
  border-radius: 8px;
  object-fit: cover;
}

.store-card span {
  display: block;
  min-width: 0;
  padding: 0 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.channel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 20px 0 16px;
  color: #fff;
}

.channel-link {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transform: translateZ(0);
  transition:
    color 150ms ease,
    transform 150ms ease,
    opacity 150ms ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.channel-link:hover,
.channel-link:focus-visible {
  opacity: 0.82;
}

.channel-link:active {
  transform: scale(0.88);
}

.channel-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 5px;
  border-radius: 8px;
}

.channel-link svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.site-footer {
  width: 100%;
  padding: 26px 20px 34px;
  color: rgba(255, 255, 255, 0.72);
  background: #000;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  text-align: center;
}

@media (min-width: 768px) {
  html,
  body {
    background: #3a3a3a;
  }

  .page-shell {
    display: flex;
    justify-content: center;
    min-height: 100dvh;
    padding-top: 52px;
    background: #3a3a3a;
  }

  .phone-frame {
    width: 473px;
    max-width: 473px;
    margin: 14px auto 0;
    border-radius: 60px 60px 0 0;
    box-shadow:
      0 0 0 14px #1a1a1a,
      0 10px 24px rgba(0, 0, 0, 0.08);
  }

  .phone-screen {
    min-height: calc(100dvh - 66px);
    border-radius: 60px 60px 0 0;
  }

  .content-stack {
    padding-right: 29px;
    padding-left: 29px;
  }
}
