@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/Archivo-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --steel-blue: #3a5e7b;
  --steel-blue-dark: #294a66;
  --steel-blue-deep: #203b52;
  --steel-blue-light: #92a1ac;
  --rust: #ab573e;
  --sand: #d4c8a5;
  --concrete: #a3a3a3;
  --paper: #ffffff;
  --offwhite: #f6f7f7;
  --line: rgba(58, 94, 123, 0.18);
  --ink: #172430;
  --muted: #60717d;
  --shadow: 0 22px 60px rgba(32, 59, 82, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 920px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(58, 94, 123, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: clamp(92px, 12vw, 132px);
  height: auto;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--steel-blue-dark);
  font-weight: 750;
  font-size: 0.94rem;
}

.hotline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.hotline svg {
  width: 19px;
  fill: var(--rust);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--steel-blue-light);
}

.language-switch button {
  display: inline-grid;
  place-items: center;
  min-width: 35px;
  min-height: 31px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--steel-blue-light);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 2px;
}

.language-switch .is-active {
  color: var(--paper);
  background: var(--steel-blue);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: 168px 0 96px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/images/hero.webp");
  background-size: cover;
  background-position: 58% 50%;
  transform: scale(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(32, 59, 82, 0.92) 0%, rgba(42, 73, 100, 0.78) 43%, rgba(32, 59, 82, 0.22) 100%),
    linear-gradient(0deg, rgba(32, 59, 82, 0.58), rgba(32, 59, 82, 0.08));
}

.hero-inner {
  align-self: center;
  color: var(--paper);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--rust);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker.inverse {
  color: var(--sand);
}

h1,
h2,
h3 {
  margin: 0;
  max-width: 100%;
  font-family: "Archivo", Arial, sans-serif;
  color: inherit;
  letter-spacing: -0.035em;
  line-height: 1.02;
  overflow-wrap: normal;
}

h1 {
  max-width: 860px;
  font-size: clamp(3.05rem, 8vw, 6.85rem);
  font-weight: 860;
  font-stretch: 112%;
}

h2 {
  color: var(--steel-blue);
  font-size: clamp(1.54rem, 3.5vw, 3.4rem);
  font-weight: 810;
  font-stretch: 108%;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.82rem);
  font-weight: 760;
}

.hero .eyebrow {
  font-size: 1.07rem;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.18rem, 2.15vw, 1.5rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--sand);
  color: var(--steel-blue-deep);
}

.button-primary:hover {
  background: #e1d6b7;
}

.button-ghost {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
}

.rebuild-note {
  position: absolute;
  right: clamp(20px, 5vw, 74px);
  bottom: clamp(26px, 6vw, 70px);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 330px;
  padding: 20px 22px;
  color: var(--steel-blue-deep);
  background: rgba(212, 200, 165, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  font-weight: 800;
  line-height: 1.35;
  transform: none;
}

.rebuild-note-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  fill: var(--steel-blue);
}

section {
  padding: clamp(74px, 10vw, 132px) 0;
}

.section-light {
  background: var(--paper);
}

.section-muted {
  background: var(--offwhite);
}

.section-dark {
  background: var(--steel-blue-deep);
  color: var(--paper);
}

.proof {
  text-align: center;
}

.proof p,
.section-heading p,
.portfolio-intro p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.proof .section-kicker {
  margin-bottom: 26px;
}

.proof .narrow > p {
  margin: 28px auto 0;
}

.customer-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.customer-logo-card {
  display: grid;
  place-items: center;
  min-height: 112px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff, #f9faf9);
  box-shadow: 0 10px 28px rgba(58, 94, 123, 0.06);
}

.customer-logo-card img {
  width: 100%;
  max-width: 178px;
  height: 58px;
  object-fit: contain;
}

.customer-logo-card--square img {
  max-width: 118px;
  height: 72px;
}

.customer-logo-card--osco img {
  max-width: 136px;
  height: 72px;
}

.section-heading {
  text-align: center;
  max-width: 920px;
}

.section-heading p {
  max-width: 760px;
  margin: 24px auto 0;
}

.portfolio-intro {
  max-width: 880px;
  margin-top: 24px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: clamp(42px, 6vw, 72px);
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(58, 94, 123, 0.14);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--steel-blue-light);
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 59, 82, 0.02), rgba(32, 59, 82, 0.16));
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.045);
}

.product-body {
  padding: clamp(24px, 4vw, 38px);
}

.module-logo {
  width: min(100%, 300px);
  height: auto;
  margin-bottom: 26px;
}

.product-body h3 {
  color: var(--steel-blue-deep);
}

.product-body p {
  margin: 18px 0 0;
  color: var(--muted);
}

.value-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: clamp(42px, 6vw, 66px);
}

.value-card {
  min-height: 285px;
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, #f9faf9);
  box-shadow: 0 14px 42px rgba(58, 94, 123, 0.07);
}

.value-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 17px;
  background: rgba(212, 200, 165, 0.45);
}

.value-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--steel-blue);
  overflow: visible;
}

.value-card h3 {
  color: var(--steel-blue-deep);
}

.value-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 520px;
  height: 520px;
  border: 94px solid rgba(146, 161, 172, 0.14);
  border-radius: 42%;
  transform: rotate(22deg);
}

.contact .section-heading,
.contact-grid {
  position: relative;
}

.contact .section-kicker.inverse {
  color: var(--rust);
}

.contact .section-heading h2 {
  color: var(--paper);
}

.contact .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.contact-card h3 {
  color: var(--sand);
}

.contact-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.contact-card a {
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(212, 200, 165, 0.55);
}


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

.legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: clamp(36px, 5vw, 58px);
}

.legal-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, #f9faf9);
  box-shadow: 0 14px 42px rgba(58, 94, 123, 0.07);
}

.legal-card h3 {
  color: var(--steel-blue-deep);
}

.legal-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.legal-card a {
  color: var(--steel-blue);
  border-bottom: 1px solid rgba(58, 94, 123, 0.28);
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid rgba(58, 94, 123, 0.12);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-logo {
  width: 112px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--steel-blue);
  font-size: 0.92rem;
  font-weight: 760;
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 40px);
    max-width: var(--container);
  }

  main,
  section,
  .container,
  .hero-inner,
  .narrow,
  .section-heading,
  .portfolio-intro {
    max-width: 100%;
    min-width: 0;
  }

  .site-header {
    position: fixed;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 14px;
  }

  .brand img {
    width: 98px;
  }

  .header-meta {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

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

  .hotline {
    display: none;
  }

  .language-switch {
    padding: 5px;
  }

  .language-switch button {
    min-width: 32px;
    min-height: 29px;
    padding: 0 9px;
  }

  .hero {
    min-height: 720px;
    padding-top: 128px;
  }

  h1 {
    max-width: 310px;
    font-size: clamp(2rem, 9.5vw, 2.42rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-stretch: 96%;
  }

  h2 {
    font-size: clamp(0.94rem, 4.1vw, 1.1rem);
    line-height: 1.22;
    letter-spacing: -0.015em;
    font-stretch: 94%;
    overflow-wrap: break-word;
  }

  h3 {
    font-size: 1.32rem;
    line-height: 1.16;
  }

  .proof,
  .section-heading,
  .portfolio-intro {
    overflow: hidden;
  }

  .hero-copy,
  .proof .narrow > p,
  .section-heading p,
  .portfolio-intro p,
  .product-body p,
  .value-card p,
  .legal-card p {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.94rem;
    line-height: 1.62;
    overflow-wrap: break-word;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .proof h2,
  .section-heading h2 {
    width: 100%;
    max-width: 310px;
    margin-inline: auto;
    text-wrap: normal;
  }

  .hero .eyebrow {
    font-size: 1rem;
  }

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

  .proof h2 {
    max-width: 292px;
    font-size: clamp(0.9rem, 3.85vw, 1.04rem);
  }

  .proof .narrow > p {
    max-width: 292px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(32, 59, 82, 0.92) 0%, rgba(32, 59, 82, 0.72) 56%, rgba(32, 59, 82, 0.34) 100%);
  }

  .rebuild-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 48px, 320px);
    margin: 44px auto 0;
    transform: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .customer-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .customer-logo-card {
    min-height: 104px;
    padding: 22px;
  }

  .customer-logo-card img {
    max-width: 176px;
    height: 56px;
  }

  .customer-logo-card--square img {
    max-width: 112px;
    height: 70px;
  }

  .customer-logo-card--osco img {
    max-width: 132px;
    height: 70px;
  }

  .value-card,
  .legal-card,
  .contact-card,
  .product-card {
    border-radius: 22px;
  }

  .value-icon {
    width: 56px;
    height: 56px;
  }

  .value-icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 760px) {
  .customer-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 980px) {
  .legal-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 1120px) {
  .value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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