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

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

body {
  margin: 0;
  font-family: "Saira", system-ui, sans-serif;
  color: #f3f4f6;
  background: #0a0b0d;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

::selection {
  background: #e30613;
  color: #fff;
}

.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(1100px 620px at 50% -8%, rgba(227, 6, 19, 0.28), transparent 60%), radial-gradient(900px 700px at 92% 8%, rgba(227, 6, 19, 0.08), transparent 55%), #0a0b0d;
}
.bg-fx::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 78%);
  opacity: 0.8;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 28px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.82rem;
  color: #ff2d3f;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e30613);
}

.hero {
  text-align: center;
  padding: 64px 0 8px;
}

.hero__logo {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 34px rgba(227, 6, 19, 0.35));
}

.hero__title {
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.92;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  margin: 22px 0 0;
}
.hero__title em {
  color: #ff2d3f;
  font-style: italic;
}

.hero__sub {
  max-width: 560px;
  margin: 12px auto 0;
  color: #979da8;
  font-size: 1rem;
}

.hero__meta {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  color: #f3f4f6;
  font-size: 0.92rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.chip svg {
  width: 16px;
  height: 16px;
  color: #ff2d3f;
}
.chip[href]:hover {
  border-color: rgba(255, 45, 63, 0.55);
  background: rgba(227, 6, 19, 0.08);
}

.section {
  padding: 40px 0 0;
}

.section__head {
  text-align: center;
  margin-bottom: 30px;
}
.section__head h2 {
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
  margin: 16px 0 0;
}

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

.card {
  position: relative;
  background: linear-gradient(180deg, #1a1e26, #14171d);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #e30613, #ff2d3f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 63, 0.4);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 45, 63, 0.18);
}
.card:hover::before {
  transform: scaleX(1);
}
.card:hover .card__media img {
  transform: scale(1.06);
}
.card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0c0d10;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.card__media--light {
  background: radial-gradient(120% 120% at 50% 30%, #ffffff, #dfe3ea 100%);
}
.card__media--light img {
  object-fit: contain;
  padding: 26px;
}
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 11, 13, 0.55));
  pointer-events: none;
}
.card__media--light::after {
  display: none;
}
.card__num {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.card__num--dark {
  color: rgba(20, 23, 29, 0.28);
  text-shadow: none;
}
.card__body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__kicker {
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: #ff2d3f;
  margin-bottom: 8px;
}
.card__title {
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.85rem;
  line-height: 1.02;
  margin: 0 0 8px;
}
.card__desc {
  margin: 0 0 22px;
  color: #979da8;
  font-size: 0.98rem;
}
.card__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:active {
  transform: translateY(1px);
}
.btn:hover svg {
  transform: translate(2px, -2px);
}
.btn--red {
  background: linear-gradient(135deg, #ff2d3f, #e30613);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(227, 6, 19, 0.45);
}
.btn--red:hover {
  box-shadow: 0 12px 30px -6px rgba(227, 6, 19, 0.45);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.09);
  color: #f3f4f6;
}
.btn--ghost:hover {
  border-color: rgba(255, 45, 63, 0.6);
  color: #ff2d3f;
}

.features {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 28px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}
.feature:first-child {
  border-left: 0;
}
.feature__ic {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(227, 6, 19, 0.12);
  border: 1px solid rgba(255, 45, 63, 0.25);
}
.feature__ic svg {
  width: 22px;
  height: 22px;
  color: #ff2d3f;
}
.feature__text strong {
  display: block;
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  color: #f3f4f6;
}
.feature__text span {
  display: block;
  color: #979da8;
  font-size: 0.86rem;
}

.footer {
  margin-top: 84px;
  padding: 56px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, transparent, rgba(227, 6, 19, 0.05));
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer__brand {
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1;
}
.footer__brand b {
  color: #ff2d3f;
  font-style: normal;
}
.footer__brand p {
  margin: 12px 0 0;
  color: #979da8;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 400;
  max-width: 320px;
}

.footer__col h4 {
  font-family: "Saira Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: #656b76;
  margin: 0 0 12px;
}
.footer__col a, .footer__col p {
  display: block;
  color: #979da8;
  margin: 0 0 7px;
  font-size: 0.96rem;
  transition: color 0.2s;
}
.footer__col a:hover {
  color: #ff2d3f;
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #656b76;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature:nth-child(3) {
    border-left: 0;
  }
  .feature:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }
}
@media (max-width: 560px) {
  .container {
    padding-inline: 18px;
  }
  .hero {
    padding-top: 44px;
  }
  .card__actions .btn {
    flex: 1;
    justify-content: center;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .feature {
    border-left: 0;
  }
  .feature:nth-child(n+2) {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }
  .footer__bottom {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/*# sourceMappingURL=style.css.map */
