@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&family=Rajdhani:wght@400;500;600;700&display=swap");

:root {
  --bg: #050507;
  --panel: rgba(18, 18, 20, 0.88);
  --panel-strong: #121214;
  --line: rgba(235, 172, 15, 0.2);
  --gold: #e0a000;
  --gold-hot: #ffbe18;
  --red: #c6412d;
  --steel: #7c8a92;
  --ink: #f7f3e8;
  --muted: rgba(247, 243, 232, 0.68);
  --dark-muted: rgba(247, 243, 232, 0.44);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 18%, rgba(198, 65, 45, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 8%, rgba(224, 160, 0, 0.13), transparent 24rem),
    linear-gradient(180deg, #050507 0%, #08080b 48%, #050507 100%);
  color: var(--ink);
  font-family: "Rajdhani", system-ui, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 10001;
  padding: 10px 14px;
  background: var(--gold-hot);
  color: #12100a;
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

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

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-hot);
  outline-offset: 3px;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: #030304;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.preloader img {
  width: min(70vw, 360px);
  filter: drop-shadow(0 0 26px rgba(224, 160, 0, 0.52));
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  pointer-events: none;
}

.scanlines-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.22;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.035) 3px 4px);
  mix-blend-mode: overlay;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  transition: background 250ms ease, border-color 250ms ease, padding 250ms ease;
}

.navbar.scrolled,
.navbar.menu-active {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(5, 5, 7, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-brand img {
  width: clamp(180px, 18vw, 300px);
  filter: drop-shadow(0 0 18px rgba(224, 160, 0, 0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold-hot);
  transition: right 220ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}

.nav-live {
  padding: 10px 14px;
  border: 1px solid rgba(224, 160, 0, 0.45);
  background: rgba(224, 160, 0, 0.08);
}

.nav-live::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(18, 18, 20, 0.7);
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(28px, 5vw, 84px);
  min-height: 100svh;
  padding: clamp(120px, 16vh, 180px) clamp(18px, 5vw, 72px) clamp(36px, 8vh, 72px);
  overflow: hidden;
}

.hero-video-wrap,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video-wrap {
  z-index: -3;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.8) contrast(1.15);
  transition: opacity 420ms ease;
}

.hero-video-wrap video.is-switching {
  opacity: 0.12;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.94), rgba(5, 5, 7, 0.6) 52%, rgba(5, 5, 7, 0.9)),
    linear-gradient(180deg, rgba(5, 5, 7, 0.16), #050507 96%);
}

.hero-content {
  max-width: 820px;
}

.hero-logo {
  width: min(92vw, 760px);
  margin-bottom: 22px;
  filter: drop-shadow(0 0 34px rgba(224, 160, 0, 0.28));
}

.hero-kicker,
.section-tag {
  color: var(--gold-hot);
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2 {
  margin: 0;
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(46px, 8vw, 108px);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  color: var(--ink);
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-hot), var(--gold));
  color: #12100a;
  box-shadow: 0 18px 46px rgba(224, 160, 0, 0.22);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(18, 18, 20, 0.64);
}

.button-icon svg {
  width: 19px;
  height: 19px;
  margin-right: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(12, 12, 14, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.035);
}

.stat-value,
.about-stats strong {
  color: var(--gold-hot);
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
}

.stat-suffix {
  color: var(--gold-hot);
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.hero-panel p,
.about-stats span {
  margin: 7px 0 0;
  color: var(--dark-muted);
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(224, 160, 0, 0.07);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  padding: 16px 36px;
  color: var(--gold-hot);
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(78px, 12vw, 132px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.about-copy h2 {
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 66px);
}

.section-heading p,
.about-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

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

.clip-card,
.product-card,
.cart-panel,
.contact-form,
.contact-links,
.about-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.clip-card,
.product-card {
  overflow: hidden;
  transition: transform 220ms var(--ease), border-color 220ms ease;
}

.clip-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 190, 24, 0.55);
}

.clip-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0d0d10;
}

.clip-media img,
.clip-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 500ms var(--ease), opacity 220ms ease;
}

.clip-card:hover .clip-media img,
.clip-card:hover .clip-media video {
  transform: scale(1.06);
  opacity: 0.95;
}

.play-chip {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 190, 24, 0.58);
  background: rgba(5, 5, 7, 0.76);
  color: var(--gold-hot);
}

button.play-chip {
  cursor: pointer;
}

.play-chip svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.clip-body,
.product-info {
  padding: 22px;
}

.clip-body span,
.product-info span {
  color: var(--gold-hot);
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.clip-body h3,
.product-info h3 {
  margin: 9px 0 10px;
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

.clip-body p,
.product-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.product-art {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(224, 160, 0, 0.16), transparent 48%),
    linear-gradient(180deg, #171719, #0a0a0c);
}

.product-art img {
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.6));
}

.hoodie-art img {
  width: 82%;
}

.cap-art img {
  width: 78%;
  transform: rotate(-4deg);
}

.mat-art {
  min-height: 190px;
}

.mat-art img {
  width: 92%;
}

.product-controls {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  margin-top: 18px;
}

select,
input,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  background: rgba(5, 5, 7, 0.7);
  color: var(--ink);
  padding: 0 12px;
  outline: none;
}

textarea {
  min-height: 138px;
  padding-top: 12px;
  resize: vertical;
}

select:focus,
input:focus,
textarea:focus {
  border-color: rgba(255, 190, 24, 0.58);
}

.add-to-cart,
#clearCart {
  border: 1px solid rgba(255, 190, 24, 0.42);
  background: rgba(224, 160, 0, 0.12);
  color: var(--ink);
  cursor: pointer;
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-panel {
  position: sticky;
  top: 94px;
  padding: 20px;
}

.cart-top,
.cart-row,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#clearCart {
  min-height: 34px;
  padding: 0 10px;
}

.cart-items {
  display: grid;
  gap: 12px;
  min-height: 120px;
  padding: 20px 0;
}

.empty-cart {
  margin: 0;
  color: var(--dark-muted);
}

.cart-row {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.cart-row strong {
  color: var(--ink);
}

.cart-total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: "Orbitron", system-ui, sans-serif;
}

.checkout-link {
  width: 100%;
  margin-top: 18px;
}

.about-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(18px, 4vw, 44px);
  overflow: hidden;
}

.about-media {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 190, 24, 0.24);
  background: #09090b;
}

.about-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.about-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.about-stats strong,
.about-stats span {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
}

.contact-form,
.contact-links {
  padding: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form .button {
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold-hot);
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms var(--ease);
}

.contact-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 190, 24, 0.45);
}

.contact-links span {
  color: var(--gold-hot);
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: 20px;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.82);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0;
}

.footer-brand,
.footer a {
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--gold-hot);
}

.footer p {
  margin: 0;
  color: var(--dark-muted);
}

.footer div:last-child {
  display: flex;
  gap: 18px;
}

.footer div:last-child a {
  color: var(--muted);
  font-size: 12px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .hero,
  .store-layout,
  .about-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: end;
  }

  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cart-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 69px 12px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(5, 5, 7, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms var(--ease), visibility 180ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-panel,
  .clips-grid,
  .products-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-content,
  .footer div:last-child {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer-content {
    text-align: center;
  }
}

@media (max-width: 440px) {
  .nav-brand img {
    width: 168px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .product-controls {
    grid-template-columns: 1fr;
  }
}
