:root {
  --root-scale: 1rem;
  --font-main: "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --clr-bg: #050505;
  --clr-surface: #111111;
  --clr-surface-2: #181818;
  --clr-white: #fff;
  --clr-text: #fff;
  --clr-muted: #a5a5a5;
  --clr-dim: #6a6a6a;
  --clr-red: #e30613;
  --clr-line: rgba(255, 255, 255, 0.08);
  --clr-line-soft: rgba(255, 255, 255, 0.06);
  --clr-stock: #7bd88f;
  --sp-xl: clamp(6rem, 7.3vw, 8.75rem);
  --sp-lg: clamp(4rem, 5.2vw, 6.875rem);
  --sp-md: clamp(2.5rem, 3.125vw, 3.75rem);
  --sp-sm: 1.875rem;
  --sp-xs: 0.9375rem;
  --container: 95rem;
  --gutter: 3.5rem;
  --radius-lg: 1.5rem;
  --radius-md: 1.25rem;
  --radius-sm: 1rem;
  --radius-xs: 0.75rem;
  --header-h: 5.25rem;
  --transition-1: 0.3s ease;
}
@media (max-width: 1479px) {
  :root {
    --gutter: 1.75rem;
  }
}
@media (max-width: 899px) {
  :root {
    --gutter: 1rem;
    --header-h: 4rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-main);
  font-size: var(--root-scale);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

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

.spacer-xl {
  height: var(--sp-xl);
}

.spacer-lg {
  height: var(--sp-lg);
}

.spacer-md {
  height: var(--sp-md);
}

.spacer-sm {
  height: var(--sp-sm);
}

.spacer-xs {
  height: var(--sp-xs);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-1);
}
@media (min-width: 1180px) {
  a:hover {
    color: var(--clr-red);
  }
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

input,
textarea,
button,
select {
  font: inherit;
}

::selection {
  background: var(--clr-red);
  color: var(--clr-white);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.icon--16 {
  width: 1rem;
  height: 1rem;
}
.icon--17 {
  width: 1.0625rem;
  height: 1.0625rem;
}
.icon--18 {
  width: 1.125rem;
  height: 1.125rem;
}
.icon--22 {
  width: 1.375rem;
  height: 1.375rem;
}
.icon--28 {
  width: 1.75rem;
  height: 1.75rem;
}

@keyframes noctis-pulse {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
main > section:not(.home-hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
h3,
.h3, h2,
.h2, h1,
.h1 {
  font-family: var(--font-main);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1,
.h1 {
  font-size: clamp(2.75rem, 4.17vw, 5rem);
  line-height: 0.94;
}

h2,
.h2 {
  font-size: clamp(2rem, 2.92vw, 3.5rem);
}

h3,
.h3 {
  font-size: clamp(1.75rem, 2.71vw, 3.25rem);
}

h4,
.h4 {
  font-family: var(--font-main);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-size: clamp(1.75rem, 2.08vw, 2.5rem);
}

.text-lg {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-muted);
}

.text-md {
  font-size: 0.90625rem;
  line-height: 1.65;
  color: var(--clr-muted);
}

.text-sm {
  font-size: 0.84375rem;
  line-height: 1.6;
  color: var(--clr-muted);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  color: var(--clr-red);
  text-transform: uppercase;
}

.eyebrow--muted {
  color: var(--clr-muted);
}

.mono {
  font-family: var(--font-mono);
}

.clr-white {
  color: var(--clr-white);
}

.clr-red {
  color: var(--clr-red);
}

.clr-muted {
  color: var(--clr-muted);
}

.clr-dim {
  color: var(--clr-dim);
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 3.75rem;
  padding: 0 2rem;
  border-radius: 1.125rem;
  background: var(--clr-red);
  color: var(--clr-white);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 0.875rem 2.5rem rgba(227, 6, 19, 0.35);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.3s ease, background var(--transition-1), border-color var(--transition-1), color var(--transition-1);
}
@media (min-width: 1180px) {
  .btn:hover {
    transform: translateY(-0.1875rem);
    box-shadow: 0 1.375rem 3.375rem rgba(227, 6, 19, 0.5);
    color: var(--clr-white);
  }
}
.btn--ghost {
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 1.75rem;
  font-weight: 600;
}
@media (min-width: 1180px) {
  .btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    color: var(--clr-white);
  }
}
.btn--sm {
  height: 2.75rem;
  padding: 0 1.125rem;
  border-radius: 0.875rem;
  font-size: 0.84375rem;
  box-shadow: none;
}
.btn--wa {
  gap: 0.625rem;
}
.btn--block {
  width: 100%;
  height: 2.875rem;
  border-radius: 0.9375rem;
  font-size: 0.875rem;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn__arrow {
  color: var(--clr-red);
  font-size: 1.0625rem;
}

.has-reveal [data-reveal] {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.has-reveal [data-reveal=""],
.has-reveal [data-reveal=up] {
  transform: translate3d(0, 2.25rem, 0);
}
.has-reveal [data-reveal=down] {
  transform: translate3d(0, -1.75rem, 0);
}
.has-reveal [data-reveal=left] {
  transform: translate3d(-2.75rem, 0, 0);
}
.has-reveal [data-reveal=right] {
  transform: translate3d(2.75rem, 0, 0);
}
.has-reveal [data-reveal=zoom] {
  transform: scale(0.94);
}
.has-reveal [data-reveal=fade] {
  transform: none;
}
.has-reveal [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}
@media (max-width: 899px) {
  .has-reveal [data-reveal=left],
  .has-reveal [data-reveal=right] {
    transform: translate3d(0, 1.75rem, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.header.is-scrolled {
  background: rgba(5, 5, 5, 0.94);
  border-bottom-color: var(--clr-line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  min-width: 0;
}
@media (max-width: 1479px) {
  .header__inner {
    gap: 1rem;
  }
}
@media (max-width: 899px) {
  .header__inner {
    gap: 0.625rem;
  }
}
.header__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  flex-shrink: 0;
  min-width: 0;
  color: var(--clr-white);
}
@media (min-width: 1180px) {
  .header__logo:hover {
    color: var(--clr-white);
  }
}
.header__brand {
  display: block;
  width: auto;
  height: 2.375rem;
}
@media (max-width: 899px) {
  .header__brand {
    height: 1.875rem;
  }
}
.header__tag {
  font-family: var(--font-mono);
  font-size: 0.53125rem;
  letter-spacing: 0.28em;
  color: var(--clr-muted);
  margin-top: 0.375rem;
}
@media (max-width: 899px) {
  .header__tag {
    display: none;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2.125rem;
  font-size: 0.84375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  min-width: 0;
}
@media (max-width: 1479px) {
  .header__nav {
    gap: 1rem;
    font-size: 0.78125rem;
  }
}
@media (max-width: 1179px) {
  .header__nav a:nth-child(n+5) {
    display: none;
  }
}
@media (max-width: 899px) {
  .header__nav {
    display: none;
  }
}
.header__link {
  color: var(--clr-muted);
  padding: 0.375rem 0;
  white-space: nowrap;
}
.header__link.is-active {
  color: var(--clr-white);
}
@media (min-width: 1180px) {
  .header__link:hover {
    color: var(--clr-white);
  }
}
.header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
@media (max-width: 899px) {
  .header__actions {
    gap: 0.5rem;
  }
}
.header__phone {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--clr-white);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (max-width: 1179px) {
  .header__phone {
    display: none;
  }
}
@media (min-width: 1180px) {
  .header__phone:hover {
    color: var(--clr-red);
  }
}
.header__divider {
  width: 1px;
  height: 1.375rem;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 899px) {
  .header__divider {
    display: none;
  }
}
.header__search {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--clr-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
@media (max-width: 899px) {
  .header__search {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (min-width: 1180px) {
  .header__search:hover {
    border-color: rgba(227, 6, 19, 0.55);
    background: rgba(227, 6, 19, 0.1);
    color: var(--clr-white);
  }
}
@media (max-width: 899px) {
  .header__wa-text {
    display: none;
  }
}
@media (max-width: 899px) {
  .header .btn--sm.btn--wa {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: var(--radius-xs);
    gap: 0;
  }
}

.footer {
  position: relative;
  margin-top: var(--sp-xl);
  border-top: 1px solid var(--clr-line);
  background: var(--clr-bg);
  overflow: visible;
}
.footer__glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 21.25rem;
  background: radial-gradient(900px 340px at 20% 120%, rgba(227, 6, 19, 0.2), transparent 70%);
  pointer-events: none;
}
.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  padding-block: 5.5rem 2.5rem;
}
@media (max-width: 1479px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.5rem;
  }
}
@media (max-width: 899px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.footer__name {
  display: block;
  width: auto;
  height: 2.375rem;
}
.footer__tag {
  font-family: var(--font-mono);
  font-size: 0.53125rem;
  letter-spacing: 0.28em;
  color: var(--clr-muted);
  margin-top: 0.375rem;
}
.footer__about {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--clr-muted);
  max-width: 16.875rem;
}
.footer__socials {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.75rem;
}
.footer__social {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--clr-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-muted);
  transition: all 0.25s ease;
}
@media (min-width: 1180px) {
  .footer__social:hover {
    border-color: rgba(227, 6, 19, 0.5);
    color: var(--clr-white);
    background: rgba(227, 6, 19, 0.1);
  }
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.footer__title {
  font-family: var(--font-mono);
  font-size: 0.65625rem;
  letter-spacing: 0.2em;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}
.footer__title--contacts {
  margin-bottom: 1.375rem;
}
.footer__link {
  font-size: 0.875rem;
  color: var(--clr-muted);
  transition: color 0.25s ease;
}
@media (min-width: 1180px) {
  .footer__link:hover {
    color: var(--clr-white);
  }
}
.footer__phone {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--clr-white);
}
@media (min-width: 1180px) {
  .footer__phone:hover {
    color: var(--clr-red);
  }
}
.footer__meta {
  font-size: 0.84375rem;
  color: var(--clr-muted);
  margin-top: 0.75rem;
  line-height: 1.7;
}
.footer__pays {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.footer__pay {
  height: 2rem;
  width: 3rem;
  border-radius: 0.375rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-line);
  background: #0a0a0a;
}
.footer__pay svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer__bottom {
  position: relative;
  padding-block: 1.625rem 2.75rem;
  border-top: 1px solid var(--clr-line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 899px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--clr-dim);
  letter-spacing: 0.08em;
}
.footer__legal {
  display: flex;
  gap: 1.625rem;
}
.footer__legal a {
  font-size: 0.78125rem;
  color: var(--clr-dim);
  transition: color 0.25s ease;
}
@media (min-width: 1180px) {
  .footer__legal a:hover {
    color: var(--clr-white);
  }
}
