@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("/assets/IBMPlexSansArabic-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("/assets/IBMPlexSansArabic-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: light;
  --teal: #1a7a78;
  --teal-dark: #105d5c;
  --gold: #e1a553;
  --ink: #323e4b;
  --muted: #5f6d78;
  --paper: #ffffff;
  --canvas: #f3f5f7;
  --line: #dbe2e5;
  --focus: #9a5b00;
  --radius: 8px;
  --shadow: 0 12px 30px rgb(26 57 67 / 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family: "IBM Plex Sans Arabic", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

a {
  color: var(--teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--teal);
}

a:focus-visible {
  border-radius: 3px;
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  inset-block-start: 0.75rem;
  inset-inline-start: 0.75rem;
  z-index: 10;
  translate: 0 -180%;
  padding: 0.55rem 0.85rem;
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  border-block-end: 1px solid rgb(255 255 255 / 0.2);
  background: var(--teal-dark);
  color: var(--paper);
}

.header-inner,
.footer-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper);
  font-size: 1.12rem;
  font-weight: 600;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 2px solid rgb(255 255 255 / 0.58);
  border-radius: 50%;
  background: var(--paper);
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
}

.site-nav a {
  color: var(--paper);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.45rem;
}

.language-link {
  min-width: 3.4rem;
  padding: 0.28rem 0.65rem;
  border: 1px solid rgb(255 255 255 / 0.55);
  border-radius: 999px;
  text-align: center;
}

main {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(2.5rem, 6vw, 5rem);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin-block-start: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.35;
}

h1 {
  max-width: 17ch;
  margin-block-end: 1rem;
  font-size: clamp(2.1rem, 6vw, 4.2rem);
}

.document h1 {
  max-width: 22ch;
  font-size: clamp(2rem, 5vw, 3.35rem);
}

h2 {
  margin-block: 2.7rem 0.75rem;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

h3 {
  margin-block: 1.5rem 0.4rem;
  font-size: 1.1rem;
}

p,
ul,
ol {
  margin-block: 0 1rem;
}

ul,
ol {
  padding-inline-start: 1.35rem;
}

li + li {
  margin-block-start: 0.45rem;
}

.lede {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.intro-note {
  margin: 0;
  padding-inline-start: 1rem;
  border-inline-start: 4px solid var(--gold);
  color: var(--muted);
}

.document-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-block-end: clamp(4rem, 9vw, 7rem);
}

.document-link {
  min-height: 190px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.document-link strong,
.document-link span {
  display: block;
}

.document-link strong {
  margin-block-end: 0.65rem;
  color: var(--ink);
  font-size: 1.22rem;
}

.document-link span {
  color: var(--muted);
}

.document-link .link-label {
  margin-block-start: 1.25rem;
  color: var(--teal-dark);
  font-weight: 600;
}

.document {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
  padding-block: clamp(3rem, 7vw, 6rem);
}

.document-body {
  max-width: 760px;
  padding: clamp(1.4rem, 4vw, 3.5rem);
}

.document-meta {
  margin-block-end: 2.5rem;
  padding-block-end: 1.25rem;
  border-block-end: 1px solid var(--line);
  color: var(--muted);
}

.document-meta p {
  margin: 0.2rem 0;
}

.document-aside {
  position: sticky;
  inset-block-start: 1.5rem;
  padding-block-start: 1rem;
}

.document-aside strong,
.document-aside a {
  display: block;
}

.document-aside strong {
  margin-block-end: 0.65rem;
}

.document-aside a {
  padding-block: 0.3rem;
}

.callout {
  margin-block: 1.75rem;
  padding: 1rem 1.15rem;
  border-inline-start: 4px solid var(--gold);
  border-radius: 4px;
  background: #fff9ef;
}

.steps {
  counter-reset: deletion-step;
  list-style: none;
  padding: 0;
}

.steps > li {
  position: relative;
  min-height: 3rem;
  padding-inline-start: 3.5rem;
  counter-increment: deletion-step;
}

.steps > li::before {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--paper);
  content: counter(deletion-step);
  font-weight: 600;
}

.email-link {
  overflow-wrap: anywhere;
  font-weight: 600;
}

.site-footer {
  border-block-start: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}

.footer-inner p {
  margin: 0;
}

.not-found {
  min-height: calc(100dvh - 230px);
  padding-block: clamp(4rem, 10vw, 8rem);
}

.not-found h1 {
  font-size: clamp(2rem, 6vw, 4rem);
}

@media (max-width: 820px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
    padding-block: 1rem;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-block-end: 0.35rem;
    white-space: nowrap;
  }

  .intro,
  .document {
    grid-template-columns: 1fr;
  }

  .document-aside {
    position: static;
    order: -1;
    padding: 0;
  }

  .document-aside strong {
    display: none;
  }

  .document-aside nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
  }

  .document-links {
    grid-template-columns: 1fr;
  }

  .document-link {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  main,
  .header-inner,
  .footer-inner {
    width: min(100% - 1.25rem, 1120px);
  }

  .site-nav {
    gap: 0.85rem;
    font-size: 0.88rem;
  }

  .document-body {
    padding: 1.15rem;
  }

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

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

/* Product landing page */
.landing-page {
  --landing-teal: #1a7a78;
  --landing-teal-dark: #105d5c;
  --landing-teal-soft: #dcefee;
  --landing-gold: #e1a553;
  --landing-ink: #24333f;
  --landing-muted: #5f6d78;
  --landing-paper: #ffffff;
  --landing-canvas: #f3f5f7;
  --landing-line: #d6e1e3;
  background: var(--landing-canvas);
  color: var(--landing-ink);
}

.landing-page main {
  width: 100%;
  margin-inline: 0;
}

.landing-shell {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.landing-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 2;
  border-block-end: 1px solid rgb(255 255 255 / 0.16);
  background: rgb(16 93 92 / 0.94);
  box-shadow: 0 10px 28px rgb(9 61 63 / 0.12);
  color: var(--landing-paper);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.landing-header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: clamp(0.75rem, 2.6vw, 2.5rem);
  padding-block: 0.6rem;
}

.landing-brand {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 52px;
  align-items: center;
  color: var(--landing-paper);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 180ms ease, transform 180ms ease;
}

.landing-brand img {
  width: 102px;
  height: 62px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.landing-brand:hover,
.landing-brand:focus-visible {
  color: var(--landing-paper);
  opacity: 0.86;
  transform: translateY(-1px);
}

.landing-nav {
  display: flex;
  flex: 0 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  margin-inline: auto;
  padding: 0.24rem;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.08);
  overflow-x: auto;
  scrollbar-width: none;
  font-size: 0.9rem;
  white-space: nowrap;
}

.landing-nav::-webkit-scrollbar {
  display: none;
}

.landing-nav a {
  min-height: 44px;
  padding-inline: clamp(0.8rem, 1.5vw, 1.15rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--landing-paper);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.landing-nav a:hover,
.landing-nav a:focus-visible {
  background: rgb(255 255 255 / 0.14);
  color: var(--landing-gold);
  transform: translateY(-1px);
}

.landing-header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.5rem;
}

.landing-header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  border: 1px solid var(--landing-gold);
  border-radius: 999px;
  background: var(--landing-gold);
  color: #173b3d;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.landing-header-cta:hover,
.landing-header-cta:focus-visible {
  border-color: #f0bd6d;
  background: #f0bd6d;
  color: #173b3d;
  transform: translateY(-1px);
}

.landing-language {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding-inline: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.42);
  border-radius: 999px;
  color: var(--landing-paper);
  font-size: 0.84rem;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.landing-language:hover,
.landing-language:focus-visible {
  border-color: rgb(255 255 255 / 0.72);
  background: rgb(255 255 255 / 0.1);
  color: var(--landing-paper);
  transform: translateY(-1px);
}

.landing-hero {
  overflow: hidden;
  background: var(--landing-teal);
  color: var(--landing-paper);
}

.landing-hero-grid {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.landing-hero-copy {
  max-width: 640px;
}

@keyframes landing-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-phone-float {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-9px) rotate(1deg);
  }
}

.landing-hero-copy > *,
.landing-hero-visual {
  opacity: 0;
  animation: landing-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-hero-copy > :nth-child(1) {
  animation-delay: 80ms;
}

.landing-hero-copy > :nth-child(2) {
  animation-delay: 150ms;
}

.landing-hero-copy > :nth-child(3) {
  animation-delay: 230ms;
}

.landing-hero-copy > :nth-child(4) {
  animation-delay: 310ms;
}

.landing-hero-copy > :nth-child(5) {
  animation-delay: 380ms;
}

.landing-hero-visual {
  animation-delay: 180ms;
}

.landing-kicker {
  margin: 0 0 0.8rem;
  color: var(--landing-gold);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.landing-hero h1 {
  max-width: 13ch;
  margin: 0 0 1.25rem;
  color: var(--landing-paper);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: 1.08;
}

.landing-hero-lede {
  max-width: 54ch;
  margin: 0;
  color: rgb(255 255 255 / 0.84);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.85;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block-start: 2rem;
}

.landing-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding-inline: 1.35rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.landing-button-primary {
  background: var(--landing-gold);
  color: #2b2418;
}

.landing-button-primary:hover,
.landing-button-primary:focus-visible {
  background: #efbd6c;
  color: #2b2418;
}

.landing-button-quiet {
  border-color: rgb(255 255 255 / 0.48);
  color: var(--landing-paper);
}

.landing-button-quiet:hover,
.landing-button-quiet:focus-visible {
  border-color: var(--landing-paper);
  color: var(--landing-paper);
}

.landing-button-light {
  background: var(--landing-paper);
  color: var(--landing-teal-dark);
}

.landing-button-light:hover,
.landing-button-light:focus-visible {
  background: var(--landing-gold);
  color: #2b2418;
}

.landing-hero-note {
  margin: 1.25rem 0 0;
  color: rgb(255 255 255 / 0.66);
  font-size: 0.88rem;
}

.landing-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.landing-hero-visual figcaption {
  max-width: 20ch;
  color: rgb(255 255 255 / 0.76);
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: center;
}

.landing-phone {
  position: relative;
  width: clamp(170px, 18vw, 232px);
  padding: 9px;
  border: 8px solid #1a2a34;
  border-radius: 30px;
  background: #1a2a34;
  box-shadow: 0 22px 40px rgb(13 42 49 / 0.2);
}

.landing-phone::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 22px;
  content: '';
  pointer-events: none;
}

.landing-phone-speaker {
  position: absolute;
  z-index: 1;
  inset-block-start: 13px;
  inset-inline-start: 50%;
  width: 28%;
  height: 4px;
  border-radius: 99px;
  background: rgb(255 255 255 / 0.3);
  transform: translateX(-50%);
}

.landing-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: var(--landing-canvas);
}

.landing-phone-hero {
  width: clamp(210px, 25vw, 300px);
  transform: rotate(2deg);
  animation: landing-phone-float 7s ease-in-out 1.1s infinite;
}

.landing-shot .landing-phone {
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.landing-shot:hover .landing-phone,
.landing-shot:focus-within .landing-phone {
  transform: translateY(-7px);
  box-shadow: 0 28px 46px rgb(13 42 49 / 0.24);
}

.landing-section {
  padding-block: clamp(4.5rem, 8vw, 8rem);
}

.landing-product {
  background: var(--landing-canvas);
}

.landing-section-heading {
  max-width: 680px;
  margin-block-end: clamp(2.5rem, 6vw, 5rem);
}

.landing-section-heading h2,
.landing-journey h2,
.landing-final h2 {
  margin: 0 0 1rem;
  color: var(--landing-ink);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
}

.landing-section-heading > p:last-child,
.landing-journey-copy > p:last-child {
  max-width: 58ch;
  margin: 0;
  color: var(--landing-muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.landing-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(2rem, 4vw, 4.5rem) 1.4rem;
}

.landing-shot {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
}

.landing-shot-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  background: var(--landing-paper);
  box-shadow: var(--shadow);
}

.landing-shot-featured .landing-phone {
  width: min(100%, 230px);
  justify-self: center;
}

.landing-shot figcaption {
  width: 100%;
  text-align: center;
}

.landing-shot-featured figcaption {
  text-align: right;
}

.landing-shot h3 {
  margin: 0 0 0.45rem;
  color: var(--landing-ink);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.4;
}

.landing-shot p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.landing-journey {
  border-block-start: 1px solid var(--landing-line);
}

.landing-journey-customer {
  background: var(--landing-paper);
}

.landing-journey-barber {
  background: var(--landing-teal-soft);
}

.landing-journey-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
}

.landing-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: landing-step;
}

.landing-steps li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.25rem;
  border-block-end: 1px solid var(--landing-line);
  counter-increment: landing-step;
}

.landing-steps li::before {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--landing-teal);
  color: var(--landing-paper);
  content: counter(landing-step);
  font-weight: 600;
}

.landing-steps strong,
.landing-steps span {
  display: block;
}

.landing-step-copy {
  min-width: 0;
}

.landing-steps strong {
  margin-block-end: 0.2rem;
  color: var(--landing-ink);
  font-size: 1.08rem;
}

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

.landing-final {
  background: var(--landing-teal-dark);
  color: var(--landing-paper);
}

.landing-final-inner {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 5rem;
  text-align: center;
}

.landing-final-logo {
  display: block;
  width: min(132px, 32vw);
  height: auto;
  margin-block-end: 1.25rem;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.landing-final h2 {
  color: var(--landing-paper);
}

.landing-footer {
  border-block-start: 1px solid var(--landing-line);
  background: var(--landing-paper);
}

.landing-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2rem;
  color: var(--landing-muted);
  font-size: 0.92rem;
}

.landing-footer-inner p {
  margin: 0;
}

.landing-footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.landing-footer-inner a {
  color: var(--landing-teal-dark);
}

@supports (animation-timeline: view()) {
  .landing-section-heading,
  .landing-shot,
  .landing-journey-copy,
  .landing-steps,
  .landing-final-inner {
    animation: landing-rise 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-timeline: view();
    animation-range: entry 8% cover 28%;
  }

  .landing-shot:nth-child(2) {
    animation-delay: 60ms;
  }

  .landing-shot:nth-child(3) {
    animation-delay: 120ms;
  }

  .landing-shot:nth-child(4) {
    animation-delay: 180ms;
  }

  .landing-shot:nth-child(5) {
    animation-delay: 240ms;
  }

  .landing-shot:nth-child(6) {
    animation-delay: 300ms;
  }

  .landing-shot:nth-child(7) {
    animation-delay: 360ms;
  }
}

@media (max-width: 1050px) {
  .landing-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-shot-featured {
    grid-column: span 3;
  }
}

@media (max-width: 820px) {
  .landing-header-inner {
    flex-wrap: wrap;
    gap: 0.65rem 0.8rem;
    padding-block: 0.65rem;
  }

  .landing-nav {
    order: 3;
    flex: 1 0 100%;
    width: 100%;
    justify-content: flex-start;
    margin-inline: 0;
  }

  .landing-header-actions {
    margin-inline-start: auto;
  }

  .landing-brand img {
    width: 88px;
    height: 56px;
  }

  .landing-hero-grid,
  .landing-journey-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero-grid {
    min-height: 0;
    gap: 3rem;
  }

  .landing-hero-copy {
    max-width: none;
    text-align: center;
  }

  .landing-hero h1,
  .landing-hero-lede {
    margin-inline: auto;
  }

  .landing-actions {
    justify-content: center;
  }

  .landing-shot-featured {
    grid-column: span 3;
  }

  .landing-journey-copy {
    max-width: 680px;
  }
}

@media (max-width: 560px) {
  .landing-shell {
    width: min(100% - 1.25rem, 1180px);
  }

  .landing-hero-grid {
    padding-block: 3.5rem 4.5rem;
  }

  .landing-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .landing-hero-lede {
    font-size: 1rem;
  }

  .landing-header-cta {
    min-height: 40px;
    padding-inline: 0.75rem;
    font-size: 0.8rem;
  }

  .landing-language {
    min-height: 40px;
    padding-inline: 0.6rem;
    font-size: 0.78rem;
  }

  .landing-nav a {
    min-height: 40px;
    padding-inline: 0.78rem;
    font-size: 0.84rem;
  }

  .landing-button {
    width: 100%;
  }

  .landing-gallery {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .landing-shot-featured {
    grid-column: span 1;
    display: flex;
    align-items: center;
    padding: 1.25rem;
  }

  .landing-shot-featured figcaption {
    text-align: center;
  }

  .landing-phone,
  .landing-shot-featured .landing-phone {
    width: min(72vw, 240px);
  }

  .landing-journey-grid {
    gap: 2.5rem;
  }

  .landing-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero-copy > *,
  .landing-hero-visual,
  .landing-phone-hero,
  .landing-section-heading,
  .landing-shot,
  .landing-journey-copy,
  .landing-steps,
  .landing-final-inner {
    opacity: 1;
    animation: none;
  }

  .landing-button,
  .landing-shot .landing-phone {
    transition: none;
  }
}
