:root {
  --bg: #060606;
  --bg-soft: #101010;
  --panel: #171717;
  --line: #323232;
  --line-hot: rgba(255, 67, 35, 0.48);
  --text: #f4f1ec;
  --muted: #b9b1a9;
  --muted-strong: #d4cbc1;
  --accent: #ff3b22;
  --accent-strong: #ff6a22;
  --accent-dark: #7f170c;
  --shadow: rgba(0, 0, 0, 0.45);
  --shell: 1120px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.65rem 0.85rem;
  color: var(--bg);
  background: var(--text);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 2.25rem);
  background: rgba(7, 7, 7, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 34px var(--shadow);
  backdrop-filter: blur(14px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-badge {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--accent);
  border-radius: 6px;
  color: var(--text);
  background: linear-gradient(145deg, var(--accent-dark), #111);
  font-size: 0.82rem;
  font-style: italic;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.35rem);
}

.primary-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--accent-strong);
}

.primary-nav a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: var(--panel);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(100% - 2rem, var(--shell));
  margin: 0 auto;
}

.narrow-shell {
  max-width: 860px;
}

.section {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: clamp(3rem, 6vw, 5.75rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-tight {
  padding-top: clamp(2.4rem, 5vw, 4rem);
}

.hero {
  position: relative;
  padding-top: clamp(1rem, 2.5vw, 2rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 2.85rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0 64px,
    #101010 64px 128px
  );
  opacity: 0.85;
}

.hero-shell {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-banner {
  width: min(100%, 960px);
  height: auto;
  margin-bottom: clamp(0.85rem, 2vw, 1.35rem);
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.58));
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(255, 59, 34, 0.07), transparent 34%),
    var(--bg-soft);
}

.tagline,
.eyebrow,
.card-kicker {
  margin: 0 0 0.65rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 0.45rem;
  font-size: clamp(2.15rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 900;
  text-transform: none;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  font-style: italic;
  font-weight: 900;
  text-transform: none;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-lede {
  max-width: 760px;
  margin-bottom: 0.65rem;
  color: var(--text);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 800;
  line-height: 1.3;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 1.1rem;
  color: var(--muted-strong);
  font-size: clamp(0.98rem, 1.8vw, 1.1rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero .button-row {
  justify-content: center;
}

.page-actions {
  margin-top: 1.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button[hidden] {
  display: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 26px rgba(255, 59, 34, 0.22);
}

.button-secondary {
  color: var(--text);
  background: var(--panel);
  border-color: var(--line-hot);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent-strong);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-strong);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.section-copy {
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 1.75rem;
}

.section-heading p {
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.featured-build-section {
  padding: clamp(3rem, 6vw, 5.75rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #090909;
}

.featured-build-section[hidden] {
  display: none;
}

.featured-build-heading {
  margin-bottom: 1rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-build-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: stretch;
}

.featured-build-info,
.featured-build-gallery {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
}

.featured-build-info {
  padding: clamp(1.75rem, 4vw, 2.25rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 45%),
    #191919;
}

.featured-build-gallery {
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 2.5vw, 1.25rem);
  border-color: rgba(255, 83, 45, 0.38);
  background: #121212;
}

.featured-build-title {
  max-width: none;
  margin-bottom: 1.5rem;
}

.featured-build-details {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.featured-build-details div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-build-details div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-build-details dt {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-build-details dd {
  margin: 0;
  color: var(--muted-strong);
}

.featured-build-note {
  margin: 1.5rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--accent);
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.045);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card,
.privacy-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.product-card {
  min-height: 220px;
}

.shop-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.shop-product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 83, 45, 0.36);
  background:
    linear-gradient(145deg, rgba(255, 83, 45, 0.08), transparent 45%),
    #0b0b0b;
}

.shop-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 160ms ease;
}

.shop-product-media-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.shop-product-media-link:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: -2px;
}

.shop-product-placeholder {
  display: grid;
  gap: 0.65rem;
  place-items: center;
  padding: 1rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.shop-placeholder-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid var(--accent);
  border-radius: 6px;
  color: var(--text);
  background: linear-gradient(145deg, #7f170c, #111);
  font-style: italic;
}

.shop-product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.1rem;
}

.shop-product-content h3 {
  margin-bottom: 0.55rem;
}

.shop-product-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.shop-product-title-link:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

@media (hover: hover) {
  .shop-product-media-link:hover {
    border-bottom-color: var(--accent-strong);
    background-color: rgba(255, 83, 45, 0.035);
  }

  .shop-product-media-link:hover img {
    transform: scale(1.015);
  }

  .shop-product-title-link:hover {
    color: var(--accent-strong);
  }
}

.shop-product-description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.shop-product-price {
  margin: auto 0 0;
  padding-top: 0.75rem;
  color: var(--text) !important;
  font-size: 1.2rem;
  font-weight: 900;
}

.shop-status-badge {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.28rem 0.48rem;
  border: 1px solid rgba(255, 83, 45, 0.55);
  border-radius: 5px;
  color: var(--accent-strong);
  background: rgba(255, 83, 45, 0.08);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-product-action {
  width: 100%;
  margin-top: 1rem;
}

.shop-status {
  min-height: 160px;
  display: grid;
  align-content: center;
  padding: 1.25rem;
  border: 1px dashed var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.shop-status:empty {
  display: none;
}

.shop-status h3,
.shop-status p:last-child {
  margin-bottom: 0;
}

.shop-status.is-error {
  border-left-color: #d87168;
}

.product-detail-section {
  min-height: calc(100vh - var(--header-height));
}

.product-detail-back {
  display: inline-flex;
  margin-bottom: 1.25rem;
  color: var(--muted-strong);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.product-detail-back:hover,
.product-detail-back:focus-visible {
  color: var(--accent-strong);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.product-detail-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 83, 45, 0.4);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 83, 45, 0.08), transparent 45%), #0b0b0b;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-copy {
  min-width: 0;
  padding-top: 0.25rem;
}

.product-detail-copy h1 {
  margin-bottom: 1rem;
}

.product-detail-description {
  color: var(--muted-strong);
  white-space: pre-line;
}

.product-detail-price {
  margin: 1.25rem 0 0;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 900;
}

.product-detail-purchase {
  margin-top: 1.25rem;
}

.product-detail-status {
  margin-top: 0;
}

.product-card p,
.privacy-card p {
  color: var(--muted);
}

.featured-build-main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 83, 45, 0.45);
  border-radius: 8px;
  color: var(--muted-strong);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 83, 45, 0.22), transparent 34%),
    linear-gradient(145deg, #1d1d1d, #080808 68%),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.035) 0 9px,
      transparent 9px 22px
    );
}

.featured-build-main-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.featured-build-main-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.featured-build-main-image span {
  position: relative;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-build-thumbnails {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(86px, 118px);
  gap: 0.625rem;
  margin-top: 0.75rem;
  padding: 0.2rem;
  overflow-x: auto;
  scrollbar-color: var(--accent) #0b0b0b;
}

.featured-build-thumbnails[hidden] {
  display: none;
}

.featured-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 83, 45, 0.12), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent),
    #101010;
  font-size: 0.8rem;
  font-family: inherit;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  text-transform: uppercase;
}

.featured-thumbnail:hover,
.featured-thumbnail:focus-visible {
  border-color: rgba(255, 83, 45, 0.72);
  color: var(--text);
}

.featured-thumbnail.is-active {
  color: var(--text);
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 2px rgba(255, 83, 45, 0.2);
}

.featured-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.support-section {
  background:
    linear-gradient(135deg, rgba(255, 59, 34, 0.07), transparent 34%),
    var(--bg-soft);
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.25rem 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted-strong);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(255, 59, 34, 0.55);
  transform: rotate(45deg);
}

.callout,
.muted-note,
.inline-status {
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--accent);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.privacy-card {
  margin-top: 1.4rem;
}

.privacy-card p {
  margin-bottom: 1rem;
  color: var(--muted-strong);
}

.privacy-card p:last-child {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 800;
}

.inline-status {
  display: none;
  margin: 1rem 0 0;
}

.inline-status.is-visible {
  display: block;
}

.site-footer {
  padding: 1.35rem 0;
  color: var(--muted);
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand p {
  margin: 0;
}

.footer-title {
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted-strong);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a[aria-current="page"] {
  color: var(--accent-strong);
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .nav-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: rgba(7, 7, 7, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 34px var(--shadow);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
  }

  .primary-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .primary-nav a[aria-current="page"] {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--accent);
    padding-left: 0.75rem;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .featured-build-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .featured-build-details div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .product-card {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 1.25rem, var(--shell));
  }

  .brand-link {
    font-size: 0.94rem;
  }

  .brand-badge {
    width: 38px;
    height: 38px;
  }

  .hero-banner {
    margin-bottom: 1rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
