:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --soft: #f5f5f7;
  --line: #d2d2d7;
  --panel: #ffffff;
  --blue: #0071e3;
  --blue-dark: #005bb5;
  --orange: #ff7a1a;
  --green: #40b980;
  --pink: #ff5d8f;
  --yellow: #ffd84d;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --page-max: 1200px;
  --image-radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  letter-spacing: 0;
}

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

button,
input,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  border-radius: var(--image-radius);
}

svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -44px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 245, 247, 0.84);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.nav {
  width: min(100%, var(--page-max));
  height: 44px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(0, 0, 0, 0.78);
  font-size: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  font-weight: 700;
}

.pear-mark {
  position: relative;
  width: 18px;
  height: 21px;
}

.pear-mark::before {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 0;
  width: 12px;
  height: 17px;
  background: #111;
  border-radius: 54% 46% 58% 42% / 62% 48% 52% 38%;
}

.pear-mark::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 9px;
  height: 6px;
  border-radius: 9px 0 9px 0;
  background: #111;
  transform: rotate(-20deg);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
}

.nav a {
  opacity: 0.86;
  transition: opacity 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  opacity: 1;
  color: #000;
}

.icon-button {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.bag-button {
  position: relative;
}

.bag-count {
  position: absolute;
  right: 2px;
  top: 3px;
  min-width: 14px;
  height: 14px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  transform: scale(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.bag-count.is-visible {
  transform: scale(1);
}

.mobile-toggle {
  display: none;
}

main {
  min-height: calc(100vh - 44px);
}

.announcement {
  background: #fff;
  color: #424245;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  padding: 13px 20px;
}

.announcement a {
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fbfbfd;
}

.hero.compact {
  min-height: 72vh;
}

.hero.home-hero {
  min-height: calc(100svh - 148px);
}

.hero.dark {
  color: #f5f5f7;
  background: radial-gradient(circle at 50% 60%, #37363f 0, #111116 54%, #050506 100%);
}

.hero.split {
  min-height: 76vh;
  place-items: stretch;
  background: #fff;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--page-max));
  min-height: inherit;
  margin: 0 auto;
  padding: 56px 24px 34px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.hero.split .hero-inner {
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1.08fr);
  grid-template-rows: auto;
  gap: 44px;
  text-align: left;
  justify-items: stretch;
}

.hero-copy {
  align-self: end;
}

.hero.split .hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
}

.hero h1,
.page-title {
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero h2 {
  margin: 0;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  font-weight: 800;
  overflow-wrap: break-word;
}

.tagline,
.page-subtitle {
  margin: 14px auto 0;
  max-width: 740px;
  color: #363638;
  font-size: clamp(21px, 3.2vw, 31px);
  line-height: 1.18;
  font-weight: 500;
}

.dark .tagline {
  color: #f5f5f7;
}

.muted {
  color: var(--muted);
}

.price-line {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.35;
}

.cta-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.hero.split .cta-row {
  justify-content: flex-start;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 19px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.cta:active {
  transform: translateY(1px);
}

.cta.secondary {
  color: var(--blue);
  background: transparent;
}

.cta.secondary:hover,
.cta.secondary:focus-visible {
  color: #fff;
  background: var(--blue);
}

.link-pill {
  color: var(--blue);
  font-size: 20px;
  line-height: 1.2;
}

.link-pill:hover,
.link-pill:focus-visible {
  text-decoration: underline;
}

.hero-stage {
  position: relative;
  width: min(92vw, 720px);
  min-height: 360px;
  align-self: center;
  display: grid;
  place-items: center;
}

.hero.split .hero-stage {
  width: 100%;
  min-height: 520px;
}

.section {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 72px 24px;
}

.section.tight {
  padding-top: 44px;
  padding-bottom: 44px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  font-weight: 800;
}

.section-kicker {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-tile {
  min-height: 580px;
  padding: 42px 24px 28px;
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  overflow: hidden;
  text-align: center;
  background: #fff;
  border-radius: 8px;
}

.feature-tile.dark {
  color: #f5f5f7;
  background: #09090d;
}

.feature-tile h3 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.feature-tile p {
  margin: 8px auto 0;
  max-width: 430px;
  color: #38383c;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.18;
}

.feature-tile.dark p {
  color: #f5f5f7;
}

.tile-stage {
  width: min(100%, 520px);
  min-height: 330px;
  display: grid;
  place-items: center;
}

.store-hero {
  background: var(--soft);
}

.store-hero .section {
  padding-top: 72px;
  padding-bottom: 26px;
}

.store-topline {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 320px);
  gap: 30px;
  align-items: end;
}

.store-topline > * {
  min-width: 0;
}

.store-topline .page-title {
  max-width: 850px;
}

.helper-card {
  padding: 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

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

.helper-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 17px;
}

.category-strip {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 24px 24px 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(106px, 1fr));
  gap: 14px;
}

.category-card {
  min-height: 110px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 12px;
  text-align: center;
  background: #fff;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.category-card svg {
  color: #111;
}

.category-card span {
  font-size: 14px;
  font-weight: 600;
}

.category-card.is-active {
  outline: 2px solid #111;
}

.store-controls {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 10px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  min-height: 36px;
  padding: 8px 14px;
  color: #323236;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
}

.chip.is-active {
  color: #fff;
  background: #111;
}

.sort-select {
  min-height: 38px;
  padding: 8px 34px 8px 12px;
  color: #323236;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
}

.product-grid {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 0 24px 74px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-rows: 210px auto 1fr auto;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.product-card.is-hidden {
  display: none;
}

.badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  align-self: start;
  justify-self: start;
  min-height: 24px;
  padding: 5px 9px;
  display: inline-flex;
  align-items: center;
  color: #b14d00;
  background: #fff3e8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.product-media {
  min-height: 200px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fbfbfd;
  border-radius: 8px;
}

.product-shot {
  width: 100%;
  height: 100%;
  max-height: 210px;
  object-fit: contain;
  mix-blend-mode: multiply;
  border-radius: 14px;
}

.hero-product-img {
  width: min(88vw, 680px);
  max-height: 440px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.14));
  border-radius: 24px;
}

.dark .hero-product-img,
.feature-tile.dark .tile-product-img {
  mix-blend-mode: normal;
}

.tile-product-img {
  width: min(92%, 520px);
  max-height: 360px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.14));
  border-radius: 22px;
}

.detail-product-img {
  width: min(90%, 620px);
  max-height: 620px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.14));
  border-radius: 24px;
}

.tv-hero-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.tv-band {
  color: #f5f5f7;
  background: #060609;
}

.tv-band .section-kicker,
.tv-band .muted {
  color: #a1a1a6;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.special-card {
  min-height: 340px;
  padding: 22px;
  display: grid;
  align-content: end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.76) 100%),
    radial-gradient(circle at 30% 18%, var(--tone, #4d7cff), transparent 34%),
    linear-gradient(135deg, #23263a, #08080c);
  border-radius: 8px;
  overflow: hidden;
}

.special-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.02;
}

.special-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 250px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  background: #fff;
  border-radius: 8px;
}

.service-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #111;
  border-radius: 12px;
}

.product-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.05;
  overflow-wrap: break-word;
}

.product-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.product-card > div {
  min-width: 0;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-weight: 700;
}

.add-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.add-button:hover,
.add-button:focus-visible {
  background: var(--blue-dark);
}

.detail-layout {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.82fr);
  gap: 58px;
  align-items: start;
}

.detail-media {
  position: sticky;
  top: 78px;
  min-height: 640px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.detail-copy {
  padding-top: 28px;
}

.detail-copy h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.98;
  overflow-wrap: break-word;
}

.detail-copy .tagline {
  margin-left: 0;
  font-size: clamp(24px, 3.2vw, 34px);
}

.buy-box {
  margin-top: 32px;
  padding: 22px;
  background: #fff;
  border-radius: 8px;
}

.buy-box h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.option {
  min-height: 76px;
  padding: 12px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.option strong,
.option span {
  display: block;
}

.option span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.option.is-selected {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
}

.specs {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 10px 24px 76px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.spec {
  min-height: 150px;
  padding: 18px;
  background: #fff;
  border-radius: 8px;
}

.spec strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.spec span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.35;
}

.support-band {
  background: #fff;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.support-item {
  min-height: 230px;
  padding: 24px;
  background: var(--soft);
  border-radius: 8px;
}

.support-item h3 {
  margin: 18px 0 8px;
  font-size: 26px;
}

.support-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.footer {
  color: #6e6e73;
  background: var(--soft);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 22px 24px 34px;
  font-size: 12px;
  line-height: 1.45;
}

.footer-links {
  margin-top: 18px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.footer-links nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  width: min(calc(100% - 32px), 420px);
  padding: 14px 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.86);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
  text-align: center;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Product renders */
.render {
  position: relative;
  width: var(--render-w, 260px);
  height: var(--render-h, 240px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.render::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 5%;
  height: 22px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 68%);
  filter: blur(7px);
  z-index: -1;
}

.brick-body {
  position: relative;
  width: 58%;
  height: 62%;
  background: linear-gradient(145deg, #fefefe, #c9cbd1);
  border: 1px solid #b9bbc0;
  border-radius: 8px;
  box-shadow: inset 10px 10px 20px rgba(255, 255, 255, 0.9), inset -12px -16px 24px rgba(0, 0, 0, 0.13), var(--shadow);
}

.brick-body::before,
.brick-body::after {
  content: "";
  position: absolute;
  top: 25%;
  width: 8px;
  height: 40%;
  background: #a1a2a6;
  border-radius: 4px;
}

.brick-body::before {
  left: -18px;
}

.brick-body::after {
  left: -34px;
}

.cord {
  position: absolute;
  right: 8%;
  top: 37%;
  width: 42%;
  height: 66px;
  border-top: 13px solid #f06a24;
  border-right: 13px solid #f06a24;
  border-radius: 0 42px 0 0;
}

.warning-dot {
  position: absolute;
  right: 20%;
  top: 27%;
  width: 20px;
  height: 20px;
  background: #ffd84d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 216, 77, 0.2);
}

.render-dongle {
  --render-w: 310px;
}

.dongle-line {
  position: absolute;
  width: 78%;
  height: 110px;
  border: 14px solid #d7d8dd;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 90px 0 0;
  transform: rotate(-14deg);
}

.dongle-hub {
  position: absolute;
  width: 44%;
  height: 28%;
  background: linear-gradient(145deg, #fff, #bfc1c8);
  border: 1px solid #afb1b7;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dongle-hub::before,
.dongle-hub::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 12px;
  background: #22242b;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
}

.dongle-hub::before {
  left: 16px;
}

.dongle-hub::after {
  right: 16px;
}

.tiny-port {
  position: absolute;
  left: 49%;
  top: 63%;
  width: 42px;
  height: 16px;
  background: #2c2d32;
  border-radius: 8px;
  transform: rotate(18deg);
}

.render-vision {
  --render-w: 330px;
  --render-h: 260px;
}

.goggles {
  position: relative;
  width: 82%;
  height: 42%;
  background: linear-gradient(110deg, #f7f8fc 0%, #d9dbe4 42%, #fafafa 100%);
  border: 1px solid #c8cad2;
  border-radius: 70px;
  box-shadow: inset 20px 12px 30px rgba(255, 255, 255, 0.9), inset -18px -18px 28px rgba(0, 0, 0, 0.12), var(--shadow);
}

.goggles::before,
.goggles::after {
  content: "";
  position: absolute;
  top: 25%;
  width: 34%;
  height: 42%;
  background: linear-gradient(135deg, #222833, #677386);
  border-radius: 40px;
}

.goggles::before {
  left: 11%;
}

.goggles::after {
  right: 11%;
}

.headstrap {
  position: absolute;
  left: 50%;
  top: 43%;
  width: 92%;
  height: 45%;
  border: 22px solid #d9dde8;
  border-top: 0;
  border-radius: 0 0 120px 120px;
  transform: translateX(-50%);
  z-index: -1;
}

.sticker {
  position: absolute;
  right: 12%;
  top: 20%;
  padding: 4px 7px;
  color: #111;
  background: var(--yellow);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 800;
  transform: rotate(10deg);
}

.render-laptop {
  --render-w: 340px;
  --render-h: 260px;
}

.screen {
  position: absolute;
  top: 12%;
  width: 72%;
  height: 54%;
  background: linear-gradient(135deg, #0b1020, #5c7c98);
  border: 8px solid #c7c9d1;
  border-radius: 8px 8px 3px 3px;
  box-shadow: var(--shadow);
}

.screen::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 2px dashed rgba(255, 255, 255, 0.42);
  border-radius: 6px;
}

.keyboard {
  position: absolute;
  bottom: 18%;
  width: 88%;
  height: 22%;
  background: linear-gradient(180deg, #d8d9df, #aeb1bb);
  border-radius: 4px 4px 18px 18px;
  transform: perspective(320px) rotateX(58deg);
  box-shadow: 0 30px 35px rgba(0, 0, 0, 0.18);
}

.keyboard::before {
  content: "";
  position: absolute;
  left: 39%;
  top: 18%;
  width: 22%;
  height: 22%;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 5px;
}

.missing-key {
  position: absolute;
  left: 48%;
  top: 65%;
  width: 18px;
  height: 14px;
  background: #555964;
  border-radius: 3px;
}

.render-pods {
  --render-w: 260px;
  --render-h: 230px;
}

.pod {
  position: absolute;
  top: 24%;
  width: 34px;
  height: 92px;
  background: linear-gradient(145deg, #fff, #d8d9dd);
  border-radius: 18px 18px 16px 16px;
  box-shadow: var(--shadow);
}

.pod.left {
  left: 35%;
  transform: rotate(-12deg);
}

.pod.right {
  right: 35%;
  transform: rotate(12deg);
}

.pod::before {
  content: "";
  position: absolute;
  left: 7px;
  top: -18px;
  width: 38px;
  height: 28px;
  background: linear-gradient(145deg, #fff, #d9dbe0);
  border-radius: 22px 22px 22px 8px;
}

.wire {
  position: absolute;
  left: 50%;
  top: 62%;
  width: 112px;
  height: 72px;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
  border-radius: 0 0 0 70px;
  transform: translateX(-50%);
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.18));
}

.render-mousepad {
  --render-w: 290px;
  --render-h: 210px;
}

.mousepad {
  position: relative;
  width: 78%;
  height: 44%;
  background: linear-gradient(145deg, #f8f8fa, #c7c8ce);
  border: 1px solid #bfc0c7;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: perspective(380px) rotateX(56deg) rotateZ(-8deg);
}

.mousepad::after {
  content: "";
  position: absolute;
  left: 42%;
  top: 36%;
  width: 24px;
  height: 14px;
  background: #a2a3a9;
  border-radius: 999px;
}

.render-watch {
  --render-w: 250px;
  --render-h: 230px;
}

.watch-band {
  position: absolute;
  left: 50%;
  top: 8%;
  width: 64px;
  height: 84%;
  background: linear-gradient(90deg, #f4f5f8, #bfc2cd);
  border-radius: 34px;
  transform: translateX(-50%);
}

.watch-face {
  position: relative;
  width: 48%;
  height: 54%;
  background: #111;
  border: 8px solid #d6d8de;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.watch-face::before {
  content: "12:00";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #9be7ff;
  font-size: 22px;
  font-weight: 800;
}

.render-mini {
  --render-w: 260px;
  --render-h: 230px;
}

.mini-tower {
  position: relative;
  width: 46%;
  height: 68%;
  background: linear-gradient(145deg, #fdfdfd, #c8cbd2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-tower::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 18%;
  height: 10px;
  background: #7a7e8a;
  border-radius: 999px;
  box-shadow: 0 24px #7a7e8a, 0 48px #7a7e8a;
}

.mini-tower::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: 20px;
  width: 34px;
  height: 28px;
  background: var(--orange);
  border-radius: 8px;
}

.render-generic {
  --render-w: 240px;
  --render-h: 210px;
}

.generic-box {
  position: relative;
  width: 58%;
  height: 56%;
  background: linear-gradient(145deg, var(--accent, #f8f8fb), #bfc1ca);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.generic-box::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.28);
}

.generic-box::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: -16px;
  height: 24px;
  background: var(--accent2, #222);
  border-radius: 12px;
}

@media (max-width: 980px) {
  .nav {
    padding: 0 16px;
  }

  .nav-links {
    position: fixed;
    inset: 44px 0 auto 0;
    display: none;
    padding: 24px;
    background: rgba(245, 245, 247, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-links.is-open {
    display: grid;
    gap: 18px;
    font-size: 24px;
    font-weight: 700;
  }

  .mobile-toggle {
    display: inline-grid;
  }

  .hero.split .hero-inner,
  .store-topline,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero.split .hero-inner {
    text-align: center;
  }

  .hero.split .cta-row {
    justify-content: center;
  }

  .hero.split .hero-stage {
    min-height: 380px;
  }

  .feature-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .category-strip {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-media {
    position: relative;
    top: auto;
    min-height: 420px;
  }

  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .special-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .announcement {
    font-size: 13px;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-inner {
    padding: 42px 18px 28px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(42px, 15vw, 64px);
  }

  .tagline,
  .page-subtitle {
    font-size: 21px;
  }

  .hero-stage {
    min-height: 280px;
  }

  .section {
    padding: 52px 16px;
  }

  .section-header,
  .store-controls,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-tile {
    min-height: 520px;
  }

  .category-strip {
    padding-left: 16px;
    padding-right: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    padding-left: 16px;
    padding-right: 16px;
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 390px;
  }

  .detail-layout,
  .specs {
    padding-left: 16px;
    padding-right: 16px;
  }

  .detail-copy h1 {
    font-size: 45px;
  }

  .option-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .render {
    transform: scale(0.86);
  }

  .hero-product-img {
    max-height: 300px;
  }

  .tile-product-img {
    max-height: 270px;
  }

  .special-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }
}
