:root {
  --fs: clamp(16px, 1.8vw, 30px);
  --dim: rgb(255 255 255 / 40%);
  --hairline: rgb(255 255 255 / 20%);
  --section-gap: 5.5em;
}

* { box-sizing: border-box; }

html {
  color-scheme: dark;
  background: #000;
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: var(--fs);
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

::selection { color: #fff; background: #333; }

h1,
h2,
p,
ul { margin: 0; }

h1,
h2 {
  font: inherit;
  font-weight: 400;
}

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

ul {
  padding: 0;
  list-style: none;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade { opacity: 0; }

.ready .fade {
  animation: fade-in 1s cubic-bezier(.16, 1, .3, 1) both;
}

.split {
  width: 100%;
  max-width: 34em;
  margin-inline: auto;
  padding: 2.5em 1.5em calc(var(--section-gap) + env(safe-area-inset-bottom));
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .8em;
  margin-bottom: var(--section-gap);
}

.brand-image {
  width: 100%;
  height: auto;
  border-radius: 1.03em;
  margin-bottom: .6em;
}

.brand-top {
  display: flex;
  align-items: center;
  gap: .4em;
}

.logo {
  display: block;
  inline-size: 1em;
  block-size: 1em;
  flex: 0 0 auto;
}

.about {
  color: var(--dim);
  align-self: stretch;
  line-height: 1.3;
}

.content { padding: 0; }

.app-section { margin-bottom: var(--section-gap); }

.section-title {
  color: #fff;
  margin-bottom: 1em;
}

.product {
  display: grid;
  grid-template-columns: 4.6em 1fr auto;
  align-items: center;
  column-gap: .8em;
  margin-bottom: 1.8em;
  position: relative;
}

.product:last-child { margin-bottom: 0; }

.product-link,
.product-static {
  display: contents;
}

.product-link::after {
  content: "";
  cursor: pointer;
  position: absolute;
  inset: 0;
}

.p-icon {
  inline-size: 4.6em;
  block-size: 4.6em;
  object-fit: cover;
  border-radius: 22.37%;
}

.p-icon-bundle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .18em;
  padding: .72em;
  background: #1c1c1e;
}

.p-icon-bundle img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  border-radius: 22.37%;
}

.p-text,
.p-meta {
  display: flex;
  flex-direction: column;
  gap: .12em;
  min-inline-size: 0;
}

.p-name,
.p-line,
.p-platform { display: block; }

.p-line {
  color: var(--dim);
  line-height: 1.2;
}

.p-platform {
  color: var(--dim);
  display: inline-flex;
  align-items: center;
  gap: .35em;
}

.p-price {
  color: #fff;
  justify-self: end;
  display: inline-flex;
  align-items: center;
}

.p-chevron {
  width: auto;
  height: 1.1em;
  flex-shrink: 0;
}

.p-spin {
  display: block;
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  transform-origin: 50% 50%;
  animation: p-spin 4s linear infinite;
}

@keyframes p-spin { to { transform: rotate(360deg); } }

footer {
  color: #fff;
  margin-top: 0;
  padding: 0;
}

footer ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9em;
}

footer li:first-child { margin-right: auto; }

@media (prefers-reduced-motion: reduce) {
  .fade {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .p-spin { animation: none; }
}

@media (max-width: 768px) {
  :root {
    --fs: 14px;
    --section-gap: 1.5em;
  }

  .split {
    padding: 0 1.5em calc(var(--section-gap) + env(safe-area-inset-bottom));
  }

  .brand { gap: .4em; }

  .brand-top { gap: .45em; }

  .brand-image { border-radius: .85em; }

  .product { margin-bottom: 1.5em; }

  .p-platform { display: none; }

  .desktop-only { display: none; }
}


.lab-note {
  position: fixed;
  z-index: 10;
  left: 12px;
  bottom: 12px;
  max-inline-size: min(38em, calc(100vw - 24px));
  padding: 7px 9px 8px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 999px;
  background: rgb(0 0 0 / 72%);
  color: rgb(255 255 255 / 58%);
  font-size: 11px;
  line-height: 1.15;
  letter-spacing: .01em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .lab-note {
    left: 8px;
    top: 8px;
    bottom: auto;
    max-inline-size: calc(100vw - 16px);
    font-size: 10px;
  }
}
