@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.62;
  font-size: clamp(0.98rem, 0.4vw + 0.9rem, 1.06rem);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

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

::selection {
  background: var(--amber);
  color: var(--steel-950);
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: var(--steel-950);
}

::-webkit-scrollbar-thumb {
  background: var(--steel-600);
  border: 2px solid var(--steel-950);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--amber-deep);
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

:root {
  --steel-950: #070e16;
  --steel-900: #0a141f;
  --steel-850: #0d1b2a;
  --steel-800: #102233;
  --steel-700: #16304a;
  --steel-600: #1f3d5c;
  --steel-500: #324a5f;
  --steel-400: #5a7385;
  --steel-300: #8ba1b3;
  --steel-200: #bccad6;
  --amber: #e8a838;
  --amber-bright: #ffc24d;
  --amber-deep: #b9821f;
  --rust: #c0392b;
  --paper: #ece6da;
  --paper-line: #cdbfa6;
  --ink: #0a141f;
  --bg:var(--steel-900);
  --line:rgba(139,161,179,.16);
  --line-strong:rgba(139,161,179,.32);
  --text:#dbe4ec;
  --text-dim:#93a5b4;
  --font-display:'Saira',system-ui,sans-serif;
  --font-body:'IBM Plex Sans',system-ui,sans-serif;
  --font-mono:'IBM Plex Mono',ui-monospace,monospace;
  --container:1240px;
  --pad:clamp(1.15rem,4.5vw,2.5rem);
  --r:3px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "ss01";
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.eyebrow--dark {
  color: var(--amber-deep);
}

.tick {
  width: 26px;
  height: 1px;
  background: currentColor;
  position: relative;
  display: inline-block;
}

.tick::before {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  background: currentColor;
  transform: rotate(45deg);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}

.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
}

.h2::after {
  content: "";
  display: block;
  height: 15px;
  width: 0;
  margin-top: 0.7rem;
  overflow: hidden;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 14'%3E%3Cpath d='M3 9c22-7 46-7 70-4s58 5 84-2' fill='none' stroke='%23e8a838' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat left center;
  background-size: clamp(96px, 15vw, 168px) 100%;
  animation: drawUnderline 1.2s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 6% cover 36%;
}

@keyframes drawUnderline {
  from {
    width: 0;
  }
  to {
    width: clamp(96px, 15vw, 168px);
  }
}
@supports not (animation-timeline: view()) {
  .h2::after {
    animation: none;
    width: clamp(96px, 15vw, 168px);
  }
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.container-bleed {
  padding-left: var(--pad);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section--tight {
  padding-block: clamp(3.2rem, 6vw, 5rem);
}

.section-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

@media (max-width: 860px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
}
.site-header.is-stuck {
  background: rgba(7, 14, 22, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
}

.brand__mark {
  width: 34px;
  height: 34px;
  color: var(--amber);
  flex: none;
}

.brand__mark .brand__balls circle {
  fill: var(--amber);
}

.brand__balls {
  transform-origin: center;
  animation: spin 14s linear infinite;
}

.brand__type {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}

.brand__type b {
  font-weight: 800;
  color: var(--amber);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.nav {
  display: flex;
  gap: 0.4rem;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r);
  position: relative;
  transition: color 0.3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover {
  color: #fff;
}
.nav__link:hover::after, .nav__link.is-active::after {
  transform: scaleX(1);
}
.nav__link.is-active {
  color: #fff;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}

.nav-toggle span {
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

.nav-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 990;
  background: rgba(7, 14, 22, 0.98);
  backdrop-filter: blur(20px);
  padding: calc(74px + 1.6rem) var(--pad) 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.42s var(--ease), opacity 0.42s var(--ease);
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav.is-open {
  transform: none;
  opacity: 1;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 8.5vw, 2.7rem);
  letter-spacing: -0.02em;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  color: #fff;
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.mobile-nav__link::after {
  content: "→";
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--amber);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
}

.mobile-nav__link:active, .mobile-nav__link:hover {
  color: var(--amber);
  padding-left: 0.5rem;
}

.mobile-nav__link:active::after, .mobile-nav__link:hover::after {
  opacity: 1;
}

.mobile-nav .btn {
  margin-top: 1.8rem;
  justify-content: center;
  padding-block: 1.1em;
}

@media (max-width: 820px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .header__actions .btn--sm {
    display: none;
  }
}
@media (max-width: 520px) {
  .header__actions .btn--sm {
    display: none;
  }
}
.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(60% 90% at 50% 0%, rgba(232, 168, 56, 0.06), transparent 62%), linear-gradient(180deg, var(--steel-950) 0%, #05090f 100%);
  border-top: 1px solid var(--line);
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 82%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.55;
}

.site-footer::before {
  content: "4S International";
  position: absolute;
  left: 50%;
  top: 69%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13.8vw;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(99, 105, 109, 0.18);
}

.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.3fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.6rem, 4vw, 3.6rem);
}

.footer__brand {
  max-width: 34ch;
}

.brand--footer {
  margin-bottom: 1.15rem;
}

.footer__tag {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
  max-width: 34ch;
}

.footer__col h4 {
  position: relative;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.35rem;
  padding-bottom: 0.8rem;
}

.footer__col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: var(--amber);
}

.footer__col a:not(.btn) {
  display: block;
  width: max-content;
  max-width: 100%;
  color: var(--text-dim);
  padding: 0.42rem 0;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer__col a:not(.btn):hover {
  color: var(--amber);
  transform: translateX(5px);
}

.footer__col address {
  color: var(--text-dim);
  font-style: normal;
  font-size: 14px;
  line-height: 2;
}

.footer__col address a {
  display: inline;
  width: auto;
  color: var(--amber);
  padding: 0;
}

.footer__col address a:hover {
  transform: none;
}

.footer__hours {
  font-size: 14px;
  color: var(--steel-400);
}

.footer__std {
  font-size: 14px;
  color: var(--steel-300);
  line-height: 2;
  margin-bottom: 1.4rem;
}

.footer__col .btn {
  margin-top: 0.8rem;
}

.footer__base {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-block: 1.7rem;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--steel-400);
}

.footer__base .mono {
  font-size: 14px;
}

.footer__base a {
  color: var(--steel-300);
  transition: color 0.25s;
}

.footer__base a:hover {
  color: var(--amber);
}

.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 14px;
}

.footer__base .footer__credit {
  color: var(--steel-400);
}

.footer__base .footer__credit:hover {
  color: var(--text-dim);
}

.footer__credit strong {
  color: var(--steel-300);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.25s var(--ease);
}

.footer__base .footer__credit:hover strong {
  color: var(--amber);
}

.footer__heart {
  width: 14px;
  height: 14px;
  color: var(--rust);
  flex: none;
}

.footer__credit:hover .footer__heart {
  animation: heartbeat 1s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.3);
  }
}
.footer__min {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.footer__addr {
  color: var(--text-dim);
  font-style: normal;
  line-height: 1.9;
  font-size: 0.94rem;
}

.footer__addr a {
  color: var(--amber);
}

.footer__links {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.9;
}

.footer__links a {
  color: var(--text-dim);
  transition: color 0.25s;
}

.footer__links a:hover {
  color: var(--amber);
}

@media (max-width: 880px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.6rem 2rem;
  }
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 820px) {
  .site-footer::before {
    display: none;
  }
}
@media (max-width: 520px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .footer__base {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
}
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.products__nav {
  display: flex;
  gap: 0.6rem;
  flex: none;
}

.sw-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: 0.3s var(--ease);
}
.sw-btn:hover {
  background: var(--amber);
  color: var(--steel-950);
  border-color: var(--amber);
}

@media (max-width: 820px) {
  .section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
  }
}
.btn {
  --c:var(--amber);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85em 1.4em;
  border: 1px solid var(--c);
  color: var(--steel-950);
  background: var(--c);
  border-radius: var(--r);
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--steel-950);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.btn:hover {
  color: var(--c);
  border-color: var(--c);
}
.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn__arrow {
  transition: transform 0.35s var(--ease);
}

.btn--sm {
  padding: 0.62em 1.05em;
  font-size: 0.76rem;
}

.btn--lg {
  padding: 1.02em 1.7em;
  font-size: 0.86rem;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: var(--line-strong);
}
.btn--ghost::before {
  background: #fff;
}
.btn--ghost:hover {
  color: var(--steel-950);
}

.btn--dark {
  --c:var(--steel-950);
  background: var(--steel-950);
  color: var(--amber);
  border-color: var(--steel-950);
}
.btn--dark::before {
  background: var(--amber);
}
.btn--dark:hover {
  color: var(--steel-950);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: 0.3s var(--ease);
}
.link-arrow span {
  transition: transform 0.3s var(--ease);
}
.link-arrow:hover {
  border-color: var(--amber);
}
.link-arrow:hover span {
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 74px;
  overflow: hidden;
  background: radial-gradient(120% 90% at 85% 10%, rgba(232, 168, 56, 0.1), transparent 55%), radial-gradient(100% 80% at 0% 100%, rgba(31, 61, 92, 0.55), transparent 60%), var(--steel-900);
}

.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(120% 120% at 70% 30%, #000 35%, transparent 78%);
  mask-image: radial-gradient(120% 120% at 70% 30%, #000 35%, transparent 78%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(2.7rem, 7.2vw, 5.6rem);
  line-height: 0.97;
  letter-spacing: -0.035em;
  margin: 0.2rem 0 1.5rem;
  text-wrap: balance;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title em {
  font-style: normal;
  color: var(--amber);
  position: relative;
}

.hero__sub {
  max-width: 46ch;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  margin-bottom: 2.2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.8rem;
}

.hero__spec {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1.3rem;
}

.hero__spec dt {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-400);
  margin-bottom: 0.25rem;
}

.hero__spec dd {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}

.hero__bearing {
  position: relative;
  justify-self: center;
  width: min(100%, 460px);
  aspect-ratio: 1;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.bearing {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.bearing .race {
  fill: none;
  stroke: var(--steel-400);
  stroke-width: 1.4;
}

.bearing .race:nth-of-type(2) {
  stroke: var(--steel-500);
}

.bearing .bore {
  fill: rgba(16, 34, 51, 0.5);
  stroke: var(--amber);
  stroke-width: 1.4;
}

.bearing__ticks {
  transform-origin: 220px 220px;
  animation: spin 60s linear infinite;
}

.bearing__cage {
  transform-origin: 220px 220px;
  animation: spin 24s linear infinite;
}

.bearing .ball {
  fill: var(--steel-700);
  stroke: var(--amber);
  stroke-width: 1.6;
  transition: fill 0.3s;
}

.bearing__cage .ball:nth-child(odd) {
  fill: var(--steel-600);
}

.bearing .cross {
  stroke: var(--amber-bright);
  stroke-width: 1.2;
}

.hero__bearing:hover .bearing__cage {
  animation-duration: 8s;
}

.bearing__label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--amber);
  background: rgba(7, 14, 22, 0.7);
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--line-strong);
}

.bearing__label--tl {
  top: 6%;
  left: -4%;
}

.bearing__label--br {
  bottom: 7%;
  right: -6%;
}

.bearing__label::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.bearing__label--tl::before {
  bottom: -16px;
  right: 8px;
}

.bearing__label--br::before {
  top: -16px;
  left: 10px;
}

.hero__marquee {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 0.85rem 0;
  background: rgba(7, 14, 22, 0.4);
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-300);
  animation: marquee 38s linear infinite;
}

.marquee__track i {
  color: var(--amber);
  font-style: normal;
}

.marquee__track span {
  transition: color 0.3s;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__bearing {
    width: min(76%, 360px);
    order: -1;
  }
  .hero__spec {
    gap: 1.6rem;
  }
}
.hero2 {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 74px;
  background: var(--steel-950);
}

.hero2__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.05);
  animation: hero2Pan 22s ease-in-out infinite alternate;
}

@keyframes hero2Pan {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.14);
  }
}
.hero2__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 9, 15, 0.97) 0%, rgba(5, 9, 15, 0.85) 34%, rgba(5, 9, 15, 0.35) 66%, rgba(5, 9, 15, 0.6) 100%), linear-gradient(180deg, rgba(5, 9, 15, 0.55) 0%, transparent 26%, rgba(5, 9, 15, 0.9) 100%);
}

.hero2__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 120% at 25% 40%, #000 30%, transparent 80%);
  mask-image: radial-gradient(120% 120% at 25% 40%, #000 30%, transparent 80%);
}

.hero2__inner {
  position: relative;
  z-index: 2;
  text-align: left;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.hero2__cta {
  justify-content: flex-start;
}

.hero2__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero2__kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--amber);
}

.hero2__title {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  max-width: 20ch;
  text-align: left;
  text-wrap: balance;
}

.hero2__title em {
  font-style: normal;
  color: var(--amber);
}

.hero2__sub {
  max-width: 52ch;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: 2.4rem;
}

.hero2__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero2__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: grid;
  justify-items: center;
  padding-top: 8px;
}

.hero2__scroll span {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--amber);
  animation: hero2Dot 1.8s var(--ease) infinite;
}

@keyframes hero2Dot {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }
  40% {
    opacity: 1;
  }
  80%, 100% {
    opacity: 0;
    transform: translateY(12px);
  }
}
@media (max-width: 860px) {
  .hero2__media img {
    object-position: 62% center;
  }
  .hero2__scroll {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero2__media img {
    animation: none;
  }
  .hero2__scroll span {
    animation: none;
  }
}
.whatwedo {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: radial-gradient(80% 120% at 100% 0%, #ffffff 0%, transparent 55%), linear-gradient(155deg, #ffffff 0%, #eef2f6 55%, #e6edf3 100%);
}

.whatwedo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image: linear-gradient(rgba(13, 27, 42, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 27, 42, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 26%, #000 74%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 26%, #000 74%, transparent);
}

.whatwedo > .container {
  position: relative;
  z-index: 1;
}

.whatwedo__inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.whatwedo .h2 {
  color: var(--ink);
}

.whatwedo .h2::after {
  margin-inline: auto;
}

.whatwedo__body {
  max-width: 680px;
  margin: 1.8rem auto 0;
}

.whatwedo__body p {
  color: #41505f;
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.whatwedo__body p:first-child {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.whatwedo__body strong {
  color: var(--ink);
  font-weight: 600;
}

.whatwedo .mono {
  color: var(--amber-deep);
}

.whatwedo__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.wd-ico {
  position: absolute;
  color: var(--steel-400);
  opacity: 0.16;
  transform-origin: center;
}

.wd-ico svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wd-ico--amber {
  color: var(--amber);
  opacity: 0.24;
}

.wd-ico--1 {
  width: 56px;
  height: 56px;
  top: 14%;
  left: 5%;
  animation: wdSpin 30s linear infinite;
}

.wd-ico--2 {
  width: 62px;
  height: 62px;
  top: 17%;
  right: 7%;
  animation: wdFloat 7s ease-in-out infinite;
}

.wd-ico--3 {
  width: 38px;
  height: 38px;
  top: 46%;
  left: 3.5%;
  animation: wdSpinR 24s linear infinite;
}

.wd-ico--4 {
  width: 44px;
  height: 44px;
  bottom: 14%;
  left: 10%;
  animation: wdFloat 6.5s ease-in-out 0.6s infinite;
}

.wd-ico--5 {
  width: 40px;
  height: 40px;
  bottom: 17%;
  right: 7%;
  animation: wdDrift 9s ease-in-out infinite;
}

.wd-ico--6 {
  width: 50px;
  height: 50px;
  top: 52%;
  right: 4%;
  animation: wdSpin 34s linear infinite;
}

@keyframes wdSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes wdSpinR {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes wdFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
@keyframes wdDrift {
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(10px, -12px) rotate(10deg);
  }
}
@media (max-width: 860px) {
  .whatwedo__deco {
    display: none;
  }
}
.products {
  background: var(--steel-950);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.products__swiper {
  overflow: hidden;
  padding: 8px 0 3rem;
}

.pcard {
  width: min(86vw, 340px);
  height: auto;
  background: var(--steel-850);
  border: 1px solid var(--line);
  padding: 1.8rem 1.7rem 1.7rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s;
}
.pcard::before, .pcard::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-color: var(--amber);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.pcard::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}
.pcard::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}
.pcard:hover::before, .pcard:hover::after {
  opacity: 1;
}
.pcard:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
  background: var(--steel-800);
}

.pcard__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
  font-size: 0.72rem;
}

.pcard__hs {
  color: var(--amber);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.pcard__duty {
  color: var(--steel-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.66rem;
}

.pcard__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1.04;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}

.pcard__desc {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
  flex: 1;
}

.pcard__apps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}

.pcard__apps li {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: var(--steel-200);
  border: 1px solid var(--line);
  padding: 0.25rem 0.55rem;
  border-radius: 2px;
}

.pcard__cta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  align-self: flex-start;
  transition: gap 0.3s;
}

.pcard__cta:hover {
  letter-spacing: 0.1em;
}

.swiper-scrollbar {
  background: var(--line) !important;
  height: 2px !important;
}

.swiper-scrollbar-drag {
  background: var(--amber) !important;
  border-radius: 0 !important;
}

.stats {
  background: var(--amber);
  color: var(--steel-950);
  position: relative;
  overflow: hidden;
}

.stats::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: linear-gradient(rgba(10, 20, 31, 0.06) 1px, transparent 1px);
  background-size: 100% 38px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.stat {
  position: relative;
  padding-left: 1.2rem;
  border-left: 2px solid rgba(10, 20, 31, 0.25);
}

.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat__suf {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.stat__label {
  font-size: 0.86rem;
  margin-top: 0.7rem;
  color: rgba(10, 20, 31, 0.78);
  max-width: 24ch;
}

@media (max-width: 760px) {
  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem 2rem;
  }
}
.industries {
  background: var(--steel-900);
}

.industries__title {
  margin-bottom: 3rem;
  max-width: 18ch;
}

.ind__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.ind {
  background: var(--steel-900);
  padding: 2.2rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  min-height: 200px;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease);
}

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

.ind::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--steel-800);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  animation: indSweep 12s ease-in-out infinite;
}

.ind::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 2;
  pointer-events: none;
  animation: indBar 12s ease-in-out infinite;
}

.ind:hover {
  background: var(--steel-850);
}

.ind__icon {
  width: 42px;
  height: 42px;
  color: var(--amber);
  transition: transform 0.5s var(--ease);
  animation: indIconColor 12s ease-in-out infinite;
}

.ind:hover .ind__icon {
  transform: rotate(-8deg) scale(1.08);
}

.ind h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.ind:nth-child(1)::before,
.ind:nth-child(1)::after,
.ind:nth-child(1) .ind__icon {
  animation-delay: 0s;
}

.ind:nth-child(2)::before,
.ind:nth-child(2)::after,
.ind:nth-child(2) .ind__icon {
  animation-delay: 2s;
}

.ind:nth-child(3)::before,
.ind:nth-child(3)::after,
.ind:nth-child(3) .ind__icon {
  animation-delay: 4s;
}

.ind:nth-child(4)::before,
.ind:nth-child(4)::after,
.ind:nth-child(4) .ind__icon {
  animation-delay: 6s;
}

.ind:nth-child(5)::before,
.ind:nth-child(5)::after,
.ind:nth-child(5) .ind__icon {
  animation-delay: 8s;
}

.ind:nth-child(6)::before,
.ind:nth-child(6)::after,
.ind:nth-child(6) .ind__icon {
  animation-delay: 10s;
}

@keyframes indSweep {
  0% {
    opacity: 0;
  }
  7% {
    opacity: 1;
  }
  16% {
    opacity: 1;
  }
  26% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes indBar {
  0% {
    transform: scaleX(0);
  }
  7% {
    transform: scaleX(1);
  }
  16% {
    transform: scaleX(1);
  }
  26% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes indIconColor {
  0% {
    color: var(--amber);
  }
  7% {
    color: var(--amber-bright);
  }
  16% {
    color: var(--amber-bright);
  }
  26% {
    color: var(--amber);
  }
  100% {
    color: var(--amber);
  }
}
@media (max-width: 820px) {
  .ind__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .ind__grid {
    grid-template-columns: 1fr;
  }
}
.order {
  background: var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.order::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image: linear-gradient(var(--paper-line) 1px, transparent 1px), linear-gradient(90deg, var(--paper-line) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}

.order > .container {
  position: relative;
}

.order .h2 {
  color: var(--ink);
}

.order__title {
  max-width: 20ch;
  margin-bottom: 3.5rem;
}

.order__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ostep {
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  padding: 2.2rem 1.9rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.ostep:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(13, 27, 42, 0.13);
}

.ostep__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--paper-line);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.06);
}

.ostep__icon svg {
  width: 28px;
  height: 28px;
}

.ostep h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.ostep p {
  color: #3c4a57;
  font-size: 0.93rem;
}

.ostep::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  transition: width 0.5s var(--ease);
}

.ostep:hover::after {
  width: 100%;
}

.ostep--1 {
  background: #f6edd9;
}

.ostep--1 .ostep__icon svg {
  color: #b9821f;
}

.ostep--1::after {
  background: #b9821f;
}

.ostep--2 {
  background: #e6eef4;
}

.ostep--2 .ostep__icon svg {
  color: #2f5d86;
}

.ostep--2::after {
  background: #2f5d86;
}

.ostep--3 {
  background: #e8efe5;
}

.ostep--3 .ostep__icon svg {
  color: #3f7a4f;
}

.ostep--3::after {
  background: #3f7a4f;
}

@media (max-width: 760px) {
  .order__steps {
    grid-template-columns: 1fr;
  }
}
.why {
  background: var(--steel-900);
}

.why__lead {
  color: var(--text-dim);
  margin: 1.4rem 0 2rem;
  max-width: 48ch;
}

.why__list {
  display: flex;
  flex-direction: column;
}

.why__list li {
  display: flex;
  gap: 1.3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}

.why__list li:last-child {
  border-bottom: 1px solid var(--line);
}

.why__k {
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 600;
  padding-top: 0.35rem;
  flex: none;
}

.why__list h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.why__list p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.ctaband {
  position: relative;
  background: var(--amber);
  color: var(--steel-950);
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.ctaband__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--steel-950) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
}

.ctaband__inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.ctaband__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.ctaband__sub {
  color: rgba(10, 20, 31, 0.78);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-final {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  background: radial-gradient(85% 130% at 100% 0%, rgba(232, 168, 56, 0.16), transparent 55%), radial-gradient(80% 120% at 0% 100%, rgba(31, 61, 92, 0.55), transparent 60%), var(--steel-950);
}

.cta-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.75;
}

.cta-final__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(95% 95% at 72% 50%, #000, transparent 80%);
  mask-image: radial-gradient(95% 95% at 72% 50%, #000, transparent 80%);
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.cta-final__title {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.cta-final__sub {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 48ch;
  margin-bottom: 2.4rem;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 1.8rem;
}

.cta-final__email {
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.25s var(--ease);
}

.cta-final__email:hover {
  border-color: var(--amber);
}

.cta-final__visual {
  position: relative;
  justify-self: end;
  width: min(100%, 300px);
  aspect-ratio: 1;
  opacity: 0.3;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.5));
}

.cta-final__visual svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.cta-final__spin {
  transform-box: fill-box;
  transform-origin: center;
  animation: spin 32s linear infinite;
}

.cta-final__pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.55);
    opacity: 0.45;
  }
}
@media (max-width: 860px) {
  .cta-final__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-final__sub {
    margin-inline: auto;
  }
  .cta-final__actions {
    justify-content: center;
  }
  .cta-final__visual {
    order: -1;
    justify-self: center;
    width: min(60%, 230px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta-final__spin,
  .cta-final__pulse {
    animation: none;
  }
}
.req {
  color: var(--rust);
}

.qform, .cform {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field > span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-300);
}

.field input, .field select, .field textarea {
  background: var(--steel-950);
  border: 1px solid var(--line-strong);
  color: #fff;
  padding: 0.75rem 0.85rem;
  border-radius: var(--r);
  font: inherit;
  font-size: 0.92rem;
  transition: border-color 0.25s;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.field textarea {
  resize: vertical;
}

.field input:invalid:not(:placeholder-shown), .field textarea:invalid:not(:placeholder-shown) {
  border-color: var(--rust);
}

.qform__ok {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: var(--amber);
  text-align: center;
  padding-top: 0.5rem;
}

@media (max-width: 540px) {
  .qform__row {
    grid-template-columns: 1fr;
  }
}
.accordion {
  border-top: 1px solid var(--line);
  max-width: none;
}

.acc {
  border-bottom: 1px solid var(--line);
}

.acc__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  padding: 1.4rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #fff;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.acc__trigger:hover {
  color: var(--amber);
}
.acc__trigger[aria-expanded=true] {
  color: var(--amber);
}
.acc__trigger[aria-expanded=true] .acc__icon::after {
  transform: translateX(-50%) scaleY(0);
}

.acc__icon {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
}

.acc__icon::before, .acc__icon::after {
  content: "";
  position: absolute;
  background: var(--amber);
  transition: transform 0.35s var(--ease);
}

.acc__icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.acc__icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}

.acc__panel {
  overflow: hidden;
  height: 0;
  transition: height 0.38s var(--ease);
}

.acc__panel-inner {
  padding: 0 0 1.5rem;
  color: var(--text-dim);
  max-width: 74ch;
}

.quote-dialog {
  background: var(--steel-850);
  border: 1px solid var(--line-strong);
  max-width: 620px;
  width: 100%;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--r);
}
.quote-dialog__head {
  margin-bottom: 1.8rem;
}
.quote-dialog .eyebrow--dark {
  color: var(--amber);
}
.quote-dialog__note {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 0.6rem;
}

.fancybox__backdrop {
  background: rgba(7, 14, 22, 0.86) !important;
  backdrop-filter: blur(4px);
}

.fancybox__content > .f-button.is-close-btn {
  color: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-400);
}

.breadcrumb a {
  color: var(--text-dim);
  transition: color 0.25s;
}

.breadcrumb a:hover {
  color: var(--amber);
}

.breadcrumb .sep {
  color: var(--amber);
  font-style: normal;
}

.breadcrumb [aria-current] {
  color: var(--amber);
}

.prose p {
  color: var(--text-dim);
  margin-bottom: 1.2rem;
  max-width: 68ch;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: #fff;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
}

.is-ready .reveal {
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .brand__balls, .bearing__cage, .bearing__ticks, .marquee__track {
    animation: none !important;
  }
}
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding-top: calc(74px + clamp(2.6rem, 6vw, 4.2rem));
  padding-bottom: clamp(2.6rem, 5vw, 4rem);
  background: radial-gradient(120% 90% at 88% 0%, rgba(232, 168, 56, 0.1), transparent 55%), radial-gradient(90% 90% at 0% 100%, rgba(31, 61, 92, 0.5), transparent 60%), var(--steel-900);
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(120% 130% at 80% 0%, #000 30%, transparent 80%);
  mask-image: radial-gradient(120% 130% at 80% 0%, #000 30%, transparent 80%);
}

.page-hero__inner {
  position: relative;
  max-width: 62ch;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0.4rem 0 0;
  text-wrap: balance;
}

.page-hero__lead {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  margin-top: 1.4rem;
  max-width: 58ch;
}

.page-hero__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.page-hero--about {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.page-hero--about .page-hero__inner {
  max-width: none;
  position: relative;
  z-index: 1;
}

.page-hero--about .page-hero__title {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.page-hero__watermark {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-46%);
  width: min(46vw, 540px);
  color: var(--steel-700);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.45));
}

.page-hero__watermark .brand__balls {
  animation: spin 40s linear infinite;
}

.page-hero__watermark .brand__balls circle {
  fill: var(--steel-600);
}

@media (max-width: 760px) {
  .page-hero__watermark {
    opacity: 0.3;
    right: -22%;
  }
}
.page-hero--products {
  text-align: center;
}

.page-hero--products .page-hero__inner {
  max-width: 780px;
  margin-inline: auto;
}

.page-hero--products .page-hero__cta {
  justify-content: center;
}

.page-hero--products .page-hero__lead {
  margin-inline: auto;
}

.page-hero--products .page-hero__title::before {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto 1.6rem;
}

.page-hero--contact .page-hero__split {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.page-hero__panel {
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 360px);
  justify-self: end;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 50%, rgba(232, 168, 56, 0.08), transparent 70%);
}

.page-hero__panel svg {
  width: 60%;
  color: var(--amber);
  opacity: 0.9;
}

.page-hero__panel svg .brand__balls {
  animation: spin 30s linear infinite;
}

.page-hero__panel svg .brand__balls circle {
  fill: var(--amber);
}

.page-hero__panel .ct-ping {
  transform-box: fill-box;
  transform-origin: center;
  animation: ctPing 2.4s ease-in-out infinite;
}

@keyframes ctPing {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.55;
  }
}
.page-hero__panel::before, .page-hero__panel::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-color: var(--amber);
}

.page-hero__panel::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.page-hero__panel::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

@media (max-width: 760px) {
  .page-hero--contact .page-hero__split {
    grid-template-columns: 1fr;
  }
  .page-hero__panel {
    display: none;
  }
}
.page-hero--legal {
  padding-top: calc(74px + clamp(2.2rem, 5vw, 3.4rem));
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background: var(--steel-950);
}

.page-hero--legal .page-hero__inner {
  padding-left: 1.6rem;
  border-left: 3px solid var(--amber);
}

.page-hero--terms {
  padding-top: calc(74px + clamp(2.2rem, 5vw, 3.4rem));
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--steel-850), var(--steel-900));
}

.page-hero--terms .page-hero__inner {
  display: inline-block;
  max-width: none;
}

.page-hero--terms .page-hero__title {
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--amber);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(74px + clamp(2.4rem, 5vw, 3.6rem));
  padding-bottom: clamp(2.6rem, 5vw, 4.4rem);
  background: radial-gradient(85% 120% at 100% 0%, rgba(232, 168, 56, 0.12), transparent 55%), radial-gradient(80% 120% at 0% 100%, rgba(31, 61, 92, 0.45), transparent 60%), var(--steel-950);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 120% at 15% 35%, #000 30%, transparent 80%);
  mask-image: radial-gradient(120% 120% at 15% 35%, #000 30%, transparent 80%);
}

.about-hero__split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  min-height: 60vh;
}

.about-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
  opacity: 0;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  animation: heroRise 0.8s var(--ease) 0.1s both;
}

.about-hero__kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--amber);
}

.about-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  opacity: 0;
  animation: heroRise 0.9s var(--ease) 0.22s both;
}

.about-hero__t1 {
  display: block;
  color: var(--amber);
}

.about-hero__t2 {
  display: block;
  white-space: nowrap;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.about-hero__media {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 5/4;
  opacity: 0;
  animation: heroRise 1s var(--ease) 0.34s both;
  padding: 13px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: linear-gradient(150deg, rgba(232, 168, 56, 0.1), rgba(13, 27, 42, 0.55));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.about-hero__media::before, .about-hero__media::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--amber);
  z-index: 3;
  pointer-events: none;
}

.about-hero__media::before {
  top: -2px;
  left: -2px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.about-hero__media::after {
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.about-hero .hero-slider {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(232, 168, 56, 0.45);
  background: var(--steel-900);
  overflow: hidden;
}

.about-hero .swiper-slide {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
}

.about-hero .swiper-slide-active .hero-slide {
  animation: kenBurns 6s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.18);
  }
}
.about-hero__dots {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.about-hero .swiper-pagination-bullet {
  width: 26px;
  height: 3px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}

.about-hero .swiper-pagination-bullet-active {
  background: var(--amber);
  width: 40px;
}

@media (max-width: 860px) {
  .about-hero__split {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .about-hero__media {
    justify-self: stretch;
    max-width: none;
    aspect-ratio: 16/10;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-hero .swiper-slide-active .hero-slide {
    animation: none;
  }
  .about-hero__kicker, .about-hero__title, .about-hero__media {
    animation: none;
    opacity: 1;
  }
}
.about__lead p {
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  color: var(--text);
}

.about-zz {
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.zz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--steel-850);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.zz:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.zz--rev .zz__media {
  order: -1;
}

.zz__media {
  position: relative;
  min-height: clamp(260px, 32vw, 400px);
  overflow: hidden;
}

.zz__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.zz:hover .zz__media img {
  transform: scale(1.06);
}

.zz__media::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 3px;
  background: var(--amber);
  opacity: 0.7;
}

.zz--rev .zz__media::after {
  right: auto;
  left: 0;
}

.zz__text {
  padding: clamp(1.8rem, 3.5vw, 3.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}

.zz__no {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.01em;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  color: transparent;
  -webkit-text-stroke: 2px var(--amber);
}

.zz__text p {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
  margin: 0;
  max-width: 52ch;
}

.zz__text strong {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 860px) {
  .zz {
    grid-template-columns: 1fr;
  }
  .zz__media {
    min-height: 230px;
  }
  .zz__media, .zz--rev .zz__media {
    order: -1;
  }
  .zz__media::after {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: 3px;
  }
  .zz--rev .zz__media::after {
    left: 0;
  }
}
.founder__heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.founder {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.founder__card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(165deg, var(--steel-800), var(--steel-900) 72%);
  padding: clamp(2rem, 3.5vw, 2.8rem);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.founder__card::before, .founder__card::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--amber);
  pointer-events: none;
}

.founder__card::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.founder__card::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.founder__emblem {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.6rem;
  border: 1px solid var(--line-strong);
  background: radial-gradient(circle, rgba(232, 168, 56, 0.16), transparent 70%);
}

.founder__emblem svg {
  width: 46px;
  height: 46px;
  color: var(--amber);
}

.founder__emblem .brand__balls {
  transform-origin: center;
  animation: spin 18s linear infinite;
}

.founder__emblem .brand__balls circle {
  fill: var(--amber);
}

.founder__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.founder__role {
  display: inline-block;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

.founder__body {
  position: relative;
  padding-top: 1rem;
}

.founder__body::before {
  content: "“";
  position: absolute;
  top: -2.6rem;
  left: -0.6rem;
  z-index: 0;
  pointer-events: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9rem;
  line-height: 1;
  color: var(--amber);
  opacity: 0.12;
}

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

.founder__lead {
  color: #fff;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.founder__body p {
  color: var(--text-dim);
  margin-bottom: 1.1rem;
}

.founder__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .founder {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .founder__body::before {
    top: -2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .founder__emblem .brand__balls {
    animation: none;
  }
}
.lightband {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: radial-gradient(80% 120% at 0% 0%, #ffffff, transparent 55%), linear-gradient(160deg, #ffffff 0%, #eef2f6 58%, #e6edf3 100%);
}

.lightband > .section {
  position: relative;
  z-index: 1;
}

.lightband--founder {
  background: radial-gradient(80% 120% at 0% 0%, #ffffff, transparent 55%), linear-gradient(158deg, #ffffff 0%, #e9eef5 60%, #e2e8f0 100%);
}

.lightband--facts {
  border-top: 1px solid rgba(13, 27, 42, 0.06);
  background: radial-gradient(75% 115% at 100% 100%, rgba(232, 168, 56, 0.06), transparent 60%), linear-gradient(205deg, #f3f6f9 0%, #ffffff 52%, #edf0f5 100%);
}

.lightband__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.lightband .wd-ico {
  color: var(--steel-500);
  opacity: 0.13;
}

.lightband .wd-ico--amber {
  color: var(--amber);
  opacity: 0.24;
}

.lightband .h2 {
  color: var(--ink);
}

.lightband .founder__lead {
  color: var(--ink);
}

.lightband .founder__body p {
  color: #41505f;
}

.lightband .founder__body::before {
  color: var(--amber);
  opacity: 0.16;
}

.lightband .facts {
  border-color: rgba(13, 27, 42, 0.14);
}

.lightband .facts th, .lightband .facts td {
  border-bottom-color: rgba(13, 27, 42, 0.1);
}

.lightband .facts thead th {
  background: rgba(13, 27, 42, 0.05);
  color: var(--steel-600);
}

.lightband .facts tbody th {
  color: var(--amber-deep);
  background: rgba(232, 168, 56, 0.07);
}

.lightband .facts tbody td {
  color: var(--ink);
}

@media (max-width: 560px) {
  .lightband .facts tbody th {
    background: none;
  }
}
.facts {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.facts caption {
  text-align: left;
}

.facts th, .facts td {
  padding: 1rem 1.3rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.facts thead th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-400);
  background: var(--steel-950);
  font-weight: 500;
}

.facts tbody th {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--amber);
  width: 34%;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  background: rgba(13, 27, 42, 0.5);
}

.facts tbody td {
  color: var(--text);
}

.facts tbody tr:last-child th, .facts tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 560px) {
  .facts thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .facts tbody th {
    width: auto;
    display: block;
    border-bottom: none;
    padding-bottom: 0.2rem;
  }
  .facts tbody td {
    display: block;
    padding-top: 0.2rem;
  }
}
.prodlist {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.pblock {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
  background: var(--steel-850);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  position: relative;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.pblock::before, .pblock::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--amber);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.pblock::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}
.pblock::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}
.pblock:hover::before, .pblock:hover::after {
  opacity: 1;
}
.pblock:hover {
  border-color: var(--line-strong);
  background: var(--steel-800);
}

.pblock__idx {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--steel-600);
  letter-spacing: -0.03em;
}

.pblock__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.pblock__hs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--amber);
  border: 1px solid var(--line-strong);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1.1rem;
}

.pblock__desc {
  color: var(--text-dim);
  margin-bottom: 1rem;
  max-width: 70ch;
}

.pblock__meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
}

.pblock__meta p {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 70ch;
}

.pblock__meta b {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-300);
  font-weight: 500;
  display: block;
  margin-bottom: 0.15rem;
}

.pblock__cta {
  align-self: start;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .pblock {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .pblock__idx {
    font-size: 2rem;
  }
  .pblock__cta {
    justify-self: start;
  }
}
.prodlist .pblock {
  position: sticky;
  transform-origin: 50% 0;
  box-shadow: 0 -18px 40px -18px rgba(0, 0, 0, 0.55);
}

.prodlist .pblock:nth-child(1) {
  top: 82px;
  z-index: 1;
}

.prodlist .pblock:nth-child(2) {
  top: 120px;
  z-index: 2;
}

.prodlist .pblock:nth-child(3) {
  top: 158px;
  z-index: 3;
}

.prodlist .pblock:nth-child(4) {
  top: 196px;
  z-index: 4;
}

.prodlist .pblock:nth-child(5) {
  top: 234px;
  z-index: 5;
}

.prodlist .pblock:nth-child(6) {
  top: 272px;
  z-index: 6;
}

.prodlist .pblock:nth-child(7) {
  top: 310px;
  z-index: 7;
}

.prodlist .pblock:nth-child(8) {
  top: 348px;
  z-index: 8;
}

.prodlist .pblock:nth-child(9) {
  top: 386px;
  z-index: 9;
}

.prodlist .pblock:nth-child(10) {
  top: 424px;
  z-index: 10;
}

.prodlist {
  padding-bottom: clamp(2rem, 8vw, 7rem);
}

.gallery {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.gallery__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, #070e16, #13263b, #1f3d5c, #b9821f, #16304a, #0a141f);
  background-size: 320% 320%;
  animation: galleryFlow 24s ease-in-out infinite;
}

@keyframes galleryFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.gallery > .container {
  position: relative;
  z-index: 1;
}

.masonry {
  width: 100%;
}

.masonry__sizer, .masonry__item {
  width: 32%;
}

.masonry__gutter {
  width: 2%;
}

.masonry__item {
  margin-bottom: 2%;
  float: left;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--steel-900);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.masonry__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease);
}

.masonry__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 14, 22, 0.72));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.masonry__item:hover img {
  transform: scale(1.07);
}

.masonry__item:hover::before {
  opacity: 1;
}

.masonry__zoom {
  position: absolute;
  z-index: 2;
  right: 0.85rem;
  bottom: 0.85rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
  background: rgba(7, 14, 22, 0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.masonry__item:hover .masonry__zoom {
  opacity: 1;
  transform: none;
}

@media (max-width: 820px) {
  .masonry__sizer, .masonry__item {
    width: 48.5%;
  }
  .masonry__gutter {
    width: 3%;
  }
}
@media (max-width: 520px) {
  .masonry__sizer, .masonry__item {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery__bg {
    animation: none;
  }
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.infocard {
  border: 1px solid var(--line);
  background: var(--steel-850);
  padding: 2rem 1.9rem;
  position: relative;
}

.infocard h2 {
  margin-bottom: 1.3rem;
}

.infocard address {
  font-style: normal;
  color: var(--text);
  line-height: 1.9;
}

.infocard address a {
  color: var(--amber);
}

.infocard .mono {
  color: var(--text-dim);
  display: block;
  line-height: 1.9;
}

.infocard__row {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.infocard p {
  color: var(--text-dim);
}

@media (max-width: 760px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}
.forms__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.forms__single {
  max-width: 720px;
  margin-inline: auto;
}

.forms-sec {
  position: relative;
  overflow: hidden;
}

.forms-sec > .container {
  position: relative;
  z-index: 1;
}

.forms__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.fd-ico {
  position: absolute;
  color: var(--steel-400);
  opacity: 0.16;
}

.fd-ico svg {
  display: block;
  width: 100%;
  height: 100%;
}

.fd-ico--amber {
  color: var(--amber);
  opacity: 0.24;
}

.fd-ico--1 {
  width: 56px;
  height: 56px;
  top: 12%;
  left: 5%;
  animation: fdFloat 7s ease-in-out infinite;
}

.fd-ico--2 {
  width: 46px;
  height: 46px;
  top: 19%;
  right: 6%;
  animation: fdDrift 9s ease-in-out infinite;
}

.fd-ico--3 {
  width: 42px;
  height: 42px;
  top: 54%;
  left: 4%;
  animation: fdFloat 6.4s ease-in-out 0.5s infinite;
}

.fd-ico--4 {
  width: 50px;
  height: 50px;
  bottom: 14%;
  right: 7%;
  animation: fdDrift 8.5s ease-in-out infinite;
}

.fd-ico--5 {
  width: 40px;
  height: 40px;
  bottom: 18%;
  left: 9%;
  animation: fdFloat 7.6s ease-in-out 0.8s infinite;
}

.fd-ico--6 {
  width: 46px;
  height: 46px;
  top: 46%;
  right: 4%;
  animation: fdFloat 6.8s ease-in-out infinite;
}

@keyframes fdFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
@keyframes fdDrift {
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(10px, -12px) rotate(8deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fd-ico {
    animation: none;
  }
}
.formcard {
  border: 1px solid var(--line);
  background: var(--steel-850);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  position: relative;
}

.formcard h2 {
  margin-bottom: 1.5rem;
}

@media (max-width: 880px) {
  .forms__grid {
    grid-template-columns: 1fr;
  }
}
.lightband--faq {
  background: radial-gradient(70% 110% at 100% 0%, rgba(232, 168, 56, 0.06), transparent 55%), linear-gradient(200deg, #f4f6f9 0%, #c3bdbd 55%, #eceff4 100%);
}

.lightband .accordion {
  border-top-color: rgba(13, 27, 42, 0.12);
}

.lightband .acc {
  border-bottom-color: rgba(13, 27, 42, 0.12);
}

.lightband .acc__trigger {
  color: var(--ink);
}

.lightband .acc__trigger:hover,
.lightband .acc__trigger[aria-expanded=true] {
  color: var(--amber-deep);
}

.lightband .acc__panel-inner {
  color: #41505f;
}

.legal {
  max-width: 78ch;
}

.legal__meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-400);
  margin-bottom: 2.6rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.legal__note {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: rgba(232, 168, 56, 0.07);
  border: 1px solid rgba(232, 168, 56, 0.3);
  border-left: 3px solid var(--amber);
  padding: 1.1rem 1.3rem;
  margin-bottom: 3rem;
  border-radius: var(--r);
}

.legal__note svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--amber);
  margin-top: 2px;
}

.legal__note p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin: 0;
}

.legal__note strong {
  color: var(--amber);
  font-weight: 600;
}

.legal section {
  margin-bottom: 2.4rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.9rem;
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
}

.legal h2 .legal__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--amber);
  flex: none;
}

.legal p {
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.legal p:last-child {
  margin-bottom: 0;
}

.legal .placeholder {
  display: block;
  color: var(--steel-400);
  font-style: italic;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r);
  padding: 0.9rem 1.1rem;
  background: rgba(13, 27, 42, 0.4);
}

.error {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 74px var(--pad) 3rem;
  text-align: center;
  background: radial-gradient(120% 90% at 50% 0%, rgba(232, 168, 56, 0.08), transparent 55%), var(--steel-900);
}

.error__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(110% 110% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(110% 110% at 50% 40%, #000 30%, transparent 75%);
}

.error__inner {
  position: relative;
  max-width: 560px;
}

.error__code {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
  font-size: clamp(6rem, 22vw, 13rem);
  position: relative;
  display: inline-block;
}

.error__code em {
  font-style: normal;
  color: var(--amber);
}

.error__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 1rem;
  line-height: 1.05;
}

.error__sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
  max-width: 46ch;
  margin-inline: auto;
}

.error__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.error__links {
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.error__links a {
  color: var(--text-dim);
  transition: color 0.25s;
}

.error__links a:hover {
  color: var(--amber);
}
