:root {
  --canvas: oklch(0.972 0.007 86);
  --paper: oklch(0.995 0.004 86);
  --ink: oklch(0.18 0.006 70);
  --muted: oklch(0.48 0.011 72);
  --soft: oklch(0.9 0.012 82);
  --line: rgba(22, 22, 22, 0.1);
  --accent: oklch(0.55 0.04 57);
  --serif: "Bodoni Moda", Didot, "Bodoni 72", Georgia, serif;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SF Mono", "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 40;
  transform: translateY(-150%);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 1rem;
  transition: transform 240ms var(--ease);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 247, 243, 0.9);
  backdrop-filter: blur(16px);
  transition:
    background-color 420ms var(--ease),
    border-color 420ms var(--ease),
    box-shadow 420ms var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(22, 22, 22, 0.16);
  background: rgba(248, 247, 243, 0.96);
  box-shadow: 0 0.75rem 2rem rgba(22, 22, 22, 0.055);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  transition:
    color 260ms var(--ease),
    opacity 260ms var(--ease);
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 360ms var(--ease);
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: translateY(-1px);
}

.brand-mark path {
  stroke-dasharray: 88;
  stroke-dashoffset: 88;
  animation: mark-draw 1150ms var(--ease) forwards;
}

.brand-mark path:nth-child(2) {
  animation-delay: 120ms;
}

.brand-mark path:nth-child(3) {
  animation-delay: 210ms;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.brand small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.nav-links {
  justify-content: center;
}

.nav-links a,
.nav-cta,
.language-control span,
.language-control select,
.text-link,
.button,
.kicker,
.info-row > span {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a,
.text-link {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  color: var(--muted);
  transition:
    background-size 280ms var(--ease),
    color 220ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  background-size: 100% 1px;
  color: var(--ink);
}

.nav-actions {
  justify-content: end;
}

.language-control {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
}

.language-control select {
  min-width: 7rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  padding: 0.55rem 1.85rem 0.55rem 0.7rem;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 15px) 50%,
    calc(100% - 10px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  transition:
    background-color 240ms var(--ease),
    border-color 240ms var(--ease),
    box-shadow 240ms var(--ease),
    transform 240ms var(--ease);
}

.language-control select:hover,
.language-control select:focus-visible {
  border-color: rgba(22, 22, 22, 0.26);
  background-color: rgba(255, 255, 251, 0.9);
  box-shadow: 0 0.5rem 1.35rem rgba(22, 22, 22, 0.07);
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid oklch(0.13 0.008 70);
  border-radius: 4px;
  background-color: oklch(0.16 0.008 70);
  background-image: linear-gradient(
    115deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 251, 0.18) 49%,
    transparent 60%,
    transparent 100%
  );
  background-position: 130% 0;
  background-size: 260% 100%;
  color: var(--paper);
  gap: 0.7rem;
  isolation: isolate;
  overflow: hidden;
  padding: 0.86rem 1.05rem;
  box-shadow:
    0 0.7rem 1.7rem rgba(22, 22, 22, 0.17),
    inset 0 1px 0 rgba(255, 255, 251, 0.16);
  transition:
    background-position 520ms var(--ease),
    transform 220ms var(--ease),
    background-color 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    color 220ms var(--ease);
  will-change: transform;
}

.nav-cta::after,
.button::after {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translate(-0.08rem, 0.08rem) rotate(45deg);
  transition: transform 220ms var(--ease);
  will-change: transform;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible {
  border-color: oklch(0.24 0.015 70);
  background-color: oklch(0.24 0.015 70);
  background-position: -45% 0;
  box-shadow:
    0 1rem 2.4rem rgba(22, 22, 22, 0.22),
    inset 0 1px 0 rgba(255, 255, 251, 0.2);
  transform: translateY(-1px);
}

.nav-cta:hover::after,
.nav-cta:focus-visible::after,
.button:hover::after,
.button:focus-visible::after {
  transform: translate(0.02rem, -0.02rem) rotate(45deg);
}

.nav-cta:active,
.button:active {
  transform: translateY(0) scale(0.98);
}

.form-pending {
  cursor: not-allowed;
}

main {
  width: 100%;
}

.hero,
.point-of-view,
.split-section,
.process,
.final-cta,
.site-footer {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding-right: clamp(1rem, 4vw, 3rem);
  padding-left: clamp(1rem, 4vw, 3rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2.5rem, 7vw, 9rem);
  align-items: center;
  min-height: auto;
  padding-top: clamp(0.95rem, 2.2vw, 2.4rem);
  padding-bottom: clamp(2.4rem, 5vw, 4.8rem);
}

.hero-copy {
  max-width: 43rem;
  min-width: 0;
}

.kicker {
  margin: 0 0 1.2rem;
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  max-width: 11.5ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.65rem, 6.9vw, 7.25rem);
  line-height: 0.92;
}

h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(3.25rem, 6.8vw, 7.2rem);
  line-height: 0.9;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-text {
  max-width: 38rem;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  margin-top: 1.35rem;
}

.hero-media {
  --pointer-x: 0px;
  --pointer-y: 0px;
  position: relative;
  height: clamp(30rem, 60vw, 42rem);
  overflow: hidden;
  border-radius: 4px;
  background: var(--soft);
  box-shadow: 0 1.6rem 3.5rem rgba(22, 22, 22, 0.08);
  transition: box-shadow 520ms var(--ease);
}

.hero-media img {
  filter: saturate(0.84) contrast(1.05);
  transform: translate3d(var(--pointer-x), var(--pointer-y), 0) scale(1.03);
  transition:
    filter 720ms var(--ease),
    transform 720ms var(--ease);
  object-position: 50% 42%;
  will-change: transform;
}

.hero-media:hover,
.hero-media:focus-within {
  box-shadow: 0 2rem 4.2rem rgba(22, 22, 22, 0.11);
}

.hero-media:hover img,
.hero-media:focus-within img {
  filter: saturate(0.9) contrast(1.08);
  transform: translate3d(var(--pointer-x), var(--pointer-y), 0) scale(1.045);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 43rem;
  margin-top: 1.45rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-facts span,
.cta-requirements span {
  display: flex;
  position: relative;
  min-width: 0;
  min-height: 3.05rem;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 251, 0.54);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.35;
  overflow-wrap: anywhere;
  padding: 0.2rem 0.45rem;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color 280ms var(--ease),
    color 280ms var(--ease),
    transform 280ms var(--ease);
}

.point-of-view {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(6rem, 11vw, 11rem);
}

.pov-copy {
  position: sticky;
  top: 7rem;
  align-self: start;
  max-width: 34rem;
}

.pov-copy h2 {
  max-width: 9.6ch;
  margin-bottom: 1.25rem;
}

.pov-copy p {
  margin-bottom: 1.5rem;
}

.image-strip {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1px;
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.image-strip figure {
  position: relative;
  height: clamp(17rem, 24vw, 28rem);
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.image-strip figure:first-child {
  grid-column: span 2;
  height: clamp(18rem, 28vw, 32rem);
}

.image-strip figure:nth-child(2),
.image-strip figure:nth-child(3) {
  height: clamp(17rem, 26vw, 30rem);
}

.image-strip figure:nth-child(4) {
  grid-column: span 2;
  height: clamp(17rem, 27vw, 31rem);
}

.image-strip img,
.process-image img {
  filter: saturate(0.82) contrast(1.04);
  transform: scale(1.01);
  transition:
    filter 700ms var(--ease),
    transform 700ms var(--ease);
  will-change: transform;
}

.image-strip figure:nth-child(1) img {
  object-position: 70% 50%;
}

.image-strip figure:nth-child(2) img {
  object-position: 50% 24%;
}

.image-strip figure:nth-child(3) img {
  object-position: 50% 36%;
}

.image-strip figure:nth-child(4) img {
  object-position: 50% 44%;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: start;
  padding-top: clamp(6rem, 12vw, 12rem);
  padding-bottom: clamp(5rem, 10vw, 10rem);
}

.section-copy {
  position: sticky;
  top: 7rem;
  min-width: 0;
}

#standards .section-copy {
  top: 50vh;
}

#standards .section-copy.reveal {
  transform: translateY(calc(-50% + var(--reveal-y)));
}

.row-list,
.steps,
.privacy-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.info-row {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.35rem) 0;
  transition:
    background-color 300ms var(--ease),
    transform 300ms var(--ease);
}

.info-row > span {
  color: var(--accent);
}

.info-row p,
.steps p,
.privacy-note p,
.final-cta p,
.site-footer p {
  max-width: 44rem;
  margin-bottom: 0;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: center;
  padding-top: clamp(3rem, 7vw, 7rem);
  padding-bottom: clamp(6rem, 12vw, 12rem);
}

.process-image {
  height: clamp(34rem, 58vw, 52rem);
  overflow: hidden;
  border-radius: 4px;
  background: var(--soft);
  box-shadow: 0 1.5rem 3.2rem rgba(22, 22, 22, 0.065);
}

.process-image img {
  object-position: 50% 18%;
}

.process-content h2 {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.process-content,
.privacy-note {
  min-width: 0;
}

.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.steps li {
  display: grid;
  grid-template-columns: minmax(7rem, 0.35fr) minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
  transition:
    background-color 300ms var(--ease),
    transform 300ms var(--ease);
}

.steps span {
  color: var(--ink);
  font-weight: 500;
}

.privacy-note {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.privacy-note ul {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.privacy-note li {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  transition:
    color 300ms var(--ease),
    transform 300ms var(--ease);
}

.final-cta {
  display: grid;
  justify-items: start;
  border-top: 1px solid var(--line);
  padding-top: clamp(4rem, 9vw, 8rem);
  padding-bottom: clamp(4rem, 9vw, 8rem);
}

.final-cta h2 {
  max-width: 13ch;
  margin-bottom: 1.4rem;
}

.final-cta p {
  margin-bottom: 2rem;
}

.cta-requirements {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(36rem, 100%);
  margin: 0 0 1.5rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.site-footer p {
  max-width: 28rem;
  text-align: right;
}

.reveal {
  --reveal-y: 0.9rem;
  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  --reveal-y: 0rem;
  opacity: 1;
  transform: translate3d(0, var(--reveal-y), 0);
}

.type-intro {
  --type-stagger: 52ms;
  --type-blur: 13px;
  --type-y: 0.82em;
  --type-track: 0.055em;
}

.type-intro .type-line {
  display: block;
  overflow: visible;
}

.type-intro.is-type-lines .type-line {
  white-space: nowrap;
}

.type-intro .type-unit {
  display: inline-block;
  margin-block: -0.16em;
  opacity: 0;
  padding-block: 0.16em;
  filter: blur(var(--type-blur));
  letter-spacing: var(--type-track);
  transform: translate3d(0, var(--type-y), 0);
  transition:
    opacity 820ms var(--ease),
    filter 900ms var(--ease),
    letter-spacing 900ms var(--ease),
    transform 900ms var(--ease);
  transition-delay: calc(var(--type-delay, 0ms) + (var(--unit-index, 0) * var(--type-stagger)));
  will-change: opacity, filter, transform;
}

.type-intro.is-type-visible .type-unit {
  opacity: 1;
  filter: blur(0);
  letter-spacing: inherit;
  transform: translate3d(0, 0, 0);
}

.type-intro.is-type-chars {
  --type-stagger: 18ms;
  --type-blur: 8px;
  --type-y: 0.48em;
  --type-track: 0.11em;
}

.type-intro.is-type-chars .type-line {
  display: inline;
  overflow: visible;
}

.type-intro.is-type-chars .type-unit {
  transform: translate3d(0.08em, var(--type-y), 0);
}

.type-intro.is-type-chars.is-type-visible .type-unit {
  transform: translate3d(0, 0, 0);
}

.hero-media,
.image-strip,
.privacy-note {
  --reveal-delay: 120ms;
}

.process-content,
.final-cta {
  --reveal-delay: 160ms;
}

.row-list .info-row:nth-child(2) {
  --reveal-delay: 70ms;
}

.row-list .info-row:nth-child(3) {
  --reveal-delay: 140ms;
}

.row-list .info-row:nth-child(4) {
  --reveal-delay: 210ms;
}

@media (hover: hover) and (pointer: fine) {
  .hero-facts span:hover,
  .cta-requirements span:hover {
    background: rgba(255, 255, 251, 0.82);
    transform: translateY(-2px);
  }

  .image-strip figure:hover img,
  .process-image:hover img {
    filter: saturate(0.9) contrast(1.08);
    transform: scale(1.045);
  }

  .info-row:hover,
  .steps li:hover {
    background: rgba(255, 255, 251, 0.34);
    transform: translateX(0.35rem);
  }

  .privacy-note li:hover {
    color: var(--accent);
    transform: translateX(0.35rem);
  }
}

@keyframes mark-draw {
  to {
    stroke-dashoffset: 0;
  }
}

:focus-visible {
  outline: 2px solid rgba(22, 22, 22, 0.46);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .point-of-view,
  .split-section,
  .process {
    grid-template-columns: 1fr;
  }

  .section-copy,
  .pov-copy {
    position: static;
  }

  #standards .section-copy.reveal {
    transform: none;
  }

  h1 {
    max-width: 11.5ch;
  }

  .image-strip {
    grid-template-columns: 1fr 1fr;
  }

  .image-strip figure:nth-child(2),
  .image-strip figure:nth-child(3) {
    height: clamp(18rem, 44vw, 30rem);
  }

  .image-strip figure:nth-child(4) {
    grid-column: span 2;
    height: clamp(18rem, 44vw, 30rem);
  }
}

@media (max-width: 700px) {
  .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
  }

  .brand small,
  .language-control span {
    display: none;
  }

  .nav-actions {
    display: flex;
    flex: 0 0 auto;
    justify-self: end;
    max-width: 100%;
    gap: 0.45rem;
    margin-left: 0;
    min-width: 0;
  }

  .language-control {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .language-control select {
    min-width: 4.85rem;
    max-width: 4.85rem;
    padding: 0.5rem 1.2rem 0.5rem 0.55rem;
    background-position:
      calc(100% - 11px) 50%,
      calc(100% - 7px) 50%;
    font-size: 0.58rem;
  }

  .nav-cta {
    display: inline-flex;
    flex: 0 0 auto;
    max-width: none;
    min-height: 2.2rem;
    min-width: 5.35rem;
    gap: 0.42rem;
    padding: 0.6rem 0.62rem;
    font-size: 0.54rem;
    white-space: nowrap;
  }

  .nav-cta::after {
    width: 0.48rem;
    height: 0.48rem;
    flex: 0 0 auto;
  }

  .hero,
  .point-of-view,
  .split-section,
  .process,
  .final-cta,
  .site-footer {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 1.25rem;
    padding-bottom: 3rem;
  }

  .point-of-view {
    padding-top: 3rem;
    padding-bottom: 4.5rem;
  }

  h1 {
    max-width: 10.8ch;
    font-size: clamp(2.95rem, 13.2vw, 3.95rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(3.25rem, 15vw, 4.9rem);
  }

  .hero-media {
    height: 30rem;
  }

  .hero-text {
    max-width: 21rem;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
    margin-top: 1.55rem;
  }

  .hero-facts span,
  .cta-requirements span {
    min-height: 3rem;
    font-size: 0.52rem;
    line-height: 1.35;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    margin-top: 1.25rem;
  }

  .hero-actions .button {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .image-strip {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .image-strip figure,
  .image-strip figure:first-child,
  .image-strip figure:nth-child(2),
  .image-strip figure:nth-child(3),
  .image-strip figure:nth-child(4) {
    grid-column: auto;
    height: 26rem;
  }

  .split-section,
  .process {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .process-image {
    height: 31rem;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }

  .cta-requirements {
    grid-template-columns: 1fr;
  }

  .type-intro.is-type-lines {
    --type-track: 0;
  }

  .type-intro.is-type-lines .type-line {
    white-space: normal;
  }

  .type-intro.is-type-lines .type-unit {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }
}

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

  .nav-actions {
    gap: 0.35rem;
  }

  .language-control select {
    min-width: 4.85rem;
    max-width: 4.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .type-intro .type-unit {
    opacity: 1;
    filter: none;
    letter-spacing: inherit;
    transform: none;
  }

  .brand-mark path {
    animation: none !important;
    stroke-dashoffset: 0;
  }

}
