@font-face {
  font-family: "MyriadProRegular";
  src: url("/media/public/fonts/MYRIADPRO-REGULAR.OTF") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "MyriadProBold";
  src: url("/media/public/fonts/MYRIADPRO-BOLD.OTF") format("opentype");
  font-display: swap;
}

:root {
  --accent-blue: #ca0d00;
  --app-vh: 100vh;
}

@supports (height: 100svh) {
  :root {
    --app-vh: 100svh;
  }
}

body.theme-light {
  --body-bg-rgb: 245 247 251;
  --body-bg: #f5f7fb;
  --text-main: #101418;
  --hero-text: #ffffff;
  --hero-overlay: linear-gradient(
    to bottom,
    rgba(8, 15, 24, 0.55) 0%,
    rgba(8, 15, 24, 0.35) 32%,
    rgba(8, 15, 24, 0.42) 100%
  );
  --topbar-bg: rgba(245, 249, 253, 0.92);
  --topbar-border: rgba(0, 0, 0, 0.12);
  --topbar-link: #1c334d;
  --topbar-link-hover: #ca0d00;
  --topbar-phone: #1a2d45;
  --navbar-bg: rgba(18, 30, 45, 0.66);
  --navbar-border: rgba(255, 255, 255, 0.28);
  --nav-link: #eaf3fb;
  --hero-copy: rgba(255, 255, 255, 0.93);
  --btn-primary-bg: #ca0d00;
  --btn-primary-fg: #ffffff;
  --btn-light-bg: #f4f4f4;
  --btn-light-fg: #3d3d3d;
  --scroll-bg: #0a0a0a;
  --story-bg: #ebedf0;
  --story-copy: #2f4258;
  --benefits-bg: #e9ebef;
  --benefits-title: #3f4550;
  --benefits-copy: #4f5661;
  --benefit-icon-bg: #ca0d00;
  --benefit-icon-fg: #ffffff;
  --benefit-divider: rgba(29, 160, 223, 0.95);
  --edge-pattern-image: url("/assets/cube-lattice-light.svg");
  --edge-band-size: 0px;
  --edge-pattern-size: 2100px auto;
  --edge-opacity: 0;
  --page-pattern-opacity: 0.28;
  --page-pattern-mask: linear-gradient(
    to right,
    rgb(0 0 0 / 1) 0%,
    rgb(0 0 0 / 0.96) 8%,
    rgb(0 0 0 / 0.72) 14%,
    rgb(0 0 0 / 0.28) 19%,
    rgb(0 0 0 / 0) 24%,
    rgb(0 0 0 / 0) 76%,
    rgb(0 0 0 / 0.28) 81%,
    rgb(0 0 0 / 0.72) 86%,
    rgb(0 0 0 / 0.96) 92%,
    rgb(0 0 0 / 1) 100%
  );
  --edge-fade-start: 4%;
  --edge-fade-end: 98%;
}

body.theme-dark {
  --body-bg-rgb: 6 13 23;
  --body-bg: #060d17;
  --text-main: #ffffff;
  --hero-text: #ffffff;
  --hero-overlay: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.5) 28%,
    rgba(0, 0, 0, 0.45) 100%
  );
  --topbar-bg: rgba(23, 23, 23, 0.86);
  --topbar-border: rgba(255, 255, 255, 0.16);
  --topbar-link: #d8d8d8;
  --topbar-link-hover: #ffffff;
  --topbar-phone: #f2f6fb;
  --navbar-bg: rgba(10, 10, 10, 0.6);
  --navbar-border: rgba(255, 255, 255, 0.2);
  --nav-link: #e7e7e7;
  --hero-copy: rgba(255, 255, 255, 0.92);
  --btn-primary-bg: #ca0d00;
  --btn-primary-fg: #ffffff;
  --btn-light-bg: #ececec;
  --btn-light-fg: #444444;
  --scroll-bg: #000000;
  --story-bg: #0c1118;
  --story-copy: #e8eff8;
  --benefits-bg: #0d1623;
  --benefits-title: #e9f0fb;
  --benefits-copy: #c5d2e4;
  --benefit-icon-bg: #ca0d00;
  --benefit-icon-fg: #ffffff;
  --benefit-divider: rgba(29, 160, 223, 0.95);
  --edge-pattern-image: url("/assets/cube-lattice-dark.svg");
  --edge-band-size: 0px;
  --edge-pattern-size: 2100px auto;
  --edge-opacity: 0;
  --page-pattern-opacity: 0.32;
  --page-pattern-mask: linear-gradient(
    to right,
    rgb(0 0 0 / 1) 0%,
    rgb(0 0 0 / 0.96) 8%,
    rgb(0 0 0 / 0.72) 14%,
    rgb(0 0 0 / 0.28) 19%,
    rgb(0 0 0 / 0) 24%,
    rgb(0 0 0 / 0) 76%,
    rgb(0 0 0 / 0.28) 81%,
    rgb(0 0 0 / 0.72) 86%,
    rgb(0 0 0 / 0.96) 92%,
    rgb(0 0 0 / 1) 100%
  );
  --edge-fade-start: 4%;
  --edge-fade-end: 98%;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "MyriadProRegular", "Segoe UI", sans-serif;
  background: var(--body-bg);
  color: var(--text-main);
}

body {
  position: relative;
  isolation: isolate;
  height: auto;
}

body > * {
  position: relative;
  z-index: 1;
}

.edge-lock-layer {
  position: fixed;
  top: 0;
  height: 100vh;
  width: var(--edge-band-size);
  z-index: 0;
  pointer-events: none;
  opacity: var(--edge-opacity);
}

.edge-lock-layer--left {
  left: 0;
}

.edge-lock-layer--right {
  right: 0;
}

body::before,
body::after {
  content: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--edge-pattern-image);
  background-size: var(--edge-pattern-size);
  background-position: center top;
  background-repeat: repeat;
  opacity: var(--page-pattern-opacity);
  -webkit-mask-image: var(--page-pattern-mask);
  mask-image: var(--page-pattern-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.edge-lock-layer--left {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: var(--edge-band-size);
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      to right,
      rgb(var(--body-bg-rgb) / 0) 0%,
      rgb(var(--body-bg-rgb) / 0.14) 38%,
      rgb(var(--body-bg-rgb) / 0.46) 70%,
      rgb(var(--body-bg-rgb) / 0.78) 88%,
      rgb(var(--body-bg-rgb) / 0.98) 100%
    ),
    var(--edge-pattern-image);
  background-size: 100% 100%, var(--edge-pattern-size);
  background-position: left top, left top;
  background-repeat: no-repeat, repeat;
  opacity: var(--edge-opacity);
}

.edge-lock-layer--right {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: var(--edge-band-size);
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      to left,
      rgb(var(--body-bg-rgb) / 0) 0%,
      rgb(var(--body-bg-rgb) / 0.14) 38%,
      rgb(var(--body-bg-rgb) / 0.46) 70%,
      rgb(var(--body-bg-rgb) / 0.78) 88%,
      rgb(var(--body-bg-rgb) / 0.98) 100%
    ),
    var(--edge-pattern-image);
  background-size: 100% 100%, var(--edge-pattern-size);
  background-position: right top, right top;
  background-repeat: no-repeat, repeat;
  opacity: var(--edge-opacity);
}

.hero {
  position: relative;
  z-index: 30;
  min-height: var(--app-vh);
  color: var(--hero-text);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

/* Normalize non-home hero placeholder rendering to match industrial-decals. */
[class*="-hero__bg"][class*="-media"] {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.08) 25%, transparent 25%) -16px 0 / 32px 32px,
    linear-gradient(225deg, rgb(255 255 255 / 0.08) 25%, transparent 25%) -16px 0 / 32px 32px,
    linear-gradient(315deg, rgb(255 255 255 / 0.08) 25%, transparent 25%) 0 0 / 32px 32px,
    linear-gradient(45deg, rgb(255 255 255 / 0.08) 25%, transparent 25%) 0 0 / 32px 32px,
    linear-gradient(145deg, rgb(54 63 74 / 0.75), rgb(39 45 53 / 0.88));
  border-color: rgb(169 186 206 / 0.28);
}

[class*="-hero__bg"][class*="-media"] > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 0;
}

[class*="-hero__bg"] [class*="-media__placeholder"] {
  z-index: 1;
  color: #e9f2ff;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.08) 25%, transparent 25%) -16px 0 / 32px 32px,
    linear-gradient(225deg, rgb(255 255 255 / 0.08) 25%, transparent 25%) -16px 0 / 32px 32px,
    linear-gradient(315deg, rgb(255 255 255 / 0.08) 25%, transparent 25%) 0 0 / 32px 32px,
    linear-gradient(45deg, rgb(255 255 255 / 0.08) 25%, transparent 25%) 0 0 / 32px 32px;
}

[class*="-hero__bg"] [class*="-media__placeholder"] code {
  color: #ca0d00;
}

[class*="-hero__bg"][class*="-media"].has-media > [class*="-media__placeholder"] {
  display: none !important;
}

[class*="-hero__overlay"] {
  background: linear-gradient(90deg, rgb(6 10 16 / 0.78) 0%, rgb(6 10 16 / 0.56) 50%, rgb(6 10 16 / 0.76) 100%) !important;
}

.hero-header {
  position: relative;
  z-index: 120;
}

.topbar {
  height: 56px;
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--topbar-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 5vw, 72px);
  font-size: 0.92rem;
  position: relative;
  z-index: 10000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-left {
  color: var(--topbar-phone);
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}

.topbar a {
  color: var(--topbar-link);
  text-decoration: none;
}

.topbar a:hover {
  color: var(--topbar-link-hover);
}

.navbar {
  height: 62px;
  background: var(--navbar-bg);
  border-bottom: 1px solid var(--navbar-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 5vw, 72px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: top 220ms ease;
}

body.hero-topbar-visible .navbar {
  top: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hero-text);
  text-decoration: none;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.navlinks {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 22px;
  height: 100%;
}

.navlinks a,
.nav-dropdown__toggle {
  color: var(--nav-link);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: "MyriadProRegular", "Segoe UI", sans-serif;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.nav-dropdown__toggle {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  appearance: none;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  margin-top: 0;
  min-width: 250px;
  background: rgb(18 30 45 / 0.98);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-top: 0;
  padding: 8px 0 10px;
  box-shadow: 0 14px 26px rgb(2 8 16 / 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 150ms ease, visibility 150ms ease;
  z-index: 10001;
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  color: #ffffff;
  background: rgb(202 13 0 / 0.2);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown:hover .nav-dropdown__toggle,
.nav-dropdown:focus-within .nav-dropdown__toggle,
.navlinks > a:hover,
.navlinks > a:focus-visible {
  color: #ffffff;
}

.cprod-notch,
.tdi-band__notch,
.ind-notch,
.lf-install-wrap__notch,
.lfvb-campaign__notch,
.pos-eco__notch,
.wd-band__notch,
.wd-eco-wrap__notch,
.wnd-notch {
  display: none !important;
}

.submit-btn {
  padding: 15px 26px;
  background: var(--accent-blue);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(var(--app-vh) - 118px);
  display: grid;
  place-content: center;
  text-align: center;
  padding: calc(24px + 118px) 24px 24px;
}

.hero-content h1 {
  margin: 0;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2.85vw, 2.55rem);
  line-height: 1.07;
}

.hero-content p {
  margin: 26px auto 0;
  max-width: 900px;
  font-size: clamp(0.74rem, 0.8vw, 1.1rem);
  line-height: 1.5;
  color: var(--hero-copy);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  font-size: 0.94rem;
  line-height: 1;
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
}

.btn-light {
  background: var(--btn-light-bg);
  color: var(--btn-light-fg);
}

.scroll-video {
  position: relative;
  z-index: 10;
  min-height: var(--app-vh);
  background: transparent;
}

.scroll-video__sticky {
  position: relative;
  height: var(--app-vh);
  overflow: hidden;
}

.scroll-video__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: var(--app-vh);
  background: transparent;
  overflow: hidden;
  z-index: 1;
}

.scroll-video__frame video,
.scroll-video__frame img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 42%;
  transform-origin: center center;
  will-change: auto;
  backface-visibility: hidden;
  background: transparent;
}

#printer-scroll-visual {
  inset: auto;
  top: calc(50% + 4vh);
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: translate(-50%, -50%);
}

.scroll-notes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.scroll-notes__title {
  position: absolute;
  top: clamp(120px, 18vh, 220px);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  width: min(72vw, 1020px);
  text-align: center;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.9rem);
  line-height: 1.16;
  letter-spacing: 0.01em;
  color: var(--story-copy);
  text-shadow: 0 1px 10px rgb(0 0 0 / 0.24);
  opacity: 0.96;
}

.scroll-note {
  position: absolute;
  --note-underline-extend: clamp(42px, 4.5vw, 92px);
  --note-label-band-overhang: clamp(28px, 3vw, 64px);
  --note-text-opacity: 0;
  width: clamp(240px, 20vw, 340px);
  min-height: clamp(30px, 2.8vw, 44px);
  opacity: 0;
  padding: clamp(2px, 0.25vw, 5px) clamp(2px, 0.25vw, 5px);
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 1.35vw, 1.72rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0;
  border: none;
  box-shadow: none;
  text-shadow:
    0 3px 14px rgb(0 0 0 / 0.72),
    0 0 2px rgb(0 0 0 / 0.95),
    0 0 1px rgb(0 0 0 / 1);
  filter: none;
  will-change: opacity;
  -webkit-text-stroke: 0.5px rgb(0 0 0 / 0.86);
  paint-order: stroke fill;
}

body.theme-light .scroll-note {
  color: #0f2238;
  text-shadow:
    0 1px 8px rgb(255 255 255 / 0.55),
    0 0 1px rgb(255 255 255 / 0.8);
  -webkit-text-stroke: 0;
}

.scroll-note::before {
  content: none;
}

.scroll-note__label {
  position: relative;
  display: inline-block;
  opacity: var(--note-text-opacity);
  will-change: opacity;
  z-index: 1;
}

.scroll-note__label::before {
  content: none;
}

body.theme-light .scroll-note__label::before {
  content: none;
}

.scroll-note::after {
  content: "";
  position: absolute;
  bottom: clamp(-10px, -0.85vw, -6px);
  height: 2px;
  width: 200vw;
  background: var(--accent-blue);
  opacity: 0.98;
  pointer-events: none;
}

.scroll-note--left {
  left: clamp(104px, 9.2vw, 192px);
  text-align: right;
  justify-content: flex-end;
}

.scroll-note--left::after {
  left: auto;
  right: 0;
}

.scroll-note--right {
  right: clamp(104px, 9.2vw, 192px);
}

.scroll-note--right::after {
  left: 0;
  right: auto;
}

.scroll-note--left .scroll-note__label {
  text-align: right;
}

.scroll-note--tier-1 {
  top: clamp(34%, 35vh, 38%);
}

.scroll-note--tier-2 {
  top: clamp(56%, 57vh, 60%);
}

.scroll-note--tier-3 {
  top: clamp(79%, 80vh, 83%);
}

.scroll-video__copy {
  position: relative;
  width: 100%;
  min-height: 50vh;
  z-index: 3;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 22px;
  text-align: center;
  padding: clamp(14px, 2vw, 24px) clamp(24px, 4vw, 44px) clamp(24px, 4vw, 44px);
  color: var(--story-copy);
  background: var(--story-bg);
}

.scroll-video__copy h2,
.scroll-video__copy p {
  margin: 0;
  max-width: 1100px;
  line-height: 1.35;
}

.scroll-video__copy h2 {
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 3rem);
  color: var(--accent-blue);
}

.scroll-video__copy strong {
  color: var(--accent-blue);
}

.scroll-video__copy p {
  font-size: clamp(0.95rem, 1.25vw, 1.9rem);
}

.reveal-line {
  opacity: 0;
  transform: translateY(36px);
}

.services-carousel {
  position: relative;
  z-index: 10;
  padding: clamp(12px, 1.4vw, 20px) 0 clamp(16px, 2vw, 24px);
  overflow: hidden;
}

.services-carousel__header {
  display: grid;
  grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding: 0 clamp(18px, 3vw, 42px) clamp(10px, 1.2vw, 16px);
  position: relative;
  z-index: 4;
}

.services-carousel__header span {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgb(120 145 178 / 0.32) 45%,
    rgb(120 145 178 / 0.1) 100%
  );
}

.services-carousel__header span:last-child {
  background: linear-gradient(
    to left,
    transparent 0%,
    rgb(120 145 178 / 0.32) 45%,
    rgb(120 145 178 / 0.1) 100%
  );
}

.services-carousel__header h2 {
  margin: 0;
  text-align: center;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 3rem);
  line-height: 1.1;
  color: var(--story-copy);
}

.services-carousel__track {
  display: flex;
  gap: clamp(2px, 0.35vw, 6px);
  margin-bottom: clamp(2px, 0.35vw, 6px);
  will-change: transform;
}

.services-carousel__track--top,
.services-carousel__track--bottom {
  opacity: 0;
}

.services-carousel__track:last-child {
  margin-bottom: 0;
}

.service-card {
  position: relative;
  flex: 0 0 calc((100vw - clamp(6px, 1.05vw, 18px)) / 4);
  height: clamp(190px, 22vw, 260px);
  overflow: hidden;
  background: #111;
}

.service-card > a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(50%);
  transform: scale(1);
  transition: filter 220ms ease, transform 260ms ease;
  will-change: filter, transform;
}

.service-card:hover img,
.service-card:focus-within img {
  filter: grayscale(0%);
  transform: scale(1.06);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 10, 18, 0.18) 10%,
    rgba(5, 10, 18, 0.52) 100%
  );
  pointer-events: none;
}

.service-card h3 {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 85%;
  text-align: center;
  color: #fff;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 1.75vw, 2rem);
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.benefits-section {
  position: relative;
  z-index: 10;
  background: transparent;
  padding: clamp(22px, 3.1vw, 40px) clamp(16px, 3.2vw, 42px) clamp(18px, 2.8vw, 34px);
}

.benefits-shell {
  max-width: 1160px;
  margin: 0 auto;
}

.benefits-title {
  margin: 0;
  text-align: center;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2.45rem);
  line-height: 1.14;
  color: var(--benefits-title);
}

.benefits-lead {
  margin: clamp(10px, 1.5vw, 16px) auto 0;
  max-width: 1060px;
  text-align: center;
  font-size: clamp(0.9rem, 1.06vw, 1.22rem);
  line-height: 1.43;
  color: var(--benefits-copy);
}

.benefits-grid {
  margin-top: clamp(16px, 2.1vw, 24px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 20px) clamp(16px, 2.2vw, 24px);
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  width: clamp(78px, 5.7vw, 102px);
  height: clamp(78px, 5.7vw, 102px);
  margin: 0 auto clamp(8px, 1.05vw, 12px);
  border-radius: 50%;
  background: var(--benefit-icon-bg);
  display: grid;
  place-items: center;
}

.benefit-icon svg {
  width: clamp(24px, 1.7vw, 30px);
  height: clamp(24px, 1.7vw, 30px);
  fill: none;
  stroke: var(--benefit-icon-fg);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item:nth-child(5) .benefit-icon svg {
  fill: var(--benefit-icon-fg);
  stroke: none;
}

.benefit-icon img {
  width: clamp(64px, 5.2vw, 88px);
  height: clamp(64px, 5.2vw, 88px);
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transform: scale(1.32);
  transform-origin: center center;
}

.benefit-item h3 {
  margin: 0;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.02rem, 1.3vw, 1.52rem);
  line-height: 1.15;
  color: var(--accent-blue);
}

.benefit-item p {
  margin: clamp(6px, 0.95vw, 10px) auto 0;
  max-width: 360px;
  font-size: clamp(0.8rem, 0.95vw, 1.08rem);
  line-height: 1.4;
  color: var(--benefits-copy);
}

.benefits-divider {
  margin-top: clamp(16px, 2.2vw, 24px);
  height: 3px;
  width: min(100%, 1080px);
  background: var(--benefit-divider);
}

.benefits-reveal {
  opacity: 0;
  transform: translateY(34px);
}

.project-section {
  position: relative;
  z-index: 10;
  background: transparent;
  padding: clamp(20px, 3vw, 34px) clamp(16px, 3.2vw, 42px) clamp(28px, 3.2vw, 40px);
}

.project-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.project-title {
  margin: 0;
  text-align: center;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.85rem);
  line-height: 1.14;
  color: var(--benefits-title);
}

.project-lead {
  margin: clamp(10px, 1.4vw, 14px) auto 0;
  max-width: 1080px;
  text-align: center;
  font-size: clamp(0.92rem, 1.06vw, 1.28rem);
  line-height: 1.45;
  color: var(--benefits-copy);
}

.project-grid {
  margin-top: clamp(16px, 2vw, 24px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.project-card {
  background: var(--story-bg);
  display: flex;
  flex-direction: column;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.project-card__content {
  width: 100%;
  margin: 0;
  background: transparent;
  padding: clamp(10px, 1.2vw, 14px) clamp(12px, 1.3vw, 16px) clamp(14px, 1.5vw, 18px);
  text-align: center;
  min-height: clamp(220px, 24vw, 300px);
}

.project-card__content h3 {
  margin: 0;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 1.6vw, 2rem);
  line-height: 1.1;
  color: var(--benefits-title);
}

.project-card__content p {
  margin: clamp(8px, 1vw, 10px) auto 0;
  font-size: clamp(0.95rem, 1.02vw, 1.18rem);
  line-height: 1.45;
  color: var(--benefits-copy);
}

.project-card__content a {
  display: inline-block;
  margin-top: clamp(10px, 1.1vw, 12px);
  color: var(--accent-blue);
  text-decoration: none;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.02rem, 1.1vw, 1.3rem);
  border-bottom: 2px solid rgb(202 13 0 / 0.45);
  padding-bottom: 2px;
}

.project-reveal {
  opacity: 0;
  transform: translateY(34px);
}

.site-footer {
  position: relative;
  z-index: 10;
  margin-top: clamp(22px, 2.8vw, 34px);
  padding: 0 0 clamp(22px, 2.8vw, 34px);
  background: #35373d;
  color: #ffffff;
}

.site-footer__cta {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--accent-blue);
  text-align: center;
  padding: clamp(22px, 2.6vw, 30px) clamp(16px, 2.3vw, 28px);
}

.site-footer__cta h2 {
  margin: 0;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 3.2rem);
  line-height: 1.08;
}

.site-footer__cta p {
  margin: clamp(10px, 1.2vw, 14px) auto 0;
  max-width: 780px;
  font-size: clamp(1rem, 1.1vw, 1.3rem);
  line-height: 1.35;
}

.site-footer__actions {
  margin-top: clamp(14px, 1.7vw, 20px);
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.3vw, 16px);
  flex-wrap: wrap;
}

.site-footer__btn {
  min-width: 132px;
  padding: 12px 22px;
  text-decoration: none;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: 1.02rem;
}

.site-footer__btn--light {
  background: #f0f4f8;
  color: #3a4658;
}

.site-footer__btn--dark {
  background: #495263;
  color: #ffffff;
}

.site-footer__body {
  max-width: 1100px;
  margin: 0 auto;
  background: transparent;
  text-align: center;
  padding: clamp(30px, 4vw, 46px) clamp(16px, 2.5vw, 30px) clamp(22px, 2.8vw, 34px);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f2f6fb;
  text-decoration: none;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 1.9vw, 2rem);
}

.site-footer__brand img {
  width: clamp(42px, 4vw, 60px);
  height: clamp(42px, 4vw, 60px);
  object-fit: cover;
  border-radius: 50%;
}

.site-footer__tagline,
.site-footer__contact,
.site-footer__legal {
  margin: clamp(10px, 1.3vw, 14px) auto 0;
  max-width: 900px;
}

.site-footer__tagline {
  color: #dbe4f2;
  font-size: clamp(1rem, 1.06vw, 1.22rem);
}

.site-footer__contact {
  color: #f4f7fc;
  font-size: clamp(0.98rem, 1.02vw, 1.16rem);
}

.site-footer__legal {
  color: rgb(216 223 236 / 0.75);
  font-size: clamp(0.9rem, 0.95vw, 1.02rem);
}

.site-footer__legal a {
  color: inherit;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .topbar,
  .navbar {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar {
    font-size: 0.92rem;
  }

  .navlinks a {
    font-size: 1rem;
  }

  .submit-btn,
  .btn {
    font-size: 1.1rem;
    padding: 12px 18px;
  }

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

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

  .project-card__content {
    min-height: 0;
  }
}

@media (max-width: 780px) {
  .topbar {
    display: none;
  }

  .navbar {
    position: sticky;
    top: 0;
    height: 58px;
    flex-direction: row;
    gap: 10px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  body.hero-topbar-visible .navbar {
    top: 0;
  }

  .brand {
    gap: 8px;
    font-size: 0.98rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .navlinks {
    display: none;
  }

  .submit-btn {
    margin-left: auto;
    padding: 10px 14px;
    font-size: 0.93rem;
  }

  .hero-content {
    min-height: calc(var(--app-vh) - 58px);
    padding: calc(16px + 58px) 14px 16px;
  }

  .hero-content h1 {
    font-size: clamp(1.28rem, 6.5vw, 1.8rem);
    line-height: 1.12;
  }

  .hero-content p {
    margin-top: 16px;
    font-size: clamp(0.88rem, 3.5vw, 1rem);
  }

  .hero-actions {
    margin-top: 20px;
    gap: 8px;
  }

  .btn {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .scroll-video {
    min-height: var(--app-vh);
  }

  .scroll-video__frame {
    display: none;
  }

  .scroll-video__sticky {
    background-color: var(--body-bg);
    background-image: url("/media/public/images/main/bullet.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .scroll-video__copy {
    min-height: 48svh;
    gap: 10px;
    padding: 12px 14px 16px;
  }

  .scroll-video__copy h2 {
    font-size: clamp(1.12rem, 5.8vw, 1.45rem);
    line-height: 1.18;
  }

  .scroll-video__copy p {
    font-size: clamp(0.92rem, 3.9vw, 1rem);
    line-height: 1.35;
  }

  .scroll-notes {
    display: block;
  }

  .scroll-notes__title {
    top: max(72px, env(safe-area-inset-top) + 34px);
    width: min(90vw, 500px);
    font-size: clamp(0.95rem, 4.2vw, 1.2rem);
    line-height: 1.2;
  }

  .scroll-note {
    width: min(84vw, 368px);
    min-height: 44px;
    font-size: clamp(1.18rem, 4.8vw, 1.55rem);
    --note-label-band-overhang: clamp(32px, 9vw, 72px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
    justify-content: center;
    --note-underline-extend: clamp(64px, 12vw, 136px);
  }

  .scroll-note::after {
    bottom: -8px;
    height: 3px;
  }

  .scroll-note--left {
    left: 50%;
  }

  .scroll-note--right {
    left: 50%;
    right: auto;
  }

  .scroll-note--left::after {
    left: auto;
    right: 0;
  }

  .scroll-note--right::after {
    left: 0;
    right: auto;
  }

  .scroll-note--left .scroll-note__label {
    text-align: center;
  }

  .scroll-note--tier-1 {
    top: 28%;
  }

  .scroll-note--tier-2 {
    top: 44%;
  }

  .scroll-note--tier-3 {
    top: 60%;
  }

  .services-carousel {
    min-height: calc(var(--app-vh) - 26px);
    height: calc(var(--app-vh) - 26px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto 1fr;
    align-content: stretch;
    gap: 7px;
    padding: 8px;
  }

  .services-carousel__header {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 0;
    margin: 0;
  }

  .services-carousel__header span {
    display: none;
  }

  .services-carousel__header h2 {
    font-size: clamp(1.08rem, 4.3vw, 1.28rem);
    line-height: 1.12;
  }

  .services-carousel__track {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 5px;
    min-height: 0;
    height: 100%;
  }

  .services-carousel__track--top {
    grid-column: 1;
    grid-row: 2;
  }

  .services-carousel__track--bottom {
    grid-column: 2;
    grid-row: 2;
  }

  .service-card {
    flex: none;
    height: auto;
    min-height: 0;
  }

  .service-card h3 {
    width: 90%;
    font-size: clamp(0.86rem, 2.8vw, 1.04rem);
    line-height: 1.08;
  }

  .benefits-section {
    min-height: var(--app-vh);
    display: flex;
    align-items: center;
    padding: 10px;
  }

  .project-section {
    min-height: var(--app-vh);
    display: flex;
    align-items: center;
    padding: 12px 10px;
  }

  .benefits-shell,
  .project-shell {
    width: 100%;
  }

  .benefits-title,
  .project-title {
    font-size: clamp(1.2rem, 4.8vw, 1.52rem);
    line-height: 1.12;
  }

  .benefits-lead,
  .project-lead {
    font-size: clamp(0.88rem, 3.2vw, 1rem);
    line-height: 1.35;
    margin-top: 8px;
  }

  .benefits-shell > .benefits-lead:nth-of-type(2) {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 8px 10px;
    margin-top: 12px;
  }

  .benefit-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 6px;
  }

  .benefit-icon svg {
    width: 24px;
    height: 24px;
  }

  .benefit-icon img {
    width: 62px;
    height: 62px;
    transform: scale(1.32);
  }

  .benefit-item h3 {
    font-size: clamp(0.95rem, 3.2vw, 1.08rem);
    line-height: 1.12;
  }

  .benefit-item p {
    font-size: clamp(0.78rem, 2.7vw, 0.9rem);
    line-height: 1.3;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .benefits-divider {
    margin-top: 12px;
  }

  .project-grid {
    margin-top: 14px;
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 15vw 8px;
    scroll-padding-inline: 15vw;
  }

  .project-grid::-webkit-scrollbar {
    display: none;
  }

  .project-card {
    flex: 0 0 70vw;
    scroll-snap-align: center;
    min-width: 0;
  }

  .project-card img {
    aspect-ratio: 16 / 10;
  }

  .project-card__content {
    min-height: 0;
    padding: 12px 12px 14px;
  }

  .project-card__content h3 {
    font-size: clamp(1.34rem, 4.8vw, 1.72rem);
    line-height: 1.08;
  }

  .project-card__content p {
    font-size: clamp(0.98rem, 3.45vw, 1.1rem);
    line-height: 1.34;
    margin-top: 6px;
    -webkit-line-clamp: 4;
  }

  .project-card__content a {
    margin-top: 8px;
    font-size: clamp(1.02rem, 3.6vw, 1.14rem);
  }

  .site-footer {
    margin-top: 14px;
    padding-bottom: 16px;
  }

  .site-footer__cta {
    padding: 16px 12px;
  }

  .site-footer__cta h2 {
    font-size: clamp(1.28rem, 6.2vw, 1.75rem);
  }

  .site-footer__cta p {
    font-size: clamp(0.92rem, 3.8vw, 1rem);
  }

  .site-footer__actions {
    gap: 8px;
  }

  .site-footer__btn {
    min-width: 120px;
    padding: 10px 14px;
    font-size: 0.94rem;
  }

  .site-footer__body {
    padding: 22px 12px 14px;
  }

  .site-footer__brand {
    font-size: clamp(1.16rem, 5.2vw, 1.45rem);
  }

  .site-footer__brand img {
    width: 36px;
    height: 36px;
  }

  .site-footer__tagline,
  .site-footer__contact,
  .site-footer__legal {
    margin-top: 8px;
  }

  .site-footer__tagline,
  .site-footer__contact {
    font-size: clamp(0.9rem, 3.8vw, 0.98rem);
  }

  .site-footer__legal {
    font-size: clamp(0.82rem, 3.3vw, 0.9rem);
  }
}

@media (max-width: 560px) {
  .hero-content h1 {
    font-size: clamp(1.15rem, 6.8vw, 1.44rem);
  }

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

  .btn {
    width: 100%;
  }

  .scroll-video__copy h2 {
    font-size: clamp(1.04rem, 5.8vw, 1.22rem);
  }

  .scroll-video__copy p {
    font-size: clamp(0.84rem, 3.9vw, 0.92rem);
  }

  .scroll-note {
    width: min(86vw, 338px);
    font-size: clamp(1.08rem, 4.6vw, 1.34rem);
  }

  .service-card h3 {
    font-size: clamp(0.74rem, 2.7vw, 0.9rem);
  }

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

  .benefit-item h3 {
    font-size: clamp(0.88rem, 3.35vw, 1.02rem);
  }

  .benefit-item p {
    font-size: clamp(0.74rem, 2.95vw, 0.86rem);
    line-height: 1.28;
    -webkit-line-clamp: 2;
  }

  .project-grid {
    gap: 10px;
    padding: 4px 14vw 8px;
    scroll-padding-inline: 14vw;
  }

  .project-card {
    flex-basis: 72vw;
  }

  .project-card__content {
    padding: 12px 10px 14px;
  }

  .project-card__content h3 {
    font-size: clamp(1.2rem, 5vw, 1.52rem);
  }

  .project-card__content p {
    font-size: clamp(0.92rem, 3.9vw, 1.04rem);
    -webkit-line-clamp: 5;
  }

  .project-card__content a {
    font-size: clamp(0.98rem, 3.9vw, 1.08rem);
  }
}
