* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at 72% 25%, rgba(255, 102, 0, .20), transparent 24%),
    radial-gradient(circle at 16% 10%, rgba(255, 135, 20, .10), transparent 24%),
    linear-gradient(135deg, #050505 0%, #111 48%, #070707 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.nav-wrap {
  width: min(1500px, 90vw);
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 190px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255, 120, 0, .25));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #d7d7d7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active { color: #ff9b21; }

.nav-cta {
  padding: 11px 18px;
  border: 1px solid #ff8a18;
  background: linear-gradient(180deg, #ffb033 0%, #ff7900 100%);
  color: #111 !important;
}

.page {
  position: relative;
  z-index: 1;
}

.hero {
  width: min(1500px, 90vw);
  margin: 0 auto;
  padding: 76px 0 44px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(440px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: #ff9b21;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  max-width: 880px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

h1 span {
  color: #ff8a18;
  text-shadow: 0 0 22px rgba(255, 110, 0, .5);
}

.divider {
  width: 210px;
  height: 3px;
  background: linear-gradient(90deg, #ff8a18, transparent);
  box-shadow: 0 0 16px rgba(255, 138, 24, .7);
  margin-bottom: 28px;
}

.lead {
  max-width: 880px;
  color: #d4d4d4;
  font-size: 19px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-primary {
  border-color: #ff8a18;
  background: linear-gradient(180deg, #ffb033 0%, #ff7900 100%);
  color: #111;
  box-shadow: 0 0 24px rgba(255, 115, 0, .32);
}

.btn:hover { transform: translateY(-1px); }

.mini-note {
  color: #aaa;
  font-size: 14px;
}

.hero-visual {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 0;
  background:
    radial-gradient(circle at 58% 52%, rgba(255, 109, 0, .58), transparent 18%),
    radial-gradient(circle at 50% 54%, rgba(255, 109, 0, .18), transparent 38%);
  filter: blur(6px);
  opacity: .85;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(100%, 860px);
  height: auto;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 24px 28px rgba(0,0,0,.9)) drop-shadow(0 0 26px rgba(255, 120, 0, .38));
}

.focus-section,
.products-section {
  width: min(1500px, 90vw);
  margin: 0 auto 72px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.section-kicker {
  color: #ff9b21;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-intro {
  max-width: 850px;
  color: #cfcfcf;
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.018);
}

.card:last-child { border-right: none; }

.icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8a18;
  font-size: 36px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.06);
}

.card h3 {
  font-size: 22px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.card p {
  color: #bfbfbf;
  font-size: 16px;
  line-height: 1.45;
}

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

.product-card {
  position: relative;
  min-height: 440px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(8,8,8,.74);
  box-shadow: 0 20px 45px rgba(0,0,0,.34);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 132, 20, .16), transparent 42%);
  pointer-events: none;
}

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

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.product-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #ff8a18;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid rgba(255, 138, 24, .45);
  background: rgba(255, 138, 24, .10);
  color: #ffad45;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card h2 {
  font-size: 25px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
}

.product-card p {
  color: #c9c9c9;
  font-size: 16px;
  line-height: 1.52;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.feature-list li {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.35;
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: "•";
  color: #ff8a18;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -5px;
}

.sports-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 18px;
}

.sport-tag {
  padding: 7px 9px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  color: #dcdcdc;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.site-footer {
  width: min(1500px, 90vw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  color: #898989;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 26px 0 32px;
}

.socials { display: flex; gap: 20px; font-weight: 800; }

@media (max-width: 1250px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1050px) {
  .home-hero { grid-template-columns: 1fr; gap: 18px; }
  .hero-visual { min-height: 330px; order: -1; }
  .cards { grid-template-columns: 1fr; }
  .card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .card:last-child { border-bottom: none; }
}

@media (max-width: 850px) {
  .nav-wrap {
    min-height: auto;
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero { padding: 52px 0 34px; }

  h1 {
    font-size: clamp(34px, 10vw, 52px);
    letter-spacing: -1px;
  }

  .lead { font-size: 17px; }

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

  .product-card {
    min-height: auto;
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 650px) {
  .brand img { width: 175px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .card { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .nav-menu { font-size: 12px; }
  .nav-cta { width: 100%; text-align: center; }
  .product-top { flex-direction: column; }
}
