@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-latin.woff2") format("woff2");
  font-display: swap;
}

:root {
  --store-black: #050505;
  --store-ink: #171717;
  --store-muted: #656565;
  --store-line: #deded9;
  --store-soft: #f4f4f1;
  --store-white: #ffffff;
  --store-yellow: #f5bd3d;
  --store-yellow-soft: #fff2ce;
  --store-font: "Onest", sans-serif;
  --store-width: min(1280px, calc(100% - 64px));
}

html {
  background: var(--store-white);
}

.storefront-page {
  margin: 0;
  color: var(--store-ink);
  background: var(--store-white);
  font-family: var(--store-font);
  font-size: 16px;
  line-height: 1.48;
  overflow-x: clip;
}

.storefront-page h1,
.storefront-page h2,
.storefront-page h3,
.checkout-page h1,
.checkout-page h2,
.checkout-page h3,
.success-page h1,
.success-page h2,
.success-page h3,
.legal-page h1,
.legal-page h2,
.legal-page h3 {
  font-family: var(--store-font);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.storefront-page p {
  color: var(--store-muted);
}

.store-header {
  color: var(--store-white);
  background: var(--store-black);
}

.store-header-main {
  width: var(--store-width);
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}

.store-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.store-brand img {
  width: 164px;
  height: auto;
  filter: invert(1) brightness(2);
}

.store-header-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.store-header-link {
  justify-self: end;
  color: var(--store-white);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.store-header nav {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.store-header nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 560;
  text-decoration: none;
}

.store-header nav a:first-child,
.store-header nav a:hover {
  color: var(--store-white);
}

.store-header nav a:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  background: var(--store-yellow);
}

.promo-bar {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 10px 20px;
  color: var(--store-black);
  background: var(--store-yellow);
  font-size: 12px;
  letter-spacing: 0.025em;
  text-align: center;
}

.promo-bar strong {
  font-weight: 850;
}

.funnel-hero {
  width: var(--store-width);
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 74px;
  align-items: center;
  margin: 0 auto;
  padding: 70px 0 78px;
}

.funnel-hero-copy {
  min-width: 0;
}

.funnel-rating {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #676767;
  font-size: 11px;
  font-weight: 650;
}

.funnel-rating .rating-stars {
  font-size: 16px;
}

.funnel-hero h1 {
  max-width: 670px;
  margin: 18px 0 0;
  color: var(--store-black);
  font-size: clamp(53px, 5.9vw, 82px);
  font-weight: 790;
  letter-spacing: -0.062em;
  line-height: 0.94;
}

.funnel-hero h1 em {
  position: relative;
  z-index: 0;
  display: inline-block;
  font-style: normal;
}

.funnel-hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -6px;
  bottom: 2px;
  left: -4px;
  height: 0.22em;
  background: var(--store-yellow);
  transform: rotate(-1.2deg);
}

.funnel-lede {
  max-width: 590px;
  margin: 26px 0 0;
  color: #525252 !important;
  font-size: 17px;
  line-height: 1.58;
}

.funnel-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 30px;
}

.funnel-primary {
  min-width: 205px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 20px;
  color: var(--store-white);
  border-radius: 6px;
  background: var(--store-black);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease;
}

.funnel-primary:hover {
  background: #242424;
  transform: translateY(-1px);
}

.funnel-secondary {
  color: var(--store-black);
  font-size: 13px;
  font-weight: 720;
  text-underline-offset: 5px;
}

.funnel-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 36px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--store-line);
  list-style: none;
}

.funnel-trust li {
  min-width: 0;
  padding-right: 15px;
}

.funnel-trust li + li {
  padding-left: 15px;
  border-left: 1px solid var(--store-line);
}

.funnel-trust strong,
.funnel-trust span {
  display: block;
}

.funnel-trust strong {
  color: var(--store-black);
  font-size: 10px;
  font-weight: 790;
}

.funnel-trust span {
  margin-top: 3px;
  color: #7b7b7b;
  font-size: 8px;
}

.funnel-hero-visual {
  position: relative;
  min-width: 0;
  padding: 0 20px 30px 0;
}

.funnel-jobsite {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--store-soft);
}

.funnel-jobsite::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.07);
}

.funnel-jobsite img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.funnel-product-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(355px, 61%);
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 13px;
  padding: 9px;
  border: 1px solid #d8d8d4;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 17px 45px rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(12px);
}

.funnel-product-float img {
  width: 118px;
  height: 78px;
  object-fit: cover;
  border-radius: 4px;
}

.funnel-product-float strong,
.funnel-product-float span {
  display: block;
}

.funnel-product-float strong {
  color: var(--store-black);
  font-size: 12px;
}

.funnel-product-float span {
  margin-top: 4px;
  color: #727272;
  font-size: 9px;
}

.funnel-tap-chip {
  position: absolute;
  top: 20px;
  left: -25px;
  min-width: 166px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0 9px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(10px);
}

.funnel-tap-chip > span {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--store-black);
  border-radius: 50%;
  background: var(--store-yellow);
  font-weight: 900;
}

.funnel-tap-chip strong {
  color: var(--store-black);
  font-size: 11px;
}

.funnel-tap-chip small {
  color: #777;
  font-size: 7px;
}

.funnel-friction {
  min-height: 176px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 35px max(32px, calc((100% - 1110px) / 2));
  color: var(--store-white);
  background: var(--store-black);
}

.funnel-friction > div {
  min-width: 0;
}

.funnel-friction > div:first-child {
  opacity: 0.62;
}

.funnel-friction p,
.funnel-friction strong,
.funnel-friction span {
  display: block;
  margin: 0;
}

.funnel-friction p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.funnel-friction strong {
  margin-top: 7px;
  color: var(--store-white);
  font-size: clamp(21px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.funnel-friction > div > span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 11px;
}

.funnel-friction .friction-solved strong {
  color: var(--store-yellow);
}

.friction-arrow {
  width: 44px;
  height: 44px;
  display: grid !important;
  place-items: center;
  color: var(--store-black);
  border-radius: 50%;
  background: var(--store-yellow);
  font-weight: 850;
}

.funnel-steps {
  width: var(--store-width);
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 68px;
  align-items: end;
  margin: 0 auto;
  padding: 88px 0 98px;
}

.funnel-steps-heading p {
  margin: 0 0 11px;
  color: #8c650a;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.funnel-steps-heading h2,
.product-section-heading h2 {
  margin: 0;
  color: var(--store-black);
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 760;
}

.funnel-steps ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--store-line);
  border-bottom: 1px solid var(--store-line);
  list-style: none;
}

.funnel-steps li {
  min-width: 0;
  padding: 20px 18px 22px;
}

.funnel-steps li + li {
  border-left: 1px solid var(--store-line);
}

.funnel-steps li > span {
  display: block;
  color: #9d7211;
  font-size: 9px;
  font-weight: 830;
}

.funnel-steps li strong {
  display: block;
  margin-top: 22px;
  color: var(--store-black);
  font-size: 14px;
}

.funnel-steps li p {
  margin: 7px 0 0;
  font-size: 10px;
}

.funnel-steps > a {
  position: absolute;
  right: 0;
  bottom: 57px;
  color: var(--store-black);
  font-size: 11px;
  font-weight: 730;
  text-underline-offset: 4px;
}

.product-section-heading {
  padding: 70px max(32px, calc((100% - 1280px) / 2)) 7px;
  border-top: 1px solid var(--store-line);
  background: var(--store-soft);
}

.product-section-heading p {
  margin: 0 0 10px;
  color: #8c650a;
  font-size: 10px;
  font-weight: 830;
  letter-spacing: 0.1em;
}

.product-section-heading span {
  display: block;
  margin-top: 13px;
  color: #6c6c6c;
  font-size: 12px;
}

.product-detail {
  width: var(--store-width);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
  gap: 46px;
  margin: 0 auto;
  padding: 54px 0 64px;
  background: var(--store-soft);
}

.product-section-heading + .product-detail {
  width: 100%;
  grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
  gap: 46px;
  padding: 48px max(32px, calc((100% - 1280px) / 2)) 78px;
}

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

.product-main-image {
  position: sticky;
  top: 18px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #ecece7;
  border-radius: 8px;
  background: var(--store-soft);
}

.product-main-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-main-image figcaption {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: #737373;
  border-top: 1px solid var(--store-line);
  background: var(--store-white);
  font-size: 11px;
}

.image-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: var(--store-black);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 11px;
}

.product-thumb {
  min-width: 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 10px;
  padding: 6px;
  color: var(--store-ink);
  border: 1px solid var(--store-line);
  border-radius: 6px;
  background: var(--store-white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.product-thumb img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 3px;
}

.product-thumb span {
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-thumb:hover,
.product-thumb.is-active {
  border-color: var(--store-black);
}

.product-thumb.is-active {
  box-shadow: inset 0 0 0 1px var(--store-black);
}

.product-buybox {
  min-width: 0;
  padding: 3px 0 0;
}

.product-vendor {
  margin: 0 0 8px;
  color: #777 !important;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.11em;
}

.product-buybox h1 {
  margin: 0;
  color: var(--store-black);
  font-size: clamp(39px, 4vw, 56px);
  font-weight: 760;
}

.product-rating {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--store-ink);
  font-size: 12px;
  text-underline-offset: 3px;
}

.rating-stars {
  color: #efa900;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.product-rating strong {
  font-size: 14px;
}

.product-rating > span:last-child {
  color: #666;
}

.product-dream {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 22px 0 0;
  padding: 8px 14px;
  color: var(--store-black) !important;
  border-radius: 6px;
  background: var(--store-yellow-soft);
  font-size: 15px;
  font-weight: 730;
  text-align: center;
}

.product-benefits {
  display: grid;
  gap: 12px;
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}

.product-benefits li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 7px;
  align-items: start;
  color: #292929;
  font-size: 14px;
}

.product-benefits li > span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  color: var(--store-white);
  border-radius: 50%;
  background: var(--store-yellow);
  font-size: 10px;
  font-weight: 900;
}

.store-tier-form {
  margin-top: 24px;
}

.store-tier-selector {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  border: 0;
}

.store-tier-selector legend {
  margin-bottom: 5px;
  color: var(--store-black);
  font-size: 13px;
  font-weight: 750;
}

.store-tier-option {
  position: relative;
  min-height: 84px;
  display: grid;
  grid-template-columns: 20px 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid #d8d8d4;
  border-radius: 7px;
  background: var(--store-white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.035);
  cursor: pointer;
}

.store-tier-option:hover {
  border-color: #9b9b96;
}

.store-tier-option:has(input:checked) {
  border-color: #e6a91d;
  background: #fffdf8;
  box-shadow: inset 0 0 0 1px #e6a91d, 0 6px 16px rgba(139, 98, 0, 0.08);
}

.store-tier-option:has(input:focus-visible) {
  outline: 3px solid rgba(245, 189, 61, 0.48);
  outline-offset: 2px;
}

.store-tier-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0.001;
  pointer-events: none;
}

.store-radio {
  grid-column: 1;
  width: 20px;
  height: 20px;
  display: block;
  border: 2px solid #191919;
  border-radius: 50%;
}

.store-tier-option:has(input:checked) .store-radio {
  border: 6px solid var(--store-yellow);
  box-shadow: 0 0 0 1px #d49a16;
}

.store-tier-copy {
  grid-column: 2 / 4;
  min-width: 0;
}

.store-tier-copy strong,
.store-tier-copy small,
.store-tier-copy em,
.store-tier-price del,
.store-tier-price b,
.store-tier-price small {
  display: block;
}

.store-tier-copy strong {
  color: var(--store-black);
  font-size: 17px;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.store-tier-copy small {
  display: inline;
  margin-left: 5px;
  color: #555;
  font-size: 13px;
}

.store-tier-copy em {
  margin-top: 3px;
  color: #777;
  font-size: 10px;
  font-style: normal;
}

.store-tier-price {
  grid-column: 4;
  min-width: 88px;
  text-align: right;
}

.store-tier-price del {
  color: #999;
  font-size: 12px;
}

.store-tier-price b {
  color: var(--store-black);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
}

.store-tier-price small {
  margin-top: 1px;
  color: #26753c;
  font-size: 10px;
  font-weight: 750;
}

.store-tier-featured {
  margin-top: 9px;
}

.store-tier-ribbon {
  position: absolute;
  top: -14px;
  right: 15px;
  padding: 5px 8px;
  color: var(--store-white);
  border-radius: 4px 4px 0 0;
  background: var(--store-black);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.store-add-button {
  width: 100%;
  min-height: 60px;
  margin-top: 15px;
  color: var(--store-white);
  border: 1px solid var(--store-black);
  border-radius: 7px;
  background: var(--store-black);
  font: 800 15px/1 var(--store-font);
  letter-spacing: 0.055em;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease;
}

.store-add-button:hover {
  background: #252525;
  transform: translateY(-1px);
}

.store-add-button:active {
  transform: scale(0.985);
}

.purchase-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 17px;
  border: 1px solid var(--store-line);
  border-radius: 6px;
}

.purchase-assurance > span {
  min-width: 0;
  padding: 11px 9px;
  text-align: center;
}

.purchase-assurance > span + span {
  border-left: 1px solid var(--store-line);
}

.purchase-assurance strong,
.purchase-assurance small {
  display: block;
}

.purchase-assurance strong {
  color: var(--store-black);
  font-size: 10px;
}

.purchase-assurance small {
  margin-top: 2px;
  color: #777;
  font-size: 8px;
}

.product-detail-row {
  border-bottom: 1px solid var(--store-line);
}

.product-detail-row:first-of-type {
  margin-top: 18px;
  border-top: 1px solid var(--store-line);
}

.product-detail-row summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--store-black);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.product-detail-row summary::-webkit-details-marker {
  display: none;
}

.product-detail-row summary span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.product-detail-row[open] summary span {
  transform: rotate(45deg);
}

.product-detail-row p {
  margin: -2px 35px 15px 0;
  font-size: 11px;
}

.fast-proof {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 32px;
  color: var(--store-white);
  background: var(--store-black);
  text-align: center;
}

.fast-proof p,
.fast-proof strong,
.fast-proof span {
  margin: 0;
}

.fast-proof p {
  color: rgba(255, 255, 255, 0.65);
}

.fast-proof strong {
  color: var(--store-yellow);
  font-size: 24px;
}

.fast-proof span {
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.how-store,
.outcome-store {
  width: var(--store-width);
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 76px;
  align-items: center;
  margin: 0 auto;
  padding: 92px 0;
}

.how-store figure,
.outcome-store figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--store-soft);
}

.how-store figure img,
.outcome-store figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.store-kicker {
  margin: 0 0 12px;
  color: #8c650a !important;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.how-store-copy h2,
.included-heading h2,
.outcome-store h2,
.guarantee-store h2,
.faq-store h2,
.final-store-cta h2 {
  margin: 0;
  color: var(--store-black);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 760;
}

.how-store-copy ol {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--store-line);
  list-style: none;
}

.how-store-copy li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--store-line);
}

.how-store-copy li > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--store-black);
  border-radius: 50%;
  background: var(--store-yellow);
  font-size: 11px;
  font-weight: 800;
}

.how-store-copy li strong {
  color: var(--store-black);
  font-size: 15px;
}

.how-store-copy li p {
  margin: 4px 0 0;
  font-size: 12px;
}

.store-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--store-black);
  font-size: 13px;
  font-weight: 750;
  text-underline-offset: 4px;
}

.field-copy {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: 14px;
}

.field-points {
  display: grid;
  gap: 0;
  margin: 27px 0 0;
  padding: 0;
  border-top: 1px solid var(--store-line);
  list-style: none;
}

.field-points li {
  position: relative;
  padding: 14px 0 14px 24px;
  color: #313131;
  border-bottom: 1px solid var(--store-line);
  font-size: 12px;
}

.field-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #926908;
  font-weight: 850;
}

.included-store {
  padding: 84px max(32px, calc((100% - 1280px) / 2));
  background: var(--store-yellow-soft);
}

.included-heading {
  max-width: 680px;
}

.included-heading > p:last-child {
  max-width: 600px;
  margin: 16px 0 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 46px;
  border: 1px solid #e5ca82;
  background: rgba(255, 255, 255, 0.5);
}

.included-grid article {
  min-height: 220px;
  padding: 26px;
}

.included-grid article + article {
  border-left: 1px solid #e5ca82;
}

.included-grid article > span {
  color: #916706;
  font-size: 11px;
  font-weight: 800;
}

.included-grid h3 {
  margin: 40px 0 0;
  color: var(--store-black);
  font-size: 20px;
  font-weight: 730;
}

.included-grid p {
  margin: 10px 0 0;
  font-size: 12px;
}

.review-store {
  width: min(1060px, calc(100% - 64px));
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 55px;
  align-items: start;
  margin: 0 auto;
  padding: 92px 0;
}

.review-score {
  padding-top: 8px;
}

.review-score strong {
  display: block;
  margin-top: 12px;
  color: var(--store-black);
  font-size: 12px;
}

.review-store blockquote {
  margin: 0;
}

.review-store blockquote > p {
  margin: 0;
  color: var(--store-black);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 610;
  line-height: 1.24;
  letter-spacing: -0.027em;
}

.review-store footer {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 27px;
}

.review-store footer img {
  width: 30px;
  height: 30px;
}

.review-store footer span strong,
.review-store footer span small {
  display: block;
}

.review-store footer span strong {
  color: var(--store-black);
  font-size: 12px;
}

.review-store footer span small {
  color: #777;
  font-size: 10px;
}

.outcome-store {
  border-top: 1px solid var(--store-line);
}

.outcome-store > div > p:not(.store-kicker) {
  max-width: 570px;
  margin: 18px 0 0;
}

.outcome-store ul {
  display: grid;
  gap: 12px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.outcome-store li {
  position: relative;
  padding-left: 24px;
  color: #333;
  font-size: 13px;
}

.outcome-store li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9a6f0a;
  font-weight: 850;
}

.outcome-store figure {
  position: relative;
}

.outcome-store figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  max-width: 260px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.78);
  font-size: 8px;
}

.guarantee-store {
  width: var(--store-width);
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  margin: 0 auto 92px;
  padding: 32px;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  background: var(--store-soft);
}

.guarantee-seal {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 2px solid var(--store-black);
  border-radius: 50%;
}

.guarantee-seal strong,
.guarantee-seal span {
  display: block;
  color: var(--store-black);
  line-height: 1;
}

.guarantee-seal strong {
  font-size: 36px;
}

.guarantee-seal span {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.guarantee-store h2 {
  max-width: 820px;
  font-size: clamp(29px, 3.5vw, 45px);
}

.guarantee-store p:last-child {
  max-width: 760px;
  margin: 11px 0 0;
  font-size: 12px;
}

.guarantee-store > a {
  color: var(--store-black);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  text-underline-offset: 4px;
}

.faq-store {
  width: min(1040px, calc(100% - 64px));
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  margin: 0 auto;
  padding: 88px 0;
  border-top: 1px solid var(--store-line);
}

.faq-store h2 {
  font-size: clamp(32px, 3.4vw, 46px);
}

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

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

.faq-store-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--store-black);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-store-list summary span {
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 400;
  transition: transform 160ms ease;
}

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

.faq-store-list details p {
  margin: -3px 35px 22px 0;
  font-size: 12px;
}

.final-store-cta {
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  padding: 65px max(32px, calc((100% - 1180px) / 2));
  color: var(--store-white);
  background: var(--store-black);
}

.final-store-cta h2 {
  max-width: 760px;
  margin-top: 14px;
  color: var(--store-white);
}

.final-store-cta p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.final-store-cta > a {
  min-width: 230px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  color: var(--store-black);
  border-radius: 7px;
  background: var(--store-yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-decoration: none;
}

.store-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  padding: 58px max(32px, calc((100% - 1180px) / 2)) 70px;
  color: var(--store-white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--store-black);
}

.store-footer-main .store-brand img {
  width: 150px;
}

.store-footer-main p {
  max-width: 500px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.store-footer-links {
  display: flex;
  gap: 22px;
}

.store-footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.store-trademark {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.34) !important;
  font-size: 9px;
}

.storefront-page .mobile-buy-bar {
  display: none;
}

/* Matching ecommerce checkout */
.checkout-page {
  color: var(--store-ink);
  background: var(--store-soft);
  font-family: var(--store-font);
}

.checkout-page .checkout-header {
  width: 100%;
  height: 72px;
  padding: 0 max(32px, calc((100% - 1180px) / 2));
  color: var(--store-white);
  border: 0;
  background: var(--store-black);
}

.checkout-page .checkout-header .brand img {
  width: 154px;
  filter: invert(1) brightness(2);
}

.checkout-page .checkout-header > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-page .checkout-shell {
  width: min(1120px, calc(100% - 64px));
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
  padding: 58px 0 78px;
}

.checkout-page .checkout-copy,
.checkout-page .order-panel,
.checkout-page .order-product,
.checkout-page .pack-selector,
.checkout-page .color-selector,
.checkout-page .bump-selector {
  min-width: 0;
}

.checkout-page .checkout-copy h1,
.checkout-page .checkout-copy p,
.checkout-page .checkout-includes strong,
.checkout-page .checkout-includes small {
  overflow-wrap: anywhere;
}

.checkout-page .checkout-copy {
  position: sticky;
  top: 24px;
}

.checkout-page .checkout-copy h1 {
  max-width: 500px;
  font-size: clamp(38px, 4.4vw, 58px);
}

.checkout-page .eyebrow,
.success-page .eyebrow,
.legal-page .eyebrow {
  color: #8c650a;
  font-family: var(--store-font);
  font-size: 10px;
  letter-spacing: 0.11em;
}

.checkout-page .checkout-includes > div > span,
.success-page .success-mark {
  color: var(--store-black);
  background: var(--store-yellow);
}

.checkout-page .order-panel {
  padding: 27px;
  border: 1px solid var(--store-line);
  border-radius: 9px;
  background: var(--store-white);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.07);
}

.checkout-page .order-product figure > img {
  border-radius: 5px;
}

.checkout-page .order-product > div > span {
  color: #8c650a;
}

.checkout-page .pack-selector label,
.checkout-page .color-selector label,
.checkout-page .bump-selector label {
  border-color: var(--store-line);
  border-radius: 7px;
}

.checkout-page .pack-selector label > *,
.checkout-page .color-selector label > *,
.checkout-page .bump-selector label > * {
  min-width: 0;
}

.checkout-page .pack-selector label:has(input:checked),
.checkout-page .color-selector label:has(input:checked),
.checkout-page .bump-selector label:has(input:checked) {
  border-color: #e4aa22;
  background: #fffaf0;
  box-shadow: inset 0 0 0 1px #e4aa22;
}

.checkout-page .pack-selector input,
.checkout-page .color-selector input,
.checkout-page .bump-selector input {
  accent-color: #dca21c;
}

.checkout-page .button-dark {
  color: var(--store-white);
  border-radius: 7px;
  background: var(--store-black);
  box-shadow: none;
}

.checkout-page .checkout-trust {
  color: #777;
}

.checkout-page .checkout-footer {
  border-top-color: var(--store-line);
}

.success-page,
.legal-page {
  color: var(--store-ink);
  background: var(--store-white);
  font-family: var(--store-font);
}

.success-page .button-blue {
  color: var(--store-black);
  border-radius: 7px;
  background: var(--store-yellow);
  box-shadow: none;
}

.success-page .success-next,
.legal-page main {
  border-color: var(--store-line);
}

@media (max-width: 980px) {
  :root {
    --store-width: min(100% - 38px, 760px);
  }

  .store-header-main {
    grid-template-columns: 1fr auto;
  }

  .store-header-note {
    display: none;
  }

  .funnel-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 58px 0 68px;
  }

  .funnel-hero-copy {
    max-width: 680px;
  }

  .funnel-hero-visual {
    padding-right: 30px;
  }

  .funnel-tap-chip {
    left: 18px;
  }

  .funnel-steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .funnel-steps-heading {
    max-width: 620px;
  }

  .funnel-steps > a {
    bottom: 58px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 30px;
  }

  .product-section-heading + .product-detail {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-right: max(19px, calc((100% - 760px) / 2));
    padding-left: max(19px, calc((100% - 760px) / 2));
  }

  .product-main-image {
    position: relative;
    top: auto;
  }

  .how-store,
  .outcome-store {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-store figure {
    order: 0;
  }

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

  .included-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #e5ca82;
  }

  .included-grid article:nth-child(4) {
    border-top: 1px solid #e5ca82;
  }

  .guarantee-store {
    grid-template-columns: 100px 1fr;
  }

  .guarantee-store > a {
    grid-column: 2;
  }

  .faq-store {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .checkout-page .checkout-shell {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .checkout-page .checkout-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --store-width: calc(100% - 28px);
  }

  .storefront-page {
    padding-bottom: 76px;
  }

  .store-header-main {
    min-height: 60px;
  }

  .store-brand img {
    width: 137px;
  }

  .store-header-link {
    font-size: 0;
  }

  .store-header-link::after {
    content: "IVORY SIGHTS ↗";
    font-size: 9px;
  }

  .store-header nav {
    min-height: 38px;
    gap: 24px;
    padding: 0 14px;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .store-header nav::-webkit-scrollbar {
    display: none;
  }

  .store-header nav a {
    flex: 0 0 auto;
    font-size: 11px;
  }

  .store-header nav a:first-child::after {
    bottom: -11px;
  }

  .promo-bar {
    min-height: 40px;
    gap: 6px;
    padding: 8px 10px;
    font-size: 9px;
  }

  .promo-bar span:nth-of-type(2),
  .promo-bar span:nth-of-type(3) {
    display: none;
  }

  .funnel-hero {
    gap: 30px;
    padding: 40px 0 46px;
  }

  .funnel-rating {
    gap: 8px;
    font-size: 9px;
  }

  .funnel-hero h1 {
    margin-top: 13px;
    font-size: clamp(48px, 14.5vw, 61px);
    line-height: 0.95;
  }

  .funnel-lede {
    margin-top: 20px;
    font-size: 14px;
  }

  .funnel-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 17px;
    margin-top: 24px;
  }

  .funnel-primary {
    min-width: 0;
    min-height: 54px;
  }

  .funnel-secondary {
    font-size: 11px;
  }

  .funnel-trust {
    margin-top: 28px;
    padding-top: 15px;
  }

  .funnel-trust li {
    padding-right: 8px;
  }

  .funnel-trust li + li {
    padding-left: 8px;
  }

  .funnel-trust strong {
    font-size: 8px;
  }

  .funnel-trust span {
    font-size: 7px;
  }

  .funnel-hero-visual {
    padding: 0 13px 28px 0;
  }

  .funnel-jobsite img {
    aspect-ratio: 1 / 1.04;
  }

  .funnel-product-float {
    width: min(272px, 82%);
    grid-template-columns: 88px 1fr;
    gap: 9px;
    padding: 7px;
  }

  .funnel-product-float img {
    width: 88px;
    height: 62px;
  }

  .funnel-product-float strong {
    font-size: 10px;
  }

  .funnel-product-float span {
    font-size: 8px;
  }

  .funnel-tap-chip {
    top: 10px;
    left: 9px;
    min-width: 138px;
    grid-template-columns: 28px 1fr;
    gap: 0 7px;
    padding: 8px 9px;
  }

  .funnel-tap-chip > span {
    width: 28px;
    height: 28px;
  }

  .funnel-tap-chip strong {
    font-size: 9px;
  }

  .funnel-tap-chip small {
    font-size: 6px;
  }

  .funnel-friction {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 20px;
  }

  .funnel-friction strong {
    font-size: 22px;
  }

  .funnel-friction > div > span {
    font-size: 10px;
  }

  .friction-arrow {
    width: 38px;
    height: 38px;
    transform: rotate(90deg);
  }

  .funnel-steps {
    gap: 27px;
    padding: 56px 0 73px;
  }

  .funnel-steps-heading h2,
  .product-section-heading h2 {
    font-size: 37px;
  }

  .funnel-steps ol {
    grid-template-columns: 1fr;
  }

  .funnel-steps li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 2px 8px;
    padding: 15px 0;
  }

  .funnel-steps li + li {
    border-top: 1px solid var(--store-line);
    border-left: 0;
  }

  .funnel-steps li > span {
    grid-row: 1 / 3;
    padding-top: 3px;
  }

  .funnel-steps li strong,
  .funnel-steps li p {
    margin: 0;
  }

  .funnel-steps li p {
    margin-top: 3px;
  }

  .funnel-steps > a {
    right: auto;
    bottom: 40px;
    left: 0;
  }

  .product-section-heading {
    padding: 48px 14px 5px;
  }

  .product-section-heading span {
    max-width: 320px;
    font-size: 10px;
  }

  .product-detail {
    gap: 28px;
    padding: 18px 0 42px;
  }

  .product-section-heading + .product-detail {
    gap: 28px;
    padding: 29px 14px 52px;
  }

  .product-main-image img {
    aspect-ratio: 4 / 3;
  }

  .product-main-image figcaption {
    min-height: 38px;
    font-size: 9px;
  }

  .image-badge {
    top: 9px;
    left: 9px;
    font-size: 8px;
  }

  .product-thumbs {
    gap: 7px;
    margin-top: 8px;
  }

  .product-thumb {
    display: block;
    padding: 4px;
    text-align: center;
  }

  .product-thumb img {
    width: 100%;
    height: 54px;
  }

  .product-thumb span {
    display: block;
    padding: 5px 2px 2px;
    font-size: 8px;
  }

  .product-vendor {
    margin-bottom: 5px;
    font-size: 9px;
  }

  .product-buybox h1 {
    font-size: 36px;
  }

  .product-rating {
    margin-top: 11px;
  }

  .rating-stars {
    font-size: 15px;
  }

  .product-dream {
    margin-top: 17px;
    font-size: 13px;
  }

  .product-benefits li {
    font-size: 12px;
  }

  .store-tier-option {
    min-height: 82px;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px;
  }

  .store-radio {
    grid-column: 1;
  }

  .store-tier-copy {
    grid-column: 2;
  }

  .store-tier-price {
    grid-column: 3;
    min-width: 72px;
  }

  .store-tier-copy strong {
    font-size: 14px;
  }

  .store-tier-copy small {
    display: block;
    margin-left: 0;
    font-size: 10px;
  }

  .store-tier-copy em {
    font-size: 8px;
  }

  .store-tier-price b {
    font-size: 19px;
  }

  .store-add-button {
    min-height: 56px;
    font-size: 13px;
  }

  .purchase-assurance strong {
    font-size: 9px;
  }

  .purchase-assurance small {
    font-size: 7px;
  }

  .fast-proof {
    min-height: 132px;
    display: block;
    padding: 30px 18px;
  }

  .fast-proof p,
  .fast-proof strong {
    display: inline;
  }

  .fast-proof strong {
    font-size: 21px;
  }

  .fast-proof span {
    display: block;
    margin: 9px 0 0;
  }

  .how-store,
  .outcome-store {
    gap: 28px;
    padding: 58px 0;
  }

  .how-store-copy h2,
  .included-heading h2,
  .outcome-store h2,
  .guarantee-store h2,
  .faq-store h2,
  .final-store-cta h2 {
    font-size: 34px;
  }

  .included-store {
    padding: 58px 14px;
  }

  .included-grid {
    grid-template-columns: 1fr;
    margin-top: 31px;
  }

  .included-grid article {
    min-height: 150px;
    padding: 22px;
  }

  .included-grid article + article {
    border-top: 1px solid #e5ca82;
    border-left: 0;
  }

  .included-grid h3 {
    margin-top: 24px;
  }

  .review-store {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 58px 0;
  }

  .review-store blockquote > p {
    font-size: 25px;
  }

  .guarantee-store {
    width: calc(100% - 28px);
    grid-template-columns: 74px 1fr;
    gap: 18px;
    margin-bottom: 58px;
    padding: 20px;
  }

  .guarantee-seal {
    width: 70px;
    height: 70px;
  }

  .guarantee-seal strong {
    font-size: 26px;
  }

  .guarantee-store h2 {
    font-size: 24px;
  }

  .guarantee-store > a {
    grid-column: 1 / -1;
  }

  .faq-store {
    width: calc(100% - 28px);
    padding: 58px 0;
  }

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

  .final-store-cta {
    min-height: 360px;
    display: block;
    padding: 54px 20px;
  }

  .final-store-cta > a {
    width: 100%;
    margin-top: 30px;
  }

  .store-footer {
    display: block;
    padding: 50px 20px 80px;
  }

  .store-footer-links {
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .store-trademark {
    margin-top: 35px;
  }

  .storefront-page .mobile-buy-bar {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--store-line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
  }

  .storefront-page .mobile-buy-bar div strong,
  .storefront-page .mobile-buy-bar div span {
    display: block;
  }

  .storefront-page .mobile-buy-bar div strong {
    color: var(--store-black);
    font-size: 11px;
  }

  .storefront-page .mobile-buy-bar div span {
    color: #777;
    font-size: 8px;
  }

  .storefront-page .mobile-buy-bar > a {
    min-width: 94px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--store-white);
    border-radius: 6px;
    background: var(--store-black);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
  }

  .checkout-page .checkout-header {
    height: 62px;
    padding: 0 14px;
  }

  .checkout-page .checkout-header .brand img {
    width: 132px;
  }

  .checkout-page .checkout-shell {
    width: calc(100% - 28px);
    gap: 36px;
    padding: 34px 0 58px;
  }

  .checkout-page .checkout-copy h1 {
    font-size: 38px;
  }

  .checkout-page .order-panel {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .storefront-page *,
  .checkout-page * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
