@font-face {
  font-family: "Hanken Grotesk";
  src: url("../assets/fonts/hanken-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../assets/fonts/jetbrains-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: "Spectral";
  src: url("../assets/fonts/spectral-normal-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Spectral";
  src: url("../assets/fonts/spectral-normal-500-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Spectral";
  src: url("../assets/fonts/spectral-normal-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Spectral";
  src: url("../assets/fonts/spectral-italic-400-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Spectral";
  src: url("../assets/fonts/spectral-italic-500-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: oklch(0.985 0.004 205);
  --bg-soft: oklch(0.955 0.018 205);
  --surface: oklch(1 0 0);
  --ink: oklch(0.24 0.018 210);
  --ink-soft: oklch(0.42 0.018 210);
  --ink-mute: oklch(0.5 0.016 210);
  --line: oklch(0.87 0.012 205);
  --brand: oklch(0.53 0.095 201);
  --brand-deep: oklch(0.36 0.065 203);
  --brand-bright: oklch(0.75 0.11 197);
  --brand-pale: oklch(0.94 0.045 199);
  --accent: oklch(0.69 0.13 58);
  --ink-on-color: oklch(0.98 0.006 205);
  --font-sans: "Hanken Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --font-serif: "Spectral", Georgia, serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --shell: min(1280px, calc(100vw - 64px));
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 24px 70px color-mix(in oklch, var(--brand-deep) 12%, transparent);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 520ms;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: var(--font-sans);
}

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

figure,
dl,
dd,
p,
h1,
h2,
h3 {
  margin: 0;
}

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

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

button {
  border: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  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;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--ink-on-color);
  font-weight: 700;
  transition: transform 180ms var(--ease-out);
}

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

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

.display-xl,
.display-l {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.display-xl {
  font-size: clamp(3.4rem, 5.4vw, 5rem);
  line-height: 0.98;
}

.display-l {
  font-size: clamp(2.5rem, 4.2vw, 4.15rem);
  line-height: 1.03;
}

.lede {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.58;
  text-wrap: pretty;
}

.section {
  padding-block: clamp(88px, 10vw, 152px);
}

.section--soft {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(44px, 6vw, 80px);
}

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

.section-heading .lede {
  max-width: 68ch;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(40px, 7vw, 100px);
  max-width: none;
  align-items: end;
}

.section-heading--split .display-l {
  margin-bottom: 0;
}

.section-label {
  margin-bottom: 14px;
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.section-label--light {
  color: var(--brand-bright);
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid color-mix(in oklch, var(--brand) 28%, transparent);
  border-radius: 999px;
  background: var(--brand-pale);
  color: var(--brand-deep);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  text-wrap: balance;
}

.topbar {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid color-mix(in oklch, var(--line) 72%, transparent);
  background: color-mix(in oklch, var(--bg) 90%, transparent);
  backdrop-filter: blur(18px);
}

.topbar__row {
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 44px;
}

.brand-mark__logo {
  width: 120px;
  height: auto;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__nav a,
.topbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.topbar__nav a {
  padding: 8px 12px;
  color: var(--ink-soft);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.topbar__nav a:hover {
  background: var(--surface);
  color: var(--ink);
}

.topbar__cta {
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 6px 20px color-mix(in oklch, var(--ink) 6%, transparent);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.topbar__cta:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100svh - 68px);
  padding-block: clamp(44px, 5vw, 72px) clamp(52px, 7vw, 96px);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  grid-template-areas:
    "intro media"
    "benefits media"
    "conversion media";
  gap: 22px clamp(52px, 7vw, 108px);
  align-items: center;
}

.hero__intro {
  grid-area: intro;
  align-self: end;
}

.hero__title {
  margin-top: 20px;
}

.hero__title em {
  color: var(--brand-deep);
  font-style: italic;
  font-weight: 400;
}

.hero__lede {
  max-width: 58ch;
  margin-top: 24px;
}

.hero__media {
  grid-area: media;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 0 0 1px color-mix(in oklch, var(--brand-deep) 14%, transparent);
}

.hero__media picture {
  display: block;
}

.hero__product-stage {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 44%, color-mix(in oklch, white 70%, transparent), transparent 38%),
    linear-gradient(135deg, #ddf7f6 0%, #bdeceb 58%, #a4dfe1 100%);
}

.hero__product-stage picture {
  position: absolute;
  inset: 28px 8px 0;
}

.hero__product-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
}

.hero__stage-copy {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: grid;
  max-width: 250px;
  gap: 4px;
  color: var(--brand-deep);
}

.hero__stage-copy span,
.hero__wear-copy span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
}

.hero__stage-copy strong {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero__stage-copy small {
  max-width: 34ch;
  color: color-mix(in oklch, var(--brand-deep) 76%, transparent);
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero__stage-badge {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--brand-deep) 90%, transparent);
  color: var(--ink-on-color);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.hero__wear-strip {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 150px;
  background: var(--brand-deep);
  color: var(--ink-on-color);
}

.hero__wear-image {
  height: 100%;
}

.hero__wear-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero__wear-copy {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 22px 24px;
}

.hero__wear-copy span {
  color: var(--brand-bright);
}

.hero__wear-copy strong {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.hero__wear-copy p {
  max-width: 42ch;
  color: color-mix(in oklch, var(--ink-on-color) 74%, transparent);
  font-size: 0.82rem;
  line-height: 1.4;
}

.hero__media figcaption,
.story__media figcaption {
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  background: color-mix(in oklch, var(--surface) 94%, transparent);
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.45;
}

.hero__conversion {
  grid-area: conversion;
  align-self: start;
}

.hero__benefits {
  grid-area: benefits;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.hero-benefit {
  display: grid;
  min-width: 0;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 13px 10px;
}

.hero-benefit + .hero-benefit {
  border-left: 1px solid var(--line);
}

.hero-benefit picture,
.hero-benefit img {
  width: 46px;
  height: 46px;
}

.hero-benefit img {
  border-radius: 9px;
  object-fit: cover;
}

.hero-benefit div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.hero-benefit strong {
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.2;
}

.hero-benefit span {
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.35;
}

.scene-strip {
  padding-block: clamp(72px, 8vw, 112px);
  background: var(--brand-deep);
  color: var(--ink-on-color);
}

.scene-strip__layout {
  display: grid;
  gap: clamp(36px, 5vw, 60px);
}

.scene-strip__copy {
  display: grid;
  max-width: 920px;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 12px clamp(32px, 6vw, 80px);
  align-items: end;
}

.scene-strip__copy .section-label {
  grid-column: 1 / -1;
  color: var(--brand-bright);
}

.scene-strip__copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.scene-strip__copy > p:last-child {
  color: color-mix(in oklch, var(--ink-on-color) 78%, transparent);
}

.scene-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.scene-card {
  align-self: start;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: color-mix(in oklch, var(--brand-deep) 82%, black);
}

.scene-card picture {
  display: block;
}

.scene-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.scene-card figcaption {
  display: grid;
  gap: 3px;
  padding: 14px 16px 16px;
}

.scene-card figcaption strong {
  font-size: 0.96rem;
}

.scene-card figcaption span {
  color: color-mix(in oklch, var(--ink-on-color) 72%, transparent);
  font-size: 0.82rem;
  line-height: 1.4;
}

.scene-card--summary {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.movement-summary {
  display: grid;
  min-height: 0;
  align-content: center;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 82% 18%, color-mix(in oklch, var(--brand-bright) 30%, transparent), transparent 34%),
    color-mix(in oklch, var(--brand-deep) 76%, black);
}

.movement-summary__header {
  display: grid;
  gap: 2px;
  padding-bottom: 8px;
  border-bottom: 1px solid color-mix(in oklch, var(--ink-on-color) 20%, transparent);
}

.movement-summary__header span {
  color: var(--brand-bright);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.movement-summary__header strong {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.movement-summary__row {
  display: grid;
  gap: 7px;
}

.movement-summary__row span {
  color: color-mix(in oklch, var(--ink-on-color) 78%, transparent);
  font-size: 0.78rem;
}

.movement-summary__row i {
  display: block;
  width: var(--pattern-width);
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-bright), color-mix(in oklch, var(--brand-bright) 38%, transparent));
}

.movement-summary > p {
  color: color-mix(in oklch, var(--ink-on-color) 62%, transparent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.hero__form,
.notify__form {
  display: flex;
  gap: 10px;
}

.survey-step {
  width: 100%;
}

.survey-step[data-survey-step="email"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.survey-step[data-survey-step="email"] .form-error,
.survey-step[data-survey-step="email"] .form-note {
  grid-column: 1 / -1;
}

.survey-panel {
  display: grid;
  gap: 22px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  text-align: left;
}

.notify .survey-panel {
  border-color: color-mix(in oklch, var(--ink-on-color) 24%, transparent);
  background: color-mix(in oklch, var(--brand-deep) 78%, black);
}

.survey-panel__heading {
  display: grid;
  gap: 5px;
}

.survey-panel__step {
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
}

.notify .survey-panel__step {
  color: var(--brand-bright);
}

.survey-panel h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 500;
  line-height: 1.12;
}

.survey-panel__heading p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.notify .survey-panel__heading p {
  color: color-mix(in oklch, var(--ink-on-color) 72%, transparent);
}

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

.survey-question {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 0;
  border: 0;
}

.survey-question legend,
.survey-question--country {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.notify .survey-question legend,
.notify .survey-question--country {
  color: var(--ink-on-color);
}

.survey-question label,
.survey-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.38;
}

.notify .survey-question label,
.notify .survey-consent {
  color: color-mix(in oklch, var(--ink-on-color) 78%, transparent);
}

.survey-question input[type="radio"],
.survey-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--brand);
}

.notify .survey-question input[type="radio"],
.notify .survey-consent input[type="checkbox"] {
  accent-color: var(--brand-bright);
}

.survey-question--country {
  gap: 8px;
}

.survey-text {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.9rem;
}

.notify .survey-text {
  border-color: color-mix(in oklch, var(--ink-on-color) 32%, transparent);
  background: color-mix(in oklch, var(--brand-deep) 70%, black);
  color: var(--ink-on-color);
}

.survey-text:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--brand) 14%, transparent);
}

.survey-consent {
  align-items: flex-start;
}

.survey-error {
  min-height: 0;
  color: oklch(0.48 0.14 47);
  font-size: 0.82rem;
}

.notify .survey-error {
  color: oklch(0.87 0.13 76);
}

.survey-error:empty {
  display: none;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.survey-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.btn--quiet {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
}

.btn--quiet:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

.notify .btn--quiet {
  border-color: color-mix(in oklch, var(--ink-on-color) 34%, transparent);
  color: var(--ink-on-color);
}

.hero__input,
.notify__input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: 1rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hero__input::placeholder {
  color: var(--ink-mute);
}

.hero__input:focus,
.notify__input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--brand) 14%, transparent);
}

.hero__input[aria-invalid="true"],
.notify__input[aria-invalid="true"] {
  border-color: var(--accent);
}

.btn {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--brand-deep);
  color: var(--ink-on-color);
  box-shadow: 0 10px 24px color-mix(in oklch, var(--brand-deep) 24%, transparent);
}

.btn--primary:hover {
  background: var(--brand);
}

.btn--light {
  background: var(--surface);
  color: var(--brand-deep);
}

.btn--light:hover {
  background: var(--brand-pale);
}

.form-note,
.form-error {
  margin-top: 10px;
  font-size: 0.79rem;
  line-height: 1.5;
}

.form-note {
  color: var(--ink-mute);
}

.form-error {
  color: oklch(0.48 0.14 47);
}

.form-error:empty {
  display: none;
}

.form-status {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 12px 15px;
  border: 1px solid color-mix(in oklch, var(--brand) 30%, transparent);
  border-radius: var(--radius-sm);
  background: var(--brand-pale);
  color: var(--brand-deep);
  font-weight: 600;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

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

.concept__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.comparison {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.compare-table-wrap {
  overflow-x: auto;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare-table th,
.compare-table td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  color: var(--brand-deep);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.compare-table tbody th {
  width: 25%;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.2;
}

.compare-table td {
  width: 37.5%;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison__note {
  margin-top: 14px;
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.5;
}

.decision-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}

.decision-point__index {
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
}

.decision-point h3 {
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.15;
  text-wrap: balance;
}

.decision-point p {
  max-width: 58ch;
  color: var(--ink-soft);
}

.feature-sequence {
  display: grid;
  gap: clamp(30px, 5vw, 64px);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 18px 50px color-mix(in oklch, var(--ink) 5%, transparent);
}

.feature-row--reverse .feature-row__media {
  order: 2;
}

.feature-row__media {
  min-height: 460px;
  background: var(--bg-soft);
}

.feature-row__media picture {
  display: block;
  height: 100%;
}

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

.feature-row__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 82px);
}

.feature-row__tag {
  margin-bottom: 18px;
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
}

.feature-row__body h3 {
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.03;
  text-wrap: balance;
}

.feature-row__body > p:not(.target-note) {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.target-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.55;
}

.companion {
  background: var(--surface);
}

.companion__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
}

.companion__visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-soft);
}

.companion__visual picture {
  display: block;
}

.companion__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.companion__visual figcaption {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.5;
}

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

.companion-point {
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.companion-point > strong {
  display: block;
  margin-bottom: 9px;
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
}

.companion-point h3 {
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.16;
  text-wrap: balance;
}

.companion-point p {
  color: var(--ink-soft);
}

.companion__points > .target-note {
  margin-top: 24px;
}

.validation {
  background:
    radial-gradient(circle at 12% 12%, color-mix(in oklch, var(--brand) 44%, transparent), transparent 36%),
    var(--brand-deep);
  color: var(--ink-on-color);
}

.validation__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(60px, 9vw, 132px);
}

.validation__intro {
  position: sticky;
  top: 112px;
  align-self: start;
}

.validation__intro .display-l {
  margin-bottom: 26px;
}

.validation__intro > p:last-child {
  color: color-mix(in oklch, var(--ink-on-color) 78%, transparent);
  font-size: 1.06rem;
}

.validation__list {
  border-top: 1px solid color-mix(in oklch, var(--ink-on-color) 24%, transparent);
}

.validation-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 26px;
  padding-block: 27px;
  border-bottom: 1px solid color-mix(in oklch, var(--ink-on-color) 24%, transparent);
}

.validation-item > span {
  color: var(--brand-bright);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.validation-item h3 {
  margin-bottom: 7px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
}

.validation-item p {
  color: color-mix(in oklch, var(--ink-on-color) 72%, transparent);
}

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

.color-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.color-panel--dark {
  background: var(--brand-deep);
  color: var(--ink-on-color);
}

.color-panel picture {
  display: block;
}

.color-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.color-panel__caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
}

.color-panel__caption h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
}

.color-panel__caption p {
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-align: right;
}

.color-panel--dark .color-panel__caption p {
  color: color-mix(in oklch, var(--ink-on-color) 72%, transparent);
}

.specs {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(52px, 9vw, 128px);
}

.specs__heading {
  align-self: start;
}

.specs__heading .display-l {
  margin-bottom: 22px;
}

.specs__heading > p:last-child {
  color: var(--ink-soft);
  max-width: 48ch;
}

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

.specs__row {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 0.58fr);
  gap: 26px;
  padding-block: 21px;
  border-bottom: 1px solid var(--line);
}

.specs__row dt {
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.specs__row dd {
  color: var(--ink);
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  gap: clamp(54px, 9vw, 128px);
  align-items: center;
}

.story__body .display-l {
  margin-bottom: 26px;
}

.story__body > p:not(.section-label):not(.story__signature) {
  max-width: 62ch;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.story__signature {
  margin-top: 30px;
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.story__media {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.story__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(52px, 9vw, 128px);
}

.faq__heading {
  align-self: start;
}

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

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__btn {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 600;
  text-align: left;
}

.faq__btn:hover {
  color: var(--brand-deep);
}

.faq__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq__icon::before,
.faq__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease-out);
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__btn[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__panel {
  max-height: none;
}

.js .faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 360ms var(--ease-out);
}

.js .faq__panel[data-open="true"] {
  grid-template-rows: 1fr;
}

.js .faq__panel-inner {
  min-height: 0;
  overflow: hidden;
}

.faq__panel-inner {
  max-width: 68ch;
  padding: 0 42px 26px 0;
  color: var(--ink-soft);
}

.notify {
  padding-block: clamp(76px, 9vw, 126px);
  background: var(--brand-deep);
  color: var(--ink-on-color);
}

.notify__inner {
  max-width: 860px;
  text-align: center;
}

.notify__inner .display-l {
  margin-bottom: 22px;
}

.notify__lede {
  max-width: 66ch;
  margin-inline: auto;
  color: color-mix(in oklch, var(--ink-on-color) 78%, transparent);
  font-size: 1.08rem;
}

.notify__form {
  max-width: 690px;
  margin: 30px auto 0;
}

.notify__input {
  border-color: color-mix(in oklch, var(--ink-on-color) 34%, transparent);
  background: color-mix(in oklch, var(--brand-deep) 76%, black);
  color: var(--ink-on-color);
}

.notify__input::placeholder {
  color: color-mix(in oklch, var(--ink-on-color) 66%, transparent);
}

.form-note--light {
  color: color-mix(in oklch, var(--ink-on-color) 68%, transparent);
}

.form-error--light {
  color: oklch(0.87 0.13 76);
}

.notify .form-status {
  max-width: 690px;
  margin-inline: auto;
  justify-content: center;
  border-color: color-mix(in oklch, var(--brand-bright) 38%, transparent);
  background: color-mix(in oklch, var(--brand) 42%, transparent);
  color: var(--ink-on-color);
}

.footer {
  padding-block: 48px 22px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
}

.footer__logo {
  width: 140px;
  height: auto;
  margin-bottom: 12px;
}

.footer__row p {
  color: var(--ink-mute);
  font-size: 0.88rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.footer__links a {
  min-height: 44px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer__links a:hover {
  color: var(--brand);
}

.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.js .reveal[data-reveal="out"] {
  opacity: 0;
  transform: translateY(22px);
}

.js .reveal[data-reveal="in"] {
  opacity: 1;
  transform: none;
  transition:
    opacity var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out);
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 1080px);
  }

  .topbar__nav a {
    padding-inline: 8px;
    font-size: 0.8rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
    gap: 28px 44px;
  }

  .hero__form {
    flex-direction: column;
  }

  .hero__form .btn {
    width: 100%;
  }

  .hero-benefit {
    grid-template-columns: 40px minmax(0, 1fr);
    padding-inline: 8px;
  }

  .hero-benefit picture,
  .hero-benefit img {
    width: 40px;
    height: 40px;
  }

  .hero-benefit span {
    display: none;
  }

  .companion__layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 38px;
  }

  .feature-row__media {
    min-height: 410px;
  }
}

@media (max-width: 899px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .topbar__nav {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-block: 24px 56px;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero__intro,
  .hero__media,
  .hero__benefits,
  .hero__conversion {
    width: 100%;
  }

  .hero__title {
    max-width: 14ch;
  }

  .hero__lede {
    max-width: 62ch;
  }

  .hero__media {
    margin-top: 28px;
  }

  .hero__product-stage {
    min-height: 310px;
  }

  .hero__product-stage picture {
    inset: 18px 10% 0;
  }

  .hero__wear-strip {
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 120px;
  }

  .hero__wear-copy {
    padding: 16px 20px;
  }

  .hero__wear-copy strong {
    font-size: 1.3rem;
  }

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

  .hero-benefit:nth-child(3) {
    border-left: 0;
  }

  .hero-benefit:nth-child(3),
  .hero-benefit:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .hero__conversion {
    margin-top: 16px;
  }

  .hero__form {
    flex-direction: row;
  }

  .hero__form .btn {
    width: auto;
  }

  .scene-strip__layout {
    gap: 34px;
  }

  .scene-strip__copy {
    display: block;
    max-width: 62ch;
  }

  .scene-strip__copy > p:last-child {
    margin-top: 16px;
  }

  .section-heading--split,
  .concept__grid,
  .companion__layout,
  .validation__grid,
  .specs,
  .story__grid,
  .faq {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 22px;
  }

  .concept__grid {
    gap: 38px;
  }

  .feature-row,
  .feature-row--reverse {
    grid-template-columns: 1fr;
  }

  .feature-row--reverse .feature-row__media {
    order: 0;
  }

  .feature-row__media {
    min-height: 0;
  }

  .feature-row__media img {
    aspect-ratio: 16 / 10;
  }

  .companion__layout {
    gap: 34px;
  }

  .companion__visual {
    max-width: 760px;
  }

  .validation__intro {
    position: static;
  }

  .validation__grid {
    gap: 52px;
  }

  .specs,
  .story__grid,
  .faq {
    gap: 46px;
  }

  .story__media {
    max-width: 680px;
  }
}

@media (min-width: 641px) and (max-width: 799px) {
  .hero {
    padding-block: 22px 52px;
  }

  .hero__media {
    margin-top: 20px;
  }

  .hero__product-stage {
    min-height: 250px;
  }

  .hero__wear-strip {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-md: 14px;
    --radius-lg: 18px;
  }

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

  body {
    line-height: 1.56;
  }

  .topbar__row {
    height: 56px;
  }

  .brand-mark__logo {
    width: 104px;
  }

  .topbar__cta {
    min-height: 42px;
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  .display-xl {
    font-size: clamp(2.35rem, 10.2vw, 3.15rem);
  }

  .display-l {
    font-size: clamp(2.15rem, 9.8vw, 3rem);
  }

  .lede {
    font-size: 1rem;
    line-height: 1.48;
  }

  .section {
    padding-block: 76px;
  }

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

  .section-label {
    margin-bottom: 10px;
  }

  .status-pill {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .hero {
    padding-block: 18px 48px;
  }

  .hero__title {
    margin-top: 14px;
    font-size: clamp(2.3rem, 10.5vw, 2.75rem);
    line-height: 0.98;
  }

  .hero__lede {
    margin-top: 15px;
  }

  .hero__media {
    margin-top: 18px;
  }

  .hero__product-stage {
    min-height: 174px;
  }

  .hero__product-stage picture {
    inset: 20px 0 0;
  }

  .hero__product-stage img {
    object-fit: cover;
    object-position: center 40%;
  }

  .hero__media figcaption {
    display: none;
  }

  .hero__stage-copy {
    top: 12px;
    left: 14px;
    max-width: 155px;
    gap: 2px;
  }

  .hero__stage-copy span,
  .hero__stage-badge,
  .hero__wear-copy span {
    font-size: 0.75rem;
  }

  .hero__stage-copy strong {
    max-width: 12ch;
    font-size: 1rem;
    line-height: 1;
  }

  .hero__stage-copy small {
    display: none;
  }

  .hero__stage-badge {
    top: 10px;
    right: 10px;
    padding: 4px 7px;
  }

  .hero__wear-strip {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 82px;
  }

  .hero__wear-copy {
    gap: 2px;
    padding: 9px 12px;
  }

  .hero__wear-copy strong {
    font-size: 1.02rem;
  }

  .hero__wear-copy p {
    display: none;
  }

  .hero__benefits {
    margin-top: 12px;
  }

  .hero-benefit {
    display: block;
    padding: 10px 6px;
    text-align: center;
  }

  .hero-benefit picture,
  .hero-benefit img {
    width: 42px;
    height: 42px;
    margin-inline: auto;
  }

  .hero-benefit strong {
    display: block;
    margin-top: 6px;
    font-size: 0.76rem;
  }

  .companion__visual {
    max-width: 520px;
    margin-inline: auto;
  }

  .companion__visual figcaption {
    padding: 12px 14px;
    font-size: 0.7rem;
  }

  .companion-point {
    padding-block: 20px;
  }

  .companion-point h3 {
    font-size: 1.42rem;
  }

  .hero__conversion {
    margin-top: 12px;
  }

  .hero__form,
  .notify__form {
    flex-direction: column;
    gap: 8px;
  }

  .survey-step[data-survey-step="email"] {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero__form .btn,
  .notify__form .btn {
    width: 100%;
  }

  .hero__input,
  .notify__input,
  .btn {
    min-height: 48px;
  }

  .form-note,
  .form-error {
    margin-top: 7px;
    font-size: 0.75rem;
  }

  .comparison {
    padding-block: 64px;
  }

  .compare-table-wrap {
    overflow: visible;
  }

  .compare-table {
    min-width: 0;
  }

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

  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
  }

  .compare-table tr {
    padding: 18px 16px;
    border-bottom: 1px solid var(--line);
  }

  .compare-table tbody tr:last-child {
    border-bottom: 0;
  }

  .compare-table th,
  .compare-table td {
    width: auto;
    padding: 0;
    border: 0;
  }

  .compare-table tbody th {
    margin-bottom: 8px;
    font-size: 1.08rem;
  }

  .compare-table td {
    margin-top: 7px;
    font-size: 0.88rem;
  }

  .compare-table td::before {
    display: block;
    margin-bottom: 2px;
    color: var(--brand-deep);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .compare-table td:nth-child(2)::before {
    content: "Common friction";
  }

  .compare-table td:nth-child(3)::before {
    content: "Vivolight direction";
  }

  .survey-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .survey-panel {
    gap: 18px;
    padding: 18px;
  }

  .survey-panel__actions {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .survey-panel__actions .btn {
    width: 100%;
  }

  .scene-strip {
    padding-block: 62px;
  }

  .scene-strip__copy > p:last-child {
    margin-top: 16px;
  }

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

  .scene-card {
    border-radius: 12px;
  }

  .scene-card img,
  .movement-summary {
    aspect-ratio: 16 / 9;
  }

  .movement-summary {
    min-height: 300px;
    aspect-ratio: auto;
    gap: 12px;
    padding: 22px;
  }

  .scene-card figcaption {
    padding: 11px 11px 12px;
  }

  .scene-card figcaption span {
    display: none;
  }

  .scene-card figcaption strong {
    font-size: 0.82rem;
  }

  .decision-point {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding-block: 22px;
  }

  .decision-point h3 {
    font-size: 1.3rem;
  }

  .feature-sequence {
    gap: 22px;
  }

  .feature-row__media img {
    aspect-ratio: 4 / 3;
  }

  .feature-row__body {
    padding: 28px 24px 30px;
  }

  .feature-row__tag {
    margin-bottom: 12px;
  }

  .feature-row__body h3 {
    margin-bottom: 13px;
    font-size: 2rem;
  }

  .target-note {
    margin-top: 16px;
    padding-top: 14px;
  }

  .validation-item {
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding-block: 22px;
  }

  .validation-item h3 {
    font-size: 1.28rem;
  }

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

  .color-panel__caption {
    display: block;
    padding: 18px;
  }

  .color-panel__caption h3 {
    font-size: 1.75rem;
  }

  .color-panel__caption p {
    margin-top: 4px;
    text-align: left;
  }

  .specs__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-block: 17px;
  }

  .story__body > p:not(.section-label):not(.story__signature) {
    font-size: 1rem;
  }

  .faq__btn {
    min-height: 66px;
    gap: 18px;
    padding-block: 18px;
    font-size: 0.96rem;
  }

  .faq__panel-inner {
    padding: 0 28px 22px 0;
    font-size: 0.93rem;
  }

  .notify {
    padding-block: 72px;
  }

  .notify__lede {
    font-size: 1rem;
  }

  .footer__row,
  .footer__base {
    display: block;
  }

  .footer__links {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .footer__base span {
    display: block;
  }

  .footer__base span + span {
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .hero__lede {
    display: none;
  }
}

@media (max-width: 360px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .topbar__row {
    height: 50px;
  }

  .brand-mark__logo {
    width: 96px;
  }

  .topbar__cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.75rem;
  }

  .hero {
    padding-block: 12px 38px;
  }

  .status-pill {
    min-height: 30px;
    padding: 5px 8px;
    font-size: 0.75rem;
  }

  .hero__title {
    margin-top: 9px;
    font-size: clamp(1.9rem, 10vw, 2.2rem);
  }

  .hero__lede {
    display: none;
  }

  .hero__media {
    margin-top: 6px;
  }

  .hero__product-stage {
    min-height: 112px;
  }

  .hero__product-stage picture {
    inset: 12px 0 0;
  }

  .hero__stage-copy span,
  .hero__stage-badge {
    display: none;
  }

  .hero__stage-copy {
    top: 10px;
    left: 10px;
    max-width: 130px;
  }

  .hero__stage-copy strong {
    font-size: 0.9rem;
  }

  .hero__wear-strip {
    display: none;
  }

  .hero__wear-copy {
    padding: 7px 9px;
  }

  .hero__wear-copy span {
    display: none;
  }

  .hero__wear-copy strong {
    font-size: 0.84rem;
  }

  .hero__benefits {
    margin-top: 6px;
  }

  .hero-benefit {
    padding-block: 5px;
  }

  .hero-benefit picture,
  .hero-benefit img {
    width: 30px;
    height: 30px;
  }

  .hero-benefit strong {
    margin-top: 3px;
    font-size: 0.75rem;
    line-height: 1.15;
  }

  .hero__conversion {
    margin-top: 6px;
  }

  .hero__input,
  .btn {
    min-height: 44px;
  }

  .hero__input {
    padding-block: 10px;
    font-size: 0.9rem;
  }

  .btn {
    padding-block: 10px;
    font-size: 0.84rem;
  }

  .form-note {
    line-height: 1.35;
  }
}

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

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

  .js .reveal[data-reveal="out"] {
    opacity: 1;
    transform: none;
  }
}
