:root {
  --ink: #112033;
  --ink-2: #25364a;
  --muted: #657282;
  --line: #d7dee8;
  --panel: #f6f8fb;
  --paper: #ffffff;
  --navy: #14283f;
  --blue: #1f5f9f;
  --teal: #157a75;
  --red: #b9162c;
  --gold: #a46c16;
  --shadow: 0 18px 42px rgba(17, 32, 51, 0.14);
  --radius: 8px;
  --mouse-x: 50vw;
  --mouse-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.5;
}

body[data-mouse-active="true"] .cursor-light {
  opacity: 0.58;
}

.cursor-light {
  position: fixed;
  z-index: 95;
  left: var(--mouse-x);
  top: var(--mouse-y);
  width: 430px;
  height: 430px;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(139, 224, 218, 0.26) 0%, rgba(31, 95, 159, 0.14) 34%, rgba(185, 22, 44, 0.1) 48%, transparent 68%);
  filter: blur(4px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(12, 25, 40, 0.82), rgba(12, 25, 40, 0.15));
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(17, 32, 51, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 92px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: #fff;
}

.site-header[data-elevated="true"] .brand img {
  border-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lang-switch span {
  opacity: 0.72;
}

.lang-switch select {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  padding: 0 8px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.lang-switch option {
  color: var(--ink);
}

.site-header[data-elevated="true"] .lang-switch select {
  border-color: var(--line);
  background: #fff;
}

.header-cta,
.btn,
.upload-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta::before,
.btn::before,
.upload-button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.26) 42%, transparent 64%);
  transform: translateX(-120%);
  transition: transform 460ms ease;
}

.header-cta:hover,
.btn:hover,
.upload-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 32, 51, 0.2);
}

.header-cta:hover::before,
.btn:hover::before,
.upload-button:hover::before {
  transform: translateX(120%);
}

.header-cta *,
.btn *,
.upload-button * {
  position: relative;
}

.header-cta {
  color: #fff;
  background: var(--red);
  font-size: 14px;
}

.site-header[data-elevated="true"] .header-cta {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  padding: 118px clamp(20px, 6vw, 76px) 86px;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 20, 34, 0.88) 0%, rgba(9, 20, 34, 0.66) 46%, rgba(9, 20, 34, 0.22) 100%),
    linear-gradient(180deg, rgba(9, 20, 34, 0.08) 0%, rgba(9, 20, 34, 0.7) 100%),
    url("assets/reviews/arrival-group-2.jpg") center 38% / cover;
  transform: scale(1.02);
}

.hero-copy {
  position: relative;
  width: min(720px, 100%);
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8be0da;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(72px, 13vw, 156px);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.35;
}

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

.hero-route {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(560px, 100%);
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-route span {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hero-route span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 28px rgba(185, 22, 44, 0.22);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(10px);
}

.hero-strip {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 6vw, 76px);
  right: clamp(20px, 6vw, 76px);
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 18, 30, 0.42);
  backdrop-filter: blur(14px);
}

.hero-strip span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.hero-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-band div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px clamp(20px, 5vw, 64px);
}

.trust-band div + div {
  border-left: 1px solid var(--line);
}

.trust-band strong {
  color: var(--navy);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.trust-band span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 6vw, 76px);
}

.section-head {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 820px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.process-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  background: #fff;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.process-card::after,
.docs-grid a::after,
.written-review-card::after,
.job-facts::after,
.calc-result::after,
.apply-form::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(31, 95, 159, 0.12), transparent 38%, rgba(185, 22, 44, 0.08));
  opacity: 0;
  transition: opacity 180ms ease;
}

.process-card:hover,
.docs-grid a:hover,
.written-review-card:hover,
.job-facts:hover,
.calc-result:hover,
.apply-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(17, 32, 51, 0.16);
}

.process-card:hover::after,
.docs-grid a:hover::after,
.written-review-card:hover::after,
.job-facts:hover::after,
.calc-result:hover::after,
.apply-form:hover::after {
  opacity: 1;
}

.process-card + .process-card {
  border-left: 1px solid var(--line);
}

.process-card .step {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.process-card p,
.job-panel p,
.proof-copy p,
.apply-copy p {
  color: var(--muted);
}

.jobs-section {
  background:
    linear-gradient(90deg, rgba(246, 248, 251, 0.98), rgba(246, 248, 251, 0.86)),
    url("assets/reviews/warehouse-worker.jpg") center / cover;
}

.job-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: start;
  max-width: 1180px;
}

.job-panel > div:first-child {
  max-width: 650px;
}

.job-facts {
  position: relative;
  margin: 0;
  display: grid;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.job-facts div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 18px;
}

.job-facts div + div {
  border-top: 1px solid var(--line);
}

.job-facts dt {
  color: var(--muted);
  font-weight: 800;
}

.job-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.calculator-section {
  background: var(--navy);
  color: #fff;
}

.calculator-section h2,
.calculator-section h3 {
  color: #fff;
}

.calculator-section .section-head .eyebrow {
  color: #8be0da;
}

.tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.tab-button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

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

.tab-button.active {
  color: var(--navy);
  background: #fff;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(360px, 1.16fr);
  gap: 22px;
  align-items: stretch;
}

.calc-controls,
.calc-result,
.reviews-actions,
.docs-grid a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.calc-controls {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.calc-controls label,
.apply-form label {
  display: grid;
  gap: 8px;
}

.calc-controls span,
.apply-form span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.calc-controls input,
.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
}

.calc-controls input[type="range"] {
  padding: 0;
  accent-color: var(--red);
}

.calc-controls output {
  color: #fff;
  font-weight: 900;
}

.calc-result {
  position: relative;
  padding: 26px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.result-topline {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.result-topline span,
.result-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.result-topline strong {
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.92;
  color: #fff;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.result-grid div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.result-grid strong {
  display: block;
  margin-top: 5px;
  font-size: 23px;
}

.calc-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.reviews-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px;
  margin-bottom: 18px;
}

.reviews-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.upload-button {
  color: #fff;
  background: var(--teal);
}

.upload-button input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: #0d1b2a;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-card.featured {
  grid-column: span 2;
}

.review-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 220ms ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.review-card:hover img {
  transform: scale(1.04);
}

.review-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 42px 16px 14px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 29, 0.86));
  font-weight: 900;
}

.written-reviews {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.written-review-card {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.written-review-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.written-review-card strong,
.written-review-card span {
  position: relative;
  z-index: 1;
  display: block;
}

.written-review-card strong {
  color: #fff;
  font-size: 15px;
}

.written-review-card span {
  color: #8be0da;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.written-review-card:hover {
  border-color: rgba(139, 224, 218, 0.42);
}

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

.docs-grid a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 22px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.docs-grid a > * {
  position: relative;
  z-index: 1;
}

.docs-grid span {
  color: #8be0da;
  font-size: 12px;
  font-weight: 900;
}

.docs-grid strong {
  color: #fff;
  font-size: 22px;
}

.docs-grid small {
  color: rgba(255, 255, 255, 0.65);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 1.28fr);
  gap: 36px;
  align-items: center;
  background: #fff;
}

.proof-copy {
  max-width: 520px;
}

.proof-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.proof-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.proof-mosaic img:first-child {
  grid-row: span 2;
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: 34px;
  background: var(--panel);
}

.apply-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.apply-form > * {
  position: relative;
  z-index: 1;
}

.apply-form span {
  color: var(--muted);
}

.apply-form button,
.apply-form textarea {
  grid-column: 1 / -1;
}

.apply-form textarea {
  min-height: 118px;
  padding: 12px;
  resize: vertical;
}

.contacts-section {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.contacts-section p {
  color: var(--muted);
}

.contacts-section dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 12px;
  margin: 0;
  min-width: min(460px, 100%);
}

.contacts-section dl div {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.contacts-section dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.contacts-section dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy);
  font-size: 12px;
}

.site-footer span:first-child {
  color: #fff;
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(7, 17, 29, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(980px, 92vw);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
  }

  .header-cta {
    margin-left: auto;
  }

  .lang-switch {
    margin-left: auto;
  }

  .hero {
    min-height: 82vh;
    padding-top: 150px;
  }

  .trust-band,
  .process-grid,
  .calculator-layout,
  .proof-section,
  .apply-section {
    grid-template-columns: 1fr;
  }

  .trust-band div + div,
  .process-card + .process-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .job-panel {
    grid-template-columns: 1fr;
  }

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

  .written-reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .docs-grid {
    grid-template-columns: 1fr;
  }

  .contacts-section {
    display: grid;
  }
}

@media (max-width: 640px) {
  .nav {
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }

  .lang-switch span {
    display: none;
  }

  .hero {
    min-height: 78vh;
    padding: 132px 18px 86px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(9, 20, 34, 0.72) 0%, rgba(9, 20, 34, 0.84) 100%),
      url("assets/reviews/arrival-group-2.jpg") center top / cover;
  }

  .hero-strip {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
  }

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

  .hero-route span {
    min-height: 38px;
  }

  .hero-route span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero-strip span {
    min-height: 34px;
  }

  .hero-strip span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .section {
    padding: 52px 18px;
  }

  .tabs {
    width: 100%;
  }

  .tab-button {
    padding: 0 8px;
    font-size: 13px;
  }

  .result-grid,
  .review-grid,
  .written-reviews,
  .apply-form,
  .contacts-section dl {
    grid-template-columns: 1fr;
  }

  .reviews-actions {
    display: grid;
  }

  .review-card,
  .review-card.featured {
    grid-column: auto;
    min-height: 360px;
  }

  .proof-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .proof-mosaic img {
    height: 310px;
  }

  .proof-mosaic img:first-child {
    grid-row: auto;
  }

  .site-footer {
    display: grid;
  }
}

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

  .cursor-light {
    transition-duration: 0.001ms !important;
  }
}
