/* [project]/client/src/app/globals.css [app-client] (css) */
:root {
  --brand: #015176;
  --brand-rgb: 1, 81, 118;
  --brand-deep: #00364f;
  --accent: #70e1c5;
  --accent-warm: #ffcf5a;
  --ink: #10242d;
  --muted: #5e7179;
  --surface: #fff;
  --surface-soft: #f1f6f7;
  --surface-elevated: #fff;
  --line: #10242d24;
  --page: #f7fafb;
  --header: #f7fafbd6;
  --shadow: 0 24px 80px #0151761f;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --shell: min(1240px, calc(100vw - 48px));
}

:root[data-theme="dark"] {
  --ink: #edf7f8;
  --muted: #a8bac0;
  --surface: #0c2029;
  --surface-soft: #102a35;
  --surface-elevated: #15323e;
  --line: #edf7f824;
  --page: #07151b;
  --header: #07151bd6;
  --shadow: 0 28px 90px #0000004d;
  --brand: #62b9da;
  --brand-rgb: 98, 185, 218;
  --brand-deep: #0d3b4d;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  color: var(--ink);
  scroll-behavior: smooth;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: .17s both page-out;
}

::view-transition-new(root) {
  animation: .28s cubic-bezier(.22, 1, .36, 1) both page-in;
}

@keyframes page-out {
  to {
    opacity: 0;
    transform: translateY(-5px);
  }
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .motion-enabled .reveal-target {
    opacity: 0;
    transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
    transform: translateY(30px);
  }

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

body {
  background: var(--page);
  color: var(--ink);
  text-rendering: optimizelegibility;
  margin: 0;
  font-family: Inter, SF Pro Display, Segoe UI, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}

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

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

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

::selection {
  background: var(--accent);
  color: #06242f;
}

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

.skip-link {
  z-index: 999;
  background: var(--ink);
  color: var(--page);
  border-radius: 999px;
  padding: 10px 16px;
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
}

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

.hero {
  border-bottom: 1px solid var(--line);
  min-height: min(820px, 100svh - 76px);
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 68px 68px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#000, #0000 86%);
  mask-image: linear-gradient(#000, #0000 86%);
}

.hero:before {
  content: "";
  filter: blur(18px);
  background: radial-gradient(circle, #70e1c54d, #0000 67%);
  border-radius: 50%;
  width: 54vw;
  height: 54vw;
  position: absolute;
  top: -26vw;
  right: -10vw;
}

.hero__inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: center;
  gap: 72px;
  padding-block: 96px;
  display: grid;
  position: relative;
}

.hero h1, .page-hero h1 {
  letter-spacing: -.068em;
  overflow-wrap: anywhere;
  max-width: 900px;
  margin: 0;
  font-size: clamp(52px, 7.2vw, 104px);
  line-height: .94;
}

.hero__lead, .page-hero__lead {
  max-width: 680px;
  color: var(--muted);
  margin: 32px 0 0;
  font-size: clamp(18px, 1.8vw, 24px);
}

.hero__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
  display: flex;
}

.hero-visual {
  aspect-ratio: 1;
  place-items: center;
  display: grid;
  position: relative;
}

.hero-visual:before {
  content: "";
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(var(--brand-rgb), .15), #70e1c51a);
  box-shadow: var(--shadow);
  position: absolute;
  inset: 8%;
  transform: rotate(7deg);
}

.hero-visual__orbit {
  border: 1px solid var(--line);
  border-radius: 50%;
  position: absolute;
}

.hero-visual__orbit--one {
  width: 68%;
  height: 68%;
}

.hero-visual__orbit--two {
  border-style: dashed;
  width: 88%;
  height: 88%;
}

.hero-visual__core {
  z-index: 2;
  background: var(--brand-deep);
  color: #fff;
  width: 190px;
  height: 190px;
  box-shadow: 0 24px 50px rgba(var(--brand-rgb), .28);
  border-radius: 50% 50% 50% 24%;
  align-content: center;
  place-items: center;
  display: grid;
  position: relative;
  transform: rotate(-7deg);
}

.hero-visual__core span {
  letter-spacing: .2em;
  font-size: 12px;
  font-weight: 900;
}

.hero-visual__core strong {
  letter-spacing: -.07em;
  font-size: 48px;
}

.hero-visual__card {
  z-index: 3;
  border: 1px solid var(--line);
  background: var(--surface-elevated);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 750;
  position: absolute;
}

.hero-visual__card--top {
  top: 13%;
  left: 18%;
}

.hero-visual__card--right {
  top: 45%;
  right: 2%;
}

.hero-visual__card--bottom {
  bottom: 12%;
  left: 13%;
}

.logo-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding-block: 28px;
}

.logo-strip__items {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  display: grid;
}

.logo-strip__items span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 780;
}

.logo-strip__logo {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  min-height: 76px;
  position: relative;
  overflow: hidden;
}

.logo-strip__logo img {
  object-fit: contain;
  padding: 10px;
}

.section {
  padding-block: 120px;
}

.section--tinted {
  background: var(--surface-soft);
}

.section--dark {
  color: #fff;
  background: #062f42;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 52px;
}

.section-heading h2, .split-heading h2, .final-cta h2 {
  letter-spacing: -.055em;
  margin: 0;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1;
}

.section-heading > p:last-child {
  max-width: 680px;
  color: var(--muted);
  margin: 24px 0 0;
  font-size: 19px;
}

.card-grid {
  gap: 18px;
  display: grid;
}

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

.card-grid--solutions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card, .solution-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-elevated);
  flex-direction: column;
  min-height: 330px;
  padding: 34px;
  transition: transform .22s, border-color .22s, box-shadow .22s;
  display: flex;
  position: relative;
}

.feature-card:hover, .solution-card:hover {
  border-color: rgba(var(--brand-rgb), .5);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.feature-card__number, .solution-card__badge {
  color: var(--brand);
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 850;
}

.feature-card h3, .solution-card h3, .team-card h3 {
  letter-spacing: -.04em;
  margin: auto 0 14px;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.08;
}

.feature-card p, .solution-card p {
  color: var(--muted);
  margin: 0;
}

.feature-card__arrow {
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  width: 46px;
  height: 46px;
  display: grid;
  position: absolute;
  top: 28px;
  right: 28px;
}

.text-link {
  color: var(--brand);
  margin-top: 24px;
  font-weight: 750;
}

.split-heading {
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: 64px;
  display: grid;
}

.tag-cloud {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.tag-cloud a {
  border: 1px solid var(--line);
  background: var(--surface-elevated);
  border-radius: 999px;
  padding: 16px 22px;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 760;
  transition: background .18s, color .18s, transform .18s;
}

.tag-cloud a:hover {
  background: var(--brand);
  color: #fff;
  transform: rotate(-1deg);
}

.process-list {
  border-radius: var(--radius-md);
  background: #ffffff29;
  border: 1px solid #ffffff29;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  overflow: hidden;
}

.process-list li {
  background: #062f42;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 26px;
  display: flex;
}

.process-list span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.process-list strong {
  font-size: 20px;
  line-height: 1.2;
}

.trust-grid {
  grid-template-columns: .78fr 1.22fr;
  align-items: end;
  gap: 64px;
  display: grid;
}

.stats-grid {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  display: grid;
  overflow: hidden;
}

.stats-grid article {
  background: var(--surface);
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 26px;
  display: flex;
}

.stats-grid strong {
  letter-spacing: -.07em;
  font-size: clamp(50px, 6vw, 82px);
  line-height: .9;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  display: grid;
}

.team-card__portrait {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, rgba(var(--brand-rgb), .18), #70e1c538),
    var(--surface);
  color: var(--brand);
  align-items: flex-end;
  padding: 24px;
  font-size: 12px;
  font-weight: 850;
  display: flex;
  position: relative;
  overflow: hidden;
}

.team-card__portrait--photo {
  aspect-ratio: 4 / 5;
  background: #dfeaec;
  padding: 0;
}

.team-card__portrait--photo img {
  object-fit: cover;
  object-position: center top;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}

.team-card:hover .team-card__portrait--photo img {
  transform: scale(1.025);
}

.final-cta {
  border-radius: var(--radius-lg);
  background: var(--brand-deep);
  color: #fff;
  padding: clamp(42px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}

.final-cta:after {
  content: "";
  border: 1px solid #ffffff40;
  border-radius: 50%;
  width: 420px;
  height: 420px;
  position: absolute;
  bottom: -260px;
  right: -170px;
  box-shadow: 0 0 0 70px #ffffff0a, 0 0 0 140px #ffffff06;
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta > p:not(.eyebrow) {
  color: #ffffffbd;
  max-width: 680px;
  margin: 24px 0 32px;
  font-size: 19px;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 85% 20%, #70e1c533, transparent 27%),
    linear-gradient(150deg, rgba(var(--brand-rgb), .08), transparent 50%);
  align-items: flex-end;
  min-height: 620px;
  padding-block: 84px;
  display: flex;
}

.page-hero h1 {
  max-width: 1100px;
  font-size: clamp(48px, 6vw, 88px);
}

.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  display: grid;
}

.highlight-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 28px;
  display: flex;
}

.highlight-grid span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
}

.highlight-grid h3 {
  letter-spacing: -.035em;
  margin: 0;
  font-size: 26px;
}

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

.detail-intro, .detail-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  min-height: 330px;
  padding: clamp(26px, 3vw, 42px);
}

.detail-intro {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.detail-intro h2 {
  letter-spacing: -.052em;
  max-width: 580px;
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
}

.detail-panel--brand {
  background: var(--brand-deep);
  color: #fff;
}

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

.contact-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 30px;
  display: flex;
}

.contact-grid span {
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: auto;
  font-size: 12px;
  font-weight: 800;
}

.contact-grid a, .contact-grid strong {
  letter-spacing: -.04em;
  font-size: clamp(24px, 3vw, 40px);
}

.contact-grid p {
  color: var(--muted);
  margin: 8px 0 0;
}

.contact-layout {
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
  align-items: start;
  gap: 24px;
  display: grid;
}

.contact-layout .contact-grid {
  grid-template-columns: 1fr;
}

.contact-layout .contact-grid article {
  min-height: 180px;
}

.contact-form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 54px);
  position: sticky;
  top: 100px;
}

.contact-form-card h2 {
  letter-spacing: -.055em;
  margin: 0;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: .98;
}

.contact-form-card > p {
  color: var(--muted);
  margin: 20px 0 30px;
}

.special-form-shell {
  max-width: 920px;
}

.turnstile-field {
  width: min(100%, 320px);
  min-height: 1px;
}

.turnstile-field > div {
  width: 100%;
}

.legal-document {
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
  display: grid;
}

.legal-document__aside {
  scrollbar-width: thin;
  gap: 30px;
  max-height: calc(100svh - 136px);
  padding-right: 10px;
  display: grid;
  position: sticky;
  top: 112px;
  overflow-y: auto;
}

.legal-document__intro {
  color: var(--muted);
  margin: 0;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

.legal-document__toc {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.legal-document__toc strong {
  color: var(--ink);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 13px;
  display: block;
}

.legal-document__toc ul {
  color: var(--muted);
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  list-style: none;
  display: grid;
}

.legal-document__toc a {
  color: inherit;
}

.legal-document__toc a:hover {
  color: var(--brand);
}

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

.legal-document__sections > section {
  border-bottom: 1px solid var(--line);
  padding-block: 34px;
  scroll-margin-top: 112px;
}

.legal-document__sections h2 {
  letter-spacing: -.04em;
  margin: 0 0 20px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.1;
}

.legal-document__sections p {
  color: var(--muted);
  margin: 0;
  font-size: 17px;
}

.legal-document__sections p + p {
  margin-top: 16px;
}

.legal-document__sections ul {
  color: var(--muted);
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  display: grid;
}

.legal-document__sections li::marker {
  color: var(--brand);
}

.company-story {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
  display: grid;
}

.company-story h2 {
  letter-spacing: -.06em;
  max-width: 640px;
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .98;
}

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

.company-story__copy p {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  margin: 0;
  padding-block: 28px;
  font-size: clamp(18px, 2vw, 23px);
}

.company-scene__frame, .page-scene__frame {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.company-scene__frame img, .page-scene__frame img {
  object-fit: cover;
}

.values-grid {
  border-radius: var(--radius-md);
  background: #ffffff29;
  border: 1px solid #ffffff29;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  display: grid;
  overflow: hidden;
}

.values-grid article {
  background: #062f42;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 28px;
  display: flex;
}

.values-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.values-grid strong {
  max-width: 300px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
}

.client-logo-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  display: grid;
}

.client-logo-card {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}

.client-logo-card:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-4px)rotate(-.5deg);
}

.client-logo-card img {
  object-fit: contain;
  padding: 12%;
}

.section-heading--action {
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  max-width: none;
  display: flex;
}

.section-heading--action > div {
  max-width: 770px;
}

.section-heading--action > div > p:last-child {
  max-width: 680px;
  color: var(--muted);
  margin: 24px 0 0;
  font-size: 19px;
}

.certificate-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  display: grid;
}

.certificate-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  overflow: hidden;
}

.certificate-card:hover {
  border-color: rgba(var(--brand-rgb), .52);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.certificate-card__image {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: relative;
  overflow: hidden;
}

.certificate-card__image img {
  object-fit: contain;
  padding: 16px;
}

.certificate-card__body {
  flex-direction: column;
  justify-content: space-between;
  min-height: 138px;
  padding: 24px;
  display: flex;
}

.certificate-card__body h3 {
  letter-spacing: -.025em;
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.certificate-card__body span {
  color: var(--brand);
  margin-top: 24px;
  font-size: 14px;
  font-weight: 750;
}

.not-found {
  text-align: center;
  place-items: center;
  min-height: 70svh;
  display: grid;
}

.not-found h1 {
  letter-spacing: -.06em;
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
}

.not-found p {
  color: var(--muted);
  margin: 18px 0 28px;
}

@media (max-width: 1320px) {
  .hero__inner {
    grid-template-columns: 1fr .8fr;
  }

  .logo-strip__items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .client-logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .hero {
    min-height: auto;
  }

  .hero__inner, .split-heading, .trust-grid, .contact-layout, .detail-layout, .company-story, .legal-document {
    grid-template-columns: 1fr;
  }

  .legal-document__aside {
    max-height: none;
    padding-right: 0;
    position: static;
    overflow: visible;
  }

  .contact-form-card {
    position: static;
  }

  .hero__inner {
    gap: 30px;
    padding-block: 72px 42px;
  }

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

  .section {
    padding-block: 82px;
  }

  .card-grid--solutions, .team-grid, .certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 24px);
    --radius-md: 20px;
    --radius-lg: 26px;
  }

  .hero h1, .page-hero h1 {
    overflow-wrap: normal;
    font-size: clamp(34px, 9vw, 44px);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__lead, .page-hero__lead {
    font-size: 17px;
  }

  .section {
    padding-block: 64px;
  }

  .hero-visual {
    margin-top: 16px;
  }

  .hero-visual__core {
    width: 140px;
    height: 140px;
  }

  .hero-visual__core strong {
    font-size: 38px;
  }

  .hero-visual__card {
    padding: 9px 12px;
    font-size: 11px;
  }

  .hero-visual__card--right {
    right: 5%;
  }

  .section-heading h2, .split-heading h2, .final-cta h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .card-grid--services, .card-grid--solutions, .team-grid, .certificate-grid, .stats-grid, .highlight-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section-heading--action {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-card, .solution-card {
    min-height: 280px;
    padding: 26px;
  }

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

  .process-list li {
    min-height: 140px;
  }

  .stats-grid article {
    min-height: 180px;
  }

  .page-hero {
    min-height: 520px;
    padding-block: 60px;
  }

  .company-scene__frame, .page-scene__frame {
    aspect-ratio: 4 / 3;
  }
}

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

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

/*# sourceMappingURL=client_src_app_globals_1uj5wk4.css.map*/