:root {
  --bg: #08090d;
  --surface: #0f1016;
  --text: #f7f7fb;
  --muted: #c6c8d5;
  --purple: #7f3dff;
  --purple-strong: #9b61ff;
  --line: #2e3040;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background:
    radial-gradient(1000px 400px at 85% -10%, #5f26ce48, transparent),
    radial-gradient(1200px 500px at 10% 90%, #1a244066, transparent),
    var(--bg);
  color: var(--text);
  font-family: "Barlow", sans-serif;
  overflow: hidden;
}

body {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.prelaunch-waas {
  position: fixed;
  inset: 0;
  pointer-events: auto;
  z-index: 60;
  background: linear-gradient(180deg, #000000cc, #000000db);
  backdrop-filter: blur(2px);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 20px;
}

.prelaunch-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 9vw, 6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f6f7ff;
  text-shadow: 0 10px 30px #000000;
}

.prelaunch-sub {
  margin: 6px 0 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #cfc8ff;
  font-size: clamp(0.9rem, 2.1vw, 1.25rem);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("https://www.transparenttextures.com/patterns/noise-pattern-with-subtle-cross-lines.png");
  opacity: 0.12;
  mix-blend-mode: soft-light;
  z-index: 20;
}


.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  background: #0b0d14eb;
  padding: 12px 22px;
  border-bottom: 1px solid #ffffff12;
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  height: 74px;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  color: #f0f2fb;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.82;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

nav a:hover,
nav a.active {
  color: var(--purple-strong);
  opacity: 1;
  border-color: var(--purple-strong);
}

.account {
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #edefff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
}

main {
  background: #0a0b11;
  border-inline: 1px solid #ffffff10;
}

.hero {
  min-height: 68vh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #ffffff15;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: brightness(1.04) saturate(1.08) contrast(1.04);
  animation: hero-pan 13s ease-in-out infinite alternate;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #090b121f 0%, #090b1200 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: clamp(22px, 7vw, 68px);
  padding-top: clamp(30px, 12vh, 120px);
}

.hero-content h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 9vw, 6.3rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-content p {
  margin: 10px 0 0;
  font-size: clamp(1rem, 2vw, 2.1rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #eceef8;
}

.hero-content button {
  margin-top: 22px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #f8f6ff;
  background: linear-gradient(90deg, #6326da, #9959ff);
  padding: 14px 24px;
  border-radius: 8px;
  box-shadow: 0 12px 30px #6f38e34f;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px #8a52ff6b;
}

.shop {
  padding: 22px;
}

.shop h2 {
  margin: 0 0 14px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  font-size: 2rem;
}

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

.product-card {
  border: 1px solid #ffffff17;
  border-radius: 10px;
  padding: 12px;
  background: var(--surface);
  transition: transform 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-strong);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #d8d8dd;
}

.product-card h3 {
  margin: 0;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.price {
  margin: 2px 0 12px;
  font-weight: 700;
}

.add {
  width: 100%;
  border: none;
  border-radius: 7px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #f7f7fd;
  background: linear-gradient(90deg, #5d24d4, #964dff);
  padding: 10px;
  cursor: pointer;
}

.sizes {
  margin-top: 10px;
  display: flex;
  gap: 7px;
}

.sizes span {
  min-width: 30px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px 0;
  color: #d3d5e2;
  font-size: 0.84rem;
}

.pillars {
  padding: 6px 22px 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pillar {
  background: linear-gradient(180deg, #10121a, #0b0d14);
  text-align: center;
  border: 1px solid #ffffff14;
  border-radius: 9px;
  padding: 14px 10px;
}

.pillar .icon {
  font-size: 1.5rem;
  color: var(--purple-strong);
}

.pillar h4 {
  margin: 6px 0 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  color: #deb8ff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pillar p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

footer {
  border-top: 1px solid #ffffff12;
  padding: 16px 22px 26px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-pan {
  from {
    transform: scale(1.05) translateX(-1.5%);
  }
  to {
    transform: scale(1.1) translateX(1.5%);
  }
}

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

@media (max-width: 820px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 12px 14px;
  }

  nav {
    gap: 12px;
  }

  .brand img {
    height: 60px;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
    background: #07090e;
    overflow: visible;
  }

  .hero img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    display: block;
    object-fit: initial;
    object-position: initial;
    filter: none;
    animation: none;
  }

  .hero .overlay {
    background: none;
  }

  .hero-content {
    padding: 22px 16px 30px;
    padding-top: 70px;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .shop,
  .pillars {
    padding-inline: 14px;
  }

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

  footer {
    flex-direction: column;
    gap: 6px;
    padding-inline: 14px;
  }
}
