:root {
  --black: #04060f;
  --charcoal: #0b0d18;
  --panel: #121420;
  --panel-soft: #1a1730;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.46);
  --green: #cbd5e1;
  --gold: #aeb7c4;
  --blue: #2563eb;
  --cyan: #7dd3fc;
  --violet: #8b5cf6;
  --pink: #a78bfa;
  --orange: #38bdf8;
  --yellow: #e5e7eb;
  --red: #93c5fd;
  --danger: #38bdf8;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --font-body: "Saira", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Orbitron", "Saira", system-ui, sans-serif;
  --font-accent: "Orbitron", "Saira", system-ui, sans-serif;
  --font-flair: "Audiowide", "Orbitron", system-ui, sans-serif;
  --font-mono: "Saira", "Share Tech Mono", system-ui, sans-serif;
}

:root[data-theme="light"] {
  --black: #f2f0fb;
  --charcoal: #fbf8ff;
  --panel: #ffffff;
  --panel-soft: #f5efe3;
  --line: rgba(24, 24, 28, 0.14);
  --line-strong: rgba(24, 24, 28, 0.24);
  --white: #141416;
  --muted: rgba(20, 20, 22, 0.72);
  --faint: rgba(20, 20, 22, 0.48);
  --shadow: 0 20px 60px rgba(64, 47, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 18% 12%, rgba(168, 85, 255, 0.2), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(22, 139, 255, 0.16), transparent 24%),
    radial-gradient(circle at 70% 88%, rgba(255, 122, 24, 0.12), transparent 28%),
    var(--black);
  color: var(--white);
  font-family: var(--font-body);
  margin: 0;
}

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  margin: 0;
}

.store-header {
  background: rgba(4, 6, 15, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.store-header::before {
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink), var(--orange), var(--cyan));
  content: "";
  display: block;
  height: 3px;
}

.topbar {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 390px minmax(260px, 1fr) auto;
  padding: 10px clamp(14px, 3vw, 34px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0;
  min-width: 390px;
}

.brand-mark {
  align-items: center;
  background: transparent url("./assets/graymatter-spool-logo.svg") center / cover no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: transparent;
  display: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0;
  height: 80px;
  justify-content: center;
  overflow: visible;
  width: 80px;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand span:last-child {
  color: var(--orange);
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin-top: 2px;
  text-transform: uppercase;
}

.brand .brand-type {
  color: inherit;
  display: block;
  font-size: 0;
  height: 88px;
  letter-spacing: 0;
  margin: 0;
  max-width: 370px;
  overflow: visible;
  position: relative;
  text-transform: none;
  width: 370px;
}

.brand-type img {
  filter: brightness(1.08) contrast(1.08) drop-shadow(0 0 18px rgba(255, 255, 255, 0.12));
  height: 88px;
  max-width: none;
  object-fit: unset;
  transform: none;
  transform-origin: left center;
  width: auto;
}

.brand .brand-tagline {
  align-items: center;
  bottom: 10px;
  color: inherit;
  display: none;
  font-family: var(--font-display);
  font-size: 0.48rem;
  font-style: normal;
  font-weight: 900;
  gap: 9px;
  left: 22px;
  letter-spacing: 0.16em;
  line-height: 1;
  margin: 0;
  position: absolute;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}

.brand-tagline b,
.brand-tagline i,
.brand-tagline em {
  font-style: normal;
}

.brand-tagline b {
  color: var(--orange);
}

.brand-tagline i {
  color: var(--pink);
}

.brand-tagline em {
  color: var(--cyan);
}

.brand-tagline b::after,
.brand-tagline i::after {
  color: rgba(255, 255, 255, 0.7);
  content: "-";
  margin-left: 9px;
}

.search-wrap {
  position: relative;
}

.search-bar {
  background: var(--white);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr) 104px;
  min-height: 46px;
  overflow: hidden;
}

.search-bar select,
.search-bar input,
.search-bar button {
  border: 0;
  min-width: 0;
}

.search-bar select {
  background: #e8e8e8;
  color: #151515;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0 10px;
}

.search-bar input {
  color: #151515;
  padding: 0 14px;
}

.search-bar button {
  background: linear-gradient(135deg, var(--violet), var(--pink), var(--orange));
  color: #ffffff;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.suggestions {
  background: #f7f7f7;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  color: #141414;
  display: none;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  z-index: 30;
}

.suggestions.is-open {
  display: block;
}

.suggestions a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 16px;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: end;
}

.theme-toggle {
  background:
    linear-gradient(#080a14, #080a14) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet), var(--orange)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  min-height: 42px;
  padding: 0 12px;
  text-transform: uppercase;
}

.header-link {
  color: var(--muted);
  display: grid;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.1;
  min-height: 40px;
  place-content: center;
  text-transform: uppercase;
}

.header-link strong {
  color: var(--white);
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.cart-link {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--white);
  display: inline-flex;
  font-family: var(--font-display);
  font-weight: 900;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
}

.cart-count {
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--violet));
  border-radius: 999px;
  color: #ffffff;
  display: inline-grid;
  font-size: 0.78rem;
  height: 22px;
  place-items: center;
  width: 22px;
}

.department-nav {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(22, 139, 255, 0.12), rgba(168, 85, 255, 0.16), rgba(255, 122, 24, 0.1)),
    #0f1020;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 8px clamp(14px, 3vw, 34px);
}

.department-nav a {
  border-radius: var(--radius);
  color: var(--muted);
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  min-height: 34px;
  padding: 9px 12px;
}

.department-nav a:hover,
.department-nav a.is-active {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.page {
  padding: 22px clamp(14px, 3vw, 34px) 56px;
}

.hero-store {
  background:
    linear-gradient(90deg, rgba(14, 14, 15, 0.98), rgba(14, 14, 15, 0.58)),
    radial-gradient(circle at 68% 38%, rgba(168, 85, 255, 0.38), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(22, 139, 255, 0.28), transparent 20%),
    radial-gradient(circle at 78% 78%, rgba(255, 122, 24, 0.22), transparent 22%),
    linear-gradient(135deg, rgba(168, 85, 255, 0.24) 0 12%, transparent 12% 34%, rgba(22, 139, 255, 0.18) 34% 48%, transparent 48% 68%, rgba(255, 122, 24, 0.16) 68% 82%, transparent 82%),
    #050711;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  min-height: 420px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 54px);
}

.eyebrow {
  color: var(--yellow);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-store h1,
.page-hero h1 {
  font-size: clamp(2.45rem, 5.4vw, 6.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-store p,
.page-hero p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.6;
  margin: 22px 0 0;
  max-width: 680px;
}

.hero-actions,
.card-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  text-transform: uppercase;
}

.button-primary {
  background: linear-gradient(135deg, var(--violet), var(--pink), var(--orange));
  color: #ffffff;
}

.button-secondary {
  background:
    linear-gradient(#080a14, #080a14) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet), var(--orange)) border-box;
  border-color: transparent;
  color: var(--white);
}

.button-wide {
  width: 100%;
}

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

.brand-showcase {
  background:
    radial-gradient(circle at 34% 38%, rgba(168, 85, 255, 0.2), transparent 28%),
    radial-gradient(circle at 66% 42%, rgba(22, 139, 255, 0.16), transparent 24%),
    radial-gradient(circle at 78% 72%, rgba(255, 122, 24, 0.2), transparent 22%),
    linear-gradient(#050711, #050711) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet), var(--orange)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.3), 0 0 34px rgba(168, 85, 255, 0.18);
  display: grid;
  grid-column: 1 / -1;
  height: clamp(190px, 24vw, 260px);
  overflow: hidden;
  place-items: center;
  position: relative;
}

.brand-showcase::after {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(135deg, rgba(39, 214, 255, 0.12), transparent 34%, rgba(255, 122, 24, 0.14));
  content: "";
  inset: 0;
  opacity: 0.7;
  pointer-events: none;
  position: absolute;
}

.brand-showcase img {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  position: relative;
  width: 100%;
  z-index: 1;
}

.mini-feature {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  min-height: 118px;
  overflow: hidden;
  padding: 14px;
  position: relative;
}

.mini-feature::before,
.product-image::before,
.case-visual::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(45deg, rgba(122, 181, 46, 0.25), rgba(99, 169, 255, 0.2), rgba(255, 78, 163, 0.18)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 11px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  inset: 18px 32px 58px;
  position: absolute;
}

.mini-feature strong,
.mini-feature span {
  align-self: end;
  position: relative;
  z-index: 1;
}

.mini-feature strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.mini-feature span {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
}

.promo-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.sales-splash {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.sale-tile {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 260px;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.sale-tile::before {
  background:
    radial-gradient(circle at 28% 42%, rgba(168, 85, 255, 0.42), transparent 24%),
    radial-gradient(circle at 78% 30%, rgba(39, 214, 255, 0.28), transparent 23%),
    linear-gradient(135deg, rgba(255, 122, 24, 0.2), transparent 42%);
  content: "";
  inset: 42% 0 0;
  position: absolute;
}

.sale-tile-wide {
  background:
    linear-gradient(90deg, rgba(4, 6, 15, 0.86), rgba(4, 6, 15, 0.34)),
    radial-gradient(circle at 82% 44%, rgba(255, 122, 24, 0.36), transparent 22%),
    radial-gradient(circle at 64% 30%, rgba(168, 85, 255, 0.42), transparent 26%),
    #07111f;
}

.sale-tile span,
.sale-tile h2,
.sale-tile h3,
.sale-tile p,
.sale-tile a,
.tile-mini-grid,
.tile-product-strip {
  position: relative;
  z-index: 1;
}

.sale-tile span {
  color: var(--yellow);
  display: block;
  font-family: var(--font-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sale-tile h2 {
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  line-height: 0.94;
  margin-top: 14px;
  text-transform: uppercase;
}

.sale-tile h3 {
  font-size: 1.42rem;
  line-height: 1.05;
  margin-top: 10px;
}

.sale-tile p {
  color: var(--muted);
  line-height: 1.45;
  max-width: 520px;
}

.sale-tile a {
  color: var(--cyan);
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 900;
  margin-top: 14px;
}

.tile-mini-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.tile-mini-grid i,
.tile-product-strip {
  background:
    linear-gradient(135deg, rgba(168, 85, 255, 0.62), rgba(39, 214, 255, 0.48), rgba(255, 122, 24, 0.45)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  display: block;
  min-height: 58px;
}

.tile-product-strip {
  border-radius: var(--radius);
  margin-top: 18px;
  min-height: 110px;
}

.promo-card,
.info-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.promo-card strong,
.info-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.1;
}

.promo-card span,
.info-card span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
  margin-top: 8px;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin: 34px 0 14px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
}

.section-head a {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.department-grid,
.recommendation-row,
.product-grid,
.case-grid,
.help-grid,
.industry-grid,
.lab-tool-grid {
  display: grid;
  gap: 14px;
}

.department-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.department-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 210px;
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.department-card::before {
  background:
    linear-gradient(135deg, rgba(122, 181, 46, 0.28), transparent 35%),
    linear-gradient(45deg, rgba(67, 224, 210, 0.18), rgba(164, 108, 255, 0.18), rgba(255, 78, 163, 0.16));
  border-radius: 6px;
  content: "";
  height: 98px;
  left: 20px;
  position: absolute;
  right: 20px;
  top: 18px;
}

.department-card h3 {
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 128px;
}

.department-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 10px 0 0;
}

.recommendation-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  overflow: hidden;
  padding: 14px;
  position: relative;
}

.product-card[id] {
  scroll-margin-top: 150px;
}

.product-card::before {
  background: var(--green);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.product-card:nth-child(6n + 1)::before,
.department-card:nth-child(6n + 1)::before {
  background-color: var(--green);
}

.product-card:nth-child(6n + 2)::before,
.department-card:nth-child(6n + 2)::before {
  background-color: var(--cyan);
}

.product-card:nth-child(6n + 3)::before,
.department-card:nth-child(6n + 3)::before {
  background-color: var(--blue);
}

.product-card:nth-child(6n + 4)::before,
.department-card:nth-child(6n + 4)::before {
  background-color: var(--violet);
}

.product-card:nth-child(6n + 5)::before,
.department-card:nth-child(6n + 5)::before {
  background-color: var(--pink);
}

.product-card:nth-child(6n + 6)::before,
.department-card:nth-child(6n + 6)::before {
  background-color: var(--orange);
}

.product-image {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    #151517;
  border-radius: 6px;
  display: grid;
  min-height: 170px;
  overflow: hidden;
  place-items: end start;
  position: relative;
  --shape-a: rgba(168, 85, 255, 0.82);
  --shape-b: rgba(39, 214, 255, 0.62);
  --shape-c: rgba(255, 122, 24, 0.7);
}

.product-image::before {
  inset: 26px 34px;
}

.product-image::after {
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.9), transparent 9%),
    linear-gradient(135deg, var(--shape-a), transparent 48%),
    linear-gradient(45deg, var(--shape-b), var(--shape-c));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px 6px 26px 8px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34), 0 0 30px color-mix(in srgb, var(--shape-a) 34%, transparent);
  content: "";
  height: 74px;
  left: 50%;
  position: absolute;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-7deg);
  width: 112px;
}

.product-image span {
  background: rgba(4, 6, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
  margin: 10px;
  padding: 5px 8px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.product-image img,
.review-visual img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.product-visual-shadow,
.product-visual-display,
.product-visual-plaque {
  --shape-a: rgba(255, 122, 24, 0.72);
  --shape-b: rgba(217, 75, 255, 0.7);
  --shape-c: rgba(39, 214, 255, 0.5);
}

.product-visual-planter,
.product-visual-house,
.product-visual-facade,
.product-visual-landmark {
  --shape-a: rgba(39, 214, 255, 0.72);
  --shape-b: rgba(168, 85, 255, 0.7);
  --shape-c: rgba(255, 178, 74, 0.62);
}

.product-visual-relic,
.product-visual-artifact,
.product-visual-futura,
.product-visual-mystery {
  --shape-a: rgba(217, 75, 255, 0.82);
  --shape-b: rgba(22, 139, 255, 0.72);
  --shape-c: rgba(255, 122, 24, 0.7);
}

.product-visual-bust,
.product-visual-monster,
.product-visual-creature,
.product-visual-totem {
  --shape-a: rgba(255, 75, 125, 0.8);
  --shape-b: rgba(168, 85, 255, 0.72);
  --shape-c: rgba(255, 178, 74, 0.58);
}

.product-visual-prototype,
.product-visual-part,
.product-visual-jig,
.product-visual-production,
.product-visual-cad,
.product-visual-download {
  --shape-a: rgba(39, 214, 255, 0.76);
  --shape-b: rgba(122, 181, 46, 0.58);
  --shape-c: rgba(22, 139, 255, 0.72);
}

.product-visual-award,
.product-visual-logo,
.product-visual-gift,
.product-visual-batch {
  --shape-a: rgba(255, 178, 74, 0.78);
  --shape-b: rgba(217, 75, 255, 0.62);
  --shape-c: rgba(255, 122, 24, 0.76);
}

.product-card:nth-child(6n + 1) .product-image::before {
  background:
    linear-gradient(135deg, rgba(122, 181, 46, 0.86), transparent 38%),
    linear-gradient(45deg, rgba(246, 223, 79, 0.72), rgba(67, 224, 210, 0.52)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 11px);
  box-shadow: 0 0 34px rgba(122, 181, 46, 0.24);
}

.product-card:nth-child(6n + 2) .product-image::before {
  background:
    linear-gradient(135deg, rgba(67, 224, 210, 0.84), transparent 38%),
    linear-gradient(45deg, rgba(99, 169, 255, 0.64), rgba(164, 108, 255, 0.54)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 11px);
  box-shadow: 0 0 34px rgba(67, 224, 210, 0.22);
}

.product-card:nth-child(6n + 3) .product-image::before {
  background:
    linear-gradient(135deg, rgba(99, 169, 255, 0.86), transparent 38%),
    linear-gradient(45deg, rgba(164, 108, 255, 0.68), rgba(255, 78, 163, 0.52)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 11px);
  box-shadow: 0 0 34px rgba(99, 169, 255, 0.22);
}

.product-card:nth-child(6n + 4) .product-image::before {
  background:
    linear-gradient(135deg, rgba(164, 108, 255, 0.86), transparent 38%),
    linear-gradient(45deg, rgba(255, 78, 163, 0.7), rgba(255, 122, 61, 0.54)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 11px);
  box-shadow: 0 0 34px rgba(164, 108, 255, 0.24);
}

.product-card:nth-child(6n + 5) .product-image::before {
  background:
    linear-gradient(135deg, rgba(255, 78, 163, 0.88), transparent 38%),
    linear-gradient(45deg, rgba(255, 122, 61, 0.68), rgba(246, 223, 79, 0.56)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 11px);
  box-shadow: 0 0 34px rgba(255, 78, 163, 0.24);
}

.product-card:nth-child(6n + 6) .product-image::before {
  background:
    linear-gradient(135deg, rgba(255, 122, 61, 0.88), transparent 38%),
    linear-gradient(45deg, rgba(246, 223, 79, 0.72), rgba(122, 181, 46, 0.54)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 11px);
  box-shadow: 0 0 34px rgba(255, 122, 61, 0.24);
}

.product-card:nth-child(6n + 1) .badge {
  border-color: rgba(122, 181, 46, 0.54);
  color: var(--green);
}

.product-card:nth-child(6n + 2) .badge {
  background: rgba(67, 224, 210, 0.13);
  border-color: rgba(67, 224, 210, 0.44);
  color: var(--cyan);
}

.product-card:nth-child(6n + 3) .badge {
  background: rgba(99, 169, 255, 0.13);
  border-color: rgba(99, 169, 255, 0.44);
  color: var(--blue);
}

.product-card:nth-child(6n + 4) .badge {
  background: rgba(164, 108, 255, 0.13);
  border-color: rgba(164, 108, 255, 0.44);
  color: var(--violet);
}

.product-card:nth-child(6n + 5) .badge {
  background: rgba(255, 78, 163, 0.13);
  border-color: rgba(255, 78, 163, 0.44);
  color: var(--pink);
}

.product-card:nth-child(6n + 6) .badge {
  background: rgba(255, 122, 61, 0.13);
  border-color: rgba(255, 122, 61, 0.44);
  color: var(--orange);
}

.product-card h3 {
  font-size: 0.95rem;
  line-height: 1.18;
  margin-top: 14px;
}

.product-meta {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-top: 12px;
}

.product-meta > span:first-child {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 900;
}

.source-pill,
.mini-badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.66rem;
  font-weight: 900;
  padding: 4px 7px;
  text-transform: uppercase;
}

.source-in-house {
  background: rgba(39, 214, 255, 0.12);
  border-color: rgba(39, 214, 255, 0.34);
  color: var(--cyan);
}

.source-partner-ready,
.source-hybrid {
  background: rgba(255, 178, 74, 0.12);
  border-color: rgba(255, 178, 74, 0.34);
  color: var(--yellow);
}

.source-digital-file {
  background: rgba(217, 75, 255, 0.12);
  border-color: rgba(217, 75, 255, 0.34);
  color: var(--pink);
}

.rating {
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 900;
  margin-top: 8px;
}

.price-row {
  align-items: baseline;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-top: 10px;
}

.price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
}

.price-row small {
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: right;
}

.badge {
  background: rgba(122, 181, 46, 0.16);
  border: 1px solid rgba(122, 181, 46, 0.4);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  margin-top: 10px;
  padding: 5px 8px;
  text-transform: uppercase;
  width: fit-content;
}

.card-badges {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mini-badge {
  margin-top: 10px;
}

.listing-system {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(39, 214, 255, 0.12), rgba(217, 75, 255, 0.09), rgba(255, 122, 24, 0.1)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 12px 14px;
}

.listing-system strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.listing-system span {
  font-size: 0.9rem;
}

.review-controls {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(39, 214, 255, 0.1), rgba(217, 75, 255, 0.08), rgba(255, 122, 24, 0.08)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
}

.review-controls select {
  background: #111;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  min-height: 38px;
  padding: 0 10px;
}

.catalog-review-summary {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.catalog-review-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.review-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
}

.review-visual {
  background:
    radial-gradient(circle at 32% 30%, rgba(168, 85, 255, 0.55), transparent 24%),
    radial-gradient(circle at 70% 62%, rgba(255, 122, 24, 0.46), transparent 24%),
    linear-gradient(135deg, rgba(39, 214, 255, 0.28), rgba(255, 255, 255, 0.04));
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.review-visual::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(45deg, rgba(168, 85, 255, 0.7), rgba(39, 214, 255, 0.48), rgba(255, 122, 24, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px 6px 26px 8px;
  content: "";
  height: 94px;
  left: 50%;
  position: absolute;
  top: 45%;
  transform: translate(-50%, -50%) rotate(-7deg);
  width: 130px;
}

.review-visual span {
  background: rgba(4, 6, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  left: 14px;
  padding: 5px 8px;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.review-visual.is-needed::after {
  color: var(--yellow);
  content: "IMAGE NEEDED";
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
}

.review-card-body {
  padding: 16px;
}

.review-card h2 {
  font-size: 1.24rem;
  line-height: 1.05;
  margin-top: 12px;
}

.review-card p {
  color: var(--muted);
  line-height: 1.45;
}

.review-card dl {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 14px 0;
}

.review-card dl div {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.review-card dt {
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card dd {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  margin: 3px 0 0;
}

.review-note {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
}

.product-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 10px 0 0;
}

.add-cart {
  background: linear-gradient(135deg, var(--violet), var(--pink), var(--orange));
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  margin-top: 14px;
  min-height: 38px;
  padding: 0 14px;
  text-transform: uppercase;
}

.page-hero {
  background:
    radial-gradient(circle at 80% 30%, rgba(168, 85, 255, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(22, 139, 255, 0.18) 0 16%, transparent 16% 35%, rgba(168, 85, 255, 0.2) 35% 46%, transparent 46% 62%, rgba(255, 122, 24, 0.14) 62% 76%, transparent 76%),
    linear-gradient(45deg, rgba(168, 85, 255, 0.14), transparent 34%, rgba(22, 139, 255, 0.11)),
    var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 54px);
}

.futura-hero {
  background:
    linear-gradient(90deg, rgba(4, 6, 15, 0.92), rgba(4, 6, 15, 0.45)),
    radial-gradient(circle at 72% 42%, rgba(255, 122, 24, 0.34), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(39, 214, 255, 0.28), transparent 24%),
    radial-gradient(circle at 54% 72%, rgba(168, 85, 255, 0.32), transparent 28%),
    #050711;
}

.category-drawer {
  align-items: stretch;
  background:
    radial-gradient(circle at 82% 28%, rgba(168, 85, 255, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(22, 139, 255, 0.16), transparent 28%),
    linear-gradient(45deg, rgba(168, 85, 255, 0.16), rgba(255, 122, 24, 0.13)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  margin-top: 18px;
  overflow: hidden;
  padding: 20px;
  scroll-margin-top: 132px;
}

.category-copy h2 {
  font-size: clamp(1.9rem, 4vw, 4.2rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.category-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.58;
  margin: 14px 0 0;
  max-width: 760px;
}

.subcategory-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.subcategory-row a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
  min-height: 36px;
  padding: 9px 13px;
}

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

.category-feature {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  min-height: 156px;
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.category-feature::before {
  background:
    linear-gradient(135deg, rgba(168, 85, 255, 0.78), transparent 42%),
    linear-gradient(45deg, rgba(22, 139, 255, 0.5), rgba(255, 122, 24, 0.42));
  content: "";
  inset: 22px 28px 58px;
  position: absolute;
}

.category-feature.primary {
  grid-row: span 2;
  min-height: 324px;
}

.category-feature.primary::before {
  inset: 32px 38px 78px;
}

.category-feature span,
.category-feature strong,
.category-feature small {
  position: relative;
  z-index: 1;
}

.category-feature span {
  color: var(--yellow);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.category-feature strong {
  align-self: end;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.05;
}

.category-feature small {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  line-height: 1.35;
}

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

.shop-page {
  padding-right: clamp(14px, 11vw, 192px);
}

.cart-rail {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #080a14;
  border-left: 1px solid var(--line-strong);
  bottom: 0;
  box-shadow: -16px 0 36px rgba(0, 0, 0, 0.24);
  color: var(--white);
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding: 14px 10px;
  position: fixed;
  right: 0;
  top: 92px;
  width: 156px;
  z-index: 18;
}

.cart-rail > strong {
  font-family: var(--font-display);
  font-size: 0.96rem;
}

.rail-subtotal {
  color: var(--muted);
  display: grid;
  font-size: 0.72rem;
  line-height: 1.2;
}

.rail-subtotal b {
  color: var(--orange);
  font-size: 1rem;
}

.rail-checkout {
  background: linear-gradient(135deg, var(--violet), var(--pink), var(--orange));
  border-radius: 999px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 900;
  min-height: 34px;
  padding: 9px 8px;
  text-align: center;
  text-transform: uppercase;
}

.rail-item {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
  padding-top: 10px;
}

.rail-item i {
  background:
    radial-gradient(circle at 35% 36%, rgba(168, 85, 255, 0.7), transparent 28%),
    radial-gradient(circle at 72% 54%, rgba(255, 122, 24, 0.62), transparent 26%),
    linear-gradient(135deg, rgba(39, 214, 255, 0.44), rgba(255, 255, 255, 0.05));
  border-radius: var(--radius);
  display: block;
  min-height: 86px;
}

.rail-item span {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.rail-item small {
  color: var(--yellow);
  font-weight: 900;
}

.rail-item div {
  align-items: center;
  border: 1px solid var(--orange);
  border-radius: 999px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 28px;
  overflow: hidden;
}

.rail-item button {
  background: transparent;
  border: 0;
  color: var(--white);
  font-weight: 900;
}

.filters {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  position: sticky;
  top: 116px;
}

.filters h2 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.filter-group {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.filter-group strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.filter-group label,
.filter-chip {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.9rem;
  gap: 8px;
  margin: 9px 0;
}

.filter-chip {
  background: transparent;
  border: 0;
  padding: 0;
}

.filter-chip.is-active {
  color: var(--yellow);
  font-weight: 900;
}

.catalog-toolbar {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 12px 14px;
}

.catalog-toolbar p {
  color: var(--muted);
  margin: 0;
}

.catalog-toolbar select {
  background: #111;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  min-height: 38px;
  padding: 0 10px;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.retail-form {
  background:
    linear-gradient(145deg, rgba(99, 169, 255, 0.08), rgba(255, 78, 163, 0.05)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 20px;
}

.retail-form label,
.retail-form fieldset {
  color: var(--muted);
  display: grid;
  font-size: 0.84rem;
  font-weight: 900;
  gap: 8px;
}

.retail-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.retail-form input,
.retail-form select,
.retail-form textarea,
.file-readout {
  background: #101012;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.retail-form option {
  color: #101010;
}

.retail-form textarea {
  resize: vertical;
}

.form-note {
  color: var(--faint);
  font-size: 0.86rem;
  line-height: 1.45;
  margin: -2px 0 0;
}

input[type="file"] {
  inline-size: 1px;
  opacity: 0;
  position: absolute;
}

input[type="range"] {
  accent-color: var(--violet);
}

.file-readout {
  align-items: center;
  border-style: dashed;
  color: var(--faint);
  cursor: pointer;
  display: flex;
  font-size: 0.84rem;
}

.segmented {
  background: #101012;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 4px;
}

.segmented input {
  inline-size: 1px;
  opacity: 0;
  position: absolute;
}

.segmented label {
  align-items: center;
  color: var(--faint);
  cursor: pointer;
  display: flex;
  font-size: 0.74rem;
  justify-content: center;
  min-height: 38px;
  padding: 0 8px;
  text-align: center;
  text-transform: uppercase;
}

.segmented input:checked + label {
  background: linear-gradient(135deg, var(--violet), var(--pink), var(--orange));
  border-radius: 6px;
  color: #ffffff;
  font-weight: 900;
}

.estimate {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(122, 181, 46, 0.12), rgba(67, 224, 210, 0.08)),
    rgba(122, 181, 46, 0.09);
  border: 1px solid rgba(122, 181, 46, 0.34);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 14px;
}

.estimate span {
  color: var(--muted);
  font-weight: 900;
}

.estimate strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.two-column {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  margin-top: 18px;
}

.info-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.industry-grid,
.help-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.lab-tool-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.case-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.case-visual {
  background:
    linear-gradient(135deg, rgba(122, 181, 46, 0.18), rgba(99, 169, 255, 0.14), rgba(255, 78, 163, 0.12)),
    #141416;
  border-radius: 6px;
  height: 220px;
  margin-bottom: 16px;
  position: relative;
}

.case-card h2,
.info-card h2 {
  font-size: 1.35rem;
  line-height: 1.08;
}

.case-card p,
.info-card p {
  color: var(--muted);
  line-height: 1.55;
}

.service-band {
  align-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--violet), var(--pink), var(--orange));
  border-radius: var(--radius);
  color: #101010;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 34px;
  padding: 24px;
}

.service-band h2 {
  font-size: clamp(1.7rem, 4vw, 4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.service-band p {
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.5;
  margin: 10px 0 0;
}

.service-band .button-primary {
  background: #101010;
  color: var(--white);
}

.store-footer {
  background: #111113;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  padding: 28px clamp(14px, 3vw, 34px);
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 18% 12%, rgba(168, 85, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(22, 139, 255, 0.14), transparent 24%),
    radial-gradient(circle at 70% 88%, rgba(255, 122, 24, 0.14), transparent 28%),
    #f2f0fb;
}

:root[data-theme="light"] .store-header,
:root[data-theme="light"] .store-footer {
  background: #fbf8ff;
}

:root[data-theme="light"] .topbar {
  box-shadow: 0 12px 30px rgba(36, 31, 22, 0.08);
}

:root[data-theme="light"] .brand-mark {
  background: transparent url("./assets/graymatter-spool-logo.svg") center / cover no-repeat;
  color: transparent;
}

:root[data-theme="light"] .search-bar {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(36, 31, 22, 0.12);
}

:root[data-theme="light"] .search-bar select {
  background: #eee7dc;
}

:root[data-theme="light"] .department-nav {
  background:
    linear-gradient(90deg, rgba(22, 139, 255, 0.16), rgba(168, 85, 255, 0.14), rgba(255, 122, 24, 0.14)),
    #f8ecff;
}

:root[data-theme="light"] .department-nav a:hover,
:root[data-theme="light"] .department-nav a.is-active {
  background: rgba(20, 20, 22, 0.08);
}

:root[data-theme="light"] .theme-toggle {
  background:
    linear-gradient(#fffaf2, #fffaf2) padding-box,
    linear-gradient(135deg, var(--cyan), var(--pink), var(--yellow)) border-box;
  color: #141416;
}

:root[data-theme="light"] .cart-link,
:root[data-theme="light"] .button-secondary {
  background:
    linear-gradient(#fffaf2, #fffaf2) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet), var(--pink)) border-box;
  color: #141416;
}

:root[data-theme="light"] .cart-rail {
  background:
    linear-gradient(180deg, rgba(20, 20, 22, 0.05), rgba(20, 20, 22, 0.02)),
    #fffaf2;
  color: #141416;
}

:root[data-theme="light"] .rail-item button {
  color: #141416;
}

:root[data-theme="light"] .hero-store,
:root[data-theme="light"] .page-hero {
  background:
    linear-gradient(90deg, rgba(251, 248, 255, 0.94), rgba(251, 248, 255, 0.66)),
    radial-gradient(circle at 80% 30%, rgba(168, 85, 255, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(22, 139, 255, 0.2) 0 12%, transparent 12% 34%, rgba(168, 85, 255, 0.22) 34% 48%, transparent 48% 68%, rgba(255, 122, 24, 0.2) 68% 82%, transparent 82%),
    #fbf8ff;
}

:root[data-theme="light"] .filters,
:root[data-theme="light"] .catalog-toolbar,
:root[data-theme="light"] .category-drawer,
:root[data-theme="light"] .promo-card,
:root[data-theme="light"] .info-card,
:root[data-theme="light"] .department-card,
:root[data-theme="light"] .product-card,
:root[data-theme="light"] .case-card,
:root[data-theme="light"] .retail-form {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 250, 242, 0.94)),
    #ffffff;
  box-shadow: 0 14px 36px rgba(64, 47, 24, 0.1);
}

:root[data-theme="light"] .subcategory-row a,
:root[data-theme="light"] .category-feature {
  background: rgba(255, 255, 255, 0.72);
}

:root[data-theme="light"] .product-image,
:root[data-theme="light"] .case-visual {
  background:
    linear-gradient(135deg, rgba(20, 20, 22, 0.045), rgba(255, 255, 255, 0.5)),
    #f2eadf;
}

:root[data-theme="light"] .retail-form input,
:root[data-theme="light"] .retail-form select,
:root[data-theme="light"] .retail-form textarea,
:root[data-theme="light"] .file-readout,
:root[data-theme="light"] .segmented,
:root[data-theme="light"] .catalog-toolbar select {
  background: #fffaf2;
  color: #141416;
}

:root[data-theme="light"] .suggestions {
  background: #ffffff;
  color: #141416;
}

:root[data-theme="light"] .service-band {
  color: #101010;
}

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

  .brand {
    min-width: 0;
  }

  .brand .brand-type {
    max-width: 360px;
    width: 360px;
  }

  .brand-type img {
    transform: none;
  }

  .brand .brand-tagline {
    bottom: 11px;
    font-size: 0.44rem;
    gap: 8px;
    left: 20px;
  }

  .brand-tagline b::after,
  .brand-tagline i::after {
    margin-left: 8px;
  }

  .shop-page {
    padding-right: clamp(14px, 3vw, 34px);
  }

  .cart-rail {
    display: none;
  }

  .header-actions {
    justify-content: start;
  }

  .hero-store,
  .two-column,
  .store-layout,
  .category-drawer {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .department-grid,
  .recommendation-row,
  .product-grid,
  .lab-tool-grid,
  .sales-splash,
  .catalog-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .sale-tile-wide {
    grid-column: 1 / -1;
  }
}

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

  .search-bar select,
  .search-bar button {
    min-height: 40px;
  }

  .hero-products,
  .promo-strip,
  .sales-splash,
  .department-grid,
  .recommendation-row,
  .product-grid,
  .info-grid,
  .industry-grid,
  .help-grid,
  .lab-tool-grid,
  .case-grid,
  .service-band,
  .store-footer {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .category-feature-grid {
    grid-template-columns: 1fr;
  }

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

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

  .category-feature.primary {
    min-height: 220px;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    height: 58px;
    width: 58px;
  }

  .brand .brand-type {
    height: 62px;
    max-width: 238px;
    width: 238px;
  }

  .brand-type img {
    height: 62px;
    transform: none;
  }

  .brand .brand-tagline {
    bottom: 8px;
    font-size: 0.31rem;
    gap: 5px;
    left: 12px;
    letter-spacing: 0.1em;
  }

  .brand-tagline b::after,
  .brand-tagline i::after {
    margin-left: 5px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .header-link,
  .cart-link {
    justify-content: center;
    text-align: center;
  }

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

.coming-soon-page {
  background:
    radial-gradient(circle at 18% 14%, rgba(148, 163, 184, 0.18), transparent 26%),
    radial-gradient(circle at 84% 10%, rgba(56, 189, 248, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%),
    #03050c;
  min-height: 100vh;
}

.coming-soon-shell {
  margin: 0 auto;
  max-width: 1240px;
  min-height: 100vh;
  padding: clamp(22px, 5vw, 70px);
}

.coming-soon-hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 70px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  min-height: 70vh;
}

.coming-soon-logo {
  display: block;
  margin-bottom: clamp(34px, 6vw, 70px);
  max-width: 360px;
}

.coming-soon-logo img {
  filter: brightness(1.12) contrast(1.08) drop-shadow(0 0 26px rgba(255, 255, 255, 0.12));
}

.coming-soon-copy h1 {
  color: var(--white);
  font-size: clamp(3rem, 8.2vw, 7.4rem);
  letter-spacing: 0.015em;
  line-height: 0.9;
  max-width: 980px;
  text-transform: uppercase;
}

.coming-soon-lead {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.6;
  margin: 26px 0 0;
  max-width: 760px;
}

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

.coming-soon-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(10, 13, 23, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  position: relative;
}

.coming-soon-card::before {
  background: linear-gradient(90deg, var(--cyan), var(--violet), rgba(255, 255, 255, 0.55));
  content: "";
  height: 3px;
  inset: 0 0 auto;
  position: absolute;
}

.coming-soon-card span {
  color: var(--cyan);
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.coming-soon-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.coming-soon-card ul {
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 15px;
  line-height: 1.5;
  list-style: none;
  margin: 0;
  padding: 0;
}

.coming-soon-card li {
  border-left: 3px solid rgba(125, 211, 252, 0.68);
  padding-left: 14px;
}

.coming-soon-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.coming-soon-grid article {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 22px;
}

.coming-soon-grid strong {
  color: var(--white);
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.coming-soon-grid p,
.coming-soon-local p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  margin: 0;
}

.coming-soon-local {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 24px;
}

.coming-soon-local a {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .coming-soon-hero,
  .coming-soon-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-hero {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .coming-soon-local {
    align-items: flex-start;
    flex-direction: column;
  }

  .coming-soon-actions .button {
    justify-content: center;
    width: 100%;
  }
}

.custom-launch-page {
  --landing-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --landing-display: "Saira", "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at 16% 14%, rgba(125, 211, 252, 0.18), transparent 24%),
    radial-gradient(circle at 78% 8%, rgba(167, 139, 250, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    #03050c;
  font-family: var(--landing-body);
}

.launch-header {
  align-items: center;
  background: rgba(3, 5, 12, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 20px;
  grid-template-columns: 300px minmax(0, 1fr) auto;
  left: 0;
  padding: 14px clamp(18px, 4vw, 54px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.launch-header::before {
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink), var(--cyan));
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.launch-logo img {
  filter: brightness(1.06) contrast(0.96) drop-shadow(0 0 18px rgba(125, 211, 252, 0.12));
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
  width: 300px;
}

.launch-nav {
  align-items: center;
  display: flex;
  gap: clamp(10px, 2vw, 26px);
  justify-content: center;
}

.launch-nav a,
.launch-contact {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--landing-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

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

.launch-contact {
  background:
    linear-gradient(#080a14, #080a14) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet), var(--pink)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--white);
  min-height: 42px;
  padding: 12px 16px;
  text-align: center;
}

.launch-shell {
  margin: 0 auto;
  max-width: 1380px;
  padding: clamp(24px, 4vw, 58px);
}

.launch-hero {
  align-items: stretch;
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.62fr);
}

.launch-copy,
.launch-intake-card,
.launch-band,
.launch-product-grid article,
.launch-process,
.launch-cta {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.028)),
    rgba(9, 12, 22, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.launch-copy {
  background:
    linear-gradient(90deg, rgba(3, 5, 12, 0.94), rgba(3, 5, 12, 0.64)),
    radial-gradient(circle at 78% 22%, rgba(125, 211, 252, 0.18), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(167, 139, 250, 0.18), transparent 26%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 48px),
    rgba(9, 12, 22, 0.86);
  min-height: 560px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 70px);
  position: relative;
}

.launch-copy-compact {
  min-height: 420px;
}

.launch-copy::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at 32% 34%, rgba(125, 211, 252, 0.35), transparent 12%),
    radial-gradient(circle at 68% 45%, rgba(167, 139, 250, 0.28), transparent 14%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  bottom: -120px;
  content: "";
  height: 360px;
  position: absolute;
  right: -110px;
  transform: rotate(-14deg);
  width: 520px;
}

.launch-copy h1 {
  font-family: var(--landing-display);
  font-size: clamp(3.05rem, 5.25vw, 6rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.launch-copy h1 span {
  display: block;
}

.launch-lead {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.6;
  margin: 26px 0 0;
  max-width: 840px;
  position: relative;
  z-index: 1;
}

.launch-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

.launch-proof span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  padding: 8px 12px;
}

.launch-intake-card {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 40px);
}

.card-kicker {
  color: var(--cyan);
  font-family: var(--landing-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-intake-card h2,
.launch-band h2,
.launch-process h2,
.launch-cta h2 {
  font-family: var(--landing-display);
  font-size: clamp(1.8rem, 3.6vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
}

.launch-intake-card p,
.launch-band p,
.launch-process p,
.launch-cta p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin: 0;
}

.intake-steps {
  display: grid;
  gap: 10px;
}

.intake-steps strong {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 14px;
}

.preview-engine {
  background:
    radial-gradient(circle at 82% 28%, rgba(125, 211, 252, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 10px;
  padding: 18px;
}

.preview-engine small {
  color: var(--cyan);
  display: block;
  font-family: var(--landing-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-engine b {
  display: block;
  font-family: var(--landing-display);
  font-size: 1.3rem;
  margin: 6px 0;
}

.launch-band {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  margin-top: 22px;
  padding: clamp(24px, 4vw, 40px);
}

.local-tags {
  align-content: start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.local-tags span {
  background:
    linear-gradient(135deg, rgba(125, 211, 252, 0.14), rgba(167, 139, 250, 0.12)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 13px;
}

.launch-upload {
  align-items: start;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.028)),
    rgba(9, 12, 22, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  margin-top: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.launch-upload h2 {
  font-family: var(--landing-display);
  font-size: clamp(2rem, 3.8vw, 4.6rem);
  font-weight: 700;
  line-height: 0.98;
  margin: 0;
}

.launch-upload p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.intake-shell {
  max-width: 1180px;
}

.intake-hero {
  background:
    linear-gradient(90deg, rgba(3, 5, 12, 0.94), rgba(3, 5, 12, 0.66)),
    radial-gradient(circle at 82% 24%, rgba(125, 211, 252, 0.18), transparent 24%),
    rgba(9, 12, 22, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  padding: clamp(28px, 5vw, 58px);
}

.intake-hero h1 {
  font-family: var(--landing-display);
  font-size: clamp(2.6rem, 5.2vw, 5.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  max-width: 880px;
}

.intake-hero p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.58;
  margin: 22px 0 0;
  max-width: 780px;
}

.intake-layout {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  margin-top: 22px;
}

.intake-page .retail-form {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.028)),
    rgba(9, 12, 22, 0.9);
  border-radius: 12px;
}

.intake-side {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 128px;
}

.launch-mini-form {
  display: grid;
  gap: 14px;
}

.launch-mini-form label {
  color: rgba(255, 255, 255, 0.68);
  display: grid;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 8px;
}

.launch-mini-form input,
.launch-mini-form textarea {
  background: rgba(3, 5, 12, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  inline-size: 100%;
  min-height: 46px;
  padding: 12px 14px;
}

.launch-mini-form textarea {
  resize: vertical;
}

.launch-product-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.launch-product-grid article {
  min-height: 220px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.launch-product-grid article::before {
  background:
    radial-gradient(circle at 28% 20%, rgba(125, 211, 252, 0.28), transparent 20%),
    linear-gradient(135deg, rgba(167, 139, 250, 0.18), rgba(255, 255, 255, 0.02));
  content: "";
  inset: 0;
  opacity: 0.72;
  position: absolute;
}

.launch-product-grid span,
.launch-product-grid h3 {
  position: relative;
  z-index: 1;
}

.launch-product-grid span {
  color: var(--cyan);
  display: block;
  font-family: var(--landing-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.launch-product-grid h3 {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--landing-display);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 600;
  line-height: 1.35;
  margin-top: 70px;
}

.launch-process {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  margin-top: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.process-copy p:last-child {
  margin-top: 18px;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list article {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  display: grid;
  gap: 16px;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 84px;
  padding: 14px 16px;
}

.process-list b {
  color: var(--cyan);
  font-family: var(--landing-display);
  font-size: 1.35rem;
}

.custom-launch-page .button {
  font-family: var(--landing-body);
  font-weight: 800;
  letter-spacing: 0;
}

.process-list span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.4;
}

.launch-cta {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 1fr) auto;
  margin-top: 22px;
  padding: clamp(24px, 4vw, 40px);
}

@media (max-width: 1080px) {
  .launch-header,
  .launch-hero,
  .launch-band,
  .launch-upload,
  .launch-process,
  .launch-cta,
  .intake-layout {
    grid-template-columns: 1fr;
  }

  .launch-nav {
    justify-content: start;
    overflow-x: auto;
  }

  .launch-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intake-side {
    position: static;
  }
}

@media (max-width: 680px) {
  .launch-header {
    padding: 12px 16px;
  }

  .launch-logo img {
    max-height: 64px;
    width: 220px;
  }

  .launch-shell {
    padding: 18px;
  }

  .launch-copy {
    min-height: auto;
  }

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

  .launch-contact,
  .launch-cta .button,
  .coming-soon-actions .button {
    justify-content: center;
    width: 100%;
  }
}
