@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Bebas+Neue&display=swap");

:root {
  --ink: #060606;
  --black: #111111;
  --coal: #171717;
  --charcoal: #202020;
  --line: #34302f;
  --off-white: #f2efea;
  --paper: #fbfaf7;
  --muted: #c9c1b8;
  --muted-dark: #6d6660;
  --purple: #552583;
  --purple-bright: #7c36b0;
  --red: #d72638;
  --gold: #f6b735;
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--off-white);
  font-family: "Barlow Condensed", "Franklin Gothic Medium", "DIN Condensed", sans-serif;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0;
}

body.cart-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 20% 0%, rgba(85, 37, 131, 0.18), transparent 30%),
    var(--ink);
  background-size: 82px 82px, 82px 82px, auto, auto;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(242, 239, 234, 0.12);
  background: rgba(6, 6, 6, 0.94);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 128px;
}

.brand-link img {
  width: 152px;
  height: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.desktop-nav a {
  padding: 22px 0;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--off-white);
}

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

.icon-button {
  position: relative;
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(242, 239, 234, 0.18);
  border-radius: var(--radius);
  background: transparent;
  color: var(--off-white);
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--purple-bright);
}

.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.cart-count {
  position: absolute;
  top: 6px;
  right: 5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--red);
  color: white;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.mobile-menu {
  display: grid;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(242, 239, 234, 0.1);
  padding: 8px 16px 18px;
  background: var(--black);
}

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

.mobile-nav a {
  border-bottom: 1px solid rgba(242, 239, 234, 0.08);
  padding: 14px 0;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 54px 0;
}

.section--paper {
  background: var(--paper);
  color: var(--black);
}

.section--dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 12px),
    var(--black);
  color: var(--off-white);
}

.section-header {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-header h2,
.section-title {
  margin: 0;
  font-family: "Bebas Neue", Impact, "Franklin Gothic Heavy", sans-serif;
  font-size: clamp(38px, 9vw, 76px);
  line-height: 0.9;
  letter-spacing: 0;
}

.section-header p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 21px;
}

.section--paper .section-header p,
.section--paper .muted {
  color: var(--muted-dark);
}

.purple {
  color: var(--purple-bright);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 22px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.button--primary {
  background: var(--purple);
  color: white;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--purple-bright);
}

.button--dark {
  background: var(--ink);
  color: white;
}

.button--dark:hover,
.button--dark:focus-visible {
  border-color: var(--purple-bright);
}

.button--outline {
  border-color: rgba(242, 239, 234, 0.28);
  background: transparent;
  color: var(--off-white);
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--purple-bright);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(242, 239, 234, 0.14);
  background:
    linear-gradient(120deg, rgba(6, 6, 6, 0.98) 0%, rgba(6, 6, 6, 0.88) 42%, rgba(6, 6, 6, 0.58) 100%),
    var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(30deg, transparent 0 46%, rgba(242, 239, 234, 0.2) 46% 47%, transparent 47% 100%),
    linear-gradient(120deg, transparent 0 49%, rgba(215, 38, 56, 0.2) 49% 50%, transparent 50% 100%);
  background-size: 180px 180px, 240px 240px;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 34px 0 38px;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.brand-stamp {
  margin: 0;
  color: var(--off-white);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, "Franklin Gothic Heavy", sans-serif;
  font-size: clamp(54px, 15vw, 120px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy p {
  margin: 0;
}

.hero-subhead {
  max-width: 520px;
  color: var(--off-white);
  font-size: clamp(21px, 5vw, 28px);
}

.hero-actions {
  display: grid;
  gap: 12px;
}

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

.trust-pill {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(242, 239, 234, 0.14);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(17, 17, 17, 0.72);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.trust-pill svg {
  flex: 0 0 auto;
  color: var(--purple-bright);
}

.hero-media {
  position: relative;
  min-height: 340px;
  border: 1px solid rgba(242, 239, 234, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  clip-path: polygon(0 0, 100% 0, 100% 91%, 92% 100%, 0 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.media-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-left: 4px solid var(--red);
  padding: 7px 10px;
  background: rgba(6, 6, 6, 0.82);
  color: var(--off-white);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.shipping-strip {
  border-top: 1px solid rgba(242, 239, 234, 0.12);
  border-bottom: 1px solid rgba(242, 239, 234, 0.12);
  background: rgba(17, 17, 17, 0.94);
}

.shipping-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shipping-strip__item {
  display: grid;
  min-height: 56px;
  place-items: center;
  border-right: 1px solid rgba(242, 239, 234, 0.1);
  padding: 8px;
  color: var(--off-white);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.shipping-strip__item:last-child {
  border-right: 0;
}

.buy-card {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(242, 239, 234, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(85, 37, 131, 0.2), transparent 35%),
    var(--black);
}

.buy-card--light {
  border-color: rgba(17, 17, 17, 0.14);
  background: var(--paper);
  color: var(--black);
}

.product-title {
  margin: 0;
  font-family: "Bebas Neue", Impact, "Franklin Gothic Heavy", sans-serif;
  font-size: clamp(35px, 8vw, 52px);
  line-height: 0.94;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 19px;
  font-weight: 800;
}

.rating-row span:last-child {
  color: var(--muted);
  font-size: 17px;
}

.price {
  color: var(--off-white);
  font-size: 28px;
  font-weight: 800;
}

.buy-card--light .price,
.product-panel .price {
  color: var(--black);
}

.payment-note,
.microcopy {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.buy-card--light .payment-note,
.buy-card--light .microcopy {
  color: var(--muted-dark);
}

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

.quantity-label {
  font-weight: 800;
  text-transform: uppercase;
}

.qty-selector {
  display: inline-grid;
  grid-template-columns: 44px 54px 44px;
  height: 44px;
  border: 1px solid rgba(242, 239, 234, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.buy-card--light .qty-selector,
.product-panel .qty-selector {
  border-color: rgba(17, 17, 17, 0.18);
}

.qty-selector button,
.qty-selector input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: center;
}

.qty-selector button {
  font-size: 22px;
  font-weight: 800;
}

.qty-selector input {
  border-right: 1px solid rgba(242, 239, 234, 0.18);
  border-left: 1px solid rgba(242, 239, 234, 0.18);
  font-weight: 800;
}

.buy-card--light .qty-selector input,
.product-panel .qty-selector input {
  border-color: rgba(17, 17, 17, 0.18);
}

.buy-actions {
  display: grid;
  gap: 10px;
}

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

.service-badge {
  display: grid;
  min-height: 64px;
  align-content: center;
  border: 1px solid rgba(242, 239, 234, 0.14);
  border-radius: var(--radius);
  padding: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.buy-card--light .service-badge,
.product-panel .service-badge {
  border-color: rgba(17, 17, 17, 0.14);
  color: var(--muted-dark);
}

.problem-grid {
  display: grid;
  gap: 14px;
}

.before-after-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(242, 239, 234, 0.12);
  border-radius: var(--radius);
  background: var(--black);
}

.before-after-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: 0.72;
}

.before-after-card__copy {
  position: absolute;
  inset: auto 16px 16px 16px;
  display: grid;
  gap: 8px;
}

.before-after-card h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, "Franklin Gothic Heavy", sans-serif;
  font-size: 48px;
  line-height: 0.9;
}

.before-after-card p {
  max-width: 330px;
  margin: 0;
  color: var(--off-white);
  font-size: 19px;
}

.how-grid {
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  gap: 12px;
}

.how-grid--text .step-card {
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: white;
}

.step-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  object-fit: cover;
}

.step-copy {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.step-number {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  font-weight: 800;
}

.step-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.step-card p {
  margin: 4px 0 0;
  color: var(--muted-dark);
  font-size: 17px;
}

.product-feature {
  display: grid;
  gap: 24px;
}

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

.main-product-image {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  border-radius: var(--radius);
  background: var(--paper);
  object-fit: contain;
}

.product-gallery--square .main-product-image {
  aspect-ratio: 1 / 1;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 8px;
}

.thumb-row button {
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  background: var(--paper);
}

.thumb-row button.is-active {
  border-color: var(--purple);
}

.thumb-row img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--paper);
  object-fit: contain;
}

.product-feature-visual {
  width: min(100%, 920px);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: var(--radius);
  background: var(--paper);
  object-fit: contain;
}

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

.benefit-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 19px;
}

.benefit-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--purple);
  clip-path: polygon(0 0, 100% 35%, 68% 100%, 0 70%);
}

.benefit-grid {
  display: grid;
  gap: 12px;
}

.benefit-card {
  border: 1px solid rgba(242, 239, 234, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(17, 17, 17, 0.74);
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 25px;
  text-transform: uppercase;
}

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

.review-grid {
  display: grid;
  gap: 12px;
}

.review-card {
  border: 1px solid rgba(242, 239, 234, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(6, 6, 6, 0.74);
}

.stars {
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 800;
}

.review-card blockquote {
  margin: 0;
  color: var(--off-white);
  font-size: 22px;
  line-height: 1.22;
}

.review-card cite {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

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

.faq-item {
  border: 1px solid rgba(242, 239, 234, 0.14);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.72);
}

.section--paper .faq-item {
  border-color: rgba(17, 17, 17, 0.14);
  background: white;
}

.faq-item summary {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  font-size: 21px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--purple-bright);
  font-size: 28px;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 16px 18px;
  color: var(--muted);
  font-size: 18px;
}

.section--paper .faq-item p {
  color: var(--muted-dark);
}

.page-hero {
  padding: 46px 0;
  border-bottom: 1px solid rgba(242, 239, 234, 0.12);
  background:
    linear-gradient(120deg, rgba(6, 6, 6, 0.98), rgba(17, 17, 17, 0.86)),
    var(--black);
}

.page-hero__grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.page-hero__grid--copy-only {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 23px;
}

.product-page-layout {
  display: grid;
  gap: 24px;
}

.product-panel {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: white;
  color: var(--black);
}

.spec-grid {
  display: grid;
  gap: 10px;
}

.spec-row {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 12px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  padding-bottom: 10px;
}

.spec-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.spec-row strong {
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  gap: 18px;
}

.story-block {
  border-left: 4px solid var(--purple);
  padding: 6px 0 6px 16px;
}

.story-block h2,
.story-block h3 {
  margin: 0 0 10px;
  font-family: "Bebas Neue", Impact, "Franklin Gothic Heavy", sans-serif;
  font-size: clamp(34px, 8vw, 62px);
  line-height: 0.92;
}

.story-block p {
  margin: 0;
  color: var(--muted);
  font-size: 21px;
}

.values-grid {
  display: grid;
  gap: 12px;
}

.value-card {
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: white;
}

.value-card h3 {
  margin: 0 0 8px;
  font-size: 25px;
  text-transform: uppercase;
}

.value-card p {
  margin: 0;
  color: var(--muted-dark);
}

.site-footer {
  border-top: 1px solid rgba(242, 239, 234, 0.12);
  padding: 34px 0 100px;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.footer-brand img {
  width: 190px;
}

.footer-brand p {
  max-width: 340px;
  margin: 12px 0 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--off-white);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  background: rgba(0, 0, 0, 0.58);
}

.cart-open .cart-backdrop {
  display: block;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: grid;
  width: min(100%, 420px);
  height: 100vh;
  grid-template-rows: auto 1fr auto;
  border-left: 1px solid rgba(242, 239, 234, 0.12);
  background: var(--black);
  color: var(--off-white);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

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

.cart-drawer__header,
.cart-drawer__footer {
  border-bottom: 1px solid rgba(242, 239, 234, 0.12);
  padding: 18px;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer__header h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, "Franklin Gothic Heavy", sans-serif;
  font-size: 38px;
}

.cart-drawer__body {
  overflow: auto;
  padding: 18px;
}

.cart-line {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  border-bottom: 1px solid rgba(242, 239, 234, 0.1);
  padding-bottom: 16px;
}

.cart-line img {
  width: 86px;
  height: 86px;
  border-radius: var(--radius);
  object-fit: cover;
}

.cart-line h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1;
}

.cart-line p {
  margin: 5px 0 10px;
  color: var(--muted);
}

.cart-line__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-qty {
  display: inline-grid;
  grid-template-columns: 34px 34px 34px;
  border: 1px solid rgba(242, 239, 234, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.cart-qty button,
.cart-qty span {
  display: grid;
  min-height: 34px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--off-white);
  font-weight: 800;
}

.cart-qty span {
  border-right: 1px solid rgba(242, 239, 234, 0.16);
  border-left: 1px solid rgba(242, 239, 234, 0.16);
}

.cart-empty {
  display: grid;
  min-height: 240px;
  align-content: center;
  gap: 12px;
  color: var(--muted);
}

.upsell {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  border: 1px solid rgba(242, 239, 234, 0.14);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(85, 37, 131, 0.18);
}

.upsell h3 {
  margin: 0;
  font-size: 22px;
  text-transform: uppercase;
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 800;
}

.drawer-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.mobile-atc {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid rgba(242, 239, 234, 0.14);
  padding: 10px 14px;
  background: rgba(6, 6, 6, 0.96);
}

.mobile-atc strong {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.mobile-atc span {
  color: var(--muted);
  font-size: 15px;
}

.mobile-atc .button {
  min-height: 46px;
  padding: 10px 16px;
}

.hidden-on-mobile {
  display: none;
}

@media (min-width: 720px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .desktop-nav {
    display: flex;
  }

  .mobile-menu,
  .mobile-nav {
    display: none !important;
  }

  .section {
    padding: 78px 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    padding: 60px 0;
  }

  .hero-copy {
    min-height: 520px;
  }

  .hero-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .trust-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-media {
    min-height: 540px;
  }

  .hero-media img {
    min-height: 540px;
  }

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

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

  .product-feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
  }

  .buy-card--sticky,
  .product-panel--sticky {
    position: sticky;
    top: 92px;
  }

  .benefit-grid,
  .review-grid,
  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-hero {
    padding: 72px 0;
  }

  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .page-hero__grid--copy-only {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-page-layout {
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: start;
  }

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

  .footer-grid {
    grid-template-columns: 1fr auto auto;
    align-items: start;
  }

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

  .mobile-atc {
    display: none;
  }

  .hidden-on-mobile {
    display: inline-flex;
  }
}

@media (min-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .hero h1 {
    font-size: 116px;
  }
}
