:root {
  --bg: #050807;
  --bg-2: #08110f;
  --panel: rgba(10, 22, 19, 0.76);
  --panel-strong: #0d1816;
  --line: rgba(99, 255, 190, 0.18);
  --line-strong: rgba(99, 255, 190, 0.38);
  --text: #effff8;
  --muted: #9fb8ae;
  --accent: #4dff9a;
  --accent-2: #28d7ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 8%, rgba(40, 215, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 18% 22%, rgba(77, 255, 154, 0.13), transparent 22rem),
    linear-gradient(180deg, #020403 0%, var(--bg) 42%, #06100d 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(77, 255, 154, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 255, 154, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 76%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 7, 6, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: #06100d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-family: "JetBrains Mono", monospace;
  box-shadow: 0 0 30px rgba(77, 255, 154, 0.26);
}

.nav-links {
  gap: clamp(16px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(77, 255, 154, 0.08);
}

.hero {
  position: relative;
  min-height: 86vh;
  padding: 118px clamp(20px, 5vw, 80px) 34px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1280px;
  margin: 0 auto;
}

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

.hero-copy::before {
  display: block;
  width: 130px;
  height: 2px;
  margin-bottom: 30px;
  content: "";
  background: linear-gradient(90deg, var(--accent), transparent);
  box-shadow: 0 0 18px rgba(77, 255, 154, 0.78);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.82;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 560px;
  margin-top: 28px;
  color: #c7dad3;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 800;
  background: rgba(12, 25, 22, 0.72);
  box-shadow: inset 0 0 0 1px rgba(77, 255, 154, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.store-link.primary {
  color: #06100d;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 34px rgba(77, 255, 154, 0.18);
}

.store-link:hover,
.market-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.store-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

.hero-media {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
}

.hero-media::before {
  position: absolute;
  inset: 8% -3% -5% 12%;
  content: "";
  background: radial-gradient(circle, rgba(77, 255, 154, 0.25), transparent 60%);
  filter: blur(32px);
}

.hero-media img {
  position: relative;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.scanline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 255, 154, 0.74), transparent);
}

.gear-band,
.marketplaces,
.site-footer {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 80px);
}

.section-heading,
.marketplaces,
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 30px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.market-copy p,
.site-footer p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.gear-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.gear-list article,
.market-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(77, 255, 154, 0.07), rgba(77, 255, 154, 0.01)),
    rgba(6, 13, 11, 0.82);
}

.gear-list article {
  min-height: 230px;
  padding: 26px;
}

.mono {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.84rem;
}

.gear-list h3 {
  margin-top: 38px;
  font-size: 1.35rem;
}

.gear-list p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.marketplaces {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.market-copy {
  position: sticky;
  top: 112px;
}

.market-copy p {
  margin-top: 22px;
}

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

.market-card {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.market-name {
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 800;
}

.market-desc {
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.site-footer strong,
.site-footer a {
  color: var(--text);
}

.site-footer p {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .site-header {
    height: 68px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 28px;
  }

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

  .hero-media {
    min-height: 280px;
  }

  .hero-media img {
    min-height: 280px;
  }

  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .gear-list,
  .market-grid {
    grid-template-columns: 1fr;
  }

  .market-copy {
    position: static;
  }
}

@media (max-width: 540px) {
  .header-cta {
    display: none;
  }

  .store-actions,
  .store-link {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 238px;
  }
}
