:root {
  --paper: oklch(97.8% 0.012 255);
  --paper-deep: oklch(94.5% 0.02 255);
  --ink: oklch(19% 0.065 258);
  --ink-soft: oklch(39% 0.05 258);
  --navy: oklch(22% 0.1 260);
  --navy-deep: oklch(15% 0.06 260);
  --blue: oklch(61% 0.24 260);
  --blue-bright: oklch(68% 0.23 257);
  --product-surface: #ebf2fa;
  --line: color-mix(in oklch, var(--ink) 15%, transparent);
  --line-light: color-mix(in oklch, var(--paper) 18%, transparent);
  --font-sans: "Manrope", "Avenir Next", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --shell: min(1200px, calc(100vw - 48px));
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  color: var(--paper);
  background: var(--blue);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: color-mix(in oklch, var(--paper) 91%, transparent);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.brand-name {
  display: grid;
  gap: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-name small {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 42px);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav > a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

.site-nav > a:not(.nav-contact):hover::after,
.site-nav > a:not(.nav-contact):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--navy);
  transition: color 220ms ease, background-color 220ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  color: var(--paper);
  background: var(--blue);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  padding: 146px 0 34px;
  background:
    radial-gradient(circle at 78% 38%, color-mix(in oklch, var(--blue) 10%, transparent), transparent 30%),
    var(--paper);
}

.hero-grid,
.portfolio-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  opacity: 0.48;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 68%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
  gap: clamp(48px, 6vw, 104px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding-inline: 9px;
  color: var(--paper);
  background: var(--navy);
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 780px;
  margin-top: 34px;
  font-size: clamp(60px, 7.2vw, 112px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.87;
}

.hero h1 em,
.portfolio-heading h2 em {
  display: inline-block;
  color: var(--blue);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero-intro {
  max-width: 610px;
  margin-top: 38px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  transition: color 220ms ease, background-color 220ms ease, transform 220ms var(--ease-out);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--paper);
  background: var(--blue);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.text-link span,
.contact-action a span,
.button span {
  transition: transform 220ms var(--ease-out);
}

.text-link:hover span,
.text-link:focus-visible span,
.contact-action a:hover span,
.contact-action a:focus-visible span,
.button:hover span,
.button:focus-visible span {
  transform: translate(3px, -3px);
}

.hero-facts {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  padding: 18px 14px 0 0;
}

.hero-facts div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-product {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  color: var(--paper);
  background: #07090d;
  clip-path: polygon(0 0, calc(100% - 46px) 0, 100% 46px, 100% 100%, 0 100%);
  isolation: isolate;
}

.hero-product-head {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid color-mix(in oklch, var(--paper) 32%, transparent);
  background: linear-gradient(to bottom, color-mix(in oklch, #07090d 72%, transparent), transparent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-product-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-product-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: oklch(88% 0.14 145);
}

.hero-product-media {
  position: absolute;
  inset: 0;
}

.hero-product-media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(to bottom, color-mix(in oklch, #07090d 42%, transparent) 0%, transparent 38%),
    linear-gradient(to top, #07090d 5%, color-mix(in oklch, #07090d 88%, transparent) 34%, transparent 72%);
  content: "";
}

.hero-product-media video,
.hero-product-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  filter: saturate(0.82) contrast(1.05) brightness(0.9);
}

.hero-product-media video {
  z-index: 1;
}

.hero-product-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: space-between;
  padding: 92px clamp(30px, 3vw, 44px) clamp(30px, 3vw, 42px);
}

.hero-apex-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.hero-apex-brand img {
  width: 42px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-product-copy {
  max-width: 470px;
}

.hero-product-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: var(--paper);
  background: #0046ff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-apex-title {
  max-width: 460px;
  margin-top: 15px;
  font-size: clamp(37px, 3.65vw, 55px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero-apex-title em {
  display: block;
  color: color-mix(in oklch, var(--paper) 88%, #80a4ff);
  font-family: var(--font-serif);
  font-size: 1.08em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero-product-summary {
  max-width: 430px;
  margin-top: 17px;
  color: color-mix(in oklch, var(--paper) 76%, transparent);
  font-size: 12px;
  line-height: 1.55;
}

.hero-product-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 24px;
  padding: 0 16px;
  border: 1px solid color-mix(in oklch, var(--paper) 54%, transparent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, transform 220ms var(--ease-out);
}

.hero-product-link span {
  font-size: 17px;
}

.hero-product-link:hover,
.hero-product-link:focus-visible {
  color: var(--navy);
  background: var(--paper);
  transform: translateY(-3px);
}

.hero-rail {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 66px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-rail i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.section {
  padding: clamp(100px, 11vw, 174px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(200px, 0.55fr) minmax(0, 1.45fr);
  gap: 70px;
}

.section-heading h2,
.principles-intro h2,
.process-heading h2 {
  max-width: 920px;
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

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

.company-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.45fr);
  gap: clamp(50px, 10vw, 150px);
  margin-top: clamp(74px, 9vw, 128px);
  padding-left: calc((100% - 1200px) / 12);
}

.company-lead {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.16;
}

.story-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  color: var(--ink-soft);
  font-size: 15px;
}

.manifesto {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  margin-top: clamp(78px, 10vw, 140px);
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 600;
}

.manifesto span::before {
  margin-right: 12px;
  color: var(--blue);
  content: "✦";
  font-size: 10px;
}

.principles {
  background: var(--paper-deep);
}

.principles-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(70px, 10vw, 150px);
}

.principles-intro {
  align-self: start;
  position: sticky;
  top: 130px;
}

.principles-intro h2 {
  margin-top: 28px;
  font-size: clamp(42px, 4.8vw, 68px);
}

.principles-intro > p:last-child {
  max-width: 480px;
  margin-top: 28px;
  color: var(--ink-soft);
}

.principle-list {
  counter-reset: principles;
}

.principle-list li {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 22px;
  align-items: start;
  padding: 32px 0 38px;
  border-top: 1px solid var(--line);
}

.principle-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.principle-number {
  padding-top: 6px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.principle-list h3 {
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.principle-list p {
  max-width: 470px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}

.principle-arrow {
  font-size: 20px;
  transition: transform 260ms var(--ease-out);
}

.principle-list li:hover .principle-arrow {
  transform: translate(4px, -4px);
}

.portfolio {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy-deep);
  padding-top: clamp(88px, 8vw, 128px);
}

.portfolio-grid {
  opacity: 0.24;
  background-image:
    linear-gradient(to right, var(--line-light) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-light) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.portfolio .shell {
  position: relative;
}

.section-kicker-light {
  color: color-mix(in oklch, var(--paper) 62%, transparent);
}

.section-kicker-light span {
  color: var(--navy-deep);
  background: var(--blue-bright);
}

.portfolio-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
}

.portfolio-heading h2 {
  margin-top: 22px;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.portfolio-heading h2 em {
  color: var(--blue-bright);
}

.portfolio-heading > p:last-child {
  max-width: 430px;
  color: color-mix(in oklch, var(--paper) 62%, transparent);
  font-size: 13px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
  margin-top: clamp(64px, 7vw, 96px);
  padding-top: 34px;
  border-top: 1px solid var(--line-light);
}

.product-copy {
  padding-top: 14px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  color: color-mix(in oklch, var(--paper) 62%, transparent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: oklch(76% 0.18 148);
  box-shadow: 0 0 0 4px color-mix(in oklch, oklch(76% 0.18 148) 18%, transparent);
}

.product-brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 76px;
  color: color-mix(in oklch, var(--paper) 38%, transparent);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-transform: lowercase;
}

.product-brand-lockup img {
  width: 34px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.product-copy h3 {
  margin-top: 13px;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.product-copy > p {
  max-width: 490px;
  margin-top: 24px;
  color: color-mix(in oklch, var(--paper) 68%, transparent);
}

.product-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.product-themes li {
  padding: 7px 12px;
  border: 1px solid var(--line-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button-light {
  margin-top: 42px;
  color: var(--navy-deep);
  background: var(--paper);
}

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

.product-canvas {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  padding: clamp(26px, 4vw, 58px);
  background: #0046ff;
  clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 0 100%);
}

.apex-site-preview {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1200 / 630;
  border: 1px solid color-mix(in oklch, var(--paper) 30%, transparent);
  background: #07090d;
  box-shadow: 0 36px 70px color-mix(in oklch, #00184f 48%, transparent);
  transition: transform 420ms var(--ease-out), box-shadow 420ms var(--ease-out);
}

.apex-site-preview:hover,
.apex-site-preview:focus-visible {
  box-shadow: 0 46px 90px color-mix(in oklch, #00184f 66%, transparent);
  transform: translateY(-7px);
}

.apex-site-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apex-site-preview > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 14px;
  padding: 0 13px;
  color: var(--paper);
  background: #0046ff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.apex-site-preview i {
  font-size: 14px;
  font-style: normal;
}

.portfolio-index-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-top: clamp(118px, 14vw, 190px);
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.portfolio-index-count {
  color: var(--blue-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-index-heading h3 {
  margin-top: 22px;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.portfolio-index-heading h3 em {
  color: var(--blue-bright);
  font-family: var(--font-serif);
  font-weight: 400;
}

.portfolio-index-heading > p {
  max-width: 430px;
  color: color-mix(in oklch, var(--paper) 62%, transparent);
  font-size: 13px;
}

.product-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  margin-top: 54px;
}

.portfolio-card {
  --card-accent: var(--blue-bright);
  --card-background: var(--paper);
  --card-foreground: #0a1016;
  position: relative;
  overflow: hidden;
  color: var(--card-foreground);
  background: var(--card-background);
}

.portfolio-card > a {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  outline-offset: -4px;
}

.portfolio-card > a:focus-visible {
  outline: 3px solid var(--card-accent);
}

.portfolio-card-meta {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  border-bottom: 1px solid currentColor;
  opacity: 0.64;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-card-meta span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.portfolio-card-meta i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--card-accent);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--card-accent) 16%, transparent);
}

.portfolio-card-copy {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 28px;
  align-items: start;
  margin-top: auto;
  min-height: 222px;
  padding: 28px 26px 31px;
  border-top: 1px solid currentColor;
}

.portfolio-card-copy > div > p {
  opacity: 0.58;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-card-copy h3 {
  margin-top: 6px;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 550;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.portfolio-card-copy > p {
  grid-column: 1 / -1;
  max-width: 580px;
  opacity: 0.68;
  font-size: 12px;
}

.portfolio-card-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 17px;
  transition: color 260ms ease, background-color 260ms ease, transform 360ms var(--ease-out);
}

.portfolio-card > a:hover .portfolio-card-arrow,
.portfolio-card > a:focus-visible .portfolio-card-arrow {
  color: var(--card-background);
  background: var(--card-foreground);
  transform: rotate(45deg);
}

.portfolio-card-maker {
  --card-accent: #65df9b;
  --card-background: var(--product-surface);
  --card-foreground: #071a3b;
  grid-column: span 7;
  min-height: 690px;
}

.maker-stage {
  position: relative;
  display: flex;
  height: 430px;
  flex: 0 0 430px;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 35px 34px;
  overflow: hidden;
  color: #f7f7f5;
  background: #1a6b45;
}

.maker-stage::after {
  position: absolute;
  right: -12%;
  bottom: -55%;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, #f7f7f5 25%, transparent);
  border-radius: 50%;
  content: "";
}

.maker-stage > img {
  position: relative;
  z-index: 1;
  width: min(54%, 320px);
  filter: invert(1);
}

.maker-stage > p {
  position: relative;
  z-index: 1;
  max-width: 480px;
  font-size: clamp(46px, 5.7vw, 75px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.maker-flow {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  display: grid;
  gap: 5px;
  width: 130px;
}

.maker-flow li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 9px;
  border: 1px solid color-mix(in srgb, #f7f7f5 34%, transparent);
  color: color-mix(in srgb, #f7f7f5 78%, transparent);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.maker-flow li::after {
  content: "✓";
}

.portfolio-card-chika {
  --card-accent: #ca51ec;
  --card-background: var(--product-surface);
  --card-foreground: #071a3b;
  grid-column: span 7;
  min-height: 660px;
}

.chika-stage {
  display: grid;
  height: 400px;
  flex: 0 0 400px;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, color-mix(in srgb, #ca51ec 18%, transparent), transparent 34%),
    var(--product-surface);
}

.chika-stage img {
  width: calc(100% + 10px);
  max-width: none;
  box-shadow: 0 22px 46px color-mix(in srgb, #52235d 16%, transparent);
  transition: transform 700ms var(--ease-out);
}

.portfolio-card-chika > a:hover .chika-stage img,
.portfolio-card-chika > a:focus-visible .chika-stage img {
  transform: scale(1.025);
}

.portfolio-card-movara {
  --card-accent: #c15eff;
  --card-background: #0a1016;
  --card-foreground: #f8f9ff;
  grid-column: span 5;
  min-height: 660px;
}

.movara-stage {
  position: relative;
  height: 400px;
  flex: 0 0 400px;
  overflow: hidden;
  isolation: isolate;
}

.movara-stage::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, color-mix(in srgb, #0a1016 88%, transparent));
  content: "";
}

.movara-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}

.portfolio-card-movara > a:hover .movara-poster,
.portfolio-card-movara > a:focus-visible .movara-poster {
  transform: scale(1.045);
}

.movara-mark {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  width: 92px;
  filter: drop-shadow(0 4px 18px #07101a);
}

.movara-stage > p {
  position: absolute;
  z-index: 2;
  bottom: 23px;
  left: 25px;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 52px);
  font-style: italic;
  line-height: 0.86;
}

.portfolio-card-helper {
  --card-accent: #229ed9;
  --card-background: var(--product-surface);
  --card-foreground: #071a3b;
  grid-column: span 7;
  min-height: 660px;
}

.helper-stage {
  position: relative;
  display: grid;
  height: 400px;
  flex: 0 0 400px;
  place-items: center;
  overflow: hidden;
  padding: 46px;
  background:
    radial-gradient(circle at 17% 90%, color-mix(in srgb, #22c55e 15%, transparent), transparent 31%),
    radial-gradient(circle at 86% 5%, color-mix(in srgb, #229ed9 18%, transparent), transparent 32%),
    var(--product-surface);
}

.helper-stage > p {
  position: absolute;
  top: 30px;
  left: 32px;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.helper-logo {
  width: min(63%, 390px);
  margin-top: 66px;
}

.helper-channels {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.helper-channels span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, #071a3b 18%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--product-surface) 84%, transparent);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.helper-channels img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.portfolio-card-shopper {
  --card-accent: #fe6600;
  --card-background: var(--product-surface);
  --card-foreground: #071a3b;
  grid-column: span 5;
  min-height: 660px;
}

.shopper-stage {
  position: relative;
  height: 400px;
  flex: 0 0 400px;
  overflow: hidden;
  isolation: isolate;
  background: #9fdcf6;
}

.shopper-stage::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, #17233c 5%, transparent), color-mix(in srgb, #17233c 48%, transparent));
  content: "";
}

.shopper-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}

.portfolio-card-shopper > a:hover .shopper-poster,
.portfolio-card-shopper > a:focus-visible .shopper-poster {
  transform: scale(1.045);
}

.shopper-logo {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  width: min(56%, 250px);
  padding: 10px 12px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--product-surface) 93%, transparent);
  box-shadow: 0 8px 24px color-mix(in srgb, #17233c 18%, transparent);
}

.shopper-stage > p {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 26px;
  max-width: 62%;
  color: #fff8ef;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-shadow: 0 3px 24px color-mix(in srgb, #17233c 52%, transparent);
}

.shopper-mascot {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: -26px;
  width: min(35%, 170px);
  filter: drop-shadow(0 18px 24px color-mix(in srgb, #17233c 30%, transparent));
  transition: transform 650ms var(--ease-out);
}

.portfolio-card-shopper > a:hover .shopper-mascot,
.portfolio-card-shopper > a:focus-visible .shopper-mascot {
  transform: translateY(-8px) rotate(2deg);
}

.portfolio-card-citizen {
  --card-accent: #615fff;
  --card-background: var(--product-surface);
  --card-foreground: #071a3b;
  grid-column: span 5;
  min-height: 690px;
}

.citizen-layout {
  display: grid;
  height: 430px;
  flex: 0 0 430px;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: 30px;
  padding: 42px 32px;
}

.citizen-brand img {
  width: min(100%, 530px);
  height: auto;
}

.citizen-brand > p {
  margin-top: 21px;
  color: color-mix(in srgb, #071a3b 62%, transparent);
  font-size: 15px;
}

.citizen-services {
  border-top: 1px solid color-mix(in srgb, #071a3b 22%, transparent);
}

.citizen-services li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 47px;
  border-bottom: 1px solid color-mix(in srgb, #071a3b 22%, transparent);
  font-size: 12px;
  font-weight: 600;
}

.citizen-services span {
  color: #615fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.portfolio-card-citizen .portfolio-card-copy {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  min-height: 222px;
}

.portfolio-card-citizen .portfolio-card-copy > p {
  grid-column: 1 / -1;
  max-width: 430px;
}

.process-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(74px, 9vw, 126px);
  border-top: 1px solid var(--line);
}

.process-track::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 25%;
  height: 3px;
  background: var(--blue);
  content: "";
}

.process-track li {
  min-height: 230px;
  padding: 27px 28px 28px 0;
}

.process-track li + li {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.process-track li > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.process-track h3 {
  margin-top: 52px;
  font-size: clamp(23px, 2.2vw, 31px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.process-track p {
  max-width: 210px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 150px) 0;
  color: var(--paper);
  background: var(--blue);
}

.contact-rays {
  position: absolute;
  inset: -50% -20% -50% 36%;
  opacity: 0.24;
  background: repeating-conic-gradient(from 218deg at 50% 50%, transparent 0deg 10deg, var(--paper) 10deg 10.5deg);
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 58%);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: end;
}

.contact .section-kicker-light {
  color: color-mix(in oklch, var(--paper) 78%, transparent);
}

.contact .section-kicker-light span {
  color: var(--paper);
  background: var(--navy);
}

.contact h2 {
  max-width: 760px;
  margin-top: 32px;
  font-size: clamp(54px, 7.4vw, 104px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.contact-action {
  padding-bottom: 8px;
}

.contact-action p {
  margin-bottom: 14px;
  color: color-mix(in oklch, var(--paper) 78%, transparent);
  font-size: 13px;
}

.contact-action a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid color-mix(in oklch, var(--paper) 38%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--paper) 38%, transparent);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
}

.site-footer {
  color: color-mix(in oklch, var(--paper) 74%, transparent);
  background: var(--navy-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 68px 0 62px;
}

.footer-brand .brand-name strong {
  color: var(--paper);
}

.footer-brand .brand-name small {
  color: color-mix(in oklch, var(--paper) 48%, transparent);
}

.footer-main > p {
  font-family: var(--font-serif);
  font-size: 21px;
  font-style: italic;
}

.footer-main nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  font-weight: 600;
}

.footer-main nav a:hover,
.footer-main nav a:focus-visible {
  color: var(--paper);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--line-light);
  color: color-mix(in oklch, var(--paper) 44%, transparent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out);
}

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

.principle-list .reveal:nth-child(2),
.process-track .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.principle-list .reveal:nth-child(3),
.process-track .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.process-track .reveal:nth-child(4) {
  transition-delay: 240ms;
}

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

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-layout,
  .section-heading,
  .company-story,
  .principles-layout,
  .portfolio-heading,
  .product-feature,
  .process-heading,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 74px;
  }

  .hero h1 {
    font-size: clamp(64px, 12vw, 96px);
  }

  .hero-visual {
    width: min(100%, 590px);
    margin-left: auto;
  }

  .hero-product {
    min-height: 600px;
  }

  .hero-product-content {
    min-height: 600px;
  }

  .section-heading,
  .process-heading {
    gap: 34px;
  }

  .company-story {
    gap: 42px;
    padding-left: 0;
  }

  .principles-layout {
    gap: 70px;
  }

  .principles-intro {
    position: static;
  }

  .portfolio-heading {
    grid-template-columns: 1fr 0.75fr;
    gap: 40px;
  }

  .product-feature {
    gap: 64px;
  }

  .product-brand-lockup {
    margin-top: 52px;
  }

  .product-canvas {
    min-height: 570px;
  }

  .portfolio-index-heading {
    grid-template-columns: 1fr 0.75fr;
    gap: 40px;
  }

  .product-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .portfolio-card-maker,
  .portfolio-card-chika,
  .portfolio-card-movara,
  .portfolio-card-helper,
  .portfolio-card-shopper,
  .portfolio-card-citizen {
    grid-column: span 1;
    min-height: 650px;
  }

  .maker-stage,
  .chika-stage,
  .movara-stage,
  .helper-stage,
  .shopper-stage {
    height: 360px;
    min-height: 0;
    flex-basis: 360px;
  }

  .maker-stage {
    padding-inline: 27px;
  }

  .maker-stage > p {
    font-size: clamp(42px, 7vw, 58px);
  }

  .maker-flow {
    right: 22px;
    width: 110px;
  }

  .helper-stage {
    padding-inline: 28px;
  }

  .helper-logo {
    width: 74%;
  }

  .citizen-layout {
    height: 360px;
    flex-basis: 360px;
    gap: 18px;
    padding: 26px 28px;
  }

  .citizen-services li {
    min-height: 41px;
  }

  .contact-layout {
    gap: 70px;
  }

  .contact-action {
    max-width: 560px;
  }

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

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

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

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .menu-toggle-lines {
    position: relative;
    display: block;
    width: 25px;
    height: 12px;
  }

  .menu-toggle-lines i {
    position: absolute;
    right: 0;
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: top 220ms ease, transform 220ms ease;
  }

  .menu-toggle-lines i:first-child { top: 2px; }
  .menu-toggle-lines i:last-child { top: 10px; width: 17px; }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child {
    top: 6px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child {
    top: 6px;
    width: 25px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 90px 24px 44px;
    color: var(--paper);
    background: var(--navy-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 240ms ease, transform 320ms var(--ease-out);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a {
    width: 100%;
    padding: 7px 0;
    border-bottom: 1px solid var(--line-light);
    font-size: clamp(32px, 10vw, 46px);
    font-weight: 500;
    letter-spacing: -0.04em;
  }

  .site-nav .nav-contact {
    min-height: auto;
    margin-top: 18px;
    padding: 10px 0;
    color: var(--blue-bright);
    background: transparent;
    font-size: 18px;
    letter-spacing: -0.02em;
  }

  .menu-open .brand {
    position: relative;
    z-index: 102;
  }

  .menu-open .header-inner > .brand .brand-name strong,
  .menu-open .menu-toggle {
    color: var(--paper);
  }

  .menu-open .header-inner > .brand .brand-name small {
    color: color-mix(in oklch, var(--paper) 55%, transparent);
  }

  .hero {
    padding-top: 116px;
  }

  .hero h1 {
    margin-top: 26px;
    font-size: clamp(52px, 16vw, 78px);
    line-height: 0.92;
  }

  .hero-intro {
    margin-top: 28px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .hero-facts {
    margin-top: 44px;
  }

  .hero-facts div {
    padding-right: 7px;
  }

  .hero-facts div + div {
    padding-left: 9px;
  }

  .hero-facts dd {
    font-size: 11px;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-product {
    min-height: 560px;
    clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
  }

  .hero-product-content {
    min-height: 560px;
    padding: 84px 24px 28px;
  }

  .hero-apex-title {
    max-width: 420px;
    font-size: clamp(35px, 10vw, 48px);
  }

  .hero-product-summary {
    max-width: 380px;
    font-size: 11px;
  }

  .hero-rail {
    justify-content: center;
    margin-top: 44px;
    font-size: 7px;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading h2,
  .principles-intro h2,
  .process-heading h2 {
    font-size: clamp(39px, 11.5vw, 56px);
  }

  .story-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .manifesto {
    align-items: flex-start;
    flex-direction: column;
  }

  .principle-list li {
    grid-template-columns: 30px 1fr;
    gap: 14px;
  }

  .principle-arrow {
    display: none;
  }

  .portfolio-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .portfolio-heading h2 {
    font-size: clamp(44px, 5vw, 70px);
  }

  .portfolio-heading > p:last-child {
    max-width: 520px;
  }

  .product-feature {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

  .product-canvas {
    min-height: 450px;
    padding: 18px;
  }

  .apex-site-preview > span {
    right: 10px;
    bottom: 10px;
  }

  .portfolio-index-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 104px;
  }

  .portfolio-index-heading > p {
    max-width: 520px;
  }

  .product-mosaic {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 40px;
  }

  .portfolio-card-maker,
  .portfolio-card-chika,
  .portfolio-card-movara,
  .portfolio-card-helper,
  .portfolio-card-shopper,
  .portfolio-card-citizen {
    grid-column: 1;
    min-height: 0;
  }

  .portfolio-card-meta {
    min-height: 58px;
    padding-inline: 18px;
  }

  .portfolio-card-copy {
    padding: 24px 20px 26px;
  }

  .portfolio-card-copy h3 {
    font-size: clamp(35px, 11vw, 46px);
  }

  .maker-stage,
  .chika-stage,
  .movara-stage,
  .helper-stage,
  .shopper-stage {
    height: 340px;
    min-height: 0;
    flex-basis: 340px;
  }

  .maker-stage {
    padding: 36px 21px 24px;
  }

  .maker-stage > img {
    width: 62%;
  }

  .maker-stage > p {
    font-size: clamp(42px, 14vw, 62px);
  }

  .maker-flow {
    display: none;
  }

  .chika-stage {
    height: 290px;
    padding: 12px;
    flex-basis: 290px;
  }

  .chika-stage img {
    width: 108%;
  }

  .movara-mark {
    width: 74px;
  }

  .helper-stage {
    height: 380px;
    padding: 28px 22px;
    flex-basis: 380px;
  }

  .helper-stage > p {
    top: 23px;
    left: 22px;
    font-size: clamp(27px, 8.8vw, 38px);
  }

  .helper-logo {
    width: 78%;
  }

  .helper-channels {
    right: 18px;
    bottom: 17px;
  }

  .shopper-logo {
    top: 18px;
    left: 18px;
    width: 61%;
  }

  .shopper-stage > p {
    bottom: 22px;
    left: 20px;
    font-size: clamp(32px, 11vw, 44px);
  }

  .shopper-mascot {
    right: 8px;
    width: 38%;
  }

  .citizen-layout {
    height: auto;
    min-height: 0;
    flex: none;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 47px 22px;
  }

  .citizen-brand img {
    width: 100%;
  }

  .portfolio-card-citizen .portfolio-card-copy {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .portfolio-card-citizen .portfolio-card-copy > p {
    grid-column: 1 / -1;
  }

  .portfolio-card-citizen .portfolio-card-copy h3 {
    font-size: clamp(31px, 10vw, 40px);
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
  }

  .process-track::before {
    width: 50%;
  }

  .process-track li {
    min-height: 200px;
  }

  .process-track li:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-track li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .process-track h3 {
    margin-top: 35px;
  }

  .contact h2 {
    font-size: clamp(50px, 14vw, 72px);
  }

  .contact-action a {
    align-items: flex-start;
    overflow-wrap: anywhere;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-main > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-main nav {
    flex-wrap: wrap;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .brand-name {
    display: none;
  }

  .eyebrow {
    gap: 10px;
    font-size: 9px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div,
  .hero-facts div + div {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-track::before {
    width: 100%;
  }

  .process-track li,
  .process-track li + li,
  .process-track li:nth-child(3),
  .process-track li:nth-child(4) {
    min-height: 170px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-track li:first-child {
    border-top: 0;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-product-media video {
    display: none;
  }
}
