:root {
  --surface: 45 20% 94%;
  --surface-deep: 45 11% 88%;
  --ink: 60 6% 6%;
  --ink-soft: 60 3% 18%;
  --primary: 13 87% 54%;
  --primary-dark: 13 83% 44%;
  --signal: 48 100% 61%;
  --steel: 60 4% 78%;
  --paper: 0 0% 100%;
  --muted: 50 5% 37%;
  --focus: 215 94% 48%;
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Barlow", Arial, sans-serif;
  --shell: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --border-heavy: 2px solid hsl(var(--ink));
  --border-light: 1px solid hsl(var(--ink) / 0.35);
  --shadow-hard: 7px 7px 0 hsl(var(--ink));
  --shadow-primary: 8px 8px 0 hsl(var(--primary));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: hsl(var(--ink));
  background: hsl(var(--surface));
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid hsl(var(--focus));
  outline-offset: 3px;
}

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: hsl(var(--paper));
  background: hsl(var(--ink));
  transform: translateY(-150%);
  transition: transform 150ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 7px var(--gutter);
  border-bottom: var(--border-heavy);
  background: hsl(var(--signal));
  font-size: 13px;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: var(--border-heavy);
  background: hsl(var(--surface) / 0.96);
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

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

.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: hsl(var(--paper));
  background: hsl(var(--ink));
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a,
.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after,
.nav-link::after,
.footer__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.nav-link:hover::after,
.footer__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 22px;
}

.auth-control {
  position: relative;
}

.auth-login {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 2px solid hsl(var(--ink));
  background: hsl(var(--paper));
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.auth-login:hover {
  background: hsl(var(--signal));
}

.account-trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px 0 5px;
  border: 2px solid hsl(var(--ink));
  color: hsl(var(--ink));
  background: hsl(var(--paper));
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.account-avatar {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: hsl(var(--paper));
  background: hsl(var(--primary));
  font-family: var(--font-display);
  font-size: 17px;
}

.account-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 120;
  width: 260px;
  display: grid;
  padding: 18px;
  border: var(--border-heavy);
  background: hsl(var(--paper));
  box-shadow: var(--shadow-hard);
}

.account-menu[hidden] {
  display: none;
}

.account-menu__label {
  margin: 0 0 4px;
  color: hsl(var(--muted));
  font-size: 12px;
}

.account-menu__name {
  line-height: 1.25;
}

.account-menu__email {
  margin-top: 3px;
  overflow: hidden;
  color: hsl(var(--muted));
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-menu a {
  padding: 11px 0;
  border-top: 1px solid hsl(var(--ink) / 0.22);
  font-weight: 600;
  text-decoration: none;
}

.account-menu a:first-of-type {
  margin-top: 14px;
}

.account-menu a:hover {
  color: hsl(var(--primary-dark));
}

.cart-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 6px 0 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
}

.cart-count {
  min-width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 2px solid hsl(var(--ink));
  background: hsl(var(--primary));
  font-size: 13px;
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 7px;
  border: var(--border-heavy);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 21px;
  height: 2px;
  display: block;
  background: hsl(var(--ink));
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  overflow: hidden;
  border-bottom: var(--border-heavy);
}

.hero__grid {
  min-height: min(690px, calc(100vh - 106px));
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(340px, 1fr);
  border-right: var(--border-heavy);
  border-left: var(--border-heavy);
}

.hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 70px) clamp(34px, 5vw, 76px);
}

.hero__copy::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20%;
  height: 16px;
  background: hsl(var(--primary));
}

.hero__edition,
.system__copy > p:first-child {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 600;
}

.hero h1 {
  max-width: 8.5ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 8.25vw, 8rem);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.hero__intro {
  max-width: 43ch;
  margin: 26px 0 0;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: var(--border-heavy);
  font-weight: 700;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.button--primary {
  background: hsl(var(--primary));
  box-shadow: var(--shadow-hard);
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 hsl(var(--ink));
}

.button--light {
  color: hsl(var(--ink));
  background: hsl(var(--paper));
  box-shadow: 7px 7px 0 hsl(var(--primary));
}

.button--light:hover {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 hsl(var(--primary));
}

.text-link {
  width: max-content;
  padding-bottom: 3px;
  border-bottom: 2px solid currentColor;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: hsl(var(--primary-dark));
}

.hero__assurance {
  display: flex;
  gap: 42px;
  margin: 34px 0 0;
}

.hero__assurance div {
  padding-left: 12px;
  border-left: 2px solid hsl(var(--ink));
}

.hero__assurance dt {
  font-size: 12px;
  font-weight: 600;
  color: hsl(var(--muted));
}

.hero__assurance dd {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.hero__media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-left: var(--border-heavy);
  background: hsl(var(--steel));
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 49%;
  animation: hero-settle 850ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero__media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 16px;
  color: hsl(var(--paper));
  background: hsl(var(--ink));
  font-size: 13px;
}

.hero__media figcaption span {
  color: hsl(var(--paper) / 0.68);
}

@keyframes hero-settle {
  from { transform: scale(1.04); filter: saturate(0.75); }
  to { transform: scale(1); filter: saturate(1); }
}

.proof-strip {
  border-bottom: var(--border-heavy);
  background: hsl(var(--paper));
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: var(--border-heavy);
  border-left: var(--border-heavy);
}

.proof-strip p {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 12px 22px;
  font-weight: 600;
}

.proof-strip p + p {
  border-left: var(--border-heavy);
}

.proof-strip strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: hsl(var(--primary));
}

.products,
.routines {
  padding: clamp(78px, 8vw, 116px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(44px, 8vw, 120px);
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2,
.system h2,
.routines h2,
.newsletter h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.section-heading h2 {
  font-size: clamp(4.5rem, 7vw, 7rem);
}

.section-heading > div {
  padding-bottom: 8px;
}

.section-heading p {
  max-width: 43ch;
  margin: 0 0 24px;
  font-size: 18px;
}

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

.product-card {
  min-width: 0;
  display: grid;
  overflow: hidden;
  border: var(--border-heavy);
  background: hsl(var(--paper));
}

.product-card--feature {
  grid-column: span 7;
  grid-row: span 2;
  grid-template-rows: minmax(0, 1fr) auto;
  box-shadow: var(--shadow-primary);
}

.product-card--compact {
  grid-column: span 5;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
}

.product-card__visual {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: hsl(var(--surface-deep));
}

.product-card--feature .product-card__visual {
  border-bottom: var(--border-heavy);
}

.product-card--compact .product-card__visual {
  border-right: var(--border-heavy);
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card:hover .product-card__visual img {
  transform: scale(1.025);
}

.product-card__flag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  border: 2px solid hsl(var(--ink));
  background: hsl(var(--signal));
  font-size: 13px;
  font-weight: 700;
}

.product-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
}

.product-card--feature .product-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding: 28px 30px;
}

.sku {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: hsl(var(--muted));
}

.product-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.3vw, 3.6rem);
  font-weight: 400;
  line-height: 0.95;
}

.product-card--compact h3 {
  font-size: clamp(2rem, 2.4vw, 2.65rem);
}

.product-card__description {
  max-width: 42ch;
  margin: 12px 0 0;
  color: hsl(var(--ink-soft));
  font-size: 15px;
}

.product-card__buy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.price {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.price span {
  margin-right: 6px;
  font-size: 12px;
  font-weight: 500;
  color: hsl(var(--muted));
}

.add-button {
  min-height: 47px;
  padding: 0 17px;
  border: 2px solid hsl(var(--ink));
  color: hsl(var(--paper));
  background: hsl(var(--ink));
  font-weight: 700;
  cursor: pointer;
  transition: color 140ms ease, background-color 140ms ease;
}

.add-button:hover,
.add-button.is-added {
  color: hsl(var(--ink));
  background: hsl(var(--primary));
}

.system {
  padding: clamp(80px, 8vw, 118px) 0;
  color: hsl(var(--paper));
  background: hsl(var(--ink));
}

.system__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(60px, 10vw, 140px);
  align-items: end;
}

.system h2 {
  font-size: clamp(5.2rem, 8.5vw, 8.5rem);
}

.system__rule {
  width: 148px;
  height: 14px;
  margin: 34px 0;
  background: hsl(var(--primary));
}

.system__intro {
  max-width: 50ch;
  margin: 0 0 34px;
  color: hsl(var(--paper) / 0.72);
  font-size: 18px;
}

.system__facts {
  margin: 0;
}

.system__facts div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid hsl(var(--paper) / 0.32);
}

.system__facts div:last-child {
  border-bottom: 1px solid hsl(var(--paper) / 0.32);
}

.system__facts dt {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 0.9;
  color: hsl(var(--signal));
}

.system__facts dd {
  margin: 0;
  color: hsl(var(--paper) / 0.72);
}

.routines__header {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.routines h2 {
  font-size: clamp(4.5rem, 7vw, 7rem);
}

.routines__header p {
  max-width: 42ch;
  margin: 0 0 8px;
  font-size: 18px;
}

.routine-list {
  border-top: var(--border-heavy);
}

.routine-row {
  min-height: 96px;
  display: grid;
  grid-template-columns: 2fr 1.5fr 0.7fr auto;
  gap: 26px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: var(--border-heavy);
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.routine-row:hover,
.routine-row:focus-visible {
  color: hsl(var(--paper));
  background: hsl(var(--primary));
}

.routine-row__name {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.routine-row > span:not(.routine-row__name) {
  font-weight: 600;
}

.routine-row__action {
  padding-bottom: 2px;
  border-bottom: 2px solid currentColor;
}

.newsletter {
  padding: 60px 0;
  border-top: var(--border-heavy);
  border-bottom: var(--border-heavy);
  background: hsl(var(--signal));
}

.newsletter__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  align-items: center;
}

.newsletter h2 {
  font-size: clamp(4.2rem, 6.2vw, 6.5rem);
}

.newsletter p {
  max-width: 48ch;
  margin: 10px 0 0;
}

.newsletter-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 56px;
  border: var(--border-heavy);
}

.newsletter-form input {
  min-width: 0;
  padding: 0 17px;
  border-right: 0;
  color: hsl(var(--ink));
  background: hsl(var(--paper));
}

.newsletter-form button {
  padding: 0 22px;
  color: hsl(var(--paper));
  background: hsl(var(--ink));
  font-weight: 700;
  cursor: pointer;
}

.newsletter-form button:hover {
  color: hsl(var(--ink));
  background: hsl(var(--primary));
}

.form-message {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.site-footer {
  padding: 68px 0 32px;
  color: hsl(var(--paper));
  background: hsl(var(--ink));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}

.brand--footer .brand__mark {
  color: hsl(var(--ink));
  background: hsl(var(--paper));
}

.footer__grid > div:first-child > p {
  margin: 18px 0 0;
  color: hsl(var(--paper) / 0.64);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-content: start;
  justify-content: end;
  gap: 16px 42px;
}

.footer__links a {
  position: relative;
  width: max-content;
  text-decoration: none;
}

.footer__legal {
  grid-column: 1 / -1;
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid hsl(var(--paper) / 0.25);
  color: hsl(var(--paper) / 0.5);
  font-size: 13px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  max-width: min(360px, calc(100% - 44px));
  padding: 14px 18px;
  border: 2px solid hsl(var(--ink));
  background: hsl(var(--signal));
  box-shadow: var(--shadow-hard);
  font-weight: 700;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav-shell {
    gap: 24px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .nav-link {
    display: none;
  }

  .hero h1 {
    font-size: clamp(5.2rem, 9.5vw, 7rem);
  }

  .hero__copy {
    padding-inline: 42px;
  }

  .product-grid {
    grid-template-rows: auto;
  }

  .product-card--feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .product-card--feature .product-card__visual {
    aspect-ratio: 16 / 9;
  }

  .product-card--compact {
    grid-column: span 6;
    grid-template-columns: 1fr;
  }

  .product-card--compact .product-card__visual {
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: var(--border-heavy);
  }
}

@media (max-width: 820px) {
  .desktop-nav,
  .nav-tools .nav-link {
    display: none;
  }

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

  .nav-tools {
    gap: 12px;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    inset: 72px 0 auto;
    z-index: 90;
    display: grid;
    padding: 26px var(--gutter) 34px;
    border-bottom: var(--border-heavy);
    background: hsl(var(--surface));
    transform: translateY(calc(-100% - 76px));
    visibility: hidden;
    transition: transform 200ms ease, visibility 200ms ease;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-nav a {
    padding: 13px 0;
    border-bottom: 1px solid hsl(var(--ink) / 0.25);
    font-family: var(--font-display);
    font-size: 34px;
    line-height: 1;
    text-decoration: none;
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: 1.15fr 0.85fr;
  }

  .hero__copy {
    padding: 44px 28px;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 12vw, 6.2rem);
  }

  .hero__assurance {
    display: none;
  }

  .system__grid,
  .newsletter__grid {
    grid-template-columns: 1fr;
  }

  .system__facts {
    margin-top: 12px;
  }

  .routine-row {
    grid-template-columns: 1.5fr 1fr auto;
  }

  .routine-row > span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 16px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .announcement {
    min-height: 32px;
    gap: 7px;
    font-size: 11px;
  }

  .announcement span:last-child,
  .announcement span:nth-child(2) {
    display: none;
  }

  .nav-shell {
    min-height: 64px;
  }

  .brand__mark {
    width: 39px;
    height: 39px;
    font-size: 19px;
  }

  .brand__name {
    font-size: 24px;
  }

  .cart-button {
    font-size: 0;
  }

  .auth-login {
    min-height: 39px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .account-trigger {
    min-height: 39px;
    padding-right: 5px;
  }

  .account-label {
    display: none;
  }

  .account-menu {
    position: fixed;
    top: 104px;
    right: 16px;
  }

  .cart-count {
    font-size: 13px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .mobile-nav {
    inset: 64px 0 auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .hero__copy {
    min-height: 432px;
    padding: 34px 20px 30px;
  }

  .hero__copy::after {
    width: 34%;
    height: 10px;
  }

  .hero__edition {
    margin-bottom: 15px;
    font-size: 13px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(4.9rem, 22vw, 6rem);
  }

  .hero__intro {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero__actions {
    gap: 20px;
    margin-top: 25px;
  }

  .button {
    min-height: 50px;
    padding-inline: 18px;
  }

  .hero__media {
    height: 330px;
    border-top: var(--border-heavy);
    border-left: 0;
  }

  .hero__media img {
    object-position: 50% 43%;
  }

  .hero__media figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .hero__media figcaption span {
    display: none;
  }

  .proof-strip__grid {
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .proof-strip p {
    min-height: 50px;
    padding: 8px 18px;
    font-size: 13px;
  }

  .proof-strip p + p {
    border-top: 1px solid hsl(var(--ink));
    border-left: 0;
  }

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

  .products,
  .routines {
    padding: 72px 0;
  }

  .section-heading,
  .routines__header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }

  .section-heading h2,
  .routines h2 {
    font-size: 4.7rem;
  }

  .section-heading p,
  .routines__header p {
    font-size: 16px;
  }

  .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-card--feature,
  .product-card--compact {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .product-card--feature .product-card__visual,
  .product-card--compact .product-card__visual {
    aspect-ratio: 1 / 0.88;
  }

  .product-card--feature .product-card__body,
  .product-card--compact .product-card__body {
    display: flex;
    padding: 22px;
  }

  .product-card h3,
  .product-card--compact h3 {
    font-size: 2.65rem;
  }

  .product-card__buy {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .system {
    padding: 76px 0;
  }

  .system h2 {
    font-size: 5.5rem;
  }

  .system__grid {
    gap: 54px;
  }

  .system__facts div {
    grid-template-columns: 120px 1fr;
  }

  .system__facts dt {
    font-size: 43px;
  }

  .routine-row {
    min-height: 84px;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 14px 4px;
  }

  .routine-row > span:nth-child(2),
  .routine-row > span:nth-child(3) {
    display: none;
  }

  .routine-row__name {
    font-size: 34px;
  }

  .routine-row__action {
    font-size: 13px;
  }

  .newsletter {
    padding: 54px 0 66px;
  }

  .newsletter__grid {
    gap: 28px;
  }

  .newsletter h2 {
    font-size: 4.7rem;
  }

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

  .newsletter-form input {
    border-right: var(--border-heavy);
  }

  .form-message {
    top: calc(100% + 4px);
  }

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

  .footer__links {
    justify-content: start;
  }

  .footer__legal {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
