:root {
  --black: #090909;
  --ink: #111111;
  --cream: #f4efe6;
  --white: #ffffff;
  --yellow: #ffb800;
  --red: #c82d35;
  --gray: #d8d8d5;
  --muted: #aaa7a0;
  --line: 3px solid var(--black);
  --shell: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, Arial, "PingFang SC", "Microsoft YaHei", Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body,
button,
a,
summary {
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
strong,
.button,
.platform,
.desktop-nav,
.mobile-menu nav {
  font-weight: 900;
}

.shell {
  width: min(var(--shell), calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.header-tools {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 900;
}

.brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  object-fit: cover;
  border: 2px solid var(--yellow);
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 30px;
  font-size: 12px;
}

.desktop-nav > a:not(.nav-action) {
  padding: 12px 0;
  border-bottom: 3px solid transparent;
}

.desktop-nav > a:not(.nav-action):hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--white);
  background: #1b1b1b;
  border: 2px solid var(--white);
  box-shadow: 4px 4px 0 var(--red);
}

.language-switcher button {
  display: grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 0;
  border-right: 2px solid var(--white);
  font: 900 11px/1 Inter, Arial, "PingFang SC", sans-serif;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.language-switcher button:last-child {
  border-right: 0;
}

.language-switcher button:hover {
  color: var(--yellow);
}

.language-switcher button[aria-pressed="true"] {
  color: var(--black);
  background: var(--yellow);
}

.nav-action {
  padding: 12px 16px;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--white);
  box-shadow: 4px 4px 0 var(--red);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-action:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--red);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 11px;
  place-content: center;
  gap: 5px;
  background: var(--yellow);
  border: 2px solid var(--white);
  cursor: pointer;
  list-style: none;
}

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

.mobile-menu summary span {
  display: block;
  width: 21px;
  height: 3px;
  background: var(--black);
}

.mobile-menu nav {
  position: absolute;
  top: 54px;
  right: 0;
  display: grid;
  width: 220px;
  color: var(--black);
  background: var(--cream);
  border: var(--line);
  box-shadow: 7px 7px 0 var(--yellow);
}

.mobile-menu nav a {
  min-height: 48px;
  padding: 14px 18px;
  border-bottom: 2px solid var(--black);
  font-size: 13px;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
  background: var(--yellow);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 76px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border-bottom: var(--line);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 27%;
  right: 0;
  left: 0;
  z-index: -4;
  content: "";
  height: 2px;
  background: var(--white);
  opacity: 0.2;
}

.hero::after {
  position: absolute;
  top: 0;
  right: 8%;
  bottom: 0;
  z-index: -4;
  width: 2px;
  content: "";
  background: var(--white);
  opacity: 0.2;
}

.hero-grid {
  display: grid;
  min-height: calc(100dvh - 76px);
  padding-top: 72px;
  padding-bottom: 92px;
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: center;
}

.hero-copy-panel {
  position: relative;
  z-index: 3;
  max-width: 570px;
  animation: hero-enter 460ms ease-out both;
}

.kicker {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 900;
}

.kicker-yellow {
  color: var(--yellow);
}

.hero h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 102px;
  line-height: 0.86;
}

.hero-slogan {
  margin-bottom: 24px;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.hero-slogan strong {
  display: inline-block;
  padding: 5px 10px;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--white);
  transform: rotate(-2deg);
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 30px;
  color: #e7e3db;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .button {
  padding-right: 14px;
  padding-left: 14px;
  gap: 12px;
  font-size: 12px;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 17px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: var(--line);
  box-shadow: 5px 5px 0 var(--red);
  font-size: 13px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button > span[aria-hidden="true"] {
  font-size: 20px;
  line-height: 1;
}

.button:hover {
  transform: translate(4px, 4px);
  box-shadow: 1px 1px 0 var(--red);
}

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

.button-light {
  color: var(--black);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.hero-meta {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.hero-meta-item {
  color: var(--muted);
}

.hero-meta-item b {
  font-weight: 800;
}

.hero-meta-separator {
  padding: 0 7px;
  color: var(--red);
}

.hero-product {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  background: var(--cream);
  border: 4px solid var(--white);
  box-shadow: 16px 16px 0 var(--yellow);
  transform: rotate(1deg);
  animation: product-enter 560ms ease-out both;
}

.hero-product figcaption {
  display: grid;
  min-height: 48px;
  padding: 0 14px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: var(--white);
  background: #1b1b1b;
  border-bottom: 3px solid var(--white);
  font-size: 11px;
  font-weight: 900;
}

.hero-product figcaption a {
  color: var(--yellow);
}

.hero-product img {
  width: 100%;
  height: auto;
}

.hero-download-proof {
  display: grid;
  min-height: 100px;
  padding: 14px 18px 16px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 2px 20px;
  align-items: end;
  color: var(--white);
  background: var(--red);
  border-top: 3px solid var(--white);
}

.hero-download-proof span,
.hero-download-proof small {
  font-size: 11px;
  font-weight: 900;
}

.hero-download-proof strong {
  grid-column: 1 / 3;
  font-size: 52px;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.hero-download-proof small {
  grid-column: 2;
  grid-row: 1;
  color: var(--yellow);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots i {
  display: block;
  width: 9px;
  height: 9px;
  background: var(--red);
  border: 1px solid var(--white);
}

.browser-dots i:nth-child(2) {
  background: var(--yellow);
}

.browser-dots i:nth-child(3) {
  background: var(--white);
}

.hero-red-block {
  position: absolute;
  left: -6%;
  bottom: 8%;
  z-index: -2;
  width: 54%;
  height: 94px;
  background: var(--red);
  border-top: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(-7deg);
}

.hero-yellow-mark {
  position: absolute;
  right: -4%;
  top: 13%;
  z-index: -1;
  width: 26%;
  height: 34px;
  background: var(--yellow);
  border: var(--line);
  transform: rotate(-12deg);
}

.hero-index {
  position: absolute;
  right: 28px;
  bottom: 20px;
  margin: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.signal-strip {
  display: flex;
  min-height: 56px;
  padding: 0 32px;
  align-items: center;
  justify-content: space-around;
  gap: 22px;
  color: var(--black);
  background: var(--yellow);
  border-bottom: var(--line);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.signal-strip b {
  color: var(--red);
  font-size: 24px;
}

.statement {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: var(--line);
}

.statement-grid {
  position: relative;
  z-index: 2;
  display: grid;
  padding-top: 116px;
  padding-bottom: 116px;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 96px;
  align-items: end;
}

.statement h2,
.feature-heading h2,
.web-callout h2,
.about h2,
.get-massreel h2 {
  margin-bottom: 0;
  font-size: 70px;
  line-height: 0.94;
}

.statement-copy {
  padding-bottom: 6px;
}

.statement-lede {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.statement-copy > p:not(.statement-lede) {
  max-width: 560px;
  margin-bottom: 30px;
  color: #4f4b45;
  font-size: 17px;
}

.statement-red {
  position: absolute;
  right: -7%;
  bottom: -80px;
  width: 46%;
  height: 176px;
  background: var(--red);
  border: var(--line);
  transform: rotate(-8deg);
}

.text-link {
  display: inline-flex;
  padding-bottom: 6px;
  align-items: center;
  gap: 14px;
  border-bottom: 4px solid var(--red);
  font-size: 13px;
  font-weight: 900;
}

.text-link > span[aria-hidden="true"] {
  font-size: 20px;
}

.feature-showcase {
  padding: 108px 0 126px;
  color: var(--white);
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}

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

.feature-heading h2 {
  color: var(--yellow);
}

.feature-heading > p {
  max-width: 470px;
  margin: 0 0 6px;
  color: #cbc6bd;
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.feature-card {
  min-width: 0;
}

.feature-card:nth-child(even) {
  margin-top: 42px;
}

.feature-card figure {
  margin: 0;
  overflow: hidden;
  background: #151515;
  border: 3px solid var(--white);
  box-shadow: 8px 8px 0 var(--yellow);
}

.feature-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 941 / 1672;
  object-fit: contain;
  transition: transform 260ms ease;
}

.feature-card:hover img {
  transform: scale(1.018);
}

.feature-caption {
  display: grid;
  min-height: 132px;
  margin: 12px -8px 0 8px;
  padding: 16px;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  color: var(--black);
  background: var(--cream);
  border: var(--line);
}

.feature-caption span {
  grid-row: 1 / 3;
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
}

.feature-caption strong {
  font-size: 19px;
}

.feature-caption p {
  grid-column: 2;
  margin: 4px 0 0;
  color: #4f4b45;
  font-size: 13px;
}

.web-callout {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  border-bottom: var(--line);
}

.web-callout::after {
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 380px;
  height: 380px;
  content: "";
  border: 72px solid var(--red);
  border-radius: 50%;
}

.web-callout-grid {
  position: relative;
  z-index: 2;
  display: grid;
  padding-top: 96px;
  padding-bottom: 96px;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 92px;
  align-items: end;
}

.web-callout-grid > div:last-child {
  max-width: 520px;
}

.web-callout-grid > div:last-child p {
  margin-bottom: 28px;
  font-size: 18px;
}

.about {
  color: var(--white);
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}

.about-grid {
  display: grid;
  padding-top: 116px;
  padding-bottom: 116px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
}

.about-grid > * {
  min-width: 0;
}

.about h2 {
  max-width: 780px;
}

.about-copy > p {
  margin-bottom: 38px;
  color: #cbc6bd;
  font-size: 19px;
}

.about-copy dl {
  margin-bottom: 0;
  border-top: 3px solid var(--white);
}

.about-copy dl > div {
  display: grid;
  padding: 15px 0;
  grid-template-columns: 115px 1fr;
  gap: 20px;
  align-items: baseline;
  border-bottom: 2px solid #4a4a4a;
}

.about-copy dt {
  color: var(--yellow);
  font-size: 22px;
  font-weight: 900;
}

.about-copy dd {
  margin-bottom: 0;
  color: #cbc6bd;
  font-size: 13px;
}

.get-massreel {
  position: relative;
  overflow: hidden;
  color: var(--black);
  background: var(--cream);
  border-bottom: var(--line);
}

.get-grid {
  position: relative;
  z-index: 2;
  display: grid;
  padding-top: 106px;
  padding-bottom: 106px;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 48px;
  align-items: center;
}

.get-massreel h2 {
  font-size: 90px;
}

.get-red {
  position: absolute;
  left: -6%;
  bottom: -50px;
  width: 57%;
  height: 150px;
  background: var(--red);
  border: var(--line);
  transform: rotate(-7deg);
}

.platforms {
  display: grid;
  min-width: 0;
  gap: 14px;
}

.get-download-layout {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) 204px;
  gap: 18px;
  align-items: start;
}

.download-counter {
  display: grid;
  width: 100%;
  min-height: 116px;
  min-width: 0;
  padding: 18px 20px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 2px 20px;
  align-items: center;
  color: var(--white);
  background: var(--red);
  border: var(--line);
  box-shadow: 6px 6px 0 var(--black);
}

.download-counter span,
.download-counter small {
  font-size: 12px;
  font-weight: 900;
}

.download-counter strong {
  grid-column: 1 / 3;
  font-size: 54px;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.download-counter small {
  grid-column: 2;
  grid-row: 1;
  color: var(--yellow);
}

.platform {
  display: grid;
  width: 100%;
  min-height: 88px;
  min-width: 0;
  padding: 17px 20px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 3px 18px;
  align-items: center;
  border: var(--line);
  box-shadow: 6px 6px 0 var(--black);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.platform:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--black);
}

.platform span {
  font-size: 12px;
}

.platform strong {
  font-size: 20px;
}

.platform b {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 26px;
}

.platform-android {
  background: var(--yellow);
}

.platform-apk {
  color: var(--black);
  background: var(--white);
}

.download-qr-panel {
  display: grid;
  gap: 14px;
  padding-top: 130px;
}

.download-qr {
  display: flex;
  min-width: 0;
  padding: 4px 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--black);
  text-align: center;
  border: var(--line);
  box-shadow: 6px 6px 0 var(--black);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.download-qr:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--black);
}

.download-qr img {
  display: block;
  width: min(100%, 140px);
  height: auto;
  padding: 6px;
  background: var(--white);
  border: 2px solid var(--black);
  image-rendering: pixelated;
}

.download-qr-copy {
  display: grid;
  min-height: 32px;
  gap: 1px;
  line-height: 1.25;
  text-transform: uppercase;
}

.download-qr-copy strong {
  font-size: 12px;
  font-weight: 900;
}

.download-qr-copy small {
  font-size: 10px;
  font-weight: 800;
  opacity: 0.72;
}

.download-qr-play {
  background: var(--yellow);
}

.download-qr-apk {
  background: var(--white);
}

.platform-web {
  color: var(--white);
  background: var(--black);
}

.platform-ios {
  color: #68645c;
  background: var(--gray);
  border-color: #68645c;
  box-shadow: 6px 6px 0 #68645c;
}

.platform-ios:hover {
  transform: none;
  box-shadow: 6px 6px 0 #68645c;
}

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

.footer-grid {
  display: grid;
  min-height: 110px;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

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

html[data-locale="zh"] :is(.hero-slogan, h2, .feature-caption strong, .platform strong) {
  line-height: 1.12;
}

html[data-locale="fr"] .hero-slogan {
  font-size: 34px;
}

html[data-locale="fr"] :is(.feature-heading h2, .about h2) {
  font-size: 62px;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes product-enter {
  from {
    opacity: 0;
    transform: translateX(28px) rotate(1deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(1deg);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0.4;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .reveal {
    animation: reveal-up linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 25%;
  }
}

@media (max-width: 1200px) {
  .shell {
    width: min(var(--shell), calc(100% - 48px));
  }

  .hero-grid {
    grid-template-columns: minmax(370px, 0.86fr) minmax(0, 1.14fr);
    gap: 46px;
  }

  .hero h1 {
    font-size: 82px;
  }

  .hero-slogan {
    font-size: 31px;
  }

  html[data-locale="fr"] .hero-slogan {
    font-size: 29px;
  }

  .statement h2,
  .feature-heading h2,
  .web-callout h2,
  .about h2 {
    font-size: 58px;
  }

  html[data-locale="fr"] :is(.feature-heading h2, .about h2) {
    font-size: 52px;
  }

  .statement-grid,
  .web-callout-grid,
  .about-grid,
  .get-grid {
    gap: 58px;
  }

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

  .feature-card:nth-child(even) {
    margin-top: 54px;
  }

  .feature-caption {
    min-height: 106px;
  }

  .get-massreel h2 {
    font-size: 78px;
  }

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

  .footer-grid p:first-of-type {
    display: none;
  }
}

@media (max-width: 820px) {
  .shell {
    width: calc(100% - 36px);
  }

  .nav-shell {
    min-height: 66px;
    gap: 14px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero,
  .hero-grid {
    min-height: 0;
  }

  .hero-grid {
    padding-top: 62px;
    padding-bottom: 78px;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-copy-panel {
    max-width: 620px;
  }

  .hero h1 {
    font-size: 68px;
  }

  html[data-locale="fr"] .hero-slogan {
    font-size: 29px;
  }

  .hero-copy {
    max-width: 580px;
  }

  .hero-product {
    transform: none;
  }

  .hero-download-proof strong {
    font-size: 46px;
  }

  .hero-red-block {
    left: -20%;
    bottom: 3%;
    width: 82%;
    height: 76px;
  }

  .hero-yellow-mark {
    right: -12%;
    top: 51%;
    width: 48%;
    height: 26px;
  }

  .signal-strip {
    justify-content: flex-start;
    overflow: hidden;
  }

  .signal-strip span:nth-of-type(n + 5),
  .signal-strip b:nth-of-type(n + 4) {
    display: none;
  }

  .statement-grid,
  .feature-heading,
  .web-callout-grid,
  .about-grid,
  .get-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .statement-grid,
  .about-grid,
  .get-grid {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .statement h2,
  .feature-heading h2,
  .web-callout h2,
  .about h2 {
    font-size: 48px;
  }

  html[data-locale="fr"] :is(.feature-heading h2, .about h2) {
    font-size: 44px;
  }

  .feature-showcase {
    padding-top: 78px;
    padding-bottom: 92px;
  }

  .feature-heading {
    margin-bottom: 48px;
  }

  .feature-heading > p {
    max-width: 620px;
  }

  .feature-grid {
    gap: 30px;
  }

  .feature-card:nth-child(even) {
    margin-top: 34px;
  }

  .web-callout-grid {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .about-copy dl > div {
    grid-template-columns: 100px 1fr;
  }

  .get-massreel h2 {
    font-size: 68px;
  }

  .download-counter strong {
    font-size: 46px;
  }

  .footer-grid {
    min-height: 132px;
    padding-top: 24px;
    padding-bottom: 24px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-grid p:first-of-type {
    display: block;
  }
}

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

  .nav-shell {
    gap: 10px;
  }

  .nav-shell > .brand span {
    display: none;
  }

  .header-tools {
    gap: 8px;
  }

  .hero-grid {
    padding-top: 48px;
    padding-bottom: 66px;
    gap: 42px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: 48px;
  }

  .hero-slogan {
    margin-bottom: 18px;
    font-size: 25px;
  }

  html[data-locale="fr"] .hero-slogan {
    font-size: 23px;
  }

  .hero-copy {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    max-width: 340px;
    line-height: 1.7;
  }

  .hero-product {
    border-width: 3px;
    box-shadow: 9px 9px 0 var(--yellow);
  }

  .hero-product figcaption {
    min-height: 44px;
    padding: 0 10px;
    grid-template-columns: auto 1fr;
  }

  .hero-product figcaption a {
    display: none;
  }

  .hero-download-proof {
    min-height: 90px;
    padding: 12px 14px 14px;
  }

  .hero-download-proof strong {
    font-size: 40px;
  }

  .hero-index {
    display: none;
  }

  .signal-strip {
    min-height: 50px;
    padding: 0 16px;
    gap: 16px;
    font-size: 12px;
  }

  .signal-strip span:nth-of-type(n + 4),
  .signal-strip b:nth-of-type(n + 3) {
    display: none;
  }

  .statement-grid,
  .about-grid,
  .get-grid {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .statement h2,
  .feature-heading h2,
  .web-callout h2,
  .about h2 {
    font-size: 40px;
  }

  html[data-locale="fr"] :is(.feature-heading h2, .web-callout h2, .about h2) {
    font-size: 36px;
  }

  .statement-lede {
    font-size: 22px;
  }

  .statement-red {
    right: -32%;
    width: 92%;
    height: 112px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .feature-card,
  .feature-card:nth-child(even) {
    width: min(100%, 420px);
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .feature-caption {
    min-height: 112px;
  }

  .web-callout::after {
    right: -190px;
    width: 320px;
    height: 320px;
    border-width: 54px;
  }

  .web-callout-grid > div:last-child p {
    font-size: 16px;
  }

  .get-massreel h2 {
    font-size: 40px;
  }

  .platform strong {
    font-size: 17px;
  }

  .download-counter {
    min-height: 104px;
  }

  .download-counter strong {
    font-size: 40px;
  }

  .download-qr {
    padding: 8px;
    gap: 6px;
    box-shadow: 4px 4px 0 var(--black);
  }

  .get-download-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .download-qr-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 0;
  }

  .download-qr img {
    width: min(100%, 112px);
    padding: 4px;
  }

  .download-qr-copy {
    min-height: 38px;
  }

  .download-qr-copy strong {
    font-size: 10px;
  }

  .download-qr-copy small {
    font-size: 9px;
  }

  .get-red {
    left: -28%;
    width: 90%;
    height: 100px;
  }
}

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

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