:root {
  --cabinet: #0c0e12;
  --cabinet-2: #14161c;
  --bliss: #7cb518;
  --amber: #e8a317;
  --luna: #3a7bd5;
  --fog: #c5cbb8;
  --paper: #f2ede3;
  --line: #2a2e38;
  --muted: #8b9086;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--cabinet);
  color: var(--paper);
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  min-height: 100vh;
  letter-spacing: 0.01em;
}

a {
  color: var(--paper);
}

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 8px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.tile {
  width: 36px;
  height: 36px;
  border: 1px solid #3a3f4a;
  border-radius: 7px;
  background: var(--cabinet-2);
  position: relative;
  flex: none;
}

.tile span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tile i {
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 2px;
  background: var(--bliss);
  transform: translateY(-50%);
}

.tile b {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
}

.word {
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 13px;
}

nav {
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: var(--fog);
}

nav a {
  color: var(--fog);
  text-decoration: none;
}

nav a:hover {
  color: var(--paper);
}

.hero {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.kicker {
  color: var(--bliss);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.92;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
  font-weight: 700;
}

.split {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.split em {
  width: 2px;
  height: 0.72em;
  background: var(--bliss);
  display: inline-block;
  font-style: normal;
}

.tag {
  margin: 0 0 28px;
  color: var(--fog);
  font-size: 22px;
  font-weight: 400;
}

.lede {
  max-width: 34rem;
  color: #d5d8ce;
  line-height: 1.55;
  margin: 0 0 28px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.btn-solid {
  background: var(--bliss);
  color: #101208;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--paper);
}

.fine {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.screen {
  aspect-ratio: 4 / 3;
  border: 1px solid #3a3f4a;
  border-radius: 16px;
  background:
    radial-gradient(120% 80% at 50% 20%, #2a241c 0%, transparent 55%),
    radial-gradient(60% 50% at 50% 80%, #1a3a12 0%, transparent 60%),
    linear-gradient(180deg, #1a1d24, #0b0c10);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 3px,
    rgba(0, 0, 0, 0.18) 3px 4px
  );
  opacity: 0.35;
  pointer-events: none;
}

.mercury {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #f2ede3 0 8%, transparent 18%),
    radial-gradient(circle at 50% 55%, #c9a227 0%, #8a3a14 38%, #1a0c08 72%);
  filter: saturate(0.85);
  animation: breathe 5.6s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.96);
    filter: saturate(0.8) brightness(0.95);
  }
  50% {
    transform: scale(1.04);
    filter: saturate(1) brightness(1.08);
  }
}

.pip {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.band {
  border-top: 1px solid var(--line);
  padding: 56px 0;
}

.band h2 {
  margin: 0 0 10px;
  letter-spacing: 0.08em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--bliss);
  font-weight: 700;
}

.band h3 {
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: 0.02em;
}

.cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  border: 1px solid var(--line);
  background: var(--cabinet-2);
  padding: 22px 20px 20px;
  min-height: 160px;
}

.card strong {
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.card p {
  margin: 0;
  color: var(--fog);
  line-height: 1.5;
  font-size: 15px;
}

.price {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sku {
  border: 1px solid var(--line);
  padding: 24px 20px;
}

.sku .amt {
  font-size: 32px;
  margin: 8px 0 12px;
}

.sku p {
  color: var(--fog);
  margin: 0;
  line-height: 1.5;
}

.sku.featured {
  border-color: var(--bliss);
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

footer a {
  color: var(--fog);
}

#wait {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#wait input {
  min-width: 240px;
  height: 44px;
  border: 1px solid var(--line);
  background: #0a0b0e;
  color: var(--paper);
  padding: 0 12px;
  font: inherit;
}

.note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}

@media (max-width: 820px) {
  .hero,
  .cols,
  .price {
    grid-template-columns: 1fr;
  }
  nav {
    display: none;
  }
  h1 {
    letter-spacing: 0.04em;
  }
}
