:root {
  --bg: #080808;
  --panel: #121212;
  --panel-2: #181818;
  --ink: #ffffff;
  --muted: #a7afba;
  --line: #2a2a2a;
  --blue: #116dff;
  --blue-hot: #4aa3ff;
  --red: #f21b2d;
  --cream: #f6f1e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 18px 20px;
  position: relative;
  z-index: 2;
}

.logo,
.nav-link,
.eyebrow,
.btn,
.card-title,
.footer-logo {
  font-family: "Arial Black", Impact, Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.logo {
  color: var(--blue-hot);
  font-size: 20px;
  text-shadow: 2px 2px 0 var(--red);
}

.nav-actions {
  display: flex;
  gap: 18px;
}

.nav-link {
  font-size: 13px;
  text-decoration: none;
}

.hero {
  background:
    linear-gradient(135deg, rgba(17, 109, 255, 0.18), transparent 35%),
    linear-gradient(315deg, rgba(242, 27, 45, 0.16), transparent 38%),
    var(--bg);
  border-bottom: 3px solid var(--blue);
  min-height: 92svh;
  overflow: hidden;
  position: relative;
}

.hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  inset: 0;
  opacity: 0.35;
  position: absolute;
}

.hero-inner {
  align-items: center;
  display: flex;
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(92svh - 64px);
  padding: 38px 20px 76px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 840px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  margin: 0 0 12px;
}

.hero-title {
  color: var(--ink);
  font-family: "Arial Black", Impact, Arial, sans-serif;
  font-size: clamp(60px, 8vw, 112px);
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
  text-shadow: 4px 4px 0 var(--blue), 8px 8px 0 var(--red);
  text-transform: uppercase;
}

.hero-sub {
  color: var(--cream);
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 800;
  margin: 28px 0 34px;
  max-width: 650px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-size: 14px;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  text-decoration: none;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--blue-hot);
}

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}

.hero-preview {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  max-width: 430px;
  opacity: 0.34;
  position: absolute;
  right: 20px;
  top: 170px;
  transform: rotate(-2deg);
  width: 36vw;
  z-index: 1;
}

.preview-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 10px 0 var(--red);
  color: var(--bg);
  min-width: 0;
  padding: 14px;
}

.preview-card-b {
  box-shadow: 10px 10px 0 var(--blue);
  margin-top: 46px;
}

.preview-card img {
  aspect-ratio: 4 / 5;
  background: #ffffff;
  border: 2px solid #111111;
  object-fit: contain;
  width: 100%;
}

.preview-card span {
  display: block;
  font-family: "Arial Black", Impact, Arial, sans-serif;
  font-size: clamp(18px, 3vw, 34px);
  line-height: 1;
  margin-top: 12px;
  text-align: center;
}

.marquee {
  background: var(--red);
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  font-family: "Arial Black", Impact, Arial, sans-serif;
  gap: 18px;
  justify-content: center;
  padding: 13px 20px;
  text-align: center;
}

.marquee span {
  font-size: 14px;
}

.products {
  margin: 0 auto;
  max-width: 1180px;
  padding: 72px 20px;
}

.section-head {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-head h2 {
  font-family: "Arial Black", Impact, Arial, sans-serif;
  font-size: clamp(36px, 7vw, 74px);
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.card-img {
  background: var(--cream);
  border-radius: 6px;
  display: grid;
  margin-bottom: 18px;
  overflow: hidden;
  place-items: center;
}

.card-img img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  width: 100%;
}

.card-title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  margin: 0 0 8px;
}

.card-desc {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 20px;
}

.drop {
  background:
    linear-gradient(90deg, rgba(17, 109, 255, 0.24), rgba(242, 27, 45, 0.18)),
    var(--panel-2);
  border-bottom: 3px solid var(--blue);
  border-top: 3px solid var(--red);
  padding: 70px 20px;
  text-align: center;
}

.drop-head {
  font-family: "Arial Black", Impact, Arial, sans-serif;
  font-size: clamp(30px, 7vw, 78px);
  line-height: 0.96;
  margin: 0 auto 18px;
  max-width: 980px;
  text-transform: uppercase;
}

.drop-copy {
  color: var(--cream);
  font-size: 19px;
  font-weight: 800;
  margin: 0 auto;
  max-width: 650px;
}

.join {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: 980px;
  padding: 76px 20px;
}

.join-head {
  font-family: "Arial Black", Impact, Arial, sans-serif;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.96;
  margin: 0;
  text-transform: uppercase;
}

.join-sub {
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  margin: 12px 0 0;
}

.join-form {
  display: flex;
  gap: 10px;
}

.join-input {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 6px;
  color: #111111;
  flex: 1;
  font-size: 16px;
  min-height: 50px;
  min-width: 0;
  padding: 0 14px;
}

.join-input:focus {
  border-color: var(--blue-hot);
  outline: none;
}

.footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 46px 20px;
  text-align: center;
}

.footer-logo {
  color: var(--blue-hot);
  font-size: 24px;
  margin: 0;
  text-shadow: 2px 2px 0 var(--red);
}

.footer-link {
  color: var(--ink);
  font-weight: 800;
  margin: 8px 0;
}

.footer-brand {
  color: var(--cream);
  font-weight: 800;
  margin: 10px 0 0;
}

.footer-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .join {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: flex-start;
    display: block;
    gap: 34px;
    padding-top: 28px;
  }

  .hero-preview {
    display: none;
  }

  .section-head {
    align-items: start;
    display: block;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: clamp(42px, 13.5vw, 62px);
  }

  .hero-sub {
    margin: 22px 0 28px;
  }

  .hero-preview {
    gap: 10px;
  }

  .preview-card {
    box-shadow: 6px 6px 0 var(--red);
    padding: 9px;
  }

  .preview-card-b {
    box-shadow: 6px 6px 0 var(--blue);
    margin-top: 26px;
  }

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

  .join-form {
    display: grid;
  }

  .btn,
  .join-input {
    width: 100%;
  }
}
