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

:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --charcoal: #151515;
  --white: #f4f2eb;
  --muted: #aaa8a1;
  --paper: #ece9e1;
  --paper-muted: #625f58;
  --yellow: #f4d600;
  --yellow-strong: #ffdf00;
  --focus: #fff3a0;
  --font: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1430px, calc(100vw - 80px));
  --header-height: 88px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--black);
  scrollbar-color: var(--yellow) var(--black);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--white);
  background: var(--black);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--black);
  background: var(--yellow);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  border: 2px solid var(--black);
  background: var(--yellow);
}

img,
svg {
  display: block;
}

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

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

button {
  cursor: pointer;
}

h1,
p,
figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
summary {
  text-wrap: balance;
}

p,
li,
dd {
  text-wrap: pretty;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms var(--ease);
}

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 240ms var(--ease), box-shadow 240ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.985);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  height: calc(100% - 24px);
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 15px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-inline: clamp(10px, 1vw, 16px);
  color: rgba(244, 242, 235, 0.9);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:not(.site-nav__cta) {
  min-height: 100%;
}

.site-nav a:not(.site-nav__cta)::after {
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease);
}

.site-nav a:not(.site-nav__cta):hover,
.site-nav a:not(.site-nav__cta)[aria-current="location"] {
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.045);
}

.site-nav a:not(.site-nav__cta):hover::after,
.site-nav a:not(.site-nav__cta)[aria-current="location"]::after {
  transform: scaleX(1);
}

.site-nav__cta {
  min-height: 46px;
  height: auto;
  margin-left: 10px;
  padding: 0 22px;
  color: var(--black) !important;
  background: var(--yellow);
  font-weight: 650;
}

.site-nav__cta:hover {
  background: var(--yellow-strong);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: var(--white);
  background: transparent;
}

.menu-toggle svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.34) 0%, rgba(5, 5, 5, 0.08) 54%, rgba(5, 5, 5, 0) 76%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.62) 31%, rgba(5, 5, 5, 0.03) 57%, rgba(5, 5, 5, 0.12) 100%);
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding-top: clamp(48px, 6vh, 72px);
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(46px, 3.6vw, 56px);
  font-weight: 430;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.hero__lead {
  margin-top: 22px;
  color: var(--yellow);
  font-size: clamp(19px, 1.55vw, 24px);
}

.hero__audience {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 260ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--black);
  background: var(--yellow);
}

.button--primary:hover {
  background: var(--yellow-strong);
}

.button--secondary {
  color: var(--white);
  border-color: rgba(244, 242, 235, 0.66);
  background: rgba(5, 5, 5, 0.34);
}

.button--secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.hero__picture {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  height: 100%;
  overflow: hidden;
}

.hero__picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform-origin: 50% 100%;
}

.hero__families {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 24px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  pointer-events: none;
}

.hero__families a {
  justify-self: center;
  padding: 8px 14px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.52);
  text-decoration: none;
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 600;
  pointer-events: auto;
}

.hero__families a::after {
  display: block;
  width: 36px;
  height: 2px;
  margin: 8px auto 0;
  background: var(--yellow);
  content: "";
  transform: scaleX(0.45);
  transition: transform 240ms var(--ease);
}

.hero__families a:hover::after {
  transform: scaleX(1);
}

.section {
  padding-block: clamp(96px, 9vw, 144px);
}

.section-heading h2,
.contact__copy h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(40px, 3.8vw, 60px);
  font-weight: 440;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-heading > p {
  max-width: 66ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: clamp(52px, 8vw, 128px);
  align-items: end;
}

.section-heading--split > p {
  margin: 0;
}

.proof-strip {
  color: var(--white);
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.proof-strip p {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 4px;
  margin: 0;
  padding: 24px clamp(20px, 3vw, 46px);
}

.proof-strip p:first-child {
  padding-left: 0;
}

.proof-strip p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-strip strong {
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 620;
}

.proof-strip span {
  color: var(--muted);
  font-size: 14px;
}

.origin {
  background: var(--black);
}

.origin__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.14fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
}

.origin__heading > p {
  max-width: 72ch;
  margin: 0;
}

.origin__image {
  margin: clamp(54px, 6vw, 92px) 0 0;
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 3.42 / 1;
}

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

.origin__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(46px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.origin__facts article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 30px clamp(22px, 3vw, 42px) 0;
}

.origin__facts article:first-child {
  padding-left: 0;
}

.origin__facts article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.origin__facts h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 620;
}

.origin__facts p {
  max-width: 38ch;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.technical-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: var(--yellow);
}

.catalog {
  color: #121212;
  background: #f2f1ec;
}

.catalog .section-heading > p {
  color: #5d5c57;
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(60px, 7vw, 104px);
}

.family {
  min-width: 0;
}

.family__media {
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 1;
}

.family__media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.family__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.family:hover .family__media img {
  transform: scale(1.025);
}

.family__body {
  padding-top: 28px;
}

.family__body h3 {
  margin: 0;
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 560;
  letter-spacing: -0.025em;
}

.family__body > p {
  min-height: 5.3em;
  margin: 16px 0 0;
  color: #4d4c47;
  line-height: 1.65;
}

.family dl {
  margin: 30px 0 0;
}

.family dl > div {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(18, 18, 18, 0.2);
}

.family dt,
.family dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.family dt {
  color: #706f69;
}

.family dd {
  font-weight: 570;
}

.catalog__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(54px, 6vw, 88px);
}

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

.button--ink:hover {
  color: var(--black);
  background: var(--yellow);
}

.formats {
  padding-bottom: 0;
  background: var(--black-soft);
}

.formats__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(64px, 10vw, 160px);
  align-items: start;
}

.formats__heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.formats__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.formats__list li {
  display: grid;
  grid-template-columns: 56px minmax(190px, 0.72fr) 1fr;
  gap: 22px 30px;
  align-items: center;
  padding: 25px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.formats__list strong {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 540;
  letter-spacing: -0.02em;
}

.formats__list .technical-icon {
  width: 44px;
  height: 44px;
}

.formats__list span {
  color: var(--muted);
  line-height: 1.6;
}

.formats__support {
  grid-column: 2;
  margin: -88px 0 0;
  padding: 26px 0 0;
  color: #d7d5ce;
  border-top: 3px solid var(--yellow);
  line-height: 1.7;
}

.audience-band {
  margin-top: clamp(88px, 9vw, 140px);
  color: var(--black);
  background: var(--yellow);
}

.audience-band__track {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.audience-band__track span + span::before {
  margin-right: clamp(16px, 2vw, 30px);
  content: "·";
}

.terms {
  color: #121212;
  background: #f6f5f0;
}

.terms__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(64px, 10vw, 160px);
  align-items: start;
}

.terms .section-heading > p {
  color: #5d5c57;
}

.terms__heading h2 {
  font-size: clamp(36px, 3.2vw, 50px);
}

.terms__list {
  margin: 0;
  border-top: 1px solid rgba(18, 18, 18, 0.22);
}

.terms__list > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) 1fr;
  gap: 36px;
  padding: 23px 0 25px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.22);
}

.terms__list dt,
.terms__list dd {
  margin: 0;
}

.terms__list dt {
  color: #6b6963;
  font-size: 14px;
}

.terms__list dd {
  display: grid;
  gap: 5px;
}

.terms__list strong {
  font-size: clamp(20px, 1.75vw, 27px);
  font-weight: 560;
  letter-spacing: -0.02em;
}

.terms__list span {
  color: #5d5c57;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: var(--yellow);
  font-weight: 650;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
}

.text-link--dark {
  grid-column: 2;
  color: #141414;
  text-decoration-color: var(--yellow);
}

.partnership {
  background: var(--black);
}

.partnership__image {
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 5.6 / 1;
}

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

.partnership__layout,
.faq__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(64px, 10vw, 160px);
  align-items: start;
}

.accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.accordion details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.accordion summary {
  position: relative;
  padding: 26px 52px 26px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 560;
}

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

.accordion summary::before,
.accordion summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 20px;
  height: 1px;
  background: var(--yellow);
  content: "";
  transition: transform 240ms var(--ease);
}

.accordion summary::after {
  transform: rotate(90deg);
}

.accordion details[open] summary::after {
  transform: rotate(0deg);
}

.accordion details p {
  max-width: 66ch;
  margin: -4px 52px 28px 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq {
  background: #101010;
}

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

.contact__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.contact__copy {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.contact__copy > p {
  max-width: 56ch;
  margin: 30px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--paper-muted);
}

.contact__copy h2 {
  font-size: clamp(36px, 3vw, 48px);
}

.contact__direct {
  margin-top: 54px;
  border-top: 1px solid rgba(5, 5, 5, 0.34);
}

.contact__direct a {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.34);
  color: var(--black);
  text-decoration: none;
}

.contact__direct small {
  font-size: 13px;
}

.contact__direct strong {
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.lead-form {
  padding: clamp(30px, 4.2vw, 64px);
  border-top: 4px solid var(--yellow);
  color: var(--white);
  background: #0b0b0a;
}

.lead-form__heading {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.lead-form__heading h3 {
  margin: 0;
  font-size: clamp(25px, 1.9vw, 31px);
  font-weight: 540;
  letter-spacing: -0.02em;
}

.form-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 0;
  padding: 0 2px;
  list-style: none;
}

.form-progress[hidden] {
  display: none;
}

.form-progress li {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 9px;
  padding: 0;
  text-align: center;
  color: #85837d;
  font-size: 13px;
}

.form-progress li::after {
  position: absolute;
  z-index: 0;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  content: "";
  transition: background-color 220ms ease;
}

.form-progress li:last-child::after {
  display: none;
}

.form-progress li span {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #aaa8a1;
  background: #0b0b0a;
  font-variant-numeric: tabular-nums;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.form-progress li strong {
  font-weight: 620;
}

.form-progress li[aria-current="step"] {
  color: var(--white);
}

.form-progress li[aria-current="step"] span {
  border-color: var(--yellow);
  color: var(--black);
  background: var(--yellow);
}

.form-progress li[data-state="complete"] {
  color: #d1cfc7;
}

.form-progress li[data-state="complete"] span {
  border-color: var(--yellow);
  color: var(--yellow);
}

.form-progress li[data-state="complete"]::after {
  background: var(--yellow);
}

.form-step {
  padding-top: 32px;
}

.form-step + .form-step {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.lead-form.is-multistep .form-step + .form-step {
  margin-top: 0;
  border-top: 0;
}

.form-step[hidden] {
  display: none;
}

.form-step__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.form-step__heading h4 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 540;
  letter-spacing: -0.02em;
}

.form-step .form-grid {
  margin-top: 28px;
}

.lead-form:not(.is-multistep) [data-form-next],
.lead-form:not(.is-multistep) [data-form-back] {
  display: none;
}

.form-nav {
  display: grid;
  grid-template-columns: minmax(112px, 0.44fr) minmax(190px, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.form-nav--end {
  grid-template-columns: minmax(190px, 280px);
  justify-content: end;
}

.form-nav__back {
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 2px;
  color: var(--white);
  background: transparent;
  font-weight: 650;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.form-nav__back:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button--step,
.button--submit {
  width: 100%;
  margin: 0;
  color: var(--black);
  background: var(--yellow);
}

.button--step:hover,
.button--submit:hover {
  background: var(--yellow-strong);
}

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

.field {
  min-width: 0;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label,
.interest-fieldset legend {
  display: block;
  margin-bottom: 8px;
  color: #f4f2eb;
  font-size: 14px;
  font-weight: 620;
}

.field input,
.field select {
  width: 100%;
  min-height: 56px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 2px;
  color: var(--white);
  background: #151513;
  font: inherit;
  caret-color: var(--yellow);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field select {
  color-scheme: dark;
}

.field input:focus,
.field select:focus {
  border-color: var(--yellow);
  background: #191916;
  box-shadow: 0 0 0 1px var(--yellow);
}

.field input::placeholder {
  color: #96948d;
  opacity: 1;
}

.field-error {
  min-height: 1.35em;
  display: block;
  margin-top: 7px;
  color: #ffb5b5;
  font-size: 12px;
}

[aria-invalid="true"] {
  border-color: #ff6b6b !important;
}

.interest-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.interest-fieldset legend {
  grid-column: 1 / -1;
  width: 100%;
}

.interest-fieldset label {
  position: relative;
  cursor: pointer;
}

.interest-fieldset input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.interest-fieldset label span {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 2px;
  color: #d5d3cc;
  background: #151513;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.interest-fieldset input:checked + span {
  color: var(--black);
  border-color: var(--yellow);
  background: var(--yellow);
}

.interest-fieldset input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.interest-fieldset .field-error {
  grid-column: 1 / -1;
  width: 100%;
}

.honeypot {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 28px;
  color: #bbb9b2;
  font-size: 13px;
  line-height: 1.6;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--yellow);
}

.consent a {
  color: var(--white);
}

.button--submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-status {
  min-height: 1.6em;
  margin-top: 16px;
  color: #d5d3cc;
  font-size: 14px;
  line-height: 1.55;
}

.form-status[data-state="error"] {
  color: #ffb5b5;
}

.form-status[data-state="success"] {
  color: #c6efc9;
}

.form-status a {
  color: var(--yellow);
  font-weight: 650;
}

.lead-form[aria-busy="true"] {
  cursor: progress;
}

.reveal {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0);
}

.reveal-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(5px);
}

.reveal-ready .reveal--media:not(.is-visible) {
  transform: translateY(18px);
  clip-path: inset(0 0 9% 0);
}

.reveal-ready .reveal.is-visible {
  transition:
    opacity 620ms var(--ease),
    transform 760ms var(--ease),
    filter 680ms var(--ease),
    clip-path 820ms var(--ease);
}

.origin__facts .reveal:nth-child(2),
.catalog__grid .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.origin__facts .reveal:nth-child(3),
.catalog__grid .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.site-footer {
  color: var(--white);
  background: var(--black);
}

.site-footer__top {
  min-height: 214px;
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  gap: 56px;
  align-items: center;
}

.brand--footer {
  width: min(310px, 100%);
  height: auto;
}

.brand--footer img {
  width: 100%;
  height: auto;
}

.site-footer__top p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
}

.site-footer__contact {
  display: grid;
  gap: 8px;
  text-align: right;
}

.site-footer__contact a,
.site-footer__bottom a {
  color: inherit;
}

.site-footer__bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
  font-size: 13px;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.mobile-conversion {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero.is-ready .hero__picture {
    animation: hero-product-reveal 900ms var(--ease) both;
  }

  .lead-form.is-multistep .form-step:not([hidden]) {
    animation: form-step-in 420ms var(--ease) both;
  }

  @keyframes hero-product-reveal {
    from {
      opacity: 0.72;
      transform: scale(1.012);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  @keyframes form-step-in {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }
}

@media (max-width: 1180px) {
  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero__copy {
    padding-bottom: 0;
  }

  .hero__picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
  }

  .hero__picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero__families {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    width: 100%;
    min-height: 0;
    margin-top: 0;
    padding-bottom: 0;
    background: none;
  }
}

@media (min-width: 1181px) {
  .hero__picture img {
    transform: translateY(16px);
  }
}

@media (min-width: 1181px) and (min-aspect-ratio: 42 / 25) {
  .hero__picture img {
    transform: translateY(18px) scale(1.46);
  }
}

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

  .site-nav {
    gap: 0;
    font-size: 14px;
  }

  .site-nav a:nth-child(4),
  .site-nav a:nth-child(5) {
    display: none;
  }

  .hero h1 {
    max-width: 720px;
  }

  .catalog__grid {
    gap: 24px;
  }

  .formats__layout,
  .terms__layout,
  .partnership__layout,
  .faq__layout,
  .contact__layout {
    gap: 64px;
  }
}

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

  .section-heading--split,
  .origin__heading,
  .formats__layout,
  .terms__layout,
  .partnership__layout,
  .faq__layout,
  .contact__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .section-heading--split > p,
  .origin__heading > p {
    max-width: 62ch;
  }

  .site-header__inner {
    gap: 16px;
  }

  .site-header .brand {
    max-width: calc(100% - 64px);
  }

  .menu-toggle {
    flex: 0 0 48px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 28px max(20px, calc((100vw - var(--shell)) / 2)) 112px;
    overflow-y: auto;
    visibility: hidden;
    background: var(--black);
    opacity: 0;
    transform: translateY(-16px);
    transition: visibility 0s linear 220ms, opacity 220ms ease, transform 300ms var(--ease);
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }

  .site-nav a:not(.site-nav__cta),
  .site-nav a.site-nav__cta {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 18px;
  }

  .site-nav__cta {
    justify-content: center;
    margin-left: 0;
    margin-top: 24px;
    border: 0 !important;
  }

  .catalog__grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 54px;
    padding-bottom: 0;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .family {
    scroll-snap-align: none;
  }

  .family__body > p {
    min-height: auto;
  }

  .formats__heading,
  .contact__copy {
    position: static;
  }

  .formats__support,
  .text-link--dark {
    grid-column: auto;
    margin-top: 0;
  }

  .audience-band__track {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding-block: 18px;
  }

  .audience-band__track span {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 10px 22px;
  }

  .audience-band__track span:nth-child(even) {
    border-left: 1px solid rgba(5, 5, 5, 0.28);
  }

  .audience-band__track span + span::before {
    display: none;
  }

  .partnership__image {
    aspect-ratio: 3.6 / 1;
  }

  .site-footer__top {
    grid-template-columns: 0.8fr 1fr;
    gap: 28px 48px;
    padding-block: 48px;
  }

  .site-footer__contact {
    grid-column: 2;
    text-align: left;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .family {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
    gap: 30px;
    align-items: start;
  }

  .family__body {
    padding-top: 0;
  }

  .family__body h3 {
    font-size: 32px;
  }

  .family__body > p {
    margin-top: 12px;
  }

  .family dl {
    margin-top: 20px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 36px);
    --header-height: 72px;
  }

  .brand {
    height: calc(100% - 22px);
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding-bottom: 0;
  }

  .hero::after {
    display: block;
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.42) 0%, rgba(5, 5, 5, 0.12) 70%, rgba(5, 5, 5, 0.02) 100%),
      linear-gradient(180deg, var(--black) 0%, rgba(5, 5, 5, 0.96) 34%, rgba(5, 5, 5, 0.62) 48%, rgba(5, 5, 5, 0.03) 64%, rgba(5, 5, 5, 0.16) 100%);
  }

  .hero__copy {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 8.7vw, 38px);
    line-height: 1.04;
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 18px;
  }

  .hero__audience {
    max-width: 30ch;
    margin-top: 8px;
    font-size: 14px;
  }

  .hero__actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 20px;
  }

  .hero__picture {
    position: absolute;
    inset: 0;
    height: 100%;
    display: block;
    overflow: hidden;
  }

  .hero__picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero__families {
    position: absolute;
    bottom: 14px;
    width: 100%;
    padding: 0 18px;
    gap: 6px;
    background: none;
  }

  .hero__families a {
    justify-self: stretch;
    padding-inline: 4px;
    text-align: center;
    font-size: 15px;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading h2,
  .contact__copy h2 {
    font-size: clamp(35px, 9.6vw, 44px);
    line-height: 1.05;
  }

  .terms__heading h2,
  .contact__copy h2 {
    font-size: clamp(32px, 8.5vw, 40px);
  }

  .section-heading > p {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.62;
  }

  .section-heading--split,
  .origin__heading,
  .formats__layout,
  .terms__layout,
  .partnership__layout,
  .faq__layout,
  .contact__layout {
    gap: 36px;
  }

  .proof-strip__inner {
    grid-template-columns: 1fr;
  }

  .proof-strip p,
  .proof-strip p:first-child {
    min-height: 88px;
    padding: 18px 0;
  }

  .proof-strip p + p {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .origin__image {
    margin-top: 42px;
    aspect-ratio: 1.65 / 1;
  }

  .origin__facts {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .origin__facts article,
  .origin__facts article:first-child {
    padding: 24px 0;
  }

  .origin__facts article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .catalog__grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 58px;
    margin-top: 46px;
    padding-bottom: 0;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .family {
    scroll-snap-align: none;
  }

  .family__body {
    padding-top: 22px;
  }

  .family dl {
    margin-top: 24px;
  }

  .family dl > div {
    grid-template-columns: 0.4fr 0.6fr;
    gap: 12px;
  }

  .formats__list li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 6px 16px;
    align-items: start;
    padding: 21px 0 23px;
  }

  .formats__list .technical-icon {
    grid-row: span 2;
    width: 42px;
    height: 42px;
  }

  .formats__list span {
    grid-column: 2;
  }

  .formats__support {
    padding-top: 22px;
  }

  .audience-band {
    margin-top: 72px;
  }

  .audience-band__track {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .audience-band__track span {
    min-height: 52px;
    padding-inline: 0;
  }

  .audience-band__track span + span,
  .audience-band__track span:nth-child(even) {
    border-top: 1px solid rgba(5, 5, 5, 0.25);
    border-left: 0;
  }

  .terms__list > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0 22px;
  }

  .text-link {
    margin-top: 26px;
  }

  .partnership__image {
    aspect-ratio: 2.25 / 1;
  }

  .accordion summary {
    padding-block: 22px;
    font-size: 18px;
  }

  .accordion details p {
    margin-right: 34px;
  }

  .contact__copy > p {
    margin-top: 22px;
    font-size: 17px;
  }

  .contact__direct {
    margin-top: 34px;
  }

  .lead-form {
    padding: 30px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 21px;
    margin-top: 28px;
  }

  .interest-fieldset {
    margin-top: 28px;
  }

  .interest-fieldset label span {
    padding-inline: 12px;
  }

  .form-nav {
    grid-template-columns: minmax(82px, 0.38fr) minmax(0, 1fr);
  }

  .form-nav--end {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer__top {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 58px;
  }

  .site-footer__contact {
    grid-column: auto;
  }

  .site-footer__bottom {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding-block: 24px 94px;
  }

  .mobile-conversion {
    position: fixed;
    z-index: 950;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 70px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 8px max(10px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 -16px 38px rgba(0, 0, 0, 0.28);
    transition: transform 260ms var(--ease), visibility 0s linear 0s;
  }

  .mobile-conversion.is-hidden,
  .menu-open .mobile-conversion {
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 10px));
    transition-delay: 0s, 260ms;
  }

  .mobile-conversion a {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--yellow);
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-conversion__call {
    margin-right: 8px;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: transparent !important;
  }

  .mobile-conversion__call svg {
    width: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }
}

@media (max-width: 390px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .hero__copy {
    padding-top: 26px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.5vw, 34px);
  }

  .hero__picture img {
    width: 97%;
    margin-inline: auto;
  }

  .hero__families {
    padding-inline: 10px;
  }

  .section {
    padding-block: 68px;
  }

  .lead-form {
    padding-inline: 18px;
  }

  .form-step__heading {
    gap: 14px;
  }
}

@media (max-width: 340px) {
  .hero__copy {
    padding-top: 22px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.02;
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.35;
  }

  .hero__audience {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.4;
  }

  .hero__actions {
    gap: 8px;
    margin-top: 16px;
  }

  .hero__actions .button {
    min-height: 50px;
  }
}

@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;
  }

  .reveal-ready .reveal:not(.is-visible),
  .reveal-ready .reveal--media:not(.is-visible) {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: inset(0);
  }
}
