.home {
  --bg: #08090B;
  --card: #13161A;
  --panel: #101318;
  --line: rgba(255, 255, 255, .07);
  --line-strong: rgba(255, 255, 255, .13);
  --text: #E9EBE7;
  --muted: #A3A9A0;
  --dim: #5A605A;
  --accent: #DB8B22;
  --accent-bright: #FFB020;
  --terra: #C25A3A;
  --r-md: 18px;
  --r-sm: 12px;
  --r-pill: 999px;
  --wrap: 1200px;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.site-main {
  padding: 0;
  background: var(--bg);
}

body.home .site-main {
  background: var(--bg);
}

.home-page {
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.home-page a {
  color: inherit;
  text-decoration: none;
}

.home-page img {
  max-width: 100%;
  display: block;
}

.home-page :focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.hero-out {
  padding-top: 28px;
}

.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  width: auto;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--r-md);
}

.hero__bg,
.hero__scrim,
.hero__light {
  position: absolute;
  inset: 0;
}

.hero__img {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg {
  z-index: -3;
  background:
    radial-gradient(54% 58% at 76% 14%, rgba(255, 176, 32, .24) 0%, rgba(255, 176, 32, .07) 38%, transparent 68%),
    radial-gradient(46% 72% at 88% 66%, rgba(194, 90, 58, .14) 0%, transparent 66%),
    linear-gradient(135deg, #17130e 0%, #121719 48%, #0b0d0f 100%);
}

.hero--image .hero__bg {
  background: transparent;
}

.hero__scrim {
  z-index: -2;
  background: linear-gradient(90deg, rgba(8, 9, 11, .93) 0%, rgba(8, 9, 11, .7) 46%, rgba(8, 9, 11, .2) 100%);
}

.hero__light {
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(118% 70% at 50% -12%, rgba(255, 176, 32, .18) 0%, rgba(255, 176, 32, .05) 38%, transparent 72%),
    linear-gradient(90deg, transparent 52%, rgba(255, 176, 32, .055) 100%);
}

.hero__fil {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 176, 32, .45), transparent);
}

.hero__in {
  position: relative;
  z-index: 2;
  padding: 76px 0;
}

.home-page .hero__title {
  max-width: 16ch;
  margin: 0;
  color: var(--text);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.hero__sub {
  max-width: 42ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.home-page .hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 14px 28px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  transition: background .18s ease;
}

.home-page .hero__cta:hover,
.home-page .hero__cta:focus-visible {
  background: var(--accent-bright);
  color: var(--bg);
}

.sec {
  padding-block: 80px;
  border-top: 1px solid var(--line);
}

.sec--first {
  padding-top: 78px;
  border-top: 0;
}

.sec--products {
  padding-block: 92px;
}

.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
}

.sec-head__t {
  margin: 0;
  color: var(--text);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.sec-head__nav {
  display: flex;
  gap: 8px;
}

.sec-head__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sec-head__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: background .16s ease, border-color .16s ease, color .16s ease;
}

.sec-head__link:hover,
.sec-head__link:focus-visible {
  border-color: var(--accent-bright);
  background: var(--accent-bright);
  color: var(--bg);
}

.arw {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: none;
  color: var(--muted);
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, opacity .18s ease;
}

.arw:hover,
.arw:focus-visible {
  color: var(--text);
  border-color: rgba(255, 255, 255, .28);
}

.arw[disabled] {
  opacity: .35;
  pointer-events: none;
}

.arw svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  gap: 18px 14px;
}

.cat {
  display: flex;
  flex: 0 1 116px;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: var(--r-sm);
  color: var(--muted);
  transition: background .18s ease;
}

.cat:hover,
.cat:focus-visible {
  background: rgba(255, 255, 255, .03);
}

.cat__ico {
  width: 30px;
  height: 30px;
  flex: none;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .18s ease;
}

.cat__ico-img {
  object-fit: contain;
}

.cat:hover .cat__ico,
.cat:focus-visible .cat__ico {
  stroke: var(--accent-bright);
}

.cat__l {
  max-width: 100%;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
  overflow-wrap: anywhere;
  transition: color .18s ease;
}

.cat:hover .cat__l,
.cat:focus-visible .cat__l {
  color: var(--text);
}

.home-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  overflow: visible;
  margin-top: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-proof__item {
  min-width: 0;
  padding: 0;
  background: transparent;
}

.home-proof__title {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.home-proof__text {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.sec--setups {
  padding-block: 84px;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.setup-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--text);
  transition: border-color .16s ease, color .16s ease;
}

.setup-card:hover,
.setup-card:focus-visible {
  border-color: var(--accent-bright);
  color: var(--text);
}

.setup-card .cat__ico {
  width: 30px;
  height: 30px;
  stroke: var(--muted);
}

.setup-card:hover .cat__ico,
.setup-card:focus-visible .cat__ico {
  stroke: var(--accent-bright);
}

.setup-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.setup-card__title {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.setup-card__text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.prods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.p {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.p__media {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--card);
  transition: transform .2s ease;
}

.p:hover .p__media {
  transform: translateY(-3px);
}

.p__media-link {
  position: absolute;
  inset: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.p__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.p__row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.p__name {
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p:hover .p__name,
.p__row:focus-visible .p__name {
  color: var(--text);
}

.p__price {
  padding-left: 14px;
  border-left: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.p--variable .p__price {
  white-space: normal;
  text-align: right;
}

.p--sale .p__price,
.p__price ins {
  color: var(--accent-bright);
  text-decoration: none;
}

.p__price del,
.p__old {
  display: block;
  margin-top: 1px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 400;
  text-decoration: line-through;
}

.badge {
  position: absolute;
  z-index: 2;
  top: 6px;
  right: 6px;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  background: var(--terra);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.home-catalog-products .woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

.home-catalog-products .woocommerce ul.products::before,
.home-catalog-products .woocommerce ul.products::after {
  content: none;
  display: none;
}

.home-catalog-products .woocommerce ul.products li.product {
  float: none;
  display: flex;
  width: auto;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-catalog-products .card {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  color: var(--text);
}

.home-catalog-products .card__media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  margin: 0 0 16px;
  padding: 10px;
  border-radius: 6px;
  background: var(--card);
}

.home-catalog-products .card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: none;
}

.home-catalog-products .badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  right: auto;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--text);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-catalog-products .badge--sale {
  background: var(--terra);
  color: #fff;
}

.home-catalog-products .card__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  min-height: calc(12px * 1.35 * 2);
}

.home-catalog-products .card__name {
  position: static;
  display: -webkit-box;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 1;
  visibility: visible;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-catalog-products .card__cat {
  margin: 6px 0 0;
  color: var(--dim);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-catalog-products .card__price,
.home-catalog-products .woocommerce ul.products li.product .price {
  display: flex;
  width: 100%;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--accent-bright);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
}

.home-catalog-products .card__price ins,
.home-catalog-products .card__price ins .amount {
  color: var(--accent-bright);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.home-catalog-products .card__price del,
.home-catalog-products .card__price del .amount {
  color: var(--dim);
  font-size: 13px;
  font-weight: 500;
  text-decoration: line-through;
}

.home-catalog-products .card__add,
.home-catalog-products .woocommerce ul.products li.product .button.card__add {
  position: static;
  display: inline-flex;
  width: 100%;
  min-height: 0;
  align-items: center;
  justify-content: center;
  margin: 14px 0 0;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 1;
  transform: none;
  transition: background .16s ease, border-color .16s ease, color .16s ease;
}

.home-catalog-products .card__add:hover,
.home-catalog-products .card__add:focus-visible,
.home-catalog-products .woocommerce ul.products li.product .button.card__add:hover,
.home-catalog-products .woocommerce ul.products li.product .button.card__add:focus-visible {
  border-color: var(--accent-bright);
  background: var(--accent-bright);
  color: #08090B;
}

.home-catalog-products .woocommerce ul.products li.product a.added_to_cart {
  display: none;
}

.home-catalog-products--rail .woocommerce ul.products {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-catalog-products--rail .woocommerce ul.products::-webkit-scrollbar {
  display: none;
}

.home-catalog-products--rail .woocommerce ul.products li.product {
  flex: 0 0 calc((100% - 72px) / 4);
  scroll-snap-align: start;
}

.rail {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.rail::-webkit-scrollbar {
  display: none;
}

.rail > * {
  flex: 0 0 calc((100% - 84px) / 4);
  scroll-snap-align: start;
}

.why {
  padding-bottom: 36px;
  text-align: center;
}

.home-page + .product-v2-footer,
body.home .product-v2-footer {
  margin-top: 0;
  border-top: 0;
}

body.home .why {
  border-top: 0;
}

body.home .ftr {
  border-top: 0;
}

.why__t {
  margin: 0 0 38px;
  color: var(--text);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.tr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 0;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.tr__ico {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tr__t {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.tr__d {
  max-width: 30ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.sec--consult {
  padding-block: 80px;
}

.consult {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: transparent;
}

.consult__title {
  margin: 0;
  color: var(--text);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.consult__text {
  max-width: 68ch;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.home-page .consult .consult__cta {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: max-content;
  padding: 12px 24px;
  border: 0;
  border-radius: var(--r-pill);
  background: #E9EBE7;
  color: #08090B;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-indent: 0;
  white-space: nowrap;
  transition: background .18s ease;
}

.home-page .consult .consult__cta:hover,
.home-page .consult .consult__cta:focus-visible {
  background: var(--accent-bright);
  color: #08090B;
}

@media (max-width: 1100px) {
  .prods {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-catalog-products .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rail > * {
    flex-basis: calc((100% - 56px) / 3);
  }

  .home-catalog-products--rail .woocommerce ul.products li.product {
    flex-basis: calc((100% - 48px) / 3);
  }

  .home-page .hero__title {
    font-size: 36px;
  }

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

@media (max-width: 760px) {
  .sec {
    padding-block: 38px;
  }

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

  .sec-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .sec-head__actions {
    width: 100%;
    justify-content: space-between;
  }

  .home-proof {
    grid-template-columns: 1fr;
  }

  .prods {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .home-catalog-products .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .rail {
    gap: 20px;
  }

  .rail > * {
    flex-basis: 66%;
  }

  .home-catalog-products--rail .woocommerce ul.products {
    gap: 20px;
  }

  .home-catalog-products--rail .woocommerce ul.products li.product {
    flex-basis: calc((100% - 20px) / 2);
  }

  .hero {
    min-height: 340px;
  }

  .hero__in {
    padding: 34px 0;
  }

  .home-page .hero__title {
    font-size: 27px;
  }

  .hero__sub {
    font-size: 14px;
  }

  .trust {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .consult {
    align-items: flex-start;
    flex-direction: column;
    padding: 0;
  }
}

@media (max-width: 520px) {
  .home-catalog-products .woocommerce ul.products,
  .home-catalog-products--rail .woocommerce ul.products {
    gap: 12px;
  }

  .home-catalog-products--rail .woocommerce ul.products li.product {
    flex-basis: calc((100% - 12px) / 2);
  }

  .home-catalog-products .card__media {
    margin-bottom: 12px;
  }

  .home-catalog-products .card__price,
  .home-catalog-products .card__price ins,
  .home-catalog-products .card__price ins .amount {
    font-size: 16px;
  }

  .setup-grid {
    grid-template-columns: 1fr;
  }

  .sec-head__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    transition: none !important;
  }

  .rail {
    scroll-behavior: auto;
  }
}
