:root {
  --ink: #0b0b0b;
  --paper: #f7f3ed;
  --muted: #b9b0a5;
  --line: rgba(255, 255, 255, 0.14);
  --orange: #ff9500;
  --orange-dark: #a33b09;
  --panel: #151515;
  --white: #fff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(11, 11, 11, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

nav {
  gap: clamp(12px, 2.6vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

nav a:hover {
  color: var(--white);
}

.nav-cta {
  color: var(--white);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 3px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 120px clamp(18px, 5vw, 72px) 56px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.34) 46%, rgba(0, 0, 0, 0.78));
}

.hero::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 70%, transparent);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  opacity: 0.76;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
}

.hero-media img:first-child {
  grid-column: span 2;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 740px;
  font-size: clamp(48px, 8vw, 102px);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: #ded5cb;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
}

.hero-actions,
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.button.primary {
  background: var(--orange);
  color: #170900;
}

.button.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.stats span {
  min-width: 130px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(12, 12, 12, 0.62);
  color: var(--muted);
}

.stats strong {
  display: block;
  color: var(--white);
  font-size: 24px;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0;
}

.intro,
.section-head,
.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: end;
}

.intro p:last-child,
.proof-copy p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.search {
  display: grid;
  gap: 8px;
}

.search span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #121212;
  color: var(--white);
  font: inherit;
  padding: 0 14px;
  outline: none;
}

.search input:focus {
  border-color: var(--orange);
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.featured-bundle {
  margin-top: 30px;
}

.bundle-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  overflow: hidden;
  border: 1px solid rgba(255, 149, 0, 0.5);
  border-radius: 8px;
  background: #111;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255, 149, 0, 0.1);
}

.bundle-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 149, 0, 0.28);
}

.bundle-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.bundle-media {
  display: grid;
  min-height: 420px;
  place-items: center;
  background: #050505;
}

.bundle-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bundle-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
  border-left: 4px solid var(--orange);
}

.bundle-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 0.96;
  text-transform: uppercase;
}

.bundle-copy p:not(.eyebrow) {
  max-width: 520px;
  color: #d9d0c7;
  font-size: 18px;
  line-height: 1.5;
}

.bundle-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border-radius: 6px;
  background: var(--orange);
  color: #160900;
  font-weight: 950;
  padding: 0 18px;
  text-transform: uppercase;
}

.filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #121212;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 10px 14px;
}

.filter.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #130900;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #0f0f0f;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  border-color: rgba(255, 149, 0, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 149, 0, 0.22);
}

.product-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.product-image {
  display: grid;
  min-height: 0;
  aspect-ratio: 4 / 3;
  place-items: center;
  background: #050505;
  border-bottom: 4px solid var(--orange);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info {
  display: grid;
  min-height: 118px;
  align-content: space-between;
  gap: 18px;
  padding: 18px 18px 16px;
  background: #121212;
}

.product-info h3 {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  line-height: 1.18;
  text-transform: uppercase;
  text-wrap: balance;
}

.card-hint {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.empty {
  color: var(--muted);
  font-size: 18px;
}

.proof {
  align-items: start;
}

.seo-copy {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-copy h2 {
  max-width: 860px;
}

.seo-copy p:last-child {
  max-width: 920px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-height: 640px;
  overflow: auto;
  padding-right: 10px;
  scrollbar-color: var(--orange) #191919;
}

.review-grid::-webkit-scrollbar {
  width: 10px;
}

.review-grid::-webkit-scrollbar-track {
  background: #191919;
}

.review-grid::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 999px;
}

.review {
  border-left: 4px solid var(--orange);
  background: #151515;
  padding: 16px;
}

.stars {
  color: var(--orange);
  font-weight: 900;
}

.review p {
  color: #e8ded2;
  font-size: 14px;
  line-height: 1.45;
}

.review strong {
  color: var(--white);
}

.product-dialog {
  width: min(920px, calc(100% - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101010;
  color: var(--paper);
  padding: 0;
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
}

.dialog-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
}

.dialog-product {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.dialog-gallery {
  min-width: 0;
  background: #080808;
}

.dialog-main-image {
  display: grid;
  min-height: 520px;
  place-items: center;
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%),
    #070707;
  background-size: 28px 28px;
}

.dialog-main-image img {
  width: 100%;
  height: 100%;
  max-height: 72vh;
  object-fit: contain;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--line);
}

.gallery-thumb {
  aspect-ratio: 1.6 / 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #111;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}

.gallery-thumb.active {
  border-color: var(--orange);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dialog-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 28px 28px;
}

.dialog-text h3 {
  margin: 0;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.dialog-text p {
  color: var(--muted);
  line-height: 1.55;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  padding: 7px 9px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 36px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #070707;
  color: var(--muted);
}

.site-footer strong {
  color: var(--white);
  text-transform: uppercase;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer a {
  color: var(--paper);
}

.site-footer a:hover {
  color: var(--orange);
}

.copyright {
  grid-column: 1 / -1;
  font-size: 13px;
}

.legal-page {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.legal-content {
  color: #ded5cb;
}

.legal-content h1 {
  margin-bottom: 34px;
  font-size: clamp(42px, 7vw, 82px);
  text-transform: uppercase;
}

.legal-content h2 {
  margin-top: 38px;
  font-size: 26px;
  line-height: 1.1;
}

.legal-content p {
  line-height: 1.7;
}

.legal-content a {
  color: var(--orange);
}

@media (max-width: 860px) {
  .site-header,
  nav {
    align-items: flex-start;
  }

  .site-header {
    position: static;
    flex-direction: column;
  }

  .hero {
    min-height: 760px;
  }

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

  .intro,
  .section-head,
  .proof,
  .bundle-card,
  .dialog-product {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .bundle-copy {
    border-left: 0;
    border-top: 4px solid var(--orange);
  }

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

  .dialog-main-image {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 72px;
  }

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

  .hero-media img:not(:first-child) {
    display: none;
  }

  .product-image {
    aspect-ratio: 4 / 3;
  }
}
