@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #080808;
  --bg-soft: #0d0d0d;
  --panel: #111111;
  --panel-raised: #151515;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.15);
  --text: #f6f3ef;
  --muted: #99938d;
  --muted-dark: #625e59;
  --red: #f03232;
  --red-deep: #b3131d;
  --red-soft: rgba(240, 50, 50, 0.12);
  --green: #43df86;
  --max: 1220px;
  --header: 82px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
}

body {
  min-width: 300px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -15%, rgba(145, 17, 23, 0.12), transparent 32%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20000;
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  color: black;
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: none;
}

.section-shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.section-anchor {
  scroll-margin-top: calc(var(--header) + 18px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: grid;
  min-height: var(--header);
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  padding: 13px max(22px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.86);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(228, 34, 34, 0.24));
}

.brand-line {
  width: 1px;
  height: 24px;
  background: var(--line-strong);
}

.nav-track {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.nav-track a {
  position: relative;
  z-index: 2;
  display: flex;
  height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border-radius: 10px;
  color: #77726e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 220ms ease;
}

.nav-track a:hover,
.nav-track a.is-active {
  color: white;
}

.nav-icon {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  color: currentColor;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.8;
}

.nav-icon--home {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-icon--faq {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-slider {
  position: absolute;
  top: 4px;
  left: 0;
  z-index: 1;
  height: 42px;
  border: 1px solid rgba(240, 50, 50, 0.22);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(240, 50, 50, 0.14), rgba(240, 50, 50, 0.055));
  box-shadow:
    inset 0 0 18px rgba(240, 50, 50, 0.035),
    0 0 18px rgba(240, 50, 50, 0.035);
  transition:
    width 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.online-badge {
  display: flex;
  height: 37px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: #77726e;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    border-color 160ms ease,
    color 160ms ease;
}

.online-badge:hover {
  border-color: rgba(67, 223, 134, 0.25);
  color: #c8c3be;
}

.online-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(67, 223, 134, 0.8);
  animation: pulse-dot 1.8s ease infinite;
}

.header-search {
  position: relative;
}

.header-search-button {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #89847f;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.header-search-button:hover,
.header-search-button[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.045);
  color: white;
}

.header-search-button svg,
.header-search-field svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.header-search-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: -90px;
  z-index: 80;
  width: min(410px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(12, 12, 12, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(20px);
}

.header-search-panel[hidden] {
  display: none;
}

.header-search-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  height: 46px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(240, 50, 50, 0.24);
  border-radius: 10px;
  background: #0a0a0a;
  color: #6f6a66;
}

.header-search-field:focus-within {
  border-color: rgba(240, 50, 50, 0.48);
}

.header-search-field input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-size: 12px;
}

.header-search-field input::placeholder {
  color: #5f5a56;
}

.header-search-field kbd {
  padding: 4px 6px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #111;
  color: #5f5a56;
  font-family: inherit;
  font-size: 7px;
}

.header-search-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 4px 8px;
  color: #716b66;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-search-caption small {
  color: #484440;
  font-size: inherit;
}

.header-search-results {
  display: grid;
  gap: 3px;
}

.header-search-result {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  min-height: 60px;
  align-items: center;
  gap: 11px;
  padding: 6px;
  border-radius: 9px;
  transition: background 150ms ease;
}

.header-search-result:hover {
  background: rgba(255, 255, 255, 0.045);
}

.header-search-result-image {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101010;
}

.header-search-result-image img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.header-search-result > span:nth-child(2) {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.header-search-result strong {
  overflow: hidden;
  color: #d7d2cd;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-search-result small {
  color: #65605c;
  font-size: 8px;
}

.header-search-result > i {
  color: #5e5955;
  font-size: 13px;
  font-style: normal;
}

.header-search-empty {
  padding: 24px 10px;
  color: #6f6964;
  font-size: 10px;
  text-align: center;
}

.panel-button {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(240, 50, 50, 0.34);
  border-radius: 10px;
  background: linear-gradient(135deg, #e52a2a, #a8111a);
  box-shadow: 0 8px 24px rgba(177, 17, 26, 0.22);
  color: white;
  font-size: 11px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.panel-button:hover {
  box-shadow: 0 10px 30px rgba(217, 30, 39, 0.3);
  transform: translateY(-1px);
}

.panel-button span {
  font-size: 17px;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #111;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 2px auto;
  background: #aaa;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 850px;
  padding-top: var(--header);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 58px 58px;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 75% 43%, rgba(212, 22, 29, 0.14), transparent 27%),
    linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, 0.86) 40%, rgba(8, 8, 8, 0.12) 75%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 0.55px, transparent 0.55px);
  background-size: 5px 5px;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  min-height: 690px;
  align-items: center;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  margin-inline: auto;
  padding-block: 75px 65px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(240, 50, 50, 0.8);
}

.hero-copy h1 {
  max-width: 650px;
  margin: 22px 0 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(57px, 6.2vw, 88px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero-copy h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.62);
}

.hero-copy > p {
  max-width: 540px;
  margin: 0;
  color: #8c8781;
  font-size: 14px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  border-color: rgba(255, 92, 92, 0.26);
  background: linear-gradient(135deg, #ee3030, #a7111a);
  box-shadow: 0 12px 30px rgba(189, 20, 27, 0.2);
  color: white;
}

.button--primary:hover {
  box-shadow: 0 15px 34px rgba(220, 32, 40, 0.3);
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: #aaa49e;
}

.button--secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
  color: white;
}

.button--light {
  background: #f1eeea;
  color: #111;
}

.button--full {
  width: 100%;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 46px;
}

.hero-stats div {
  display: grid;
  min-width: 125px;
  gap: 5px;
  padding-right: 28px;
}

.hero-stats div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.hero-stats strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}

.hero-stats span {
  color: #57534f;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  min-height: 555px;
  perspective: 1200px;
}

.hero-orbit {
  position: absolute;
  top: 50%;
  left: 52%;
  border: 1px solid rgba(239, 45, 45, 0.11);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-orbit--one {
  width: 515px;
  height: 515px;
  animation: orbit-spin 24s linear infinite;
}

.hero-orbit--two {
  width: 390px;
  height: 390px;
  border-style: dashed;
  animation: orbit-spin 18s linear infinite reverse;
}

.hero-card {
  position: absolute;
  top: 74px;
  right: 0;
  width: 94%;
  max-width: 615px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: #0d0d0e;
  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.68),
    0 0 90px rgba(176, 19, 26, 0.07);
  transform: rotateY(-7deg) rotateX(2deg);
}

.hero-card-bar {
  display: grid;
  height: 50px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #111112;
}

.hero-card-bar > div {
  display: flex;
  gap: 6px;
}

.hero-card-bar > div span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #323235;
}

.hero-card-bar small {
  color: #777277;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.hero-card-bar b {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
  color: #6b6a6a;
  font-size: 8px;
}

.hero-card-bar b i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 7px var(--green);
}

.hero-card-body {
  display: grid;
  min-height: 350px;
  grid-template-columns: 72px 1fr;
}

.hero-card-body aside {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  padding-top: 23px;
  border-right: 1px solid var(--line);
  background: #0a0a0b;
}

.hero-card-body aside img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  margin-bottom: 8px;
}

.hero-card-body aside span {
  width: 18px;
  height: 4px;
  border-radius: 8px;
  background: #262629;
}

.hero-card-body aside span.is-on {
  background: var(--red);
  box-shadow: 0 0 10px rgba(240, 50, 50, 0.35);
}

.hero-dashboard {
  padding: 36px 38px;
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}

.dashboard-head > div {
  display: grid;
  gap: 6px;
}

.dashboard-head small {
  color: #4e4b49;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.dashboard-head strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
}

.dashboard-head > span {
  padding: 6px 9px;
  border: 1px solid rgba(67, 223, 134, 0.15);
  border-radius: 6px;
  background: rgba(67, 223, 134, 0.065);
  color: var(--green);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.dashboard-setting {
  display: grid;
  grid-template-columns: 105px 1fr 25px;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  color: #77716c;
  font-size: 9px;
}

.dashboard-setting > b {
  height: 3px;
  overflow: hidden;
  border-radius: 4px;
  background: #282526;
}

.dashboard-setting > b i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #a9121a, var(--red));
  box-shadow: 0 0 8px rgba(240, 50, 50, 0.35);
}

.dashboard-setting > strong {
  color: #bbb5b0;
  font-size: 9px;
  text-align: right;
}

.dashboard-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 31px;
}

.dashboard-options > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #121214;
  color: #77716c;
  font-size: 8px;
}

.toggle {
  position: relative;
  width: 24px;
  height: 12px;
  border-radius: 10px;
  background: #29292c;
}

.toggle::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6c6864;
  content: "";
}

.toggle.is-on {
  background: rgba(235, 40, 46, 0.34);
}

.toggle.is-on::after {
  left: 14px;
  background: var(--red);
  box-shadow: 0 0 6px rgba(240, 50, 50, 0.8);
}

.dashboard-button {
  display: flex;
  height: 41px;
  align-items: center;
  justify-content: space-between;
  margin-top: 23px;
  padding: 0 15px;
  border: 1px solid rgba(240, 50, 50, 0.18);
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(183, 20, 27, 0.21), rgba(240, 50, 50, 0.08));
  color: #cfcac5;
  font-size: 9px;
  font-weight: 700;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(17, 17, 18, 0.92);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
  animation: float 4s ease-in-out infinite;
}

.float-card--top {
  top: 35px;
  right: 18px;
}

.float-card--top > span {
  color: var(--green);
  text-shadow: 0 0 10px var(--green);
}

.float-card--bottom {
  right: 5%;
  bottom: 41px;
  animation-delay: -1.8s;
}

.float-card--bottom > b {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(240, 50, 50, 0.2);
  border-radius: 7px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 9px;
}

.float-card div {
  display: grid;
  gap: 4px;
}

.float-card small {
  color: #56514e;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.float-card strong {
  font-size: 9px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 77px;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.72);
}

.trust-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-right: 1px solid var(--line);
  color: #65615e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip span {
  color: var(--red);
  font-size: 13px;
}

.products-section,
.status-section,
.reviews-section,
.faq-section {
  padding-block: 115px;
}

.products-section {
  background: #0a0a0a;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin: 13px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 4.2vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading > p {
  max-width: 370px;
  margin: 0;
  color: #706b67;
  font-size: 11px;
  line-height: 1.7;
}

.section-heading--compact {
  align-items: center;
}

.product-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.product-search {
  display: flex;
  min-width: 0;
  height: 48px;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #101010;
  color: #5a5652;
  transition: border-color 160ms ease, background 160ms ease;
}

.product-search:focus-within {
  border-color: rgba(240, 50, 50, 0.34);
  background: #121010;
}

.product-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-size: 11px;
}

.product-search input::placeholder {
  color: #524e4a;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 45px;
}

.category-tabs button {
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #101010;
  color: #68635f;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 160ms ease;
}

.category-tabs button:hover {
  color: #aaa5a0;
}

.category-tabs button.is-active {
  border-color: rgba(240, 50, 50, 0.28);
  background: var(--red-soft);
  color: #ff7777;
  box-shadow: inset 0 0 14px rgba(240, 50, 50, 0.04);
}

.product-groups {
  display: grid;
  gap: 58px;
}

.product-group-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 21px;
}

.product-group-heading > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
}

.product-group-heading > div span {
  font-size: 12px;
}

.product-group-heading strong {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-group-heading > i {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.product-group-heading small {
  color: #4f4b48;
  font-size: 8px;
}

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

.product-card {
  display: flex;
  min-width: 0;
  padding: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: 0;
  background: #0f0f0f;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.product-card:hover {
  border-color: rgba(240, 50, 50, 0.24);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.38);
  transform: translateY(-3px);
}

.product-card:focus-visible {
  border-color: rgba(240, 50, 50, 0.7);
  box-shadow: 0 0 0 3px rgba(240, 50, 50, 0.12);
}

.product-image {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    #0b0b0b;
  background-size: 32px 32px;
}

.product-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(217, 26, 33, 0.16);
  filter: blur(45px);
}

.product-image > img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-image > img.is-brand-placeholder {
  width: 44%;
  height: 72%;
  object-fit: contain;
  filter:
    drop-shadow(0 23px 30px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 24px rgba(216, 23, 30, 0.2));
}

.product-card:hover .product-image > img {
  transform: scale(1.045);
}

.product-bestseller,
.product-status {
  position: absolute;
  top: 14px;
  z-index: 3;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(12, 12, 12, 0.88);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 23px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-bestseller {
  left: 14px;
  border-color: rgba(240, 50, 50, 0.28);
  background: var(--red);
  color: white;
}

.product-status {
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-color: rgba(67, 223, 134, 0.13);
  color: var(--green);
}

.product-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.product-status.is-offline {
  border-color: rgba(240, 50, 50, 0.16);
  color: #e15353;
}

.product-card-body {
  display: flex;
  min-height: 153px;
  padding: 20px;
  flex: 1;
  flex-direction: column;
}

.product-category {
  margin-bottom: 8px;
  color: #5f5a56;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  transition: color 180ms ease;
}

.product-card:hover .product-name {
  color: #ff6666;
}

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

.product-price {
  display: grid;
  gap: 5px;
}

.product-price small {
  color: #514d49;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.product-price b {
  color: #f0ece8;
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  line-height: 1;
}

.product-cta {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 9px;
  background: var(--red);
  color: white;
  font-size: 8px;
  font-weight: 800;
}

.product-cta i {
  font-style: normal;
  transition: transform 160ms ease;
}

.product-card:hover .product-cta i {
  transform: translateX(2px);
}

.empty-state {
  padding: 60px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: #67615d;
  font-size: 11px;
  text-align: center;
}

.status-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(179, 19, 29, 0.11), transparent 34%),
    #080808;
}

.status-heading {
  display: grid;
  max-width: 680px;
  margin: 0 auto 44px;
  place-items: center;
  text-align: center;
}

.status-heading h2 {
  margin-top: 13px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.status-heading > p {
  margin-top: 16px;
  color: #7b7672;
  font-size: 12px;
}

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

.status-product-card {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 25px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 10% 0%, rgba(179, 19, 29, 0.07), transparent 38%),
    #0c0c0c;
  transition: border-color 180ms ease, transform 180ms ease;
}

.status-product-card:hover {
  border-color: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.status-product-info {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.status-product-info strong {
  overflow: hidden;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-product-info small {
  color: #625e5a;
  font-size: 10px;
}

.status-state {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  padding-inline: 12px;
  border: 1px solid rgba(67, 223, 134, 0.14);
  border-radius: 7px;
  background: rgba(67, 223, 134, 0.055);
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-state i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.status-product-card.is-testing,
.status-product-card.is-testing .status-state {
  color: #e7a83e;
}

.status-product-card.is-testing .status-state {
  border-color: rgba(231, 168, 62, 0.16);
  background: rgba(231, 168, 62, 0.055);
}

.status-product-card.is-detected,
.status-product-card.is-detected .status-state {
  color: #e15353;
}

.status-product-card.is-detected .status-state {
  border-color: rgba(225, 83, 83, 0.16);
  background: rgba(225, 83, 83, 0.055);
}

.reviews-section {
  border-top: 1px solid var(--line);
  background: #080808;
}

.reviews-marquee {
  width: 100vw;
  margin-top: 12px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: reviews-scroll 54s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.reviews-set {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.review-card {
  width: clamp(310px, 29vw, 430px);
  min-height: 282px;
  flex: 0 0 auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 90% 0%, rgba(240, 50, 50, 0.06), transparent 28%),
    #0e0e0e;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-top span {
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.review-top b {
  padding: 5px 7px;
  border: 1px solid rgba(67, 223, 134, 0.12);
  border-radius: 5px;
  background: rgba(67, 223, 134, 0.04);
  color: var(--green);
  font-size: 6px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.review-card blockquote {
  min-height: 128px;
  margin: 34px 0 22px;
  color: #a8a29c;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-card footer > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(240, 50, 50, 0.16);
  border-radius: 50%;
  background: var(--red-soft);
  color: #d86666;
  font-size: 8px;
  font-weight: 900;
}

.review-card footer div {
  display: grid;
  gap: 3px;
}

.review-card footer strong {
  font-size: 9px;
}

.review-card footer small {
  color: #55514d;
  font-size: 7px;
}

@keyframes reviews-scroll {
  to { transform: translate3d(-50%, 0, 0); }
}

.faq-section {
  border-top: 1px solid var(--line);
  background: #0a0a0a;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 95px;
}

.faq-copy {
  align-self: start;
}

.faq-copy h2 {
  margin: 14px 0 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 4.2vw, 58px);
  letter-spacing: -0.055em;
}

.faq-copy p {
  max-width: 370px;
  margin: 0 0 28px;
  color: #706b67;
  font-size: 10px;
  line-height: 1.75;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #bdb7b1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: #5b5652;
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  color: var(--red);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 0 25px;
  color: #6f6965;
  font-size: 10px;
  line-height: 1.75;
}

.final-section {
  position: relative;
  display: grid;
  min-height: 550px;
  place-items: center;
  align-content: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  text-align: center;
}

.final-section > *:not(.final-glow) {
  position: relative;
  z-index: 2;
}

.final-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(187, 17, 25, 0.09);
  filter: blur(75px);
  transform: translate(-50%, -50%);
}

.final-section img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 35px rgba(227, 33, 40, 0.25));
}

.final-section h2 {
  margin: 14px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  letter-spacing: -0.06em;
}

.final-section p {
  margin: 0 0 28px;
  color: #65605c;
  font-size: 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #070707;
}

.footer-shell {
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  grid-template-columns: 1.7fr repeat(3, 0.65fr);
  gap: 60px;
  margin-inline: auto;
  padding-block: 68px 53px;
}

.footer-brand .brand img {
  width: 42px;
  height: 42px;
}

.footer-brand p {
  max-width: 315px;
  margin: 19px 0 0;
  color: #5f5b57;
  font-size: 9px;
  line-height: 1.65;
}

.footer-shell > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-shell strong {
  margin-bottom: 7px;
  color: #aaa49f;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-shell > div:not(.footer-brand) a {
  color: #5e5a56;
  font-size: 9px;
  transition: color 140ms ease;
}

.footer-shell > div:not(.footer-brand) a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  width: min(calc(100% - 48px), var(--max));
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding-block: 20px 30px;
  border-top: 1px solid var(--line);
  color: #423f3c;
  font-size: 8px;
}

.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 220ms ease;
}

.checkout-overlay.is-open {
  opacity: 1;
}

.checkout-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  cursor: default;
}

.checkout-page {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 930px);
  max-height: min(810px, calc(100vh - 60px));
  overflow: auto;
  grid-template-columns: 0.83fr 1.17fr;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: #0b0b0c;
  box-shadow: 0 45px 130px rgba(0, 0, 0, 0.8);
  transform: translateY(18px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.checkout-overlay.is-open .checkout-page {
  transform: none;
}

.checkout-close {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  color: #6d6864;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.checkout-close:hover {
  color: white;
}

.checkout-product {
  display: flex;
  min-height: 670px;
  flex-direction: column;
  padding: 27px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #090909;
  background-size: 34px 34px;
}

.checkout-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.checkout-brand img {
  width: 36px;
  height: 36px;
}

.checkout-image {
  position: relative;
  display: grid;
  flex: 1;
  place-items: center;
}

.checkout-image span {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(210, 25, 32, 0.13);
  filter: blur(45px);
}

.checkout-image img {
  position: relative;
  width: 210px;
  height: 210px;
  object-fit: contain;
  filter:
    drop-shadow(0 24px 32px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 24px rgba(222, 28, 35, 0.15));
}

.checkout-trust {
  display: grid;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.checkout-trust span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #68635f;
  font-size: 8px;
  font-weight: 700;
}

.checkout-trust i {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid rgba(67, 223, 134, 0.14);
  border-radius: 50%;
  background: rgba(67, 223, 134, 0.05);
  color: var(--green);
  font-size: 7px;
  font-style: normal;
}

.checkout-content {
  padding: 60px 54px 42px;
}

.checkout-kicker {
  color: var(--red);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.checkout-content h2 {
  margin: 11px 0 13px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  letter-spacing: -0.045em;
}

.checkout-content > p {
  margin: 0;
  color: #6f6a66;
  font-size: 9px;
  line-height: 1.65;
}

.checkout-fields {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.checkout-fields label {
  display: grid;
  gap: 8px;
}

.checkout-fields label > span {
  color: #8a847f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-fields label > span small {
  margin-left: 5px;
  color: #4e4a47;
  font-size: 7px;
  font-weight: 600;
  text-transform: none;
}

.checkout-fields input,
.checkout-fields select {
  width: 100%;
  height: 43px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: #111112;
  color: #bdb7b1;
  font-size: 10px;
  transition: border-color 140ms ease;
}

.checkout-fields input:focus,
.checkout-fields select:focus {
  border-color: rgba(240, 50, 50, 0.42);
}

.checkout-fields input::placeholder {
  color: #4a4643;
}

.field-row {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 12px;
}

.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block: 25px 17px;
  padding-block: 17px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkout-total > div {
  display: grid;
  gap: 4px;
}

.checkout-total span {
  color: #b0aaa4;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-total small {
  color: #4d4946;
  font-size: 7px;
}

.checkout-total strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
}

.checkout-note {
  margin-top: 13px !important;
  color: #4e4a47 !important;
  font-size: 7px !important;
  text-align: center;
}

.checkout-error {
  margin-top: 14px;
  padding: 11px 12px;
  border: 1px solid rgba(240, 50, 50, 0.22);
  border-radius: 7px;
  background: rgba(240, 50, 50, 0.075);
  color: #d47c7c;
  font-size: 8px;
  line-height: 1.55;
}

.legal-page {
  background: #090909;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.9);
  backdrop-filter: blur(18px);
}

.legal-header .brand img {
  width: 43px;
  height: 43px;
}

.legal-header > nav {
  display: flex;
  align-items: center;
  gap: 9px;
}

.legal-header > nav a {
  padding: 10px 13px;
  border-radius: 7px;
  color: #77716c;
  font-size: 9px;
  font-weight: 700;
}

.legal-header > nav a:hover,
.legal-header > nav a.is-active {
  background: var(--red-soft);
  color: #e87c7c;
}

.legal-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(183, 18, 26, 0.1), transparent 30%),
    #0a0a0a;
}

.legal-hero .section-shell {
  padding-block: 85px 70px;
}

.legal-hero h1 {
  margin: 15px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(46px, 6vw, 76px);
  letter-spacing: -0.06em;
}

.legal-hero p {
  margin: 0;
  color: #5e5955;
  font-size: 9px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 780px);
  gap: 80px;
  padding-block: 70px 110px;
}

.legal-toc {
  position: sticky;
  top: 105px;
  display: grid;
  height: fit-content;
  gap: 10px;
}

.legal-toc strong {
  margin-bottom: 8px;
  color: #8f8983;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-toc a {
  color: #55514e;
  font-size: 9px;
}

.legal-toc a:hover {
  color: white;
}

.legal-copy {
  color: #8b8580;
  font-size: 11px;
  line-height: 1.8;
}

.legal-lead {
  margin: 0 0 50px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #0e0e0e;
  color: #aaa49e;
}

.legal-copy section {
  margin-bottom: 42px;
  scroll-margin-top: 110px;
}

.legal-copy h2 {
  margin: 0 0 15px;
  color: #e2ddd7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.legal-copy p {
  margin: 0 0 13px;
}

.legal-copy ul {
  margin: 12px 0;
  padding-left: 20px;
}

.legal-copy li {
  margin-bottom: 7px;
}

.legal-copy a {
  color: #df6f6f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer {
  border-top: 1px solid var(--line);
  background: #070707;
}

.legal-footer .footer-bottom {
  border-top: 0;
}

@keyframes pulse-dot {
  0%,
  100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-track {
    order: 3;
    grid-column: 1 / -1;
    justify-self: center;
    margin-bottom: -60px;
    opacity: 0;
    pointer-events: none;
  }

  .hero-shell {
    gap: 35px;
  }

  .hero-card {
    width: 100%;
  }

  .online-badge {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --header: 70px;
  }

  .site-header {
    min-height: var(--header);
    padding: 10px 16px;
  }

  .site-header > .brand img {
    width: 42px;
    height: 42px;
  }

  .site-header > .brand .brand-line,
  .site-header > .brand > span:last-child {
    display: none;
  }

  .nav-track {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu {
    position: absolute;
    top: 69px;
    left: 0;
    width: 100%;
    padding: 10px 16px 17px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(8, 8, 8, 0.98);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    padding: 12px 5px;
    border-bottom: 1px solid var(--line);
    color: #89837e;
    font-size: 11px;
    font-weight: 700;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    padding-block: 90px 55px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-art {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip div {
    min-height: 56px;
    border-bottom: 1px solid var(--line);
  }

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

  .review-card {
    width: min(78vw, 390px);
  }

  .status-board {
    grid-template-columns: 280px 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .footer-shell {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .checkout-page {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .checkout-content {
    padding-inline: 35px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    display: none;
  }
}

@media (max-width: 680px) {
  .section-shell,
  .hero-shell,
  .footer-shell,
  .footer-bottom {
    width: min(calc(100% - 30px), var(--max));
  }

  .header-actions {
    gap: 4px;
  }

  .header-search-panel {
    position: fixed;
    top: 64px;
    right: 15px;
    left: 15px;
    width: auto;
  }

  .panel-button {
    height: 38px;
    padding-inline: 12px;
  }

  .panel-button span {
    display: none;
  }

  .hero-shell {
    padding-top: 70px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero-copy > p {
    font-size: 12px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .hero-stats div {
    min-width: 0;
    padding: 0 10px !important;
  }

  .hero-stats strong {
    font-size: 11px;
  }

  .hero-art {
    min-height: 430px;
  }

  .hero-card {
    top: 55px;
    transform: none;
  }

  .hero-card-body {
    min-height: 300px;
    grid-template-columns: 56px 1fr;
  }

  .hero-dashboard {
    padding: 27px 23px;
  }

  .dashboard-head {
    margin-bottom: 31px;
  }

  .dashboard-setting {
    grid-template-columns: 82px 1fr 22px;
    gap: 9px;
  }

  .float-card--top {
    top: 18px;
  }

  .float-card--bottom {
    right: 0;
    bottom: 10px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-section,
  .status-section,
  .reviews-section,
  .faq-section {
    padding-block: 82px;
  }

  .section-heading {
    display: grid;
    margin-bottom: 36px;
  }

  .section-heading > p {
    font-size: 10px;
  }

  .product-toolbar {
    display: grid;
  }

  .category-tabs {
    flex-wrap: nowrap;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .category-tabs button {
    flex: none;
  }

  .product-search {
    min-width: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .status-products {
    grid-template-columns: 1fr;
  }

  .status-product-card {
    min-height: 90px;
    padding: 19px 18px;
  }

  .status-heading {
    margin-bottom: 34px;
  }

  .final-section {
    min-height: 480px;
    padding-inline: 20px;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .checkout-overlay {
    align-items: end;
    padding: 0;
  }

  .checkout-page {
    width: 100%;
    max-height: calc(100vh - 20px);
    grid-template-columns: 1fr;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 18px 18px 0 0;
  }

  .checkout-product {
    display: none;
  }

  .checkout-content {
    padding: 47px 22px 30px;
  }

  .checkout-content h2 {
    font-size: 29px;
  }

  .legal-header {
    padding-inline: 15px;
  }

  .legal-header .brand > span:last-child {
    display: none;
  }

  .legal-header > nav a {
    padding-inline: 8px;
    font-size: 7px;
  }

  .legal-hero .section-shell {
    padding-block: 65px 52px;
  }

  .legal-layout {
    padding-block: 50px 85px;
  }
}

@media (max-width: 430px) {
  .hero-actions .button {
    width: 100%;
  }

  .hero-art {
    min-height: 375px;
  }

  .hero-card {
    top: 45px;
  }

  .hero-card-bar {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card-bar small {
    display: none;
  }

  .hero-card-body {
    min-height: 270px;
    grid-template-columns: 46px 1fr;
  }

  .hero-card-body aside {
    gap: 19px;
  }

  .hero-card-body aside img {
    width: 25px;
    height: 25px;
  }

  .hero-dashboard {
    padding: 23px 17px;
  }

  .dashboard-options {
    display: none;
  }

  .float-card--top {
    display: none;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* Production cart and checkout flow */
.cart-button {
  position: relative;
  display: flex;
  height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #a9a39e;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.cart-button:hover,
.cart-button[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.045);
  color: white;
}

.cart-button svg,
.panel-button svg,
.cart-header svg,
.cart-empty svg,
.add-cart-button svg,
.remove-cart-item svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.panel-button svg {
  width: 15px;
  height: 15px;
}

.cart-count {
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
}

.product-overlay {
  position: fixed;
  inset: 0;
  z-index: 4500;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-overlay.is-open {
  opacity: 1;
}

.modal-backdrop,
.cart-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  cursor: default;
}

.product-dialog {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 900px);
  max-height: calc(100vh - 56px);
  overflow: auto;
  grid-template-columns: 0.82fr 1.18fr;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #0b0b0c;
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.82);
  transform: translateY(18px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-overlay.is-open .product-dialog {
  transform: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #121213;
  color: #77716d;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  color: white;
}

.product-dialog-media {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #090909;
  background-size: 34px 34px;
}

.dialog-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.dialog-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(240, 50, 50, 0.18));
}

.dialog-image {
  position: relative;
  display: grid;
  min-height: 320px;
  flex: 1;
  place-items: center;
}

.dialog-image > span {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(225, 28, 35, 0.13);
  filter: blur(48px);
}

.dialog-image img {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  max-height: 290px;
  object-fit: contain;
  filter:
    drop-shadow(0 24px 32px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 24px rgba(222, 28, 35, 0.14));
}

.dialog-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #69635f;
  font-size: 8px;
  font-weight: 700;
}

.dialog-badges span:first-child {
  color: var(--green);
}

.dialog-badges i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.product-dialog-content {
  display: flex;
  flex-direction: column;
  padding: 56px 46px 32px;
}

.dialog-kicker,
.checkout-kicker {
  color: var(--red);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-dialog-content h2 {
  margin: 11px 38px 12px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(29px, 3vw, 39px);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.product-dialog-content > p {
  max-width: 520px;
  margin: 0;
  color: #77716c;
  font-size: 10px;
  line-height: 1.7;
}

.purchase-fields {
  display: grid;
  gap: 9px;
  margin-top: 34px;
}

.purchase-fields label,
.checkout-step form label > span {
  color: #827c77;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.purchase-fields select,
.checkout-step input {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: #111112;
  color: #d0cbc6;
  font-size: 10px;
  transition:
    border-color 150ms ease,
    background 150ms ease;
}

.purchase-fields select:focus,
.checkout-step input:focus {
  border-color: rgba(240, 50, 50, 0.42);
  background: #131314;
}

.purchase-bar {
  display: grid;
  grid-template-columns: auto auto minmax(140px, 1fr);
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 32px;
}

.quantity-control {
  display: grid;
  height: 44px;
  grid-template-columns: 34px 34px 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #101011;
}

.quantity-control button {
  border: 0;
  background: transparent;
  color: #6d6762;
  font-size: 15px;
  cursor: pointer;
}

.quantity-control button:hover {
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.quantity-control span {
  display: grid;
  place-items: center;
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.purchase-price {
  display: grid;
  min-width: 82px;
  gap: 3px;
}

.purchase-price small {
  color: #554f4b;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purchase-price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  line-height: 1;
}

.add-cart-button {
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(240, 50, 50, 0.38);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 12px 30px rgba(177, 17, 26, 0.22);
  color: white;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}

.add-cart-button:hover {
  filter: brightness(1.08);
}

.add-cart-button:disabled {
  border-color: var(--line);
  background: #171719;
  box-shadow: none;
  color: #625d59;
  cursor: not-allowed;
  filter: none;
}

.purchase-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #5d5753;
  font-size: 7px;
  font-weight: 700;
}

.cart-layer {
  position: fixed;
  inset: 0;
  z-index: 4800;
}

.cart-backdrop {
  opacity: 0;
  transition: opacity 260ms ease;
}

.cart-layer.is-open .cart-backdrop {
  opacity: 1;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(100%, 410px);
  height: 100%;
  flex-direction: column;
  border-left: 1px solid var(--line);
  background: #0d0d0f;
  box-shadow: -32px 0 100px rgba(0, 0, 0, 0.55);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-layer.is-open .cart-drawer {
  transform: none;
}

.cart-header {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  border-bottom: 1px solid var(--line);
}

.cart-header > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-header svg {
  color: #8b8580;
}

.cart-header strong {
  font-size: 13px;
}

.cart-header > div > span {
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #6f6964;
  font-size: 8px;
  font-weight: 900;
}

.cart-header > button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #69635f;
  font-size: 20px;
  cursor: pointer;
}

.cart-header > button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.cart-body {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
}

.cart-empty {
  display: flex;
  height: 100%;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  padding: 45px 25px;
  flex-direction: column;
  text-align: center;
}

.cart-empty > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: #4b4642;
}

.cart-empty > span svg {
  width: 23px;
  height: 23px;
}

.cart-empty strong {
  font-size: 13px;
}

.cart-empty p {
  margin: 7px 0 20px;
  color: #59534f;
  font-size: 10px;
}

.cart-empty button {
  height: 37px;
  padding: 0 17px;
  border: 1px solid rgba(240, 50, 50, 0.28);
  border-radius: 9px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}

.cart-items {
  padding: 7px 0;
}

.cart-item {
  display: flex;
  gap: 13px;
  padding: 14px 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.cart-item-image {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #101011;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-main {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-top,
.cart-item-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cart-item-top > div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.cart-item-top strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-top span {
  color: #5f5954;
  font-size: 8px;
}

.cart-item-top b {
  flex: 0 0 auto;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
}

.cart-item-actions {
  align-items: center;
}

.cart-item-actions > div {
  display: grid;
  grid-template-columns: 25px 25px 25px;
}

.cart-item-actions > div button,
.cart-item-actions > div span {
  display: grid;
  height: 25px;
  place-items: center;
  border: 0;
  background: rgba(255, 255, 255, 0.045);
  color: #77716c;
  font-size: 10px;
}

.cart-item-actions > div button {
  cursor: pointer;
}

.cart-item-actions > div button:first-child {
  border-radius: 6px 0 0 6px;
}

.cart-item-actions > div button:last-child {
  border-radius: 0 6px 6px 0;
}

.cart-item-actions > div button:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.remove-cart-item {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #504a47;
  cursor: pointer;
}

.remove-cart-item:hover {
  color: #e76161;
}

.remove-cart-item svg {
  width: 13px;
  height: 13px;
}

.cart-footer {
  padding: 17px 19px 20px;
  border-top: 1px solid var(--line);
  background: #0b0b0d;
}

.cart-footer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cart-footer > div span {
  color: #716b66;
  font-size: 10px;
}

.cart-footer > div strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
}

.cart-footer > button,
.checkout-step form > button {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(240, 50, 50, 0.36);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: white;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}

.cart-footer > button:hover,
.checkout-step form > button:hover {
  filter: brightness(1.08);
}

.cart-footer > small {
  display: block;
  margin-top: 10px;
  color: #4a4541;
  font-size: 7px;
  text-align: center;
}

.checkout-step {
  position: relative;
  z-index: 2;
  width: min(100%, 455px);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  padding: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #0c0c0e;
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.82);
  transform: translateY(18px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.checkout-overlay.is-open .checkout-step {
  transform: none;
}

.checkout-step h2 {
  margin: 10px 30px 10px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  letter-spacing: -0.045em;
}

.checkout-step > p {
  margin: 0;
  color: #6e6863;
  font-size: 9px;
  line-height: 1.65;
}

.checkout-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkout-summary > div {
  display: grid;
  gap: 4px;
}

.checkout-summary span {
  color: #aaa49f;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-summary small {
  color: #4f4945;
  font-size: 7px;
}

.checkout-summary strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
}

.checkout-step form {
  display: grid;
  gap: 14px;
}

.checkout-step form label {
  display: grid;
  gap: 8px;
}

.checkout-step form label small {
  margin-left: 4px;
  color: #514c48;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-step input::placeholder {
  color: #4c4743;
}

.checkout-step form > button {
  margin-top: 4px;
}

.checkout-step form > button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.button-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.checkout-security {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: 18px;
  color: #4d4844;
  font-size: 7px;
  font-weight: 700;
}

@media (max-width: 680px) {
  .cart-button {
    width: 38px;
    height: 38px;
    justify-content: center;
    padding: 0;
  }

  .cart-button-label {
    display: none;
  }

  .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 17px;
    height: 17px;
    border: 2px solid #080808;
    font-size: 7px;
  }

  .product-overlay {
    align-items: end;
    padding: 0;
  }

  .product-dialog {
    width: 100%;
    max-height: calc(100vh - 12px);
    grid-template-columns: 1fr;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 18px 18px 0 0;
  }

  .product-dialog-media {
    min-height: 205px;
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dialog-brand {
    font-size: 8px;
  }

  .dialog-brand img {
    width: 28px;
    height: 28px;
  }

  .dialog-image {
    min-height: 125px;
  }

  .dialog-image > span {
    width: 150px;
    height: 150px;
  }

  .dialog-image img {
    width: min(72%, 230px);
    max-height: 150px;
  }

  .dialog-badges {
    display: none;
  }

  .product-dialog-content {
    padding: 30px 22px 25px;
  }

  .product-dialog-content h2 {
    font-size: 28px;
  }

  .purchase-fields {
    margin-top: 23px;
  }

  .purchase-bar {
    grid-template-columns: auto 1fr;
    margin-top: 0;
    padding-top: 22px;
  }

  .add-cart-button {
    grid-column: 1 / -1;
  }

  .purchase-trust {
    justify-content: center;
  }

  .cart-drawer {
    width: 100%;
    border-left: 0;
  }

  .checkout-overlay {
    align-items: end;
    padding: 0;
  }

  .checkout-step {
    width: 100%;
    max-height: calc(100vh - 12px);
    padding: 38px 22px 26px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 18px 18px 0 0;
  }
}

@media (max-width: 390px) {
  .panel-button {
    padding-inline: 10px;
  }

  .panel-button svg {
    display: none;
  }

  .checkout-security {
    gap: 8px;
    font-size: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Larger production scale */
body {
  font-size: 16px;
}

.eyebrow,
.section-kicker {
  font-size: 10px;
}

.nav-track a,
.panel-button {
  font-size: 12px;
}

.online-badge,
.cart-button,
.header-search-button {
  font-size: 11px;
}

.section-heading > p {
  font-size: 13px;
}

.hero-copy > p {
  font-size: 15px;
}

.button {
  min-height: 48px;
  font-size: 12px;
}

.hero-stats strong {
  font-size: 16px;
}

.hero-stats span,
.trust-strip div {
  font-size: 10px;
}

.product-search input {
  font-size: 13px;
}

.category-tabs button {
  min-height: 38px;
  padding-inline: 17px;
  font-size: 9px;
}

.product-group-heading strong,
.product-group-heading small {
  font-size: 10px;
}

.product-card-body {
  min-height: 174px;
  padding: 24px;
}

.product-bestseller,
.product-status {
  min-height: 28px;
  font-size: 8px;
  line-height: 26px;
}

.product-category {
  font-size: 9px;
}

.product-name {
  font-size: 21px;
}

.product-price small {
  font-size: 8px;
}

.product-price b {
  font-size: 23px;
}

.product-cta {
  height: 39px;
  padding-inline: 15px;
  font-size: 10px;
}

.status-product-info strong {
  font-size: 16px;
}

.review-card {
  padding: 30px;
}

.review-top b {
  font-size: 8px;
}

.review-card blockquote {
  font-size: 16px;
}

.review-card footer strong {
  font-size: 11px;
}

.review-card footer small {
  font-size: 9px;
}

.faq-copy p,
.faq-list details p,
.final-section p {
  font-size: 13px;
}

.faq-list summary {
  font-size: 15px;
}

.footer-brand p {
  font-size: 12px;
}

.footer-shell strong {
  font-size: 10px;
}

.footer-shell > div:not(.footer-brand) a {
  font-size: 11px;
}

.footer-bottom {
  font-size: 10px;
}

.cart-header strong,
.cart-empty strong {
  font-size: 15px;
}

.cart-header > div > span,
.cart-empty p,
.cart-footer > div span,
.cart-footer > button,
.checkout-step form > button {
  font-size: 11px;
}

.cart-item-top strong,
.cart-item-actions > div button,
.cart-item-actions > div span {
  font-size: 11px;
}

.cart-item-top span {
  font-size: 9px;
}

.cart-item-top b {
  font-size: 14px;
}

.cart-footer > div strong {
  font-size: 22px;
}

.cart-footer > small,
.checkout-security {
  font-size: 8px;
}

.checkout-step > p,
.checkout-summary span {
  font-size: 11px;
}

.checkout-summary small,
.checkout-step form label > span,
.checkout-step form label small {
  font-size: 9px;
}

.checkout-step input {
  font-size: 12px;
}

/* OneStop-inspired standalone product layout in the Novum theme */
.product-detail-page {
  background:
    radial-gradient(circle at 78% 12%, rgba(155, 19, 26, 0.12), transparent 24%),
    #080808;
}

.product-detail-page #product-main {
  min-height: 100vh;
  padding-top: var(--header);
}

.product-page-shell {
  width: min(calc(100% - 48px), 1160px);
  margin-inline: auto;
  padding: 34px 0 110px;
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #5f5a56;
  font-size: 12px;
}

.product-breadcrumbs a:hover {
  color: #dbd6d1;
}

.product-breadcrumbs span {
  color: #383532;
}

.product-breadcrumbs strong {
  overflow: hidden;
  color: #8f8984;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-purchase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 52px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 13px;
}

.product-gallery-stage {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #0c0c0d;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.gallery-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.gallery-glow,
.showcase-glow {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(224, 27, 35, 0.17);
  filter: blur(75px);
}

.gallery-brand {
  position: absolute;
  top: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #716b66;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.gallery-brand img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.product-gallery-stage > img {
  position: relative;
  z-index: 2;
  width: min(78%, 420px);
  max-height: 410px;
  object-fit: contain;
  filter:
    drop-shadow(0 28px 34px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 28px rgba(222, 31, 39, 0.15));
}

.gallery-index {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: #4a4642;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.gallery-thumb {
  display: grid;
  width: 84px;
  height: 68px;
  place-items: center;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(240, 50, 50, 0.45);
  border-radius: 11px;
  background: #101011;
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-buy-panel {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: 8px 0 2px;
}

.product-page-category {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.product-buy-panel h1 {
  margin: 12px 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(42px, 4.8vw, 64px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.product-page-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px 20px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
  color: #756f6a;
  font-size: 11px;
  font-weight: 700;
}

.product-page-status > span:first-child {
  display: grid;
  grid-template-columns: 8px auto;
  gap: 0 7px;
  color: var(--green);
}

.product-page-status > span:first-child i {
  width: 7px;
  height: 7px;
  margin-top: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.product-page-summary {
  margin: 20px 0 0;
  color: #8b8580;
  font-size: 14px;
  line-height: 1.75;
}

.plan-block {
  margin-top: 31px;
}

.plan-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #b3ada7;
  font-size: 12px;
  font-weight: 800;
}

.plan-heading small {
  color: #59544f;
  font-size: 10px;
  font-weight: 600;
}

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

.plan-grid > button {
  position: relative;
  display: flex;
  min-height: 92px;
  padding: 17px 12px 13px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #101011;
  color: #bbb5af;
  cursor: pointer;
  transition: 160ms ease;
}

.plan-grid > button:hover:not(:disabled) {
  border-color: rgba(240, 50, 50, 0.32);
  background: #131112;
}

.plan-grid > button.is-selected {
  border-color: rgba(240, 50, 50, 0.6);
  background: rgba(240, 50, 50, 0.09);
  box-shadow: inset 0 0 25px rgba(240, 50, 50, 0.035);
  color: white;
}

.plan-grid > button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.plan-grid strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  line-height: 1;
}

.plan-grid small {
  margin-top: 7px;
  color: #6e6863;
  font-size: 10px;
  font-weight: 700;
}

.plan-grid em {
  margin-top: 5px;
  color: #b54d4d;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-popular {
  position: absolute;
  top: -8px;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-purchase-row {
  display: grid;
  grid-template-columns: auto auto minmax(170px, 1fr);
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 30px;
}

.product-purchase-row .quantity-control {
  height: 48px;
  grid-template-columns: 38px 38px 38px;
}

.product-purchase-row .purchase-price {
  min-width: 92px;
}

.product-purchase-row .purchase-price small {
  font-size: 8px;
}

.product-purchase-row .purchase-price strong {
  font-size: 25px;
}

.product-purchase-row .add-cart-button {
  height: 48px;
  font-size: 12px;
}

.product-purchase-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #625c58;
  font-size: 10px;
  font-weight: 700;
}

.product-purchase-trust b {
  margin-right: 4px;
  color: var(--red);
}

.product-details-stack {
  display: grid;
  gap: 62px;
  margin-top: 80px;
}

.product-detail-section {
  min-width: 0;
}

.product-detail-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.product-detail-heading > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.product-detail-heading > i {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.product-detail-heading > small {
  color: #5c5752;
  font-size: 10px;
  font-weight: 700;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0d0d0e;
}

.requirements-grid article {
  display: grid;
  min-height: 112px;
  align-content: center;
  gap: 9px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.requirements-grid article:last-child {
  border-right: 0;
}

.requirements-grid span {
  color: #5f5a55;
  font-size: 10px;
  font-weight: 700;
}

.requirements-grid strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
}

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

.feature-tabs button {
  min-height: 50px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #0f0f10;
  color: #716b66;
  font-size: 11px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: 160ms ease;
}

.feature-tabs button:hover,
.feature-tabs button.is-active {
  border-color: rgba(240, 50, 50, 0.32);
  background: rgba(240, 50, 50, 0.075);
  color: white;
}

.feature-panel {
  display: grid;
  min-height: 150px;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background:
    radial-gradient(circle at 5% 50%, rgba(201, 24, 31, 0.1), transparent 24%),
    #0d0d0e;
}

.feature-panel > span {
  color: rgba(240, 50, 50, 0.38);
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.feature-panel h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
}

.feature-panel p {
  max-width: 720px;
  margin: 0;
  color: #807a75;
  font-size: 13px;
  line-height: 1.7;
}

.showcase-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #0c0c0d;
}

.showcase-top {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.showcase-top > span {
  color: #817b76;
  font-size: 11px;
  font-weight: 800;
}

.showcase-top > div {
  display: flex;
  gap: 6px;
}

.showcase-top button {
  height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111112;
  color: #625d58;
  font-size: 9px;
  font-weight: 800;
}

.showcase-top button.is-active {
  border-color: rgba(240, 50, 50, 0.28);
  color: #e36d6d;
}

.showcase-stage {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 40px 40px;
}

.showcase-stage img {
  position: relative;
  z-index: 1;
  width: min(70%, 610px);
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.58));
}

.product-description {
  max-width: 900px;
}

.product-description h2 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 3.3vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.product-description > p,
.product-description li {
  color: #8a847f;
  font-size: 14px;
  line-height: 1.8;
}

.product-description ul {
  display: grid;
  gap: 11px;
  margin: 23px 0;
  padding: 0;
  list-style: none;
}

.product-description li {
  display: flex;
  gap: 11px;
}

.product-description li span {
  color: var(--green);
  font-weight: 900;
}

.product-description .description-note {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0e0e0f;
  color: #6d6762;
  font-size: 12px;
}

.product-page-footer {
  border-top: 1px solid var(--line);
}

/* Nova-style legal document layout with the standard Novum header */
.legal-page main {
  padding-top: var(--header);
}

.legal-page .site-header {
  position: fixed;
}

.legal-hero .section-shell {
  padding-block: 76px 68px;
}

.legal-hero h1 {
  margin-bottom: 18px;
}

.legal-hero-summary {
  max-width: 670px;
  margin: 0 !important;
  color: #8a847f !important;
  font-size: 14px !important;
  line-height: 1.75;
}

.legal-date {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 23px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: #5e5955;
  font-size: 10px;
}

.legal-date strong {
  color: #918b86;
  font-weight: 800;
}

.legal-layout {
  grid-template-columns: 220px minmax(0, 820px);
  gap: 72px;
  justify-content: center;
  padding-block: 72px 120px;
}

.legal-toc {
  top: calc(var(--header) + 28px);
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-toc strong {
  margin: 0 0 11px;
  color: #aaa49e;
  font-size: 10px;
}

.legal-toc a {
  padding: 7px 0;
  color: #68625e;
  font-size: 11px;
  line-height: 1.3;
}

.legal-toc a:hover {
  color: #f0ebe6;
  transform: translateX(3px);
}

.legal-copy {
  color: #918b85;
  font-size: 14px;
  line-height: 1.82;
}

.legal-lead {
  margin-bottom: 58px;
  padding: 23px 24px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(240, 50, 50, 0.05), transparent 50%),
    #0e0e0f;
  color: #b0aaa4;
  font-size: 14px;
}

.legal-copy section {
  margin-bottom: 52px;
  scroll-margin-top: calc(var(--header) + 32px);
}

.legal-copy h2 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
  color: #ece7e2;
  font-size: 24px;
}

.legal-copy h2 span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.legal-copy p {
  margin-bottom: 16px;
}

.legal-copy ul {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.legal-copy li {
  position: relative;
  margin: 0;
  padding-left: 20px;
}

.legal-copy li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--red);
  content: "\2192";
}

.legal-table-wrap {
  margin: 20px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.legal-copy table {
  width: 100%;
  border-collapse: collapse;
  background: #0d0d0e;
  font-size: 12px;
}

.legal-copy th,
.legal-copy td {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-copy th:last-child,
.legal-copy td:last-child {
  border-right: 0;
}

.legal-copy tr:last-child td {
  border-bottom: 0;
}

.legal-copy th {
  color: #b9b3ad;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-copy td {
  color: #7e7873;
}

.legal-copy td:first-child {
  color: #aaa49e;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .product-purchase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .product-gallery-stage {
    min-height: 470px;
  }

  .product-buy-panel {
    min-height: 470px;
  }

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

@media (max-width: 900px) {
  .product-detail-page #product-main,
  .legal-page main {
    padding-top: var(--header);
  }

  .product-purchase-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .product-buy-panel {
    min-height: 0;
  }

  .product-purchase-row {
    margin-top: 28px;
  }

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

  .requirements-grid article:nth-child(2) {
    border-right: 0;
  }

  .requirements-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .product-page-shell {
    width: min(calc(100% - 30px), 1160px);
    padding-top: 25px;
  }

  .product-breadcrumbs {
    font-size: 10px;
  }

  .product-gallery-stage {
    min-height: 380px;
    border-radius: 15px;
  }

  .product-gallery-stage > img {
    width: 76%;
    max-height: 290px;
  }

  .product-buy-panel h1 {
    font-size: clamp(39px, 13vw, 54px);
  }

  .product-page-status {
    gap: 12px;
  }

  .product-page-summary {
    font-size: 13px;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-grid > button {
    min-height: 78px;
  }

  .product-purchase-row {
    grid-template-columns: auto 1fr;
  }

  .product-purchase-row .add-cart-button {
    grid-column: 1 / -1;
  }

  .product-purchase-trust {
    justify-content: center;
  }

  .product-details-stack {
    gap: 52px;
    margin-top: 65px;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .requirements-grid article {
    min-height: 90px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .requirements-grid article:last-child {
    border-bottom: 0;
  }

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

  .feature-panel {
    grid-template-columns: 48px 1fr;
    padding: 22px;
  }

  .feature-panel > span {
    font-size: 34px;
  }

  .feature-panel h3 {
    font-size: 20px;
  }

  .feature-panel p {
    font-size: 12px;
  }

  .showcase-stage {
    min-height: 330px;
  }

  .showcase-stage img {
    width: 82%;
    max-height: 280px;
  }

  .legal-hero .section-shell {
    padding-block: 60px 54px;
  }

  .legal-hero h1 {
    font-size: clamp(44px, 15vw, 62px);
  }

  .legal-hero-summary {
    font-size: 13px !important;
  }

  .legal-copy {
    font-size: 13px;
  }

  .legal-copy h2 {
    align-items: flex-start;
    font-size: 21px;
  }

  .legal-copy h2 span {
    margin-top: 5px;
  }
}
