* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #050505;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

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

.topbar {
  background: #facc15;
  color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 10px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 14px;
}

.brand strong {
  display: block;
  font-size: 22px;
  letter-spacing: -1px;
}

.brand span {
  color: #facc15;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 28px;
  color: rgba(255,255,255,.75);
  font-weight: 700;
}

nav a:hover {
  color: #facc15;
}

.btn {
  display: inline-flex;
  background: #facc15;
  color: #000;
  font-weight: 900;
  padding: 16px 28px;
  border-radius: 999px;
}

.btn.small {
  padding: 12px 20px;
}

.btn.secondary {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 48px;
  padding: 80px 6%;
  background:
    radial-gradient(circle at 75% 20%, rgba(250,204,21,.24), transparent 35%),
    radial-gradient(circle at 15% 35%, rgba(255,255,255,.1), transparent 28%);
}

.pill {
  display: inline-block;
  border: 1px solid rgba(250,204,21,.35);
  background: rgba(250,204,21,.1);
  color: #fde047;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
}

h1 {
  font-size: clamp(48px, 8vw, 92px);
  line-height: .92;
  margin: 20px 0;
  letter-spacing: -4px;
}

.subtitle {
  max-width: 620px;
  color: rgba(255,255,255,.7);
  font-size: 20px;
  line-height: 1.7;
}

.actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.heroCard {
  border: 1px solid rgba(250,204,21,.25);
  background: linear-gradient(135deg, rgba(250,204,21,.14), rgba(255,255,255,.05));
  border-radius: 36px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(250,204,21,.08);
}

.heroCard h2 {
  font-size: 34px;
  margin: 0;
}

.heroCard p {
  color: #fde047;
  font-weight: 800;
}

.miniGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.miniGrid div {
  min-height: 145px;
  border-radius: 22px;
  background: linear-gradient(135deg, #171717, #050505);
  border: 1px solid rgba(255,255,255,.1);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-weight: 900;
}

.miniGrid span {
  color: #facc15;
}

.section {
  padding: 64px 6%;
}

.section h2,
.newsletter h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 28px;
  letter-spacing: -2px;
}

.chips {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.chips button {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  border-radius: 18px;
  padding: 18px 12px;
  font-weight: 900;
  cursor: pointer;
}

.chips button:hover {
  border-color: #facc15;
  color: #facc15;
}

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

.categoryGrid div,
.trust div {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  padding: 28px;
}

.categoryGrid h3,
.trust h3 {
  margin-top: 0;
  font-size: 22px;
}

.categoryGrid p,
.trust p,
.product p {
  color: rgba(255,255,255,.62);
}

.sectionHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sectionHead a {
  color: #facc15;
  font-weight: 900;
}

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

.product {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  padding: 18px;
  transition: .2s;
}

.product:hover {
  transform: translateY(-4px);
  border-color: rgba(250,204,21,.6);
}

.product span {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #facc15;
  color: #000;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.shirt {
  height: 230px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(250,204,21,.3), transparent),
    linear-gradient(135deg, #18181b, #050505);
  margin-bottom: 18px;
}

.product h3 {
  margin: 0;
  font-size: 20px;
}

.product strong {
  display: block;
  margin-top: 14px;
  font-size: 24px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 64px 6%;
}

.newsletter {
  margin: 64px 6%;
  background: #facc15;
  color: #000;
  border-radius: 36px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.newsletter form {
  display: flex;
  gap: 12px;
}

.newsletter input {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 18px 22px;
  font-weight: 800;
}

.newsletter button {
  border: 0;
  border-radius: 999px;
  padding: 18px 26px;
  background: #000;
  color: #fff;
  font-weight: 900;
}

footer {
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 30px;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .chips,
  .categoryGrid,
  .productGrid,
  .trust {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .header {
    padding: 14px 4%;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 18px;
  }

  .btn.small {
    display: none;
  }

  .hero {
    padding: 56px 4%;
  }

  .chips,
  .categoryGrid,
  .productGrid,
  .trust {
    grid-template-columns: 1fr;
  }

  .newsletter {
    margin: 40px 4%;
    padding: 32px;
  }

  .newsletter form {
    flex-direction: column;
  }
}
