@import url("tokens.css");
@import url("effects.css");
@import url("layout/background.css");
@import url("layout/experience-tier.css");
@import url("layout/hero-canvas.css");
@import url("layout/page-section.css");
@import url("layout/layout-scale.css");
@import url("components/header.css");
@import url("components/button.css");
@import url("components/hero-blend-layers.css");
@import url("components/hero-card.css");
@import url("components/hero-text.css");
@import url("components/section-assets.css");
@import url("components/section-roi.css");
@import url("components/section-diagnosis.css");
@import url("components/section-product-lines.css");
@import url("components/section-product-config.css");
@import url("components/section-service.css");
@import url("components/section-footer.css");
@import url("components/soft-light-wash.css");

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-VariableFont_opsz,wght.woff2")
    format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Italic-VariableFont_opsz,wght.woff2")
    format("woff2-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  container-type: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-gutter: stable;
  overflow-x: clip;
  scroll-behavior: smooth;
}

@container style(--scroll-smooth: 0) {
  html {
    scroll-behavior: auto;
  }
}

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

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  font-size: var(--text-md);
  line-height: var(--text-md-line-height);
  letter-spacing: var(--text-md-letter-spacing);
  background-color: var(--color-bg);
  color: var(--color-text);
}

h1 {
  font-size: var(--h1-size);
  line-height: var(--h1-line-height);
  font-weight: var(--h1-weight);
  font-style: var(--h1-style);
  letter-spacing: var(--h1-letter-spacing);
}

h2 {
  font-size: var(--h2-size);
  line-height: var(--h2-line-height);
  font-weight: var(--h2-weight);
  font-style: var(--h2-style);
  letter-spacing: var(--h2-letter-spacing);
}

h3 {
  font-size: var(--h3-size);
  line-height: var(--h3-line-height);
  font-weight: var(--h3-weight);
  font-style: var(--h3-style);
  letter-spacing: var(--h3-letter-spacing);
}

a:not(.btn) {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--link-transition-duration) var(--motion-ease-out);
}

a:not(.btn):hover {
  opacity: var(--color-text-hover-opacity);
}

.page {
  width: 100%;
  max-width: var(--layout-max-width);
  margin-inline: auto;
  padding-inline: var(--layout-margin-inline);
  overflow-x: hidden;
}

