:root {
  --bg: #070707;
  --card: #111111;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f5f5;
  --muted: #9b9b9b;
  --sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --display: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(255, 255, 255, 0.06), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

button, input { font: inherit; color: inherit; }

img { max-width: 100%; height: auto; display: block; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 30;
  background: #fff;
  color: #111;
  padding: 8px 12px;
  border-radius: 8px;
}

.skip:focus { top: 12px; }

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr minmax(200px, 280px);
  gap: 28px;
  align-items: center;
  padding: 14px 32px;
  background: rgba(7, 7, 7, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
}

.nav nav { display: flex; gap: 22px; }

.nav nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav nav a[aria-current="page"] {
  color: var(--text);
  box-shadow: inset 0 -2px 0 #fff;
}

.find input {
  width: 100%;
  min-height: 44px;
  background: #161616;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  outline: none;
}

.find input:focus { border-color: rgba(255, 255, 255, 0.4); }

#app {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home {
  width: 100%;
}

.hero {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 14px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: -0.045em; }

h1 {
  margin: 0;
  font-size: clamp(32px, 8vw, 64px);
  line-height: 1;
}

.lede {
  max-width: 46ch;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.stats {
  display: flex;
  gap: 28px;
  margin-top: 26px;
}

.stats strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
}

.stats span { color: var(--muted); font-size: 13px; }

.choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  margin-top: 32px;
}

.choice {
  position: relative;
  display: block;
  min-height: 240px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.choice img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.choice-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 18px 16px;
  text-align: left;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

a.choice:hover { border-color: rgba(255, 255, 255, 0.55); }

.choice.is-soon { cursor: default; }

.choice h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.choice span { color: #e6e6e6; font-size: 14px; }

.reviews {
  width: 100%;
  margin: 28px auto 0;
}

.review-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.review-head .kicker { margin: 0; }

.reviews h2 {
  margin: 0;
  font-size: 28px;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  text-align: left;
}

.review {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
}

.stars {
  margin: 0;
  color: #f2c14e;
  letter-spacing: 0.12em;
  font-size: 14px;
  line-height: 1;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}

.review h3 {
  margin: 0;
  font-size: 15px;
}

.review-top a {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.quote {
  margin: 8px 0 0;
  color: #e4e4e4;
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.review.is-open .quote {
  display: block;
}

.review-meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.more {
  align-self: flex-start;
  margin-top: 6px;
  padding: 6px 0;
  min-height: 32px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin: 10px 0 18px;
}

.bar h1 { margin: 0; font-size: clamp(28px, 6vw, 36px); }

.bar p { margin: 0; color: var(--muted); }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }

.filters button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 44px;
  padding: 8px 14px;
  cursor: pointer;
}

.filters button[aria-pressed="true"] {
  background: var(--text);
  color: #111;
  border-color: var(--text);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  min-height: 100%;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.28); }

.thumb {
  padding: 12px 12px 0;
}

.thumb img {
  width: 100%;
  height: auto;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.price {
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  white-space: nowrap;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 3px 8px;
}

.buys {
  margin-top: 10px;
  color: #d6d6d6;
  font-size: 13px;
  font-weight: 600;
}

.card-body { padding: 16px 16px 18px; }

.card-body p { margin: 0; }

.meta {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card h2 {
  margin: 8px 0 0;
  min-width: 0;
  font-size: 22px;
  overflow-wrap: anywhere;
}

.summary { margin-top: 6px; color: var(--muted); font-size: 14px; }

.empty {
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 48px 28px;
  margin: auto;
  width: min(640px, 100%);
  text-align: center;
}

.empty h2 { margin: 0 0 8px; font-size: 36px; }

.empty p { margin: 0; color: var(--muted); max-width: 46ch; }

.product {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.stage {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 12px;
}

.stage img { width: 100%; height: auto; }

.soon {
  position: relative;
  width: min(920px, 100%);
  margin: auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.soon img {
  width: 100%;
  height: min(68vh, 560px);
  object-fit: cover;
  object-position: center 35%;
}

.soon-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 88px 24px 28px;
  text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}

.soon h1 { font-size: clamp(42px, 7vw, 76px); }

.soon p:last-child {
  margin: 8px auto 0;
  max-width: 62ch;
  color: #e8e8e8;
}

.buy {
  position: sticky;
  top: 96px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}

.back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 8px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.buy h1 { font-size: clamp(36px, 4vw, 52px); margin: 8px 0; }

.buy .price-lg {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  margin: 8px 0 12px;
}

.facts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }

.facts span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  color: var(--muted);
}

.buy .details { color: var(--muted); margin: 0 0 18px; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  color: #111;
  border-radius: 999px;
  min-height: 48px;
  padding: 14px 18px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.btn:hover { background: #e8e8e8; }

.note { margin: 12px 0 0; color: var(--muted); font-size: 13px; }

.gallery {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: auto;
}

.foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding: 16px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.foot img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
}

.foot p { margin: 0; flex: 1; }

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.social a {
  color: var(--text);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

@media (max-width: 980px) {
  .product, .grid, .choices { grid-template-columns: 1fr; }
  .hero { margin: 24px auto; }
  .buy { position: static; }
  .choice img { height: 190px; }
  .review-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }
  .review {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }
  .soon img { height: 420px; }
  #app { width: min(1180px, calc(100% - 32px)); }
}

@media (max-width: 720px) {
  body { overflow-x: clip; }
  .nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 12px 16px;
  }
  .brand img { width: 44px; height: 44px; }
  .nav nav { flex: 1 1 auto; flex-wrap: wrap; gap: 2px 14px; }
  .find { flex: 1 1 100%; }
  .find input { font-size: 16px; }
  #app { width: min(1180px, calc(100% - 32px)); padding: 20px 0 32px; }
  .bar { flex-wrap: wrap; align-items: flex-end; }
  .choice img { height: 180px; }
  .review-head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .review-list {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }
  .review {
    flex: 0 0 min(240px, 78vw);
    scroll-snap-align: start;
  }
  .soon img { height: 320px; }
  .grid { grid-template-columns: 1fr; }
  .card-top { align-items: flex-start; }
  .buy h1 { font-size: clamp(28px, 8vw, 40px); }
  .buy .price-lg { font-size: 32px; }
  .empty { padding: 32px 16px; }
  .empty h1, .empty h2 { font-size: clamp(28px, 8vw, 36px); }
  .foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
  }
  .foot a { min-height: 44px; display: inline-flex; align-items: center; }
  .product { gap: 18px; }
}
