:root {
  --ink: #111111;
  --navy: #102a43;
  --muted: #5c6067;
  --paper: #ffffff;
  --bone: #f6f2ea;
  --smoke: #f4f6f8;
  --red: #e33d27;
  --blue: #1674c4;
  --green: #108474;
  --gold: #ffd466;
  --line: #d9dde3;
  --radius: 8px;
  --shadow: 0 18px 55px rgba(17, 17, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, "Noto Sans HK", "PingFang HK", "Microsoft JhengHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

[hidden] {
  display: none !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.promo-bar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 9px 20px;
  color: var(--paper);
  background: linear-gradient(90deg, #101010 0%, var(--navy) 48%, var(--red) 100%);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 13px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-size: 15px;
  text-transform: uppercase;
}

.brand small {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.cart-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(8, 11, 16, 0.08);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-trigger strong {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  color: var(--paper);
  background: var(--red);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
}

.market-switcher {
  display: inline-grid;
  gap: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.market-switcher select {
  width: 164px;
  min-height: 40px;
  padding: 0 34px 0 12px;
  color: var(--ink);
  background:
    linear-gradient(45deg, transparent 50%, var(--red) 50%) calc(100% - 17px) 17px / 6px 6px no-repeat,
    linear-gradient(135deg, var(--red) 50%, transparent 50%) calc(100% - 12px) 17px / 6px 6px no-repeat,
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(8, 11, 16, 0.08);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  appearance: none;
  cursor: pointer;
}

.market-switcher select:focus-visible {
  outline: 3px solid rgba(15, 113, 189, 0.28);
  outline-offset: 2px;
}

.market-dialog {
  width: min(calc(100% - 32px), 460px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.market-dialog::backdrop {
  background: rgba(8, 11, 16, 0.58);
  backdrop-filter: blur(5px);
}

.market-dialog-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 26px;
}

.market-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--muted);
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.market-dialog-flag {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: rgba(227, 55, 36, 0.1);
  border: 1px solid rgba(227, 55, 36, 0.18);
  border-radius: 999px;
  font-size: 25px;
}

.market-dialog h2 {
  margin: 6px 0 8px;
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
}

.market-dialog p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

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

.market-dialog-actions .button {
  min-height: 44px;
  padding-inline: 14px;
  font-size: 13px;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(8, 11, 16, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  backdrop-filter: blur(5px);
}

.cart-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(100%, 430px);
  padding: 24px;
  overflow-y: auto;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 255, 255, 0.98)),
    var(--paper);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 70px rgba(8, 11, 16, 0.24);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

body.cart-open {
  overflow: hidden;
}

body.popup-open {
  overflow: hidden;
}

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer h2 {
  margin: 5px 0 0;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.cart-close {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--muted);
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cart-empty,
.cart-filled {
  align-self: start;
  display: grid;
  gap: 18px;
  padding-top: 22px;
}

.cart-empty strong {
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
}

.cart-empty p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.cart-product {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-product img {
  width: 92px;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--paper);
  border-radius: var(--radius);
}

.cart-offer {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 7px;
  padding: 4px 8px;
  color: var(--paper);
  background: var(--red);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.cart-product h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.14;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-product p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cart-quantity {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 150px;
  padding: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.cart-quantity button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.cart-quantity strong {
  font-size: 16px;
  font-weight: 900;
}

.cart-urgency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: var(--paper);
  background: linear-gradient(90deg, var(--red), #9d1f14);
  border-radius: var(--radius);
}

.cart-urgency span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-urgency strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.cart-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cart-summary span {
  color: var(--muted);
  font-weight: 800;
}

.cart-summary strong {
  font-weight: 900;
  text-align: right;
}

.cart-price-stack {
  display: grid;
  justify-items: end;
  gap: 2px;
  line-height: 1.1;
}

.cart-price-stack s {
  color: var(--muted);
  font-size: 13px;
  text-decoration-thickness: 2px;
}

.cart-price-stack:not(.has-discount) s {
  display: none;
}

.cart-price-stack span {
  color: var(--ink);
  font-size: 19px;
}

.cart-discount {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: var(--green);
}

.cart-discount > span {
  display: inline-flex;
  width: fit-content;
  padding: 3px 8px;
  color: var(--paper);
  background: var(--green);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.2;
}

.cart-discount small {
  font-size: 12px;
  font-weight: 900;
}

.cart-summary [data-cart-savings] {
  color: var(--green);
}

.cart-checkout-button {
  width: 100%;
  min-height: 54px;
}

.button.is-loading {
  gap: 10px;
  pointer-events: none;
}

.button.is-loading::before {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--paper);
  border-radius: 50%;
  content: "";
  animation: button-spin 700ms linear infinite;
}

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

.cart-checkout-button.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.cart-continue {
  justify-self: center;
  color: var(--muted);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-assurance {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.cart-assurance span::before {
  color: var(--green);
  content: "✓ ";
}

.launch-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 58;
  background: rgba(8, 11, 16, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  backdrop-filter: blur(6px);
}

.launch-popup-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.launch-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 59;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  width: min(calc(100% - 28px), 820px);
  min-height: 520px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(8, 11, 16, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease;
}

.launch-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.launch-popup-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 11, 16, 0.12);
  border-radius: 999px;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(8, 11, 16, 0.12);
}

.launch-popup-media {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: 34px 28px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 212, 102, 0.38), transparent 26%),
    radial-gradient(circle at 22% 76%, rgba(22, 116, 196, 0.38), transparent 28%),
    linear-gradient(145deg, var(--ink) 0%, var(--navy) 54%, var(--red) 142%);
}

.launch-popup-media::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 26px),
    linear-gradient(180deg, rgba(8, 11, 16, 0), rgba(8, 11, 16, 0.36));
  opacity: 0.52;
}

.launch-popup-logo {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 1;
  width: 58px;
  height: 58px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.launch-popup-art {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 280px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border: 8px solid rgba(255, 255, 255, 0.94);
  border-radius: 6px;
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.34);
  transform: rotate(-2deg);
}

.launch-discount-badge {
  position: absolute;
  right: 20px;
  top: 24px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  color: var(--ink);
  background: var(--gold);
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  text-align: center;
  transform: rotate(8deg);
}

.launch-discount-badge strong {
  display: block;
  margin-top: 12px;
  font-size: 34px;
  line-height: 0.82;
  font-weight: 900;
}

.launch-discount-badge span {
  display: block;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-popup-content {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 42px 34px;
}

.launch-popup h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 0.94;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-popup p {
  margin: 0;
}

.launch-popup #launch-popup-copy {
  color: var(--muted);
  font-size: 17px;
}

.launch-popup-perks {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.launch-popup-perks li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 900;
}

.launch-popup-perks li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  content: "✓";
  font-size: 12px;
}

.launch-popup-form {
  display: grid;
  gap: 9px;
  margin-top: 2px;
}

.launch-popup-form label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-popup-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.launch-popup-form input {
  min-width: 0;
  min-height: 52px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
}

.launch-popup-form input:focus {
  outline: 3px solid rgba(227, 61, 39, 0.18);
  border-color: var(--red);
}

.launch-popup-form .button {
  min-height: 52px;
  white-space: nowrap;
}

.launch-popup-form small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.launch-popup-success {
  padding: 14px;
  color: #0b5c4f;
  background: rgba(16, 132, 116, 0.1);
  border: 1px solid rgba(16, 132, 116, 0.24);
  border-radius: var(--radius);
  font-weight: 900;
}

.launch-popup-success strong {
  display: inline-flex;
  margin-left: 4px;
  padding: 2px 8px;
  color: var(--paper);
  background: var(--green);
  border-radius: 999px;
}

.launch-popup-secondary {
  justify-self: start;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--paper);
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

button.button {
  font: inherit;
  cursor: pointer;
}

button.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.button:hover {
  transform: translateY(-2px);
  background: #c92f1b;
  border-color: #c92f1b;
}

.button-secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button-secondary:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 118px);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.68) 44%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 94px 24px 86px;
  margin-left: max(24px, calc((100vw - 1220px) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin-top: 12px;
  max-width: 18ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.05;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-product {
  position: absolute;
  right: max(28px, calc((100vw - 1220px) / 2));
  bottom: -26px;
  z-index: 1;
  width: min(37vw, 460px);
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.42));
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-block: 2px solid var(--ink);
  background: linear-gradient(90deg, var(--paper) 0%, #eef4fb 45%, #fff7f5 100%);
}

.proof-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 104px;
  padding: 24px 18px;
  border-right: 2px solid rgba(17, 17, 17, 0.12);
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.proof-strip img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 4px;
}

.proof-strip span:last-child {
  border-right: 0;
}

.section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 84px 24px;
}

section[id] {
  scroll-margin-top: 118px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading-wide {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: end;
  max-width: none;
}

.section-heading-wide .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 52px;
  align-items: start;
}

.gallery-main {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--smoke);
}

.gallery-main img {
  max-height: 520px;
  object-fit: contain;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.thumb {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
}

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

.thumb.active,
.thumb:focus-visible {
  border-color: var(--red);
}

.product-copy {
  position: sticky;
  top: 120px;
}

.product-copy h2,
.split-feature h2,
.facts-copy h2,
.final-cta h2 {
  font-size: 42px;
}

.product-copy p {
  color: var(--muted);
  font-size: 18px;
}

.product-body {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.product-body p {
  margin: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  content: "✓";
  font-size: 13px;
}

.buy-panel {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.checkout-offer {
  display: grid;
  gap: 16px;
}

.deal-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  color: var(--paper);
  background: linear-gradient(90deg, var(--ink), var(--red));
  border-radius: var(--radius);
}

.deal-timer span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.deal-timer strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.purchase-options {
  display: grid;
  gap: 12px;
}

.purchase-option {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 22px 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.purchase-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.purchase-option-bogo {
  padding-top: 76px;
  border-color: var(--red);
  background: #fff1ef;
}

.purchase-option.is-selected {
  box-shadow: 0 0 0 4px rgba(227, 61, 39, 0.12);
}

.deal-ribbon {
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 16px;
  color: var(--ink);
  background: linear-gradient(90deg, #e1ad20, #fff46b, #e1ad20);
  border-radius: 5px 5px 0 0;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.option-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  color: var(--paper);
  background: rgba(17, 17, 17, 0.88);
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}

.option-countdown span {
  font-size: 10px;
  font-weight: 900;
}

.option-countdown strong {
  font-size: 13px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.option-radio {
  width: 28px;
  height: 28px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.purchase-option.is-selected .option-radio {
  border-color: var(--red);
  box-shadow: inset 0 0 0 5px var(--paper);
  background: var(--red);
}

.option-copy strong,
.option-price strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.02;
  font-weight: 900;
}

.option-copy small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.option-price {
  text-align: right;
}

.option-price em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  text-decoration: line-through;
}

.buy-now-button {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-height: 58px;
  width: 100%;
  padding: 7px 18px 6px;
  color: #ffffff;
  background: #020e59;
  border: 2px solid #078cff;
  border-radius: 7px;
  box-shadow:
    0 12px 22px rgba(2, 14, 89, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  line-height: 1;
}

.buy-now-button:hover {
  background: #06196d;
  border-color: #2ba1ff;
  box-shadow:
    0 16px 28px rgba(2, 14, 89, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.buy-now-label {
  font-size: 22px;
  letter-spacing: 0;
}

.buy-now-guarantee {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.buy-now-guarantee svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}

.payment-trust {
  display: grid;
  gap: 10px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.76);
  border: 1px solid rgba(8, 11, 16, 0.1);
  border-radius: 8px;
}

.payment-trust p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.payment-trust strong {
  font-size: 13px;
  font-weight: 900;
}

.payment-trust p span {
  color: var(--muted);
  font-weight: 800;
}

.stock-progress {
  display: grid;
  gap: 7px;
  padding: 10px;
  background: rgba(227, 61, 39, 0.06);
  border: 1px solid rgba(227, 61, 39, 0.18);
  border-radius: 7px;
}

.stock-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.stock-progress-meta strong {
  color: var(--red);
  font-size: 18px;
  line-height: 1;
}

.stock-progress-track {
  position: relative;
  display: block;
  width: 100%;
  height: 10px;
  overflow: hidden;
  background: rgba(8, 11, 16, 0.12);
  border-radius: 999px;
}

.stock-progress-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 27%;
  background: linear-gradient(90deg, var(--red), #ff7a38);
  border-radius: inherit;
  box-shadow: 0 0 14px rgba(227, 61, 39, 0.34);
}

.stock-progress small {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 12px;
  color: #ffffff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 16px rgba(8, 11, 16, 0.1);
}

.pay-fps,
.pay-paypal,
.pay-amex {
  background: #0879cf;
}

.pay-alipay {
  background: #1677ff;
}

.pay-payme,
.pay-unionpay {
  background: #df1725;
}

.pay-wechat {
  background: #09b51f;
}

.pay-paynow,
.pay-mastercard {
  background: #f04b12;
}

.pay-visa {
  background: #111560;
}

.pay-apple {
  background: #050505;
}

.pay-google {
  color: #5f6368;
  background: #ffffff;
  border: 2px solid #c6cbd1;
}

.pay-shop {
  background: #5a32e6;
}

.checkout-assurance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  text-align: center;
}

.checkout-assurance div {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
}

.assurance-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 900;
}

.checkout-assurance strong {
  max-width: 150px;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
}

.band {
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1220px) / 2));
}

.band-light {
  background: var(--bone);
}

.band-dark {
  color: var(--paper);
  background: var(--ink);
}

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

.benefit-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.benefit-card {
  padding: 24px;
}

.benefit-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.benefit-card h3,
.review-card h3 {
  margin: 10px 0 8px;
  font-size: 21px;
  line-height: 1.18;
}

.benefit-card h3 {
  margin-top: 0;
}

.benefit-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
}

.creatine-stats {
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1220px) / 2));
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(17, 17, 17, 0.96) 56%, rgba(227, 61, 39, 0.9));
}

.creatine-stats .section-heading p:not(.eyebrow) {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.78);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.stat-card {
  display: grid;
  align-content: start;
  min-height: 390px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.stat-card span {
  display: block;
  max-width: 100%;
  margin-bottom: 24px;
  color: var(--paper);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 0.95;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.stat-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.15;
  text-transform: uppercase;
}

.stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.46;
}

.stat-card p strong {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.stat-card-red {
  background: rgba(227, 61, 39, 0.22);
}

.stat-card-blue {
  background: rgba(22, 116, 196, 0.24);
}

.split-feature,
.facts-band,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: center;
}

.split-feature p,
.facts-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.final-cta .final-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
}

.final-cta .final-guarantee::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
}

.split-feature > img,
.comparison-figure img,
.final-cta > img {
  width: 100%;
  max-height: 640px;
  border-radius: var(--radius);
  object-fit: cover;
}

.comparison-figure {
  display: grid;
  gap: 10px;
  margin: 0;
}

.comparison-figure img {
  border: 1px solid var(--line);
  background: var(--paper);
  object-fit: contain;
}

.comparison-figure figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.feature-list div {
  display: grid;
  gap: 3px;
  padding: 16px;
  border-left: 4px solid var(--red);
  background: var(--smoke);
}

.feature-list strong {
  font-size: 16px;
  text-transform: uppercase;
}

.feature-list span {
  color: var(--muted);
}

.facts-band {
  border-block: 1px solid var(--line);
  background: var(--smoke);
}

.facts-body {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.facts-body p {
  margin: 0;
}

.facts-body strong {
  color: var(--ink);
}

.facts-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.facts-detail-list li {
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.facts-detail-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.facts-detail-list strong {
  font-size: 18px;
  line-height: 1.1;
}

.facts-figure {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin: 0;
}

.facts-figure img {
  justify-self: center;
  width: min(100%, 440px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.facts-figure figcaption {
  max-width: 440px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 44px;
  align-items: stretch;
}

.about-copy {
  display: grid;
  align-content: center;
  grid-column: 1;
}

.about-copy h2,
.customer-proof h2 {
  font-size: 42px;
}

.about-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.about-body {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.about-body p {
  margin: 0;
}

.about-body strong {
  color: var(--ink);
}

.about-standards {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-standards li {
  position: relative;
  padding: 13px 14px 13px 40px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--smoke);
  font-size: 15px;
  font-weight: 900;
}

.about-standards li::before {
  position: absolute;
  left: 14px;
  top: 15px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  box-shadow: inset 0 0 0 4px var(--paper);
}

.about-legend {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.about-legend img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.about-legend::after {
  position: absolute;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.92));
}

.about-legend figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px;
  color: var(--paper);
}

.about-legend strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.about-legend span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-badges {
  display: grid;
  grid-column: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-self: start;
}

.trust-badges div {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(17, 17, 17, 0.08);
}

.trust-badges img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.trust-badges span {
  font-size: 14px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.about-pillars {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-pillars article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 38px rgba(17, 17, 17, 0.08);
}

.about-pillars span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.about-pillars h3 {
  margin: 28px 0 10px;
  font-size: 20px;
  line-height: 1.14;
  text-transform: uppercase;
}

.about-pillars p {
  margin: 0;
  color: var(--muted);
}

.customer-proof {
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1220px) / 2));
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(16, 42, 67, 0.98) 56%, rgba(227, 61, 39, 0.94));
}

.customer-proof .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

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

.proof-metric {
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.proof-metric-red {
  background: rgba(227, 61, 39, 0.22);
}

.proof-metric-blue {
  background: rgba(22, 116, 196, 0.22);
}

.proof-metric img {
  width: auto;
  height: 52px;
  margin-bottom: 24px;
  object-fit: contain;
}

.proof-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-metric strong {
  display: block;
  margin-top: 2px;
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-metric p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
}

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

.proof-review-strip article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 172px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.proof-review-strip img {
  width: 120px;
  height: 132px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--paper);
}

.proof-review-strip article:nth-child(3) img {
  padding: 8px;
  object-fit: contain;
}

.proof-review-strip h3 {
  margin: 8px 0 6px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.12;
}

.proof-review-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.review-summary {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--smoke);
}

.review-summary strong {
  display: block;
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}

.review-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rating-bars {
  display: grid;
  gap: 12px;
}

.rating-bars span {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.rating-bars span::before {
  display: block;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
  content: "";
}

.rating-bars b {
  position: absolute;
  left: 0;
  top: 5px;
  height: 12px;
  border-radius: 999px;
  background: var(--red);
}

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

.review-card {
  padding: 22px;
}

.stars {
  color: var(--red);
  font-size: 18px;
  letter-spacing: 0;
}

.stars-three {
  color: var(--gold);
}

.review-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.review-card footer span {
  padding: 3px 8px;
  color: var(--paper);
  background: var(--green);
  border-radius: 999px;
  font-size: 11px;
}

.review-card-photo {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  grid-column: span 2;
}

.review-card-photo > img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  border-radius: var(--radius);
  object-fit: cover;
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.reviews-actions .button {
  min-width: 220px;
}

.amazon-reviews-page {
  background: var(--paper);
}

.amazon-reviews-page .site-header {
  position: sticky;
}

.reviews-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.52fr);
  gap: 32px;
  align-items: stretch;
  padding-top: 72px;
}

.reviews-hero-copy {
  display: grid;
  align-content: center;
  min-height: 480px;
  padding: 42px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(16, 42, 67, 0.96) 55%, rgba(227, 61, 39, 0.9)),
    url("assets/images/creatine-gummies-real-results.jpg") center / cover;
}

.reviews-hero-copy .eyebrow,
.reviews-hero-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.reviews-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.94;
  letter-spacing: 0;
}

.reviews-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 18px;
}

.reviews-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.review-source-panel {
  display: grid;
  align-content: center;
  min-height: 480px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--smoke);
}

.review-source-panel > span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-source-panel > strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(66px, 8vw, 106px);
  line-height: 0.92;
  font-weight: 900;
}

.review-source-panel > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.review-source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.review-source-grid div {
  min-height: 110px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.review-source-grid b {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.review-source-grid small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-data-section {
  padding-top: 44px;
}

.amazon-review-toolbar {
  position: sticky;
  top: 110px;
  z-index: 20;
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  padding: 10px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.08);
}

.amazon-review-toolbar button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.amazon-review-toolbar button.is-active {
  color: var(--paper);
  border-color: var(--red);
  background: var(--red);
}

.amazon-review-count {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.amazon-review-item {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.07);
}

.amazon-review-item[data-rating="4"] {
  background: #fffaf0;
}

.amazon-review-item[data-rating="3"],
.amazon-review-item[data-rating="2"],
.amazon-review-item[data-rating="1"] {
  background: #fff5f5;
}

.amazon-review-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.amazon-review-topline b {
  color: var(--muted);
  font-size: 13px;
}

.amazon-review-item h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.amazon-review-item p {
  margin: 0;
  color: var(--muted);
}

.amazon-review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.amazon-review-tags span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--smoke);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.amazon-review-item a {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.band-dark .section-heading p:not(.eyebrow),
.band-dark .faq-list p {
  color: rgba(255, 255, 255, 0.76);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
}

.final-cta > div {
  max-width: 620px;
}

.sticky-buy {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(calc(100% - 28px), 560px);
  padding: 12px 16px;
  color: var(--paper);
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.sticky-buy span {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-footer {
  display: grid;
  gap: 12px;
  padding: 34px 24px 100px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
  font-size: 13px;
  text-align: center;
}

.site-footer p {
  max-width: 920px;
  margin: 0 auto;
}

.site-footer a {
  color: var(--paper);
  font-weight: 900;
  text-decoration: underline;
}

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

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

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

  .hero-content {
    max-width: 620px;
    padding-top: 58px;
    padding-bottom: 320px;
    margin-left: 0;
  }

  .hero h1,
  .section h2 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-product {
    right: 50%;
    width: 330px;
    transform: translateX(52%);
  }

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

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

  .proof-strip span:nth-child(2) {
    border-right: 0;
  }

  .proof-strip span:nth-child(even) {
    border-right: 0;
  }

  .proof-strip span:last-child {
    grid-column: 1 / -1;
  }

  .product-section,
  .split-feature,
  .facts-band,
  .about-section,
  .reviews-hero,
  .final-cta,
  .section-heading-wide {
    grid-template-columns: 1fr;
  }

  .section-heading-wide .eyebrow {
    margin-bottom: 0;
  }

  .product-copy {
    position: static;
  }

  .benefit-grid,
  .stat-grid,
  .trust-badges,
  .amazon-review-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-hero {
    padding-top: 42px;
  }

  .reviews-hero-copy,
  .review-source-panel {
    min-height: auto;
  }

  .about-copy,
  .trust-badges,
  .about-legend {
    grid-column: auto;
    grid-row: auto;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    min-height: 460px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .review-card-photo {
    grid-column: span 2;
  }

  .sticky-buy {
    grid-template-columns: minmax(0, 1fr);
    background: rgba(227, 61, 39, 0.96);
  }

  .sticky-buy.is-visible {
    display: grid;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .promo-bar {
    gap: 8px;
    padding: 8px 8px;
    font-size: 10px;
    line-height: 1.1;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 11px;
  }

  .market-switcher span {
    display: none;
  }

  .market-switcher select {
    width: 112px;
    min-height: 36px;
    padding-left: 10px;
    font-size: 11px;
  }

  .cart-trigger {
    min-width: 42px;
    min-height: 36px;
    padding: 0 8px;
  }

  .cart-trigger span {
    display: none;
  }

  .amazon-reviews-page .nav-actions {
    display: none;
  }

  .cart-drawer {
    width: 100%;
    padding: 18px;
  }

  .cart-drawer h2 {
    font-size: 26px;
  }

  .cart-product {
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 12px;
  }

  .cart-product img {
    width: 76px;
  }

  .launch-popup {
    grid-template-columns: 1fr;
    align-content: start;
    max-height: calc(100svh - 28px);
    overflow-y: auto;
  }

  .launch-popup-media {
    min-height: 210px;
    padding: 18px;
  }

  .launch-popup-logo {
    left: 14px;
    top: 14px;
    width: 42px;
    height: 42px;
  }

  .launch-popup-art {
    width: 190px;
    border-width: 5px;
  }

  .launch-discount-badge {
    right: 16px;
    top: 18px;
    width: 88px;
    height: 88px;
    border-width: 3px;
  }

  .launch-discount-badge strong {
    font-size: 26px;
  }

  .launch-discount-badge span {
    font-size: 12px;
  }

  .launch-popup-content {
    gap: 12px;
    padding: 22px 18px 18px;
  }

  .launch-popup h2 {
    font-size: 38px;
  }

  .launch-popup #launch-popup-copy {
    font-size: 15px;
  }

  .launch-popup-form div {
    grid-template-columns: 1fr;
  }

  .launch-popup-perks {
    gap: 7px;
  }

  .launch-popup-perks li {
    font-size: 13px;
  }

  .market-dialog-card {
    padding: 22px;
  }

  .market-dialog h2 {
    font-size: 24px;
  }

  .market-dialog-actions {
    grid-template-columns: 1fr;
  }

  .nav .button {
    display: none;
  }

  .reviews-hero {
    gap: 16px;
    padding-top: 28px;
  }

  .reviews-hero-copy {
    padding: 24px;
    background:
      linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(16, 42, 67, 0.96) 60%, rgba(227, 61, 39, 0.9));
  }

  .reviews-hero-copy h1 {
    font-size: 38px;
  }

  .reviews-hero-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .reviews-hero-actions,
  .reviews-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .review-source-panel {
    padding: 22px;
  }

  .review-source-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .review-source-grid div {
    min-height: 86px;
    padding: 12px;
  }

  .review-source-grid b {
    font-size: 28px;
  }

  .amazon-review-toolbar {
    top: 72px;
    margin-inline: -4px;
    border-radius: 0;
  }

  .amazon-review-grid {
    grid-template-columns: 1fr;
  }

  .amazon-review-item {
    min-height: auto;
    padding: 16px;
  }

  .amazon-review-item h3 {
    font-size: 18px;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    padding-top: 46px;
    padding-bottom: 182px;
  }

  .hero h1,
  .section h2 {
    font-size: 34px;
  }

  .product-copy h2,
  .split-feature h2,
  .facts-copy h2,
  .about-copy h2,
  .customer-proof h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .hero-copy,
  .product-copy p,
  .split-feature p,
  .facts-copy p,
  .about-copy p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-actions,
  .buy-panel {
    display: grid;
  }

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

  .hero-actions .button {
    min-width: 0;
    padding: 0 10px;
    font-size: 14px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    max-width: calc(100vw - 48px);
    overflow: hidden;
  }

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

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

  .hero-stats dd {
    font-size: 9px;
    white-space: nowrap;
  }

  .hero-product {
    bottom: -78px;
    width: 250px;
  }

  .sticky-buy {
    left: 14px;
    right: 14px;
    width: auto;
    transform: none;
  }

  .proof-strip,
  .benefit-grid,
  .stat-grid,
  .trust-badges,
  .about-pillars,
  .proof-metrics,
  .proof-review-strip,
  .reviews-grid,
  .review-summary,
  .review-card-photo {
    grid-template-columns: 1fr;
  }

  .proof-strip span {
    min-height: 78px;
    justify-content: flex-start;
    padding: 18px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    text-align: left;
  }

  .proof-strip span:last-child {
    border-bottom: 0;
  }

  .proof-strip img {
    width: 28px;
    height: 28px;
  }

  .stat-card {
    min-height: 0;
  }

  .stat-card span {
    margin-bottom: 22px;
    font-size: 36px;
  }

  .deal-timer,
  .purchase-option {
    padding-inline: 14px;
  }

  .purchase-option {
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: start;
  }

  .purchase-option-bogo {
    padding-top: 76px;
  }

  .option-price {
    grid-column: 2;
    text-align: left;
  }

  .option-copy strong,
  .option-price strong {
    font-size: 24px;
  }

  .checkout-assurance {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .checkout-assurance div {
    grid-template-columns: 44px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .checkout-assurance strong {
    max-width: none;
  }

  .about-legend,
  .about-legend img {
    min-height: 360px;
  }

  .trust-badges div {
    min-height: 78px;
    padding: 14px;
  }

  .proof-metric {
    min-height: 0;
    padding: 22px;
  }

  .proof-metric strong {
    font-size: 46px;
  }

  .proof-metric p {
    font-size: 18px;
  }

  .proof-review-strip article {
    grid-template-columns: 98px minmax(0, 1fr);
    min-height: 146px;
    padding: 12px;
  }

  .proof-review-strip img {
    width: 98px;
    height: 112px;
  }

  .section {
    padding: 58px 16px;
  }

  .band {
    padding-inline: 16px;
  }

  .gallery-main {
    min-height: 340px;
    padding: 18px;
  }

  .gallery-main img {
    max-height: 320px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .review-card-photo {
    grid-column: span 1;
  }

  .review-card-photo > img {
    height: 260px;
  }

  .site-footer {
    padding-bottom: 94px;
  }
}

/* Modern Node app visual layer */
:root {
  --ink: #080b10;
  --navy: #0e2a44;
  --muted: #5f6570;
  --paper: #fffdf9;
  --bone: #f5f1e9;
  --smoke: #f5f7fb;
  --red: #e63724;
  --blue: #0f71bd;
  --green: #087c68;
  --gold: #f4c73d;
  --line: #dce2ea;
  --shadow: 0 22px 70px rgba(8, 11, 16, 0.16);
  --shadow-soft: 0 14px 42px rgba(8, 11, 16, 0.09);
}

body {
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #fffdf9 0%, #f8fafc 42%, #fffdf9 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(8, 11, 16, 0.04) 0 1px, transparent 1px 34px),
    linear-gradient(90deg, rgba(227, 55, 36, 0.04), rgba(14, 42, 68, 0.03));
}

.site-header {
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 10px 34px rgba(8, 11, 16, 0.08);
  backdrop-filter: blur(22px) saturate(150%);
}

.promo-bar {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(90deg, #080b10 0%, #0e2a44 30%, #e63724 66%, #f4c73d 100%);
  background-size: 180% 100%;
  animation: promo-pan 9s ease-in-out infinite alternate;
}

.promo-track {
  display: flex;
  width: max-content;
  animation: promo-marquee 24s linear infinite;
  will-change: transform;
}

.promo-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  gap: clamp(16px, 2.4vw, 34px);
  padding: 9px clamp(16px, 2.6vw, 36px);
  white-space: nowrap;
}

.promo-line[aria-hidden="true"] {
  display: flex;
}

.promo-line span {
  flex: 0 0 auto;
}

.promo-separator {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.promo-bar::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.28) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: promo-shine 4.8s ease-in-out infinite;
}

.nav {
  min-height: 70px;
}

.brand img,
.proof-strip img {
  box-shadow: 0 8px 24px rgba(8, 11, 16, 0.14);
}

.nav-links a,
.button,
.thumb,
.purchase-option,
.benefit-card,
.stat-card,
.review-card,
.proof-metric,
.about-pillars article,
.trust-badges div,
.proof-review-strip article,
.faq-list details {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.button {
  box-shadow: 0 14px 32px rgba(227, 55, 36, 0.25);
}

.button-secondary {
  box-shadow: 0 14px 32px rgba(255, 253, 249, 0.18);
}

.hero {
  min-height: calc(100svh - 110px);
  background: #080b10;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(8, 11, 16, 0.96) 0%, rgba(8, 11, 16, 0.78) 38%, rgba(8, 11, 16, 0.1) 100%),
    linear-gradient(180deg, rgba(8, 11, 16, 0) 60%, rgba(8, 11, 16, 0.84) 100%);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 24px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 72%);
  opacity: 0.38;
}

.hero-bg {
  transform: scale(1.05);
  transition: transform 900ms ease;
}

body.is-ready .hero-bg {
  transform: scale(1);
}

.hero-content {
  padding-top: 108px;
}

.hero h1 {
  max-width: 760px;
  text-wrap: balance;
}

.hero-copy {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-stats div {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-product {
  transform: translate3d(0, var(--hero-shift, 0px), 0) rotate(-1.5deg);
  transition: transform 120ms linear;
}

.proof-strip {
  border-block: 0;
  box-shadow: 0 16px 48px rgba(8, 11, 16, 0.08);
}

.proof-strip span {
  min-height: 116px;
  background: rgba(255, 253, 249, 0.72);
}

.section {
  padding-block: 96px;
}

.section h2,
.product-copy h2,
.split-feature h2,
.facts-copy h2,
.final-cta h2 {
  text-wrap: balance;
}

.product-section {
  gap: 64px;
}

.product-gallery,
.product-copy,
.gallery-main.product-carousel,
.carousel-viewport,
.carousel-track,
.carousel-slide {
  min-width: 0;
}

.gallery-main {
  position: relative;
  border-color: rgba(8, 11, 16, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.94), rgba(237, 243, 249, 0.94));
  box-shadow: var(--shadow-soft);
}

.gallery-main::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.44) 44%, transparent 58%);
  transform: translateX(-120%);
}

.gallery-main:hover::after {
  animation: panel-shine 1.1s ease;
}

.gallery-main img {
  filter: drop-shadow(0 24px 28px rgba(8, 11, 16, 0.16));
  transition: transform 260ms ease;
}

.gallery-main:hover img {
  transform: translateY(-8px) scale(1.02);
}

.gallery-main.product-carousel {
  display: block;
  padding: 22px 22px 58px;
  overflow: hidden;
}

.carousel-viewport {
  position: relative;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  outline: none;
  touch-action: pan-y;
}

.carousel-viewport:focus-visible {
  box-shadow: 0 0 0 3px rgba(227, 55, 36, 0.28);
}

.carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  display: grid;
  flex: 0 0 100%;
  min-height: 480px;
  margin: 0;
  place-items: center;
}

.carousel-slide img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(8, 11, 16, 0.12);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(8, 11, 16, 0.14);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 160ms ease, background-color 160ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--paper);
  transform: translateY(-50%) scale(1.06);
}

.carousel-arrow-prev {
  left: 16px;
}

.carousel-arrow-next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(8, 11, 16, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.carousel-dot:hover,
.carousel-dot:focus-visible {
  background: var(--ink);
  transform: scale(1.15);
}

.carousel-dot.is-active {
  width: 28px;
  background: var(--red);
}

.thumb {
  box-shadow: 0 8px 22px rgba(8, 11, 16, 0.08);
}

.thumb:hover,
.thumb.active {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(8, 11, 16, 0.14);
}

.media-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.media-proof-grid div {
  min-height: 92px;
  padding: 14px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(8, 11, 16, 0.1);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: 0 10px 24px rgba(8, 11, 16, 0.06);
}

.media-proof-grid strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.media-proof-grid span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-copy {
  top: 132px;
}

.checkout-offer {
  border: 1px solid rgba(8, 11, 16, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 255, 255, 0.94));
}

.deal-timer {
  background: linear-gradient(90deg, #080b10 0%, #0e2a44 47%, #e63724 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.purchase-option:hover,
.purchase-option.is-selected {
  transform: translateY(-2px);
}

.purchase-option-bogo {
  background:
    linear-gradient(180deg, rgba(255, 241, 239, 0.96), rgba(255, 247, 246, 0.94));
}

.buy-now-button {
  position: relative;
  overflow: hidden;
}

.buy-now-button::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.24) 46%, transparent 58%);
  transform: translateX(-120%);
}

.buy-now-button:hover::after {
  animation: panel-shine 950ms ease;
}

.benefit-card,
.review-card,
.about-pillars article,
.trust-badges div,
.faq-list details,
.review-summary {
  box-shadow: var(--shadow-soft);
}

.benefit-card:hover,
.review-card:hover,
.about-pillars article:hover,
.trust-badges div:hover,
.proof-review-strip article:hover,
.faq-list details:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.benefit-card {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 255, 255, 0.92));
}

.creatine-stats,
.customer-proof {
  position: relative;
  overflow: hidden;
}

.creatine-stats::before,
.customer-proof::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 35%);
}

.creatine-stats > *,
.customer-proof > * {
  position: relative;
  z-index: 1;
}

.stat-card,
.proof-metric {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.stat-card:hover,
.proof-metric:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.13);
}

.split-feature > img,
.comparison-figure img,
.final-cta > img,
.about-legend {
  box-shadow: var(--shadow);
}

.feature-list div {
  border-left: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(227, 55, 36, 0.12), rgba(245, 247, 251, 0.92));
}

.facts-band {
  border-block: 0;
  box-shadow: inset 0 1px 0 rgba(8, 11, 16, 0.08), inset 0 -1px 0 rgba(8, 11, 16, 0.08);
}

.facts-band img {
  box-shadow: var(--shadow-soft);
}

.about-legend img,
.split-feature > img,
.comparison-figure img,
.final-cta > img,
.review-card-photo > img,
.proof-review-strip img {
  transition: transform 360ms ease, filter 360ms ease;
}

.about-legend:hover img,
.split-feature:hover > img,
.comparison-figure:hover img,
.final-cta:hover > img,
.review-card-photo:hover > img,
.proof-review-strip article:hover img {
  transform: scale(1.025);
}

.rating-bars b {
  transform-origin: left;
  animation: bar-grow 900ms ease both;
}

body.is-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.is-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes promo-pan {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes promo-shine {
  0%,
  58% {
    transform: translateX(-120%);
  }
  82%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes promo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes panel-shine {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes bar-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  .product-section {
    gap: 38px;
  }

  .hero-product {
    transform: translateX(52%) translateY(var(--hero-shift, 0px)) rotate(-1.5deg);
  }

  .section {
    padding-block: 72px;
  }
}

@media (max-width: 620px) {
  .site-header {
    background: rgba(255, 253, 249, 0.94);
  }

  .hero {
    min-height: auto;
  }

  .hero h1,
  .section h2 {
    line-height: 1.06;
  }

  .section {
    padding-block: 62px;
  }

  .product-section {
    gap: 28px;
  }

  .gallery-main,
  .checkout-offer,
  .benefit-card,
  .review-card,
  .review-summary,
  .about-pillars article {
    box-shadow: 0 12px 34px rgba(8, 11, 16, 0.1);
  }
}

@media (max-width: 760px) {
  .promo-line {
    gap: 14px;
    padding: 8px 14px;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 58px;
    padding-block: 8px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: 0;
    overflow: hidden;
    background:
      radial-gradient(circle at 90% 13%, rgba(244, 199, 61, 0.32) 0 58px, transparent 60px),
      radial-gradient(circle at 86% 31%, rgba(227, 55, 36, 0.32) 0 96px, transparent 98px),
      linear-gradient(145deg, #080b10 0%, #0e2a44 55%, #e63724 132%);
  }

  .hero::before {
    background:
      linear-gradient(120deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 24px),
      linear-gradient(180deg, rgba(8, 11, 16, 0.12), rgba(8, 11, 16, 0.42));
    opacity: 0.42;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(8, 11, 16, 0.74) 0%, rgba(8, 11, 16, 0.28) 52%, rgba(8, 11, 16, 0) 100%),
      linear-gradient(180deg, rgba(8, 11, 16, 0) 72%, rgba(8, 11, 16, 0.5) 100%);
    opacity: 1;
  }

  .hero-bg {
    display: none;
  }

  .hero-content {
    padding: 28px 24px 38px;
  }

  .hero .eyebrow {
    max-width: 210px;
    margin-bottom: 12px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: 30px;
  }

  .hero h1 span {
    margin-top: 8px;
    max-width: 15ch;
    font-size: 16px;
  }

  .hero-copy {
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.48;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    max-width: 100%;
    margin-top: 22px;
    overflow: hidden;
  }

  .hero-stats div:nth-child(n + 4),
  .hero-stats::-webkit-scrollbar {
    display: none;
  }

  .hero-stats div {
    min-width: 0;
    padding: 9px 6px;
  }

  .hero-stats dt {
    font-size: 18px;
  }

  .hero-stats dd {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-product {
    top: 58px;
    right: 86px;
    bottom: auto;
    z-index: 1;
    width: 178px;
    transform: rotate(4deg);
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.42));
  }

  .proof-strip {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    overflow-x: auto;
    border-block-width: 1px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .proof-strip::-webkit-scrollbar {
    display: none;
  }

  .proof-strip span,
  .proof-strip span:last-child {
    flex: 0 0 auto;
    min-height: 56px;
    min-width: 164px;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    scroll-snap-align: start;
  }

  .proof-strip img {
    width: 22px;
    height: 22px;
  }

  .section {
    padding-block: 42px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 15px;
  }

  .product-section {
    gap: 22px;
  }

  .gallery-main {
    min-height: 255px;
    padding: 12px;
  }

  .gallery-main.product-carousel {
    min-height: 278px;
    padding: 10px 10px 44px;
  }

  .carousel-viewport,
  .carousel-slide {
    min-height: 224px;
  }

  .carousel-slide img {
    max-height: 218px;
  }

  .carousel-arrow {
    display: none;
  }

  .carousel-dots {
    bottom: 13px;
    gap: 7px;
  }

  .carousel-dot {
    width: 7px;
    height: 7px;
  }

  .carousel-dot.is-active {
    width: 23px;
  }

  .gallery-main img {
    max-height: 242px;
  }

  .gallery-main .carousel-slide img {
    max-height: 218px;
  }

  .gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .thumb {
    flex: 0 0 56px;
  }

  .gallery-thumbs .thumb:nth-child(n + 6) {
    display: block;
  }

  .media-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
  }

  .media-proof-grid div {
    min-height: 76px;
    padding: 12px;
  }

  .media-proof-grid strong {
    font-size: 24px;
  }

  .media-proof-grid span {
    margin-top: 5px;
    font-size: 10px;
  }

  .product-copy > p:not(.eyebrow) {
    display: none;
  }

  .product-body {
    gap: 8px;
    margin-top: 14px;
  }

  .product-body p {
    font-size: 14px;
    line-height: 1.42;
  }

  .product-copy h2,
  .split-feature h2,
  .facts-copy h2,
  .about-copy h2,
  .customer-proof h2,
  .final-cta h2 {
    font-size: 27px;
  }

  .check-list {
    gap: 8px;
    margin: 18px 0;
  }

  .check-list li {
    padding-left: 28px;
    font-size: 14px;
  }

  .check-list li::before {
    width: 19px;
    height: 19px;
    font-size: 11px;
  }

  .buy-panel {
    margin-top: 18px;
    padding: 12px;
  }

  .checkout-offer {
    gap: 12px;
  }

  .deal-timer {
    padding: 10px 12px;
  }

  .deal-timer strong {
    font-size: 20px;
  }

  .purchase-option {
    min-height: 88px;
    gap: 10px;
    padding: 16px 12px;
  }

  .purchase-option-bogo {
    padding-top: 70px;
  }

  .deal-ribbon {
    gap: 6px;
    padding: 9px 12px;
    font-size: 12px;
    line-height: 1.1;
  }

  .option-countdown {
    gap: 5px;
    padding: 3px 7px;
  }

  .option-countdown strong {
    font-size: 12px;
  }

  .option-radio {
    width: 23px;
    height: 23px;
  }

  .purchase-option.is-selected .option-radio {
    box-shadow: inset 0 0 0 4px var(--paper);
  }

  .option-copy strong,
  .option-price strong {
    font-size: 20px;
  }

  .option-copy small,
  .option-price em {
    font-size: 12px;
  }

  .buy-now-button {
    min-height: 52px;
    padding: 6px 12px 5px;
  }

  .buy-now-label {
    font-size: 20px;
  }

  .buy-now-guarantee {
    gap: 6px;
    font-size: 11px;
    letter-spacing: 1px;
  }

  .buy-now-guarantee svg {
    width: 14px;
    height: 14px;
  }

  .payment-trust {
    gap: 8px;
    padding: 10px;
  }

  .payment-trust p {
    display: grid;
    gap: 4px;
    font-size: 11px;
  }

  .payment-trust strong {
    font-size: 12px;
  }

  .stock-progress {
    gap: 6px;
    padding: 9px;
  }

  .stock-progress-meta,
  .stock-progress small {
    font-size: 11px;
  }

  .stock-progress-meta strong {
    font-size: 16px;
  }

  .stock-progress-track {
    height: 9px;
  }

  .payment-badges {
    gap: 6px;
  }

  .pay-badge {
    min-height: 28px;
    padding: 0 9px;
    font-size: 11px;
  }

  .checkout-assurance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .checkout-assurance div {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--smoke);
  }

  .assurance-icon {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .checkout-assurance strong {
    font-size: 11px;
    line-height: 1.18;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .benefit-card {
    padding: 16px;
  }

  .benefit-card h3,
  .review-card h3 {
    font-size: 18px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat-card {
    min-height: auto;
    padding: 16px;
  }

  .stat-card span {
    margin-bottom: 12px;
    font-size: 26px;
  }

  .stat-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .stat-card p {
    display: block;
    font-size: 14px;
    line-height: 1.45;
  }

  .stat-card p strong {
    margin-top: 8px;
    font-size: 12px;
  }

  .split-feature,
  .facts-band,
  .about-section,
  .customer-proof,
  .reviews-section,
  .final-cta {
    gap: 22px;
  }

  .split-feature > img,
  .final-cta > img {
    display: none;
  }

  .feature-list {
    margin-top: 18px;
  }

  .feature-list div {
    padding: 12px;
  }

  .comparison-figure {
    gap: 8px;
  }

  .comparison-figure img {
    max-height: 280px;
    object-fit: contain;
  }

  .comparison-figure figcaption {
    font-size: 11px;
  }

  .facts-band img {
    width: min(100%, 310px);
    max-height: 310px;
    object-fit: contain;
  }

  .facts-body {
    gap: 10px;
    margin-top: 14px;
  }

  .facts-body p {
    font-size: 14px;
    line-height: 1.48;
  }

  .facts-detail-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .facts-detail-list li {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 11px 12px;
  }

  .facts-detail-list strong {
    font-size: 15px;
    text-align: right;
  }

  .facts-figure figcaption {
    font-size: 11px;
  }

  .about-legend,
  .proof-review-strip,
  .reviews-grid .review-card:nth-child(n + 4) {
    display: none;
  }

  .about-body {
    gap: 12px;
    margin-top: 14px;
  }

  .about-body p {
    font-size: 14px;
    line-height: 1.48;
  }

  .about-standards {
    gap: 8px;
  }

  .about-standards li {
    padding: 11px 12px 11px 34px;
    font-size: 13px;
    line-height: 1.32;
  }

  .about-standards li::before {
    left: 12px;
    top: 13px;
    width: 12px;
    height: 12px;
    box-shadow: inset 0 0 0 3px var(--paper);
  }

  .trust-badges,
  .proof-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .trust-badges div {
    min-height: 62px;
    padding: 10px;
    gap: 8px;
  }

  .trust-badges img {
    width: 32px;
    height: 32px;
  }

  .trust-badges span {
    font-size: 11px;
  }

  .about-pillars {
    gap: 8px;
  }

  .about-pillars article {
    min-height: auto;
    padding: 16px;
  }

  .about-pillars h3 {
    margin: 16px 0 8px;
    font-size: 17px;
  }

  .about-pillars p {
    font-size: 13px;
    line-height: 1.4;
  }

  .proof-metric {
    padding: 16px;
  }

  .proof-metric img {
    height: 34px;
    margin-bottom: 12px;
  }

  .proof-metric strong {
    font-size: 32px;
  }

  .proof-metric p {
    font-size: 13px;
  }

  .review-summary {
    padding: 16px;
  }

  .review-summary strong {
    font-size: 42px;
  }

  .review-card {
    padding: 16px;
  }

  .review-card-photo {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
  }

  .review-card-photo > img {
    min-height: 126px;
    height: 126px;
  }

  .faq-list summary {
    padding: 15px 16px;
  }

  .faq-list p {
    padding: 0 16px 16px;
  }

  .sticky-buy {
    bottom: 12px;
    padding: 10px 12px;
  }

  .site-footer {
    padding-bottom: 82px;
  }
}

/* Homepage text-fit overrides. Keep these scoped so checkout/reviews keep their own purchase-card UI. */
body.mock-v1-exact .section,
body.mock-v1-exact .band,
body.mock-v1-exact .band-light,
body.mock-v1-exact .band-dark {
  padding-block: clamp(44px, 5.8vw, 68px);
}

body.mock-v1-exact .section-heading {
  margin-bottom: clamp(24px, 3.6vw, 36px);
}

body.mock-v1-exact .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.55;
}

body.mock-v1-exact .hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.68fr);
  gap: clamp(28px, 5vw, 72px);
  width: min(1220px, calc(100vw - 48px));
  min-height: 0;
  padding-block: clamp(32px, 4.8vw, 48px) clamp(24px, 3.8vw, 32px);
}

body.mock-v1-exact .hero-grid > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

body.mock-v1-exact .hero-copy {
  line-height: 1.55;
}

body.mock-v1-exact .hero-product {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  align-self: center;
  display: block;
  justify-self: end;
  width: clamp(260px, 24vw, 392px);
  max-width: 100%;
  max-height: clamp(300px, 34vw, 420px);
  margin: 0 0 0 auto;
  object-fit: contain;
  transform: none !important;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

body.mock-v1-exact .hero-product-mobile {
  display: none;
}

body.mock-v1-exact .hero-bg,
body.mock-v1-exact.is-ready .hero-bg {
  transform: none;
}

body.mock-v1-exact .trust-strip {
  gap: clamp(18px, 4vw, 36px);
  padding-block: 18px;
}

body.mock-v1-exact .product-grid {
  gap: clamp(28px, 4vw, 44px);
}

body.mock-v1-exact .gallery-thumbs {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

body.mock-v1-exact .gallery-thumbs::-webkit-scrollbar {
  display: none;
}

body.mock-v1-exact .thumb {
  flex: 0 0 64px;
  scroll-snap-align: start;
}

body.mock-v1-exact .product-copy > p {
  margin-bottom: 16px;
  line-height: 1.58;
}

body.mock-v1-exact .check-list {
  gap: 8px;
  margin-bottom: 22px;
}

body.mock-v1-exact .buy-panel {
  padding: clamp(16px, 2.2vw, 22px);
}

body.mock-v1-exact .launch-banner {
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
}

body.mock-v1-exact .purchase-options {
  gap: 10px;
  margin-bottom: 16px;
}

body.mock-v1-exact .purchase-option {
  grid-template-columns: 24px minmax(0, 1fr) auto;
  min-height: 82px;
  padding: 14px 16px;
  column-gap: 14px;
}

body.mock-v1-exact .purchase-option input[type="radio"] {
  position: static;
  width: 20px;
  height: 20px;
  margin: 0;
  opacity: 1;
  pointer-events: auto;
}

body.mock-v1-exact .option-copy {
  min-width: 0;
}

body.mock-v1-exact .option-copy strong,
body.mock-v1-exact .option-price strong {
  line-height: 1.08;
}

body.mock-v1-exact .option-copy small {
  margin-top: 4px;
  line-height: 1.35;
}

body.mock-v1-exact .option-price {
  min-width: max-content;
}

body.mock-v1-exact .button {
  min-width: 0;
  white-space: normal;
  line-height: 1.15;
}

body.mock-v1-exact .proof-pill {
  flex-wrap: wrap;
}

body.mock-v1-exact .proof-pill span:first-child {
  flex: 0 0 auto;
  white-space: nowrap;
}

body.mock-v1-exact .proof-pill span:last-child {
  min-width: min(100%, 18rem);
  flex: 1 1 18rem;
}

body.mock-v1-exact .launch-banner strong {
  line-height: 1.1;
}

body.mock-v1-exact .comparison-grid,
body.mock-v1-exact .proof-metrics,
body.mock-v1-exact .reviews-grid,
body.mock-v1-exact .benefit-grid,
body.mock-v1-exact .stat-grid,
body.mock-v1-exact .trust-badges {
  align-items: stretch;
}

body.mock-v1-exact .reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

body.mock-v1-exact .benefit-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 18px;
}

body.mock-v1-exact .stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 18px;
}

body.mock-v1-exact .comparison-card,
body.mock-v1-exact .proof-metric,
body.mock-v1-exact .review-card,
body.mock-v1-exact .benefit-card,
body.mock-v1-exact .stat-card,
body.mock-v1-exact .trust-badges div {
  overflow-wrap: anywhere;
}

body.mock-v1-exact .comparison-card,
body.mock-v1-exact .proof-metric,
body.mock-v1-exact .review-card,
body.mock-v1-exact .benefit-card {
  padding: clamp(18px, 2.2vw, 24px);
}

body.mock-v1-exact .comparison-card,
body.mock-v1-exact .proof-metric,
body.mock-v1-exact .review-card,
body.mock-v1-exact .benefit-card,
body.mock-v1-exact .stat-card,
body.mock-v1-exact .trust-badges div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.mock-v1-exact .review-card .review-footer {
  margin-top: auto;
}

body.mock-v1-exact .proof-metric,
body.mock-v1-exact .stat-card,
body.mock-v1-exact .trust-badges div {
  min-height: 0;
}

body.mock-v1-exact .stat-card {
  padding: 22px;
}

body.mock-v1-exact .facts-grid,
body.mock-v1-exact .about-grid,
body.mock-v1-exact .final-cta {
  align-items: start;
  gap: clamp(24px, 4vw, 40px);
}

body.mock-v1-exact .facts-grid img,
body.mock-v1-exact .final-cta > img,
body.mock-v1-exact .legend-card img {
  max-height: 460px;
  width: 100%;
  object-fit: contain;
}

body.mock-v1-exact .facts-bullets {
  gap: 8px;
}

body.mock-v1-exact .facts-bullets li {
  gap: 16px;
  align-items: baseline;
}

body.mock-v1-exact .facts-bullets li span:first-child {
  min-width: 0;
}

body.mock-v1-exact .facts-bullets li span:last-child {
  text-align: right;
}

body.mock-v1-exact .trust-badges {
  margin-top: 28px !important;
  gap: 12px;
}

body.mock-v1-exact .final-cta p {
  margin-bottom: 14px;
}

body.mock-v1-exact .guarantee-block {
  flex-wrap: wrap;
}

body.mock-v1-exact .sticky-bar-text {
  max-width: min(980px, 100%);
  line-height: 1.35;
}

@media (max-width: 860px) {
  body.mock-v1-exact .hero {
    min-height: 0;
    background:
      radial-gradient(circle at 88% 17%, rgba(244, 199, 61, 0.28) 0 54px, transparent 56px),
      radial-gradient(circle at 92% 34%, rgba(227, 55, 36, 0.26) 0 86px, transparent 88px),
      linear-gradient(145deg, #080b10 0%, #102237 58%, #e63724 128%);
  }

  body.mock-v1-exact .hero-bg {
    display: none;
  }

  body.mock-v1-exact .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    padding: 30px 16px 24px;
  }

  body.mock-v1-exact .hero-grid > div:first-child {
    max-width: none;
  }

  body.mock-v1-exact .hero-product {
    display: none;
  }

  body.mock-v1-exact .hero-product-mobile {
    position: absolute;
    top: clamp(34px, 6vw, 44px);
    right: clamp(10px, 4vw, 18px);
    z-index: 1;
    display: block;
    width: clamp(112px, 34vw, 148px);
    max-height: none;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42));
    transform: rotate(4deg);
    pointer-events: none;
  }

  body.mock-v1-exact .hero .eyebrow,
  body.mock-v1-exact .hero h1,
  body.mock-v1-exact .hero-copy {
    max-width: calc(100% - clamp(118px, 36vw, 156px));
  }

  body.mock-v1-exact .hero h1 {
    font-size: clamp(27px, 8.5vw, 34px);
  }

  body.mock-v1-exact .hero-copy {
    font-size: 14px;
  }

  body.mock-v1-exact .hero-actions {
    max-width: none;
    margin-top: 18px;
  }

  body.mock-v1-exact .hero-actions .button,
  body.mock-v1-exact .hero-urgency {
    max-width: none;
  }

  body.mock-v1-exact .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.mock-v1-exact .section,
  body.mock-v1-exact .band,
  body.mock-v1-exact .band-light,
  body.mock-v1-exact .band-dark {
    padding: 40px 16px;
  }

  body.mock-v1-exact .section-heading {
    margin-bottom: 24px;
  }

  body.mock-v1-exact .trust-strip {
    gap: 10px;
  }

  body.mock-v1-exact .trust-strip div {
    flex: 1 1 140px;
    justify-content: center;
    min-width: 0;
    text-align: center;
  }

  body.mock-v1-exact .gallery-thumbs {
    gap: 8px;
    padding-bottom: 2px;
  }

  body.mock-v1-exact .thumb {
    flex-basis: 56px;
  }

  body.mock-v1-exact .purchase-option {
    grid-template-columns: 20px minmax(0, 1fr);
    min-height: 120px;
    gap: 8px 10px;
    padding: 12px;
  }

  body.mock-v1-exact .option-price {
    grid-column: 2;
    display: flex;
    gap: 8px;
    align-items: baseline;
    justify-self: start;
    min-width: 0;
    padding-left: 0;
    text-align: left;
  }

  body.mock-v1-exact .launch-banner {
    text-align: center;
  }

  body.mock-v1-exact .launch-banner strong {
    font-size: clamp(17px, 5vw, 20px);
    white-space: nowrap;
  }

  body.mock-v1-exact .checkout-trust {
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
  }

  body.mock-v1-exact .payment-methods {
    gap: 8px !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  body.mock-v1-exact .payment-methods span {
    line-height: 1.35;
  }

  body.mock-v1-exact .proof-metrics,
  body.mock-v1-exact .comparison-grid {
    gap: 14px;
  }

  body.mock-v1-exact .comparison-card {
    min-height: 380px;
  }

  body.mock-v1-exact .proof-metric {
    min-height: 225px;
  }

  body.mock-v1-exact .stat-card {
    min-height: 166px;
  }

  body.mock-v1-exact .facts-bullets li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body.mock-v1-exact .facts-bullets li span:last-child {
    min-width: max-content;
  }

  body.mock-v1-exact .sticky-bar {
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 400px) {
  body.mock-v1-exact .hero-grid {
    padding: 28px 14px 22px;
  }

  body.mock-v1-exact .hero .eyebrow,
  body.mock-v1-exact .hero h1,
  body.mock-v1-exact .hero-copy {
    max-width: calc(100% - 118px);
  }

  body.mock-v1-exact .hero-product-mobile {
    top: 58px;
    right: 8px;
    width: 118px;
  }

  body.mock-v1-exact .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.mock-v1-exact .trust-badges {
    grid-template-columns: 1fr;
  }

  body.mock-v1-exact .launch-banner strong {
    white-space: normal;
  }

  body.mock-v1-exact .facts-bullets li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  body.mock-v1-exact .facts-bullets li span:last-child {
    min-width: 0;
    text-align: left;
  }
}

.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(227, 61, 39, 0.09), transparent 32%),
    linear-gradient(180deg, #fffdfa 0%, #f4f6f8 100%);
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
}

.checkout-brand small {
  color: var(--green);
}

.checkout-header-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-header-trust span {
  padding: 7px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 24px 42px;
}

.checkout-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 221, 227, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.12);
}

.checkout-form-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.checkout-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.checkout-progress span {
  padding: 9px 8px;
  color: var(--muted);
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.checkout-progress .is-active {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.checkout-hero-copy h1 {
  max-width: 680px;
  margin: 8px 0 10px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.9;
  text-transform: uppercase;
}

.checkout-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.checkout-urgency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--paper);
  background: linear-gradient(90deg, var(--red), #111111);
  border-radius: var(--radius);
}

.checkout-urgency span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-urgency strong {
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.checkout-inline-summary {
  display: grid;
  grid-template-columns: 1.1fr auto auto auto;
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-inline-summary strong {
  color: var(--ink);
  font-size: 18px;
}

.checkout-inline-summary [data-inline-savings] {
  color: var(--green);
}

.checkout-alert {
  padding: 14px 16px;
  color: #7a2400;
  background: #fff3df;
  border: 1px solid #f4c37d;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.checkout-form fieldset {
  display: grid;
  gap: 14px;
  padding: 18px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 246, 248, 0.55);
}

.checkout-form legend {
  padding: 0 8px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-form input,
.checkout-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  outline: 0;
}

.checkout-form input:focus,
.checkout-form select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 61, 39, 0.14);
}

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

.payment-fieldset {
  background: var(--paper);
}

.checkout-payment-head {
  display: grid;
  gap: 12px;
}

.payment-method-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.payment-logo-visa {
  min-width: 66px;
  color: #173a87;
  background: #ffffff;
  font-style: italic;
}

.payment-logo-amex {
  min-width: 70px;
  color: #ffffff;
  background: #2574bb;
}

.payment-logo-mastercard {
  position: relative;
  min-width: 116px;
  justify-content: flex-end;
  overflow: hidden;
  color: #111111;
  background: #ffffff;
}

.payment-logo-mastercard::before,
.payment-logo-mastercard::after {
  position: absolute;
  left: 11px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  content: "";
}

.payment-logo-mastercard::before {
  background: #eb001b;
}

.payment-logo-mastercard::after {
  left: 25px;
  background: rgba(247, 158, 27, 0.92);
}

.payment-logo-ssl {
  min-width: 92px;
  color: #0a5d4f;
  background: rgba(16, 132, 116, 0.1);
  border-color: rgba(16, 132, 116, 0.28);
}

.checkout-wallet-copy {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

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

.wallet-button {
  min-height: 44px;
}

.wallet-button:empty {
  display: none;
}

.swell-payment-box {
  position: relative;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.swell-payment-box.is-ready {
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.04);
}

.swell-card-element {
  min-height: 24px;
  padding: 8px 2px;
}

.payment-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-divider::before,
.payment-divider::after {
  height: 1px;
  background: var(--line);
  content: "";
}

.checkout-loading {
  display: grid;
  place-items: center;
  min-height: 96px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.checkout-loading[hidden] {
  display: none;
}

.checkout-security-copy {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.checkout-message {
  padding: 12px 14px;
  color: var(--muted);
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.checkout-message:empty {
  display: none;
}

.checkout-message[data-type="success"] {
  color: #0a5d4f;
  background: rgba(16, 132, 116, 0.12);
  border-color: rgba(16, 132, 116, 0.28);
}

.checkout-message[data-type="error"] {
  color: #8f1b0d;
  background: rgba(227, 61, 39, 0.1);
  border-color: rgba(227, 61, 39, 0.28);
}

.checkout-submit {
  min-height: 58px;
  font-size: 16px;
}

.checkout-success-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  color: #0a5d4f;
  background: rgba(16, 132, 116, 0.12);
  border: 1px solid rgba(16, 132, 116, 0.28);
  border-radius: var(--radius);
  font-weight: 800;
}

.checkout-success-card strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-summary {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 18px;
  padding: 18px;
}

.checkout-summary-product {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.checkout-summary-product img {
  width: 104px;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.checkout-summary-product h2 {
  margin: 5px 0;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.checkout-summary-product p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.checkout-price-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.checkout-price-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
}

.checkout-price-card strong {
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.checkout-saving-row strong {
  color: var(--green);
}

.checkout-trust-stack {
  display: grid;
  gap: 10px;
}

.checkout-trust-stack div {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.checkout-trust-stack span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--green);
  border: 1px solid rgba(16, 132, 116, 0.35);
  border-radius: 50%;
  font-weight: 900;
}

.checkout-trust-stack strong {
  font-size: 13px;
  line-height: 1.25;
  text-transform: uppercase;
}

.checkout-trust-stack small {
  color: var(--muted);
  font-weight: 800;
}

.checkout-mini-review {
  padding: 15px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.checkout-mini-review p {
  margin: 8px 0;
  font-weight: 800;
}

.checkout-mini-review strong {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.checkout-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-footer a {
  color: var(--red);
}

@media (max-width: 900px) {
  .checkout-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .checkout-header-trust {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
    padding: 12px 14px 26px;
  }

  .checkout-summary {
    position: static;
  }

  .checkout-form-panel {
    padding: 18px;
  }

  .checkout-hero-copy h1 {
    font-size: 38px;
  }
}

@media (max-width: 560px) {
  .checkout-header {
    display: grid;
    gap: 12px;
  }

  .checkout-header-trust {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .checkout-header-trust span {
    flex: 1;
    padding-inline: 8px;
    font-size: 10px;
    text-align: center;
  }

  .checkout-progress {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    font-size: 10px;
  }

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

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

  .payment-method-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-logo {
    min-width: 0;
    width: 100%;
  }

  .checkout-urgency {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-inline-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 11px;
  }

  .checkout-inline-summary strong {
    font-size: 16px;
  }

  .checkout-summary-product {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .checkout-summary-product img {
    width: 82px;
  }

  .checkout-summary-product h2 {
    font-size: 22px;
  }

  .checkout-price-card div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .checkout-price-card strong {
    text-align: left;
  }

  .checkout-footer {
    display: grid;
    padding-inline: 14px;
  }
}

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

  body.is-ready .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .promo-track {
    width: 100%;
    animation: none !important;
  }

  .promo-line {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    white-space: normal;
  }

  .promo-line[aria-hidden="true"] {
    display: none;
  }
}

/* Mock v1 homepage refresh. Scoped so checkout/reviews utility pages keep their existing UI. */
body.home-mock {
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, "Noto Sans HK", "PingFang HK", "Microsoft JhengHei", -apple-system, sans-serif;
}

body.home-mock .promo-bar {
  background: linear-gradient(90deg, #101010 0%, var(--navy) 48%, var(--green) 100%);
  font-size: 13px;
  font-weight: 800;
}

body.home-mock .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

body.home-mock .nav {
  position: relative;
  max-width: 1220px;
  padding: 13px 24px;
}

body.home-mock .brand small {
  color: var(--green);
}

body.home-mock .nav-links {
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

body.home-mock .nav-links a:hover {
  color: var(--red);
}

body.home-mock .nav-actions {
  gap: 12px;
}

body.home-mock .mobile-menu-toggle {
  display: none;
  padding: 4px 8px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

body.home-mock .market-switcher {
  display: grid;
  gap: 3px;
}

body.home-mock .market-switcher span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

body.home-mock .market-switcher select {
  min-height: 40px;
  max-width: 118px;
  padding: 0 26px 0 10px;
  color: var(--ink);
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

body.home-mock .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  color: var(--paper);
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

body.home-mock .button:hover,
body.home-mock .button:focus-visible {
  background: #c92f1b;
  border-color: #c92f1b;
  transform: translateY(-2px);
}

body.home-mock .button-secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

body.home-mock .button-secondary:hover,
body.home-mock .button-secondary:focus-visible {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

body.home-mock .button-large {
  min-height: 60px;
  padding: 0 36px;
  font-size: 17px;
}

body.home-mock .eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.home-mock .section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 80px 24px;
}

body.home-mock .band,
body.home-mock .band-light,
body.home-mock .band-dark {
  max-width: none;
  padding: 80px 24px;
}

body.home-mock .band > *,
body.home-mock .band-light > *,
body.home-mock .band-dark > * {
  max-width: 1220px;
  margin-inline: auto;
}

body.home-mock .band {
  background: var(--smoke);
}

body.home-mock .band-light {
  background: var(--paper);
  text-align: center;
}

body.home-mock .band-dark {
  color: var(--paper);
  background: var(--ink);
}

body.home-mock .band-dark .eyebrow {
  color: var(--gold);
}

body.home-mock .section-heading {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

body.home-mock .section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
}

body.home-mock .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

body.home-mock .hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

body.home-mock .hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 44%, rgba(0, 0, 0, 0.18) 100%);
}

body.home-mock .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home-mock .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 40px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}

body.home-mock .hero h1 {
  max-width: 690px;
  margin: 0 0 12px;
  color: var(--paper);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
}

body.home-mock .hero-copy {
  max-width: 560px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
}

body.home-mock .hero-actions {
  display: grid;
  gap: 12px;
  max-width: 380px;
  margin: 0 0 20px;
}

body.home-mock .hero-actions .button {
  width: 100%;
}

body.home-mock .hero-eyebrow {
  color: var(--gold);
}

body.home-mock .hero-urgency {
  max-width: 400px;
  margin: 0 0 20px;
}

body.home-mock .hero-progress {
  height: 6px;
  margin-bottom: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

body.home-mock .hero-progress-fill {
  width: 27%;
  height: 100%;
  background: var(--red);
  border-radius: 999px;
}

body.home-mock .hero-stock-text {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

body.home-mock .hero-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 680px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.home-mock .hero-stats div {
  min-width: 0;
}

body.home-mock .hero-stats dt {
  color: var(--paper);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

body.home-mock .hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

body.home-mock .hero-product {
  width: min(100%, 430px);
  max-height: 420px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 52px rgba(0, 0, 0, 0.36));
}

body.home-mock .trust-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 24px;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

body.home-mock .trust-strip div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

body.home-mock .trust-strip img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

body.home-mock .product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

body.home-mock .product-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.15;
}

body.home-mock .product-body p,
body.home-mock .product-copy > p {
  color: var(--muted);
  font-size: 16px;
}

body.home-mock .product-body {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

body.home-mock .check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

body.home-mock .check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

body.home-mock .check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

body.home-mock .buy-panel {
  padding: 24px;
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

body.home-mock .proof-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(16, 132, 116, 0.06);
  border-radius: var(--radius);
}

body.home-mock .proof-pill span {
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
}

body.home-mock .proof-pill strong {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

body.home-mock .launch-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

body.home-mock .launch-banner span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

body.home-mock .launch-banner strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
}

body.home-mock .stock-note {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

body.home-mock .purchase-options {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

body.home-mock .purchase-option {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

body.home-mock .purchase-option:hover,
body.home-mock .purchase-option.is-selected {
  background: rgba(227, 61, 39, 0.04);
  border-color: var(--red);
}

body.home-mock .purchase-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--red);
}

body.home-mock .purchase-option-bogo {
  padding-top: 44px;
}

body.home-mock .best-deal-chip {
  position: absolute;
  top: 10px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  color: var(--paper);
  background: var(--red);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

body.home-mock .option-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

body.home-mock .option-copy small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

body.home-mock .option-price {
  text-align: right;
}

body.home-mock .option-price strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

body.home-mock .option-price em {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  text-decoration: line-through;
}

body.home-mock .buy-now-button {
  width: 100%;
  flex-direction: column;
  gap: 0;
  min-height: 62px;
  background: #06156d;
  border-color: #0075ff;
  box-shadow: 0 8px 20px rgba(6, 21, 109, 0.24);
}

body.home-mock .buy-now-label {
  font-size: 19px;
  line-height: 1.1;
}

body.home-mock .buy-now-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

body.home-mock .buy-now-guarantee svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

body.home-mock .buy-urgency {
  max-width: none;
  margin: 14px 0 0;
}

body.home-mock .buy-panel .hero-progress {
  background: rgba(17, 17, 17, 0.1);
}

body.home-mock .checkout-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

body.home-mock .checkout-trust span {
  font-weight: 800;
}

body.home-mock .checkout-trust span::before {
  color: var(--green);
  content: "✓ ";
  font-weight: 900;
}

body.home-mock .payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

body.home-mock .payment-methods strong,
body.home-mock .payment-methods span {
  font-weight: 900;
}

body.home-mock .comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

body.home-mock .comparison-card {
  padding: 32px;
  border-radius: var(--radius);
}

body.home-mock .comparison-card.old {
  background: #fff5f5;
  border: 1px solid #fdd;
}

body.home-mock .comparison-card.new {
  background: #f0faf7;
  border: 1px solid #c8ede2;
}

body.home-mock .comparison-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
}

body.home-mock .comparison-card .icon {
  display: inline-flex;
  padding: 3px 8px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
}

body.home-mock .comparison-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.home-mock .comparison-card li {
  position: relative;
  padding-left: 22px;
}

body.home-mock .comparison-card.old li::before {
  position: absolute;
  left: 0;
  color: #c0392b;
  content: "×";
  font-weight: 900;
}

body.home-mock .comparison-card.new li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

body.home-mock .proof-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

body.home-mock .proof-metric {
  padding: 32px;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

body.home-mock .proof-metric img {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  object-fit: contain;
}

body.home-mock .proof-metric:first-child img {
  width: 120px;
}

body.home-mock .proof-metric span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

body.home-mock .proof-metric strong {
  display: block;
  margin: 8px 0;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

body.home-mock .proof-metric p {
  margin: 0;
  color: var(--muted);
}

body.home-mock .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

body.home-mock .review-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

body.home-mock .stars {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}

body.home-mock .review-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 900;
}

body.home-mock .review-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
}

body.home-mock .review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

body.home-mock .review-footer strong {
  font-weight: 900;
}

body.home-mock .review-footer .badge {
  display: inline-flex;
  padding: 2px 8px;
  color: var(--paper);
  background: var(--green);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

body.home-mock .review-source {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}

body.home-mock .reviews-actions {
  margin-top: 32px;
  text-align: center;
}

body.home-mock .reviews-actions p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

body.home-mock .benefit-grid,
body.home-mock .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

body.home-mock .benefit-card,
body.home-mock .stat-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

body.home-mock .benefit-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 34px;
  margin-bottom: 12px;
  padding: 4px 10px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

body.home-mock .benefit-card h3,
body.home-mock .stat-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 900;
}

body.home-mock .benefit-card p,
body.home-mock .stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body.home-mock .stat-card {
  border-top: 4px solid var(--ink);
}

body.home-mock .stat-card.stat-red {
  border-top-color: var(--red);
}

body.home-mock .stat-card.stat-blue {
  border-top-color: var(--blue);
}

body.home-mock .stat-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

body.home-mock .facts-grid,
body.home-mock .about-grid,
body.home-mock .final-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

body.home-mock .facts-grid img,
body.home-mock .about-legend img,
body.home-mock .final-cta > img {
  width: 100%;
  border-radius: var(--radius);
}

body.home-mock .facts-figure {
  margin: 0;
}

body.home-mock .facts-figure img {
  border: 1px solid var(--line);
}

body.home-mock .facts-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

body.home-mock .facts-body {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

body.home-mock .facts-body p,
body.home-mock .about-copy p,
body.home-mock .final-cta p {
  color: var(--muted);
}

body.home-mock .facts-bullets {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.home-mock .facts-bullets li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

body.home-mock .facts-bullets strong {
  text-align: right;
}

body.home-mock .offer-callout {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 20px;
  text-align: center;
  background: var(--bone);
  border-radius: var(--radius);
}

body.home-mock .offer-callout strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

body.home-mock .about-grid {
  max-width: 1100px;
  margin-inline: auto;
  align-items: start;
}

body.home-mock .about-legend {
  margin: 0;
  text-align: center;
}

body.home-mock .about-legend strong,
body.home-mock .about-legend span {
  display: block;
}

body.home-mock .about-legend strong {
  margin-top: 12px;
  font-size: 17px;
}

body.home-mock .about-legend span {
  color: var(--muted);
  font-size: 13px;
}

body.home-mock .trust-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 40px auto 0;
}

body.home-mock .trust-badges div {
  padding: 20px 12px;
  text-align: center;
  background: var(--smoke);
  border-radius: var(--radius);
}

body.home-mock .trust-badges img {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
}

body.home-mock .trust-badges span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

body.home-mock .faq-list {
  display: grid;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}

body.home-mock .faq-list details {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

body.home-mock .faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  color: var(--paper);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

body.home-mock .faq-list summary::after {
  color: var(--gold);
  content: "+";
  font-size: 22px;
  line-height: 1;
}

body.home-mock .faq-list details[open] summary::after {
  content: "−";
}

body.home-mock .faq-list details p {
  padding: 0 20px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

body.home-mock .final-cta h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.1;
}

body.home-mock .final-cta p {
  margin-bottom: 16px;
  font-size: 17px;
}

body.home-mock .final-cta .final-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 16px 0 0;
  padding: 14px 18px;
  color: var(--green);
  background: rgba(16, 132, 116, 0.08);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
}

body.home-mock .final-cta .final-guarantee::before {
  content: "✓";
}

body.home-mock .sticky-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  color: var(--paper);
  background: var(--ink);
  border-top: 2px solid var(--red);
  transform: translateY(100%);
  transition: transform 300ms ease;
}

body.home-mock .sticky-bar.is-visible {
  transform: translateY(0);
}

body.home-mock .sticky-bar-text {
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

body.home-mock .sticky-bar-text strong {
  color: var(--gold);
}

body.home-mock .sticky-bar .button {
  min-height: 42px;
  padding: 0 20px;
  white-space: nowrap;
}

body.home-mock .site-footer {
  padding: 48px 24px 32px;
  color: rgba(255, 255, 255, 0.64);
  background: var(--ink);
  font-size: 14px;
}

body.home-mock .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1220px;
  margin: 0 auto;
}

body.home-mock .footer-grid h4 {
  margin: 0 0 12px;
  color: var(--paper);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

body.home-mock .footer-grid p {
  margin: 0;
}

body.home-mock .footer-grid a {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.64);
}

body.home-mock .footer-grid a:hover {
  color: var(--paper);
}

body.home-mock .footer-disclaimer {
  max-width: 1220px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.home-mock .footer-disclaimer p {
  margin: 0 0 8px;
}

@media (max-width: 860px) {
  body.home-mock .section,
  body.home-mock .band,
  body.home-mock .band-light,
  body.home-mock .band-dark {
    padding: 48px 18px;
  }

  body.home-mock .section-heading {
    margin-bottom: 32px;
  }

  body.home-mock .section-heading h2 {
    font-size: clamp(26px, 5vw, 34px);
  }

  body.home-mock .section-heading p:not(.eyebrow) {
    font-size: 15px;
  }

  body.home-mock .nav {
    gap: 8px;
    padding: 10px 12px;
  }

  body.home-mock .brand img {
    width: 32px;
    height: 32px;
  }

  body.home-mock .brand strong {
    font-size: 13px;
  }

  body.home-mock .brand small {
    font-size: 10px;
  }

  body.home-mock .nav-links {
    display: none;
  }

  body.home-mock .nav-links.is-open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 25;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.home-mock .mobile-menu-toggle {
    display: block;
  }

  body.home-mock .nav-actions {
    gap: 8px;
  }

  body.home-mock .market-switcher span {
    display: none;
  }

  body.home-mock .market-switcher select {
    max-width: 92px;
    min-height: 36px;
    font-size: 11px;
  }

  body.home-mock .nav .button {
    min-height: 36px;
    padding: 0 10px;
    font-size: 11px;
  }

  body.home-mock .hero::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62));
  }

  body.home-mock .hero-grid,
  body.home-mock .product-grid,
  body.home-mock .comparison-grid,
  body.home-mock .proof-metrics,
  body.home-mock .facts-grid,
  body.home-mock .about-grid,
  body.home-mock .final-cta {
    grid-template-columns: 1fr;
  }

  body.home-mock .hero-grid {
    padding: 32px 18px 24px;
  }

  body.home-mock .hero-product {
    display: none;
  }

  body.home-mock .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  body.home-mock .trust-strip {
    gap: 16px;
    padding: 16px 12px;
  }

  body.home-mock .trust-strip div {
    gap: 6px;
    font-size: 10px;
  }

  body.home-mock .trust-strip img {
    width: 22px;
    height: 22px;
  }

  body.home-mock .trust-strip div:last-child {
    display: none;
  }

  body.home-mock .product-grid {
    gap: 28px;
  }

  body.home-mock .buy-panel,
  body.home-mock .comparison-card,
  body.home-mock .proof-metric,
  body.home-mock .benefit-card,
  body.home-mock .stat-card,
  body.home-mock .review-card {
    padding: 20px;
  }

  body.home-mock .launch-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  body.home-mock .purchase-option {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    padding: 14px;
  }

  body.home-mock .purchase-option-bogo {
    padding-top: 44px;
  }

  body.home-mock .option-price {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    align-items: baseline;
    padding-left: 28px;
    text-align: left;
  }

  body.home-mock .checkout-trust {
    grid-template-columns: 1fr;
    font-size: 12px;
  }

  body.home-mock .button-large,
  body.home-mock .hero-actions,
  body.home-mock .hero-actions .button,
  body.home-mock .final-cta .button,
  body.home-mock .reviews-actions .button,
  body.home-mock .offer-callout .button {
    width: 100%;
    max-width: none;
  }

  body.home-mock .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  body.home-mock .about-legend img {
    max-width: 260px;
    margin-inline: auto;
  }

  body.home-mock .faq-list summary {
    padding: 16px 18px;
    font-size: 15px;
  }

  body.home-mock .faq-list details p {
    padding: 0 18px 16px;
    font-size: 14px;
  }

  body.home-mock .sticky-bar {
    flex-direction: column;
    gap: 8px;
    padding: 10px 14px;
  }

  body.home-mock .sticky-bar-text {
    font-size: 11px;
  }

  body.home-mock .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 400px) {
  body.home-mock .hero h1 {
    font-size: 26px;
  }

  body.home-mock .hero-copy {
    font-size: 14px;
  }

  body.home-mock .section,
  body.home-mock .band,
  body.home-mock .band-light,
  body.home-mock .band-dark {
    padding: 40px 14px;
  }

  body.home-mock .hero-grid {
    padding: 24px 14px 20px;
  }

  body.home-mock .hero-stats {
    gap: 8px;
  }

  body.home-mock .hero-stats dt {
    font-size: 17px;
  }

  body.home-mock .hero-stats dd {
    font-size: 10px;
  }

  body.home-mock .stat-grid {
    grid-template-columns: 1fr;
  }

  body.home-mock .promo-bar {
    padding: 7px 12px;
    font-size: 11px;
  }
}
