@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800;900&family=Geist+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #0b0b0d;
  --bg-2: #111114;
  --surface: #17171b;
  --surface-2: #1d1d22;
  --surface-3: #25252b;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f5;
  --text-2: #a8a8ad;
  --text-3: #6b6b72;
  --orange: #ff6a00;
  --orange-2: #ff8a3d;
  --amber: #f4a300;
  --steel: #6b7b8c;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --section: clamp(80px, 10vw, 140px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
p { margin: 0; }

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

.section {
  padding-block: var(--section);
  position: relative;
}

.eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--orange);
  display: inline-block;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.section-title em { font-style: normal; color: var(--orange); }

.section-lede {
  color: var(--text-2);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 56ch;
  margin-top: 20px;
  line-height: 1.55;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 56px; }
  .section-head .section-lede { margin-top: 0; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow {
  width: 18px; height: 18px;
  transition: transform .3s var(--ease);
}
.btn:hover .arrow { transform: translate(2px, -2px); }

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange-2); color: #fff; }

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--text); background: rgba(255,255,255,0.04); }

.btn-dark {
  background: #fff;
  color: #0b0b0d;
}
.btn-dark:hover { background: #f4f4f5; }

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-block: 10px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, backdrop-filter .3s;
}
.header.scrolled {
  background: rgba(11, 11, 13, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  height: 60px;
  line-height: 1;
}
.logo img {
  height: 100%;
  width: auto;
  display: block;
}
.foot-brand .logo {
  height: 64px;
  margin-bottom: 16px;
}

.nav {
  display: none;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  color: var(--text-2);
  transition: color .2s;
  position: relative;
}
.nav a:hover { color: var(--text); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-link {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.01em;
  display: none;
}
.phone-link:hover { color: var(--orange); }

.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.menu-toggle svg { width: 18px; height: 18px; }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .phone-link { display: inline-block; }
  .menu-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(11,11,13,0.96);
  backdrop-filter: blur(20px);
  z-index: 60;
  padding: 80px var(--gutter) 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn {
  margin-top: 20px;
  align-self: stretch;
  justify-content: center;
}
.mm-close {
  position: absolute;
  top: 18px;
  right: var(--gutter);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.mm-close svg { width: 16px; height: 16px; }

.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 0;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 85% 30%, rgba(255,106,0,0.18), transparent 60%),
    radial-gradient(600px 600px at 10% 80%, rgba(255,106,0,0.07), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  z-index: -1;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-block: 40px;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-2);
  background: rgba(255,255,255,0.02);
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,106,0,0.18);
}

.hero h1 {
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero h1 .accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-2);
  max-width: 48ch;
  line-height: 1.55;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
@media (min-width: 600px) {
  .hero-meta { grid-template-columns: repeat(3, 1fr); }
}
.hero-meta-item .num {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-meta-item .num span { color: var(--orange); }
.hero-meta-item .lbl {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0e0e10;
}
.hero-visual image-slot {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.hv-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(255,106,0,0.35), transparent 60%),
    linear-gradient(180deg, #1a1a20 0%, #0e0e12 55%, #0a0a0c 100%);
}
.sun {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  top: 14%; right: -40px;
  background: radial-gradient(circle, rgba(255,160,60,0.95), rgba(255,106,0,0.7) 35%, transparent 70%);
  filter: blur(2px);
}
.stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.6) 50%, transparent 51%),
    radial-gradient(1px 1px at 28% 8%, rgba(255,255,255,0.45) 50%, transparent 51%),
    radial-gradient(1px 1px at 48% 22%, rgba(255,255,255,0.5) 50%, transparent 51%),
    radial-gradient(1px 1px at 75% 12%, rgba(255,255,255,0.4) 50%, transparent 51%),
    radial-gradient(1px 1px at 88% 28%, rgba(255,255,255,0.55) 50%, transparent 51%),
    radial-gradient(1px 1px at 18% 32%, rgba(255,255,255,0.35) 50%, transparent 51%);
  mask-image: linear-gradient(180deg, #000 0%, #000 35%, transparent 55%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 35%, transparent 55%);
}
.mtn {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  display: block;
}
.mtn-3 { bottom: 28%; height: 32%; opacity: 0.95; }
.mtn-2 { bottom: 20%; height: 30%; opacity: 1; }
.mtn-1 { bottom: 14%; height: 22%; opacity: 1; }
.ground {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 18%;
  background:
    linear-gradient(180deg, #0a0a0c 0%, #050506 100%);
}
.ground::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255,106,0,0.18), transparent 70%);
}
.dust {
  position: absolute;
  bottom: 12%; left: 0;
  width: 80%;
  height: 18%;
  background:
    radial-gradient(ellipse 100% 100% at 30% 100%, rgba(255,160,60,0.25), transparent 60%);
  filter: blur(20px);
}

.atv {
  position: absolute;
  left: 50%;
  bottom: 14%;
  width: 60%;
  max-width: 360px;
  transform: translateX(-50%);
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.7));
}

.hv-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, #000 30%, transparent 90%);
  mix-blend-mode: overlay;
  opacity: 0.5;
}
.hv-corner {
  position: absolute;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1.2;
  z-index: 3;
}
.hv-corner.tl {
  top: 22px; left: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}
.hv-corner.br {
  bottom: 22px; right: 22px;
  text-align: right;
  color: var(--orange);
  padding: 8px 12px;
  border: 1px solid rgba(255,106,0,0.35);
  border-radius: 6px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}
.hv-tags {
  position: absolute;
  top: 22px; right: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  z-index: 3;
}
.hv-tags span {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}
.hv-spec {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 4px 14px;
  z-index: 3;
}
.hv-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
}
.hv-spec-row:last-child { border-bottom: 0; }
.hv-spec-row .k {
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hv-spec-row .v {
  color: var(--text);
  font-weight: 500;
}

.marquee {
  position: relative;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  margin-top: 80px;
}
.marquee-track {
  display: flex;
  padding-block: 22px;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  margin-right: 56px;
}
.marquee-item::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
@keyframes scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.trust {
  padding-block: clamp(60px, 8vw, 100px);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 700px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .trust-grid { grid-template-columns: repeat(5, 1fr); } }

.trust-cell {
  background: var(--bg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 200px;
  position: relative;
  transition: background .3s var(--ease);
}
.trust-cell:hover { background: var(--surface); }
.trust-cell .idx {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.08em;
}
.trust-cell .text {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: auto;
}

.tasks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .tasks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tasks-grid { grid-template-columns: repeat(3, 1fr); } }

.task-card {
  background: var(--task-bg) center / cover no-repeat, var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  min-height: 240px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.task-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.task-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.56) 0%, rgba(11, 11, 13, 0.62) 42%, rgba(11, 11, 13, 0.9) 100%),
    radial-gradient(circle at 82% 18%, rgba(255, 106, 0, 0.13), transparent 34%);
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.task-card:hover::after { opacity: .82; }
.task-card::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.task-card:hover::before { opacity: 1; }
.task-card > * {
  position: relative;
  z-index: 1;
}
.task-card .num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.06em;
}
.task-card .title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 22ch;
  margin-top: auto;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .42);
}
.task-card .icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 11, 13, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  color: var(--orange);
  transition: border-color .3s, transform .3s var(--ease), background .3s var(--ease);
}
.task-card:hover .icon { border-color: var(--orange); background: rgba(255, 106, 0, 0.08); transform: rotate(-3deg); }
.task-card .icon svg { width: 16px; height: 16px; }

.why { background: var(--bg-2); border-block: 1px solid var(--line); }

.why-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.why-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .3s var(--ease);
}
.why-row:hover { background: rgba(255,255,255,0.015); }
@media (min-width: 800px) {
  .why-row {
    grid-template-columns: 80px minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px 64px;
    align-items: center;
    padding-block: 40px;
  }
}
.why-row .n {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.06em;
}
.why-row .t {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 28ch;
}
.why-row .d {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 46ch;
}

.catalog-head .actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.catalog-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 10px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.catalog-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.04em;
  color: var(--text-2);
  border: 1px solid var(--line);
  background: transparent;
  transition: all .25s var(--ease);
  text-transform: uppercase;
  white-space: nowrap;
}
.cat-tab:hover { color: var(--text); border-color: var(--line-strong); }
.cat-tab.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.catalog-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
@media (min-width: 900px) {
  .catalog-card { grid-template-columns: 1.05fr 1fr; }
}

.cat-visual {
  position: relative;
  background: #0e0e10;
  min-height: 100%;
  border-right: 1px solid var(--line);
  overflow: hidden;
}
@media (max-width: 899px) {
  .cat-visual {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    aspect-ratio: 3/4;
    min-height: 0;
  }
}
.cat-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cat-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.55) 0%, transparent 22%, transparent 70%, rgba(11,11,13,0.7) 100%);
  pointer-events: none;
}
.cat-visual-meta {
  position: absolute;
  inset: 22px 22px auto 22px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  z-index: 1;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cat-info {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}
.cat-brand {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cat-name {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--orange);
}
.cat-tagline {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 42ch;
}

.cat-key {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}
.cat-key .kk {
  background: var(--surface);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cat-key .kk .v {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.cat-key .kk .v sup {
  font-size: 11px;
  font-family: 'Geist Mono', monospace;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0;
}
.cat-key .kk .l {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cat-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.cat-specs .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.cat-specs .row .k {
  color: var(--text-3);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cat-specs .row .v {
  color: var(--text);
  text-align: right;
  font-weight: 500;
}

.cat-actions {
  display: flex; gap: 12px; margin-top: 28px;
  flex-wrap: wrap;
}

.cat-specs-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.cat-specs-toggle:hover { border-color: var(--orange); color: var(--orange); }
.cat-specs-toggle svg { transition: transform .25s var(--ease); }
.cat-specs-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.cat-specs-toggle .less { display: none; }
.cat-specs-toggle[aria-expanded="true"] .more { display: none; }
.cat-specs-toggle[aria-expanded="true"] .less { display: inline; }

@media (min-width: 769px) {
  .cat-specs-toggle[data-desktop-toggle="true"] { display: inline-flex; }
  .cat-specs[data-collapsed] .row:nth-child(n+11) { display: none; }
}

@media (max-width: 768px) {
  .cat-specs-toggle { display: inline-flex; }
  .cat-specs[data-collapsed] .row:nth-child(n+6) { display: none; }
}

.two-up {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 1000px) { .two-up { grid-template-columns: 1fr 1fr; } }

.feature-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.feature-block.dark {
  background:
    radial-gradient(700px 300px at 90% 10%, rgba(255,106,0,0.16), transparent 60%),
    var(--surface);
}
.feature-block .fb-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.feature-block .fb-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 18ch;
}
.feature-block .fb-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}
.feature-block .fb-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding-block: 16px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.45;
}
.feature-block .fb-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-block .fb-list li::before {
  content: counter(li, decimal-leading-zero);
  counter-increment: li;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.feature-block .fb-list { counter-reset: li; }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.proc-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
  transition: all .3s var(--ease);
}
.proc-step:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.proc-step .step-no {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.08em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.proc-step .step-no .time {
  color: var(--text-3);
  font-size: 11px;
}
.proc-step .step-t {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.proc-step .step-d {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
  margin-top: auto;
}

.cta-block {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(800px 400px at 80% 30%, rgba(255,106,0,0.25), transparent 60%),
    radial-gradient(600px 400px at 10% 80%, rgba(255,106,0,0.10), transparent 60%),
    linear-gradient(135deg, #1a1a1f, #0e0e10);
  border: 1px solid var(--line-strong);
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 64px);
  overflow: hidden;
  isolation: isolate;
}
.cta-block::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 80%);
}
.cta-block .eyebrow { color: var(--orange); }
.cta-block h2 {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 20px;
  max-width: 18ch;
}
.cta-block h2 em { font-style: italic; color: var(--orange); font-weight: 500; }
.cta-block .sub {
  color: var(--text-2);
  font-size: clamp(16px, 1.4vw, 19px);
  margin-top: 22px;
  max-width: 50ch;
  line-height: 1.55;
}
.cta-block .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
}

.contact-info {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 16px;
  align-self: stretch;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  transition: border-color .3s, background .3s;
  background: var(--surface);
}
.contact-card:hover { border-color: var(--orange); background: var(--surface-2); }
.contact-card .lbl {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.contact-card .val {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.contact-card .val:hover { color: var(--orange); }

.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}
.form-wrap h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-wrap .form-sub {
  color: var(--text-2);
  font-size: 15px;
  margin-bottom: 28px;
}
.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: span 2; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color .25s, background .25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,106,0,0.04);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.form-actions .legal {
  font-size: 12px;
  color: var(--text-3);
  max-width: 38ch;
  line-height: 1.4;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding-block: 72px 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 800px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.foot-brand .logo { height: 64px; margin-bottom: 16px; }
.foot-brand p {
  color: var(--text-2);
  font-size: 14px;
  max-width: 34ch;
  line-height: 1.55;
}
.foot-col h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  font-size: 14px;
  color: var(--text);
  transition: color .2s;
}
.foot-col a:hover { color: var(--orange); }
.foot-contacts { gap: 12px; }
.foot-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.foot-contact-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 106, 0, 0.06);
  color: var(--orange);
  display: grid;
  place-items: center;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.foot-contact-icon svg {
  width: 15px;
  height: 15px;
}
.foot-contact-link:hover .foot-contact-icon {
  border-color: var(--orange);
  background: rgba(255, 106, 0, 0.12);
  transform: translateY(-1px);
}

.foot-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal-stagger].in > * { opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].in > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger].in > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger].in > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger].in > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger].in > *:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; }
}

  
  .slider-hint { display: none; }

@media (max-width: 768px) {
  :root {
    --section: 56px;
    --gutter: 18px;
  }
  .hero { padding-top: 100px; }
  .hero-inner { gap: 24px; padding-block: 16px; }
  .hero h1 {
    font-size: clamp(48px, 13vw, 80px);
  }
  .marquee { margin-top: 40px; }
  .section-head { margin-bottom: 32px; }
  .logo { height: 56px; }

  
  .header { padding-block: 8px; }
  .header-cta { gap: 8px; }
  .header-cta .btn {
    padding: 9px 14px;
    font-size: 13px;
    height: 40px;
  }
  .header-cta .btn .arrow { display: none; }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .menu-toggle svg { width: 16px; height: 16px; }

  
  .form-wrap,
  .feature-block,
  .cat-info {
    padding: 18px;
  }
  .cta-block { padding: 32px 18px; }
  .task-card { padding: 20px 18px; }
  .proc-step { padding: 20px 18px; }
  .contact-card { padding: 16px 18px; }
  .trust-cell { padding: 18px; min-height: 160px; }
  .why-row { padding: 18px; min-height: 220px; }

  
  .hero-ctas,
  .cta-block .actions,
  .cat-actions,
  .catalog-head .actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-ctas .btn,
  .cta-block .actions .btn,
  .cat-actions .btn,
  .catalog-head .actions .btn,
  .form-actions .btn[type="submit"] {
    width: 100%;
    justify-content: center;
  }
  .form-actions { flex-direction: column; align-items: stretch; }
}

::selection { background: var(--orange); color: #0b0b0d; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
}
.preloader-logo {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  animation: preFadeIn .8s var(--ease) both;
}
.preloader-bar {
  position: relative;
  height: 2px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  animation: preFadeIn .8s .15s var(--ease) both;
}
.preloader-bar span {
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--orange);
  animation: preLoad 1s var(--ease) forwards;
}
.preloader-meta {
  display: flex;
  justify-content: space-between;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  animation: preFadeIn .8s .25s var(--ease) both;
}
.preloader-meta .pm-r { color: var(--orange); }

@keyframes preFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@keyframes preLoad {
  0%   { right: 100%; }
  100% { right: 0; }
}

body.preloading { overflow: hidden; }

@media (max-width: 768px) {
  
  .trust-grid,
  .tasks-grid,
  .process-grid,
  .why-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px var(--gutter) 18px;
    margin-inline: calc(var(--gutter) * -1);
    scroll-padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
  }
  .trust-grid::-webkit-scrollbar,
  .tasks-grid::-webkit-scrollbar,
  .process-grid::-webkit-scrollbar,
  .why-list::-webkit-scrollbar { display: none; }

  
  .trust-grid > *,
  .tasks-grid > *,
  .process-grid > *,
  .why-list > * {
    flex: 0 0 82vw;
    scroll-snap-align: start;
    min-width: 0;
  }

  
  .trust-grid {
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow-x: auto;
  }
  .trust-cell {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    min-height: 180px;
  }

  
  .why-list { border-top: 0; }
  .why-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    min-height: 240px;
  }
  .why-row:hover { background: var(--surface); }
  .why-row .t { font-size: 22px; }
  .why-row .d { font-size: 14px; max-width: none; }

  
  .slider-hint {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
  }
  .slider-hint::before {
    content: '←';
    color: var(--orange);
  }
  .slider-hint::after {
    content: '→';
    color: var(--orange);
  }
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
}
.form-status.success {
  color: #88d18a;
}
.form-status.error {
  color: #ff8a8a;
}

.hero--bg {
  min-height: min(100svh, 980px);
}
.hero--bg::before { z-index: -2; }
.hero--bg::after { z-index: -1; }
.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-bg-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.88) 0%, rgba(8, 9, 12, 0.74) 30%, rgba(8, 9, 12, 0.42) 58%, rgba(8, 9, 12, 0.62) 100%),
    linear-gradient(180deg, rgba(8, 9, 12, 0.38) 0%, rgba(8, 9, 12, 0.14) 28%, rgba(8, 9, 12, 0.72) 100%);
}
.hero--bg .container {
  position: relative;
  z-index: 2;
}
.hero--bg .hero-inner {
  grid-template-columns: 1fr;
  min-height: calc(min(100svh, 980px) - 140px);
  align-items: center;
  padding-block: 64px 72px;
}
.hero--bg .hero-copy {
  max-width: 760px;
}
.hero--bg .hero-sub {
  color: rgba(244, 244, 245, 0.82);
  max-width: 44ch;
  text-shadow: 0 6px 26px rgba(0,0,0,0.45);
}
.hero--bg h1 {
  max-width: 10ch;
  text-shadow: 0 10px 38px rgba(0,0,0,0.42);
}
.hero--bg .hero-meta {
  max-width: 620px;
  border-top-color: rgba(255,255,255,0.12);
}
.hero--bg .hero-meta-item .lbl {
  color: rgba(244, 244, 245, 0.58);
}
.hero--bg .marquee {
  margin-top: 0;
  background: rgba(11, 11, 13, 0.84);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.section-catalog-top {
  padding-top: clamp(52px, 6vw, 82px);
}
@media (max-width: 1023px) {
  .hero--bg {
    min-height: auto;
  }
  .hero--bg .hero-inner {
    min-height: auto;
    padding-block: 46px 52px;
  }
  .hero--bg h1 {
    max-width: 11ch;
  }
  .hero-bg-media img {
    object-position: 68% center;
  }
}
@media (max-width: 700px) {
  .hero--bg {
    padding-top: 118px;
  }
  .hero--bg .hero-copy {
    max-width: 100%;
  }
  .hero--bg .hero-sub {
    max-width: 100%;
  }
  .hero-bg-media::after {
    background:
      linear-gradient(180deg, rgba(8, 9, 12, 0.62) 0%, rgba(8, 9, 12, 0.38) 26%, rgba(8, 9, 12, 0.76) 100%),
      linear-gradient(90deg, rgba(8, 9, 12, 0.88) 0%, rgba(8, 9, 12, 0.54) 56%, rgba(8, 9, 12, 0.72) 100%);
  }
}

.hero--bg {
  min-height: min(100svh, 920px);
  padding-top: 82px;
}
.hero--bg::before {
  background: none !important;
}
.hero--bg .hero-inner {
  min-height: calc(min(100svh, 920px) - 82px);
  align-items: start;
  align-content: start;
  padding-block: clamp(36px, 6vh, 74px) 122px;
}
.hero--bg .marquee-item::after {
  display: none !important;
}
.hero--bg .marquee-item {
  gap: 0;
  margin-right: 44px;
}
.hero-scroll-down {
  position: absolute;
  left: 50%;
  bottom: 88px;
  z-index: 4;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: rgba(244, 244, 245, 0.86);
  background: rgba(11, 11, 13, 0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.hero-scroll-down:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.06);
  transform: translateX(-50%) translateY(-2px);
}
.hero-scroll-down svg {
  color: var(--orange);
  animation: heroArrowDown 1.5s ease-in-out infinite;
}
@keyframes heroArrowDown {
  0%, 100% { transform: translateY(-2px); opacity: .72; }
  50% { transform: translateY(4px); opacity: 1; }
}
@media (max-width: 1023px) {
  .hero--bg {
    padding-top: 76px;
  }
  .hero--bg .hero-inner {
    min-height: auto;
    padding-block: 28px 48px;
  }
  .hero-scroll-down {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: calc(100% - (var(--gutter) * 2));
    max-width: 420px;
    margin: 4px auto 28px;
  }
  .hero-scroll-down:hover {
    transform: translateY(-2px);
  }
}
@media (max-width: 700px) {
  .hero--bg {
    padding-top: 74px;
  }
  .hero--bg .hero-inner {
    padding-block: 22px 30px;
  }
  .hero--bg .hero-ctas {
    margin-bottom: 30px;
  }
  .hero--bg .hero-meta {
    padding-top: 26px;
    gap: 22px 24px;
  }
  .hero-scroll-down {
    margin-top: 2px;
    margin-bottom: 22px;
  }
}

.catalog-tabs-shell {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.catalog-tabs-shell::before,
.catalog-tabs-shell::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 10px;
  width: 46px;
  z-index: 2;
  pointer-events: none;
}
.catalog-tabs-shell::before {
  left: 58px;
  background: linear-gradient(90deg, var(--bg), rgba(11, 11, 13, 0));
}
.catalog-tabs-shell::after {
  right: 58px;
  background: linear-gradient(270deg, var(--bg), rgba(11, 11, 13, 0));
}
.catalog-nav {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.035);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), opacity .25s var(--ease);
  z-index: 3;
}
.catalog-nav:hover:not(:disabled) {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}
.catalog-nav:disabled {
  opacity: .38;
  cursor: default;
}
.catalog-tabs {
  margin-bottom: 0;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  padding-inline: 8px;
}
.cat-tab {
  scroll-snap-align: center;
}
.catalog-card {
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.catalog-card.is-switched {
  animation: catalogCardIn .28s var(--ease) both;
}
@keyframes catalogCardIn {
  from { opacity: .78; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  .catalog-tabs-shell {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }
  .catalog-nav {
    width: 42px;
    height: 42px;
  }
  .catalog-tabs-shell::before { left: 50px; width: 28px; }
  .catalog-tabs-shell::after { right: 50px; width: 28px; }
  .cat-tab {
    padding: 11px 14px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .catalog-tabs-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
    margin-bottom: 28px;
  }
  .catalog-nav {
    display: none !important;
  }
  .catalog-tabs-shell::before,
  .catalog-tabs-shell::after {
    bottom: 10px;
    width: 28px;
  }
  .catalog-tabs-shell::before {
    left: 0;
  }
  .catalog-tabs-shell::after {
    right: 0;
  }
  .catalog-tabs {
    padding-inline: 14px 18px;
    gap: 7px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .cat-tab {
    padding: 10px 13px;
    font-size: 11px;
  }
}


#lead-form {
  scroll-margin-top: 112px;
}

.contact-form {
  scroll-margin-top: 112px;
}

@media (max-width: 1023px) {
  .hero-scroll-down {
    display: flex;
    box-sizing: border-box;
    width: min(calc(100% - 32px), 420px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 700px) {
  .hero-scroll-down {
    width: min(calc(100% - 36px), 390px);
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}


#lead-form {
  scroll-margin-top: 120px;
}

@media (max-width: 768px) {
  #lead-form {
    scroll-margin-top: 96px;
  }
  .hero-scroll-down {
    width: min(calc(100% - 36px), 390px);
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
    text-align: center;
  }
}

.hero-product-showcase {
  display: none;
}

@media (min-width: 1100px) {
  .hero--bg .hero-inner {
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.72fr);
    gap: clamp(34px, 5vw, 84px);
    align-items: center;
    align-content: center;
  }

  .hero-product-showcase {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(190px, 1.05fr) minmax(190px, 0.95fr);
    gap: 14px;
    width: min(42vw, 560px);
    margin-left: auto;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    background: rgba(15, 15, 18, 0.22);
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .hero-product-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 124px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
    transform: translateZ(0);
    transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease), opacity .28s var(--ease);
  }

  .hero-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  }

  .hero-product-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.02) contrast(1.02);
    transition: transform .32s var(--ease), filter .32s var(--ease);
  }

  .hero-product-card:hover img {
    transform: scale(1.025);
    filter: saturate(1.05) contrast(1.04);
  }

  .hero-product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 4, 6, 0.06), rgba(4, 4, 6, 0.54));
  }

  .hero-product-card__label {
    position: absolute;
    left: 14px;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(10, 10, 12, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .hero-product-card--main {
    min-height: 338px;
    border-radius: 26px;
  }

  .hero-product-card--main .hero-product-card__label {
    left: 18px;
    bottom: 18px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero-product-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .hero-product-stack .hero-product-card {
    min-height: 162px;
  }

  .hero-product-stack .hero-product-card:nth-child(1),
  .hero-product-stack .hero-product-card:nth-child(4) {
    grid-column: span 2;
  }

  .hero-product-stack .hero-product-card:nth-child(4) img {
    object-position: center 58%;
  }
}

@media (min-width: 1100px) and (max-width: 1320px) {
  .hero-product-showcase {
    width: min(42vw, 500px);
  }

  .hero-product-card--main {
    min-height: 300px;
  }

  .hero-product-stack .hero-product-card {
    min-height: 142px;
  }
}



#catalog,
.catalog-tabs-shell {
  scroll-margin-top: 104px;
}

@media (max-width: 768px) {
  #catalog,
  .catalog-tabs-shell {
    scroll-margin-top: 92px;
  }
}

@media (min-width: 1100px) {
  .hero-product-card--main img {
    object-position: 46% 58%;
    transform: scale(1.08);
  }

  .hero-product-card--main:hover img {
    transform: scale(1.105);
  }
}


@media (max-width: 1023px) {
  .hero-product-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 520px;
    margin: 10px auto 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(15, 15, 18, 0.18);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .hero-product-card--main {
    grid-column: 1 / -1;
    min-height: 230px;
  }

  .hero-product-card--main img {
    object-position: center 58%;
    transform: scale(1.06);
  }

  .hero-product-stack {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-product-stack .hero-product-card,
  .hero-product-stack .hero-product-card:nth-child(1),
  .hero-product-stack .hero-product-card:nth-child(4) {
    grid-column: span 1;
    min-height: 124px;
  }

  .hero-product-card__label {
    left: 10px;
    bottom: 10px;
    min-height: 26px;
    padding: 6px 10px;
    font-size: 11px;
  }
}

@media (max-width: 700px) {
  .hero-product-showcase {
    max-width: 100%;
    margin-top: 8px;
    border-radius: 22px;
  }

  .hero-product-card--main {
    min-height: 208px;
  }

  .hero-product-stack .hero-product-card,
  .hero-product-stack .hero-product-card:nth-child(1),
  .hero-product-stack .hero-product-card:nth-child(4) {
    min-height: 108px;
  }
}



@media (max-width: 1023px) {
  .hero-product-showcase {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 430px !important;
    margin: 10px auto 0 !important;
    padding: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px !important;
    background: rgba(15, 15, 18, 0.18) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  .hero-product-card {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    min-height: 0 !important;
    height: 112px !important;
    transform: translateZ(0) !important;
  }

  .hero-product-card--main {
    grid-column: auto !important;
    height: 205px !important;
    border-radius: 20px !important;
  }

  .hero-product-card img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: saturate(1.02) contrast(1.02) !important;
    transform: none !important;
  }

  .hero-product-card--main img {
    object-position: center 55% !important;
    transform: scale(1.03) !important;
  }

  .hero-product-card::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(180deg, rgba(4, 4, 6, 0.02), rgba(4, 4, 6, 0.56)) !important;
    pointer-events: none !important;
  }

  .hero-product-card__label {
    position: absolute !important;
    left: 10px !important;
    bottom: 10px !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    min-height: 26px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    color: #fff !important;
    background: rgba(10, 10, 12, 0.70) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
  }

  .hero-product-stack {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .hero-product-stack .hero-product-card,
  .hero-product-stack .hero-product-card:nth-child(1),
  .hero-product-stack .hero-product-card:nth-child(4) {
    grid-column: auto !important;
    height: 112px !important;
    min-height: 0 !important;
  }

  .hero-product-card:hover,
  .hero-product-card:hover img,
  .hero-product-card--main:hover img {
    transform: none !important;
    box-shadow: none !important;
  }
}

@media (max-width: 700px) {
  .hero-product-showcase {
    max-width: 100% !important;
    margin-top: 8px !important;
    padding: 9px !important;
    border-radius: 22px !important;
  }

  .hero-product-card--main {
    height: clamp(168px, 48vw, 205px) !important;
  }

  .hero-product-stack {
    gap: 9px !important;
  }

  .hero-product-stack .hero-product-card,
  .hero-product-stack .hero-product-card:nth-child(1),
  .hero-product-stack .hero-product-card:nth-child(4) {
    height: clamp(86px, 28vw, 112px) !important;
  }

  .hero-product-card__label {
    left: 8px !important;
    bottom: 8px !important;
    min-height: 24px !important;
    padding: 5px 8px !important;
    font-size: 10px !important;
  }
}
