:root {
  --black: #08090b;
  --black-2: #101216;
  --panel: #161a20;
  --panel-2: #1e242c;
  --white: #ffffff;
  --paper: #f3f4f2;
  --muted: #aab1bb;
  --muted-dark: #5e6671;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: #d9dce1;
  --red: #ee1b2d;
  --red-2: #b91523;
  --amber: #d6b56d;
  --green: #5f7d72;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ccd1d8;
  border-radius: 6px;
  background: #ffffff;
  color: #15181d;
  padding: 13px 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(238, 27, 45, 0.15);
}

input[readonly],
textarea[readonly] {
  background: #eef1f4;
  color: #606976;
}

textarea {
  resize: vertical;
}

address {
  font-style: normal;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 10px 14px;
  background: #ffffff;
  color: #111111;
  border-radius: 6px;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: rgba(8, 9, 11, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(8, 9, 11, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.header-shell {
  min-height: 72px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  width: min(280px, 100%);
  align-items: center;
  gap: 9px;
  padding: 6px 8px;
  border-radius: 6px;
  background: #ffffff;
}

.brand img {
  display: block;
}

.brand-mark {
  flex: 0 0 100px;
  border-right: 1px solid #e4e7ec;
  padding-right: 9px;
}

.brand-mark img {
  width: 90px;
  height: 46px;
  object-fit: contain;
  max-width: none;
}

.brand-logo {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.1vw, 18px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.primary-nav a {
  padding: 10px 0;
}

.mobile-nav-only {
  display: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.login-link:hover,
.login-link:focus-visible {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  white-space: nowrap;
}

.login-link {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
}

.call-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  padding: 0 12px;
  color: #ffffff;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.88) 42%, rgba(8, 9, 11, 0.46) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.75) 0%, rgba(8, 9, 11, 0.05) 48%, rgba(8, 9, 11, 0.54) 100%),
    url("/assets/hero-security-operations.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.8) 44%, transparent 88%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 0.58fr);
  gap: 38px;
  align-items: center;
  padding: 106px 0 118px;
}

.cert-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cert-spark {
  width: 12px;
  height: 12px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(238, 27, 45, 0.18), 0 0 38px rgba(238, 27, 45, 0.9);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.15rem, 5.35vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.02rem, 1.65vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-red {
  border: 1px solid var(--red);
  background: var(--red);
  color: #ffffff;
}

.button-red:hover,
.button-red:focus-visible {
  background: var(--red-2);
  border-color: var(--red-2);
  box-shadow: 0 18px 40px rgba(238, 27, 45, 0.3);
}

.button-clear {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.button-clear:hover,
.button-clear:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.52);
}

.button-clear.dark {
  border-color: #c7ccd3;
  background: #ffffff;
  color: #15181d;
}

.button-clear.dark:hover,
.button-clear.dark:focus-visible {
  border-color: var(--red);
  background: #f5f6f7;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.hero-console {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(22, 26, 32, 0.88), rgba(8, 9, 11, 0.76));
  box-shadow: var(--shadow);
  padding: 17px;
  overflow: hidden;
}

.hero-console::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--amber), transparent);
}

.console-top {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.console-top span,
.console-list span,
.contact-grid span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-top strong {
  color: #ffffff;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.console-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 -17px;
  background: rgba(255, 255, 255, 0.12);
}

.console-list div {
  min-height: 80px;
  padding: 11px 13px;
  background: rgba(8, 9, 11, 0.58);
}

.console-list div:first-child {
  grid-column: auto;
  padding-right: 13px;
  padding-left: 13px;
}

.console-list strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.28;
}

.hero-console p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.console-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.console-tags li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 3px 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.62rem;
  font-weight: 800;
}

.hero-status {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 9, 11, 0.76);
  backdrop-filter: blur(14px);
}

.status-shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.status-shell span {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.status-shell span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  padding: 92px 0;
}

.section h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.2rem, 4.55vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hirsch-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(238, 27, 45, 0.09), transparent 28%),
    var(--black-2);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: start;
}

.section-lead p {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.capability-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.capability-matrix article {
  min-height: 244px;
  padding: 26px;
  background: #12151a;
}

.capability-matrix span {
  display: block;
  margin-bottom: 46px;
  color: var(--amber);
  font-weight: 900;
}

.capability-matrix h3,
.system-card h3,
.process-line span {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.15;
}

.capability-matrix p,
.system-card p,
.process-line p {
  margin: 14px 0 0;
}

.systems-section {
  background: var(--paper);
  color: #111111;
}

.systems-section p,
.project-section p,
.hosted-section p,
.service-request-section p,
.references-section p,
.coverage-section p,
.field-copy p,
.process-section p {
  color: var(--muted-dark);
}

.section-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.58fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
}

.section-title-row p:last-child {
  margin: 0;
  font-size: 1.06rem;
}

.system-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.system-card {
  position: relative;
  min-height: 235px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 22px;
  background: #ffffff;
  overflow: hidden;
}

.system-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: #191919;
}

.featured-system {
  background: #111111;
  color: #ffffff;
}

.featured-system::before {
  background: var(--red);
}

.featured-system p {
  color: rgba(255, 255, 255, 0.68);
}

.project-section {
  background: #101216;
  color: #ffffff;
}

.project-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: start;
}

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

.project-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.06rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.project-tags span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.project-photo {
  position: relative;
  min-height: 300px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #08090b;
  overflow: hidden;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.project-photo.large {
  grid-column: 1 / -1;
  min-height: 390px;
}

.project-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.project-photo::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent);
}

.project-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
}

.field-section {
  background: #ffffff;
  color: #111111;
}

.field-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.field-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.field-photo img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.field-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--line-dark);
  overflow: hidden;
}

.field-points div {
  min-height: 132px;
  padding: 18px;
  background: #f6f7f5;
}

.field-points strong {
  display: block;
  color: #111111;
  font-size: 2rem;
  line-height: 1;
}

.field-points span {
  display: block;
  margin-top: 10px;
  color: var(--muted-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.coverage-section {
  background: #101216;
  color: #ffffff;
}

.coverage-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(460px, 1.1fr);
  gap: 56px;
  align-items: start;
}

.coverage-section p {
  color: rgba(255, 255, 255, 0.68);
}

.reach-board {
  display: grid;
  gap: 14px;
}

.reach-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reach-controls button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  padding: 0 13px;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.reach-controls button:hover,
.reach-controls button:focus-visible,
.reach-controls button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
}

.reach-map-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.reach-map {
  position: relative;
  min-height: 0;
  aspect-ratio: 1000 / 560;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 30%, rgba(238, 27, 45, 0.14), transparent 24%),
    radial-gradient(circle at 78% 36%, rgba(214, 181, 109, 0.12), transparent 24%),
    linear-gradient(135deg, #11161d, #08090b);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.reach-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

.map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0.95;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(238, 27, 45, 0.16), 0 0 22px rgba(238, 27, 45, 0.7);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.map-pin span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  min-width: max-content;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.86);
  color: #ffffff;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.map-pin:hover span,
.map-pin:focus-visible span,
.map-pin.is-active span {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.map-pin.is-hidden {
  display: none;
}

.map-pin.is-dimmed {
  opacity: 0.28;
}

.map-pin.is-active {
  background: var(--amber);
  box-shadow: 0 0 0 7px rgba(214, 181, 109, 0.18), 0 0 28px rgba(214, 181, 109, 0.72);
}

.map-detail {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
}

.map-detail span {
  display: block;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-detail h3 {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 1.44rem;
  line-height: 1.08;
}

.map-detail p {
  margin: 14px 0 0;
}

.reach-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.reach-lists div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.reach-lists h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
}

.reach-lists p {
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.references-section {
  background: #ffffff;
  color: #111111;
}

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

.reference-card {
  display: block;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #f7f7f5;
  overflow: hidden;
}

.reference-card summary {
  position: relative;
  display: grid;
  align-content: start;
  padding: 24px;
  list-style: none;
  cursor: pointer;
}

.reference-card summary::-webkit-details-marker {
  display: none;
}

.reference-card summary::after {
  content: "Read";
  position: absolute;
  right: 18px;
  top: 20px;
  border: 1px solid #d0d5dc;
  border-radius: 999px;
  padding: 6px 10px;
  color: #343b46;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reference-card[open] summary::after {
  content: "Close";
}

.reference-card[open] {
  grid-column: 1 / -1;
}

.reference-card span {
  display: inline-block;
  width: fit-content;
  margin-bottom: 22px;
  margin-right: 70px;
  border-radius: 999px;
  padding: 7px 10px;
  background: #111111;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reference-card h3 {
  margin: 0;
  color: #111111;
  font-size: 1.35rem;
  line-height: 1.18;
}

.reference-card summary p {
  margin: 12px 0 0;
  color: #596371;
  font-size: 0.95rem;
  line-height: 1.45;
}

.reference-card blockquote {
  border-top: 1px solid var(--line-dark);
  margin: 0;
  padding: 0 24px 24px;
}

.reference-card blockquote p {
  margin: 14px 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.hosted-section {
  background:
    linear-gradient(135deg, rgba(238, 27, 45, 0.11), transparent 34%),
    #12151a;
  color: #ffffff;
}

.hosted-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.74fr);
  gap: 46px;
  align-items: start;
}

.hosted-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 30px;
  box-shadow: var(--shadow);
}

.hosted-panel p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

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

.hosted-list div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.42);
  padding: 20px;
}

.hosted-list strong {
  display: block;
  color: #ffffff;
  font-size: 1.22rem;
}

.hosted-list span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.process-section {
  background: #ffffff;
  color: #111111;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-line article {
  min-height: 210px;
  padding: 24px;
  border-left: 1px solid var(--line-dark);
  background: #f7f7f5;
}

.process-line article:first-child {
  border-left: 0;
}

.process-line span {
  display: block;
  color: #111111;
  font-weight: 900;
}

.service-request-section {
  background: #eef0ed;
  color: #111111;
}

.request-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(420px, 0.96fr);
  gap: 52px;
  align-items: start;
}

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

.request-copy p {
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.security-note {
  border-left: 4px solid var(--red);
  padding: 14px 16px;
  background: #ffffff;
  color: #313741 !important;
  font-weight: 800;
}

.service-form {
  background: #ffffff;
}

.check-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 4px 0 18px;
  color: #252b33;
  font-size: 0.95rem;
  font-weight: 800;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--red);
}

.contact-section {
  background:
    linear-gradient(rgba(8, 9, 11, 0.89), rgba(8, 9, 11, 0.94)),
    url("/assets/hero-security-operations.png");
  background-position: center;
  background-size: cover;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: 58px;
  align-items: start;
}

.contact-copy p {
  max-width: 650px;
}

.contact-grid {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-grid a,
.contact-grid address {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-grid strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 1.08rem;
}

.emergency-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.emergency-note a {
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-line {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

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

.form-line label {
  color: #22262c;
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  background: #08090b;
  border-top: 1px solid var(--line);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(160px, 0.45fr) minmax(210px, 0.55fr);
  gap: 34px;
  padding: 42px 0 26px;
}

.footer-brand img {
  width: 270px;
  border-radius: 6px;
  background: #ffffff;
  padding: 8px 10px;
}

.footer-brand span {
  display: inline-block;
  margin-top: 14px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-shell nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-shell a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer-shell a:hover,
.footer-shell a:focus-visible {
  color: #ffffff;
}

.footer-contact span,
.trademark-notice,
.copyright {
  color: rgba(255, 255, 255, 0.52);
}

.trademark-notice {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 0;
}

.trademark-notice p {
  max-width: 1040px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.6;
}

.copyright {
  padding: 14px 0 28px;
  font-size: 0.92rem;
}

.legal-page {
  background: var(--paper);
  color: #111111;
}

.legal-page .site-header {
  position: sticky;
}

.legal-nav {
  justify-content: center;
}

.legal-hero {
  padding-top: 138px;
  background:
    linear-gradient(120deg, rgba(8, 9, 11, 0.94), rgba(8, 9, 11, 0.78)),
    url("/assets/hero-security-operations.png");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.legal-shell {
  max-width: 920px;
}

.legal-shell h1 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.legal-shell p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.legal-content-section {
  background: var(--paper);
}

.legal-content {
  display: grid;
  gap: 16px;
  max-width: 960px;
}

.legal-content article {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 28px;
}

.legal-content h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.05;
}

.legal-content p {
  margin: 16px 0 0;
  color: #4b535e;
}

.legal-content a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.store-page {
  background: #f4f6f7;
  color: #111111;
}

.store-main {
  background: #f4f6f7;
}

.store-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
}

.store-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.94), rgba(8, 9, 11, 0.7) 42%, rgba(8, 9, 11, 0.24)),
    linear-gradient(0deg, rgba(8, 9, 11, 0.74), rgba(8, 9, 11, 0.14)),
    url("/assets/service-van.jpg") center / cover no-repeat;
}

.store-hero-shell {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
  gap: 52px;
  align-items: end;
  padding: 126px 0 54px;
}

.store-hero-copy h1 {
  max-width: 920px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.store-hero-copy p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

.store-quick-panel {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.store-quick-panel a {
  display: grid;
  gap: 5px;
  min-height: 118px;
  align-content: center;
  padding: 20px;
  background: rgba(12, 14, 18, 0.78);
}

.store-quick-panel a:hover,
.store-quick-panel a:focus-visible {
  background: rgba(238, 27, 45, 0.18);
}

.store-quick-panel strong {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.1;
}

.store-quick-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.store-section {
  background: #f4f6f7;
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.36fr);
  gap: 28px;
  align-items: start;
}

.store-title-row {
  margin-bottom: 28px;
}

.store-title-row h2,
.credential-shell h2,
.payment-shell h2,
.store-side-panel h2 {
  color: #111111;
}

.store-title-row p,
.credential-shell p,
.payment-shell p {
  color: #515a66;
}

.store-toolbar {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.store-flow-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #d6dbe2;
  border-radius: var(--radius);
  margin: 0 0 28px;
  overflow: hidden;
  background: #d6dbe2;
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.06);
}

.store-flow-strip article {
  display: grid;
  gap: 5px;
  align-content: start;
  min-height: 118px;
  background: #ffffff;
  padding: 16px;
}

.store-flow-strip span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--black);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

.store-flow-strip strong {
  color: #111111;
  font-size: 1.05rem;
  line-height: 1.1;
}

.store-flow-strip em {
  color: #596371;
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.store-results-bar {
  margin: -6px 0 18px;
  color: #596371;
  font-size: 0.9rem;
  font-weight: 800;
}

.store-results-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  border: 1px solid #d6dbe2;
  border-radius: var(--radius);
  margin: 0 0 18px;
  padding: 16px 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.06);
}

.store-results-panel h3,
.store-results-panel p {
  margin: 0;
}

.store-results-panel h3 {
  color: #111111;
  font-size: 1.28rem;
  line-height: 1.1;
}

.store-results-panel p:not(.eyebrow) {
  margin-top: 6px;
  color: #596371;
  font-weight: 700;
}

.store-results-panel .button[hidden] {
  display: none;
}

.store-search input {
  min-height: 54px;
  border-color: #b9c0c9;
  background: #ffffff;
  font-weight: 700;
}

.store-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-sort {
  display: grid;
  grid-template-columns: auto minmax(180px, 240px);
  gap: 10px;
  align-items: center;
  justify-content: end;
}

.store-sort span {
  color: #596371;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-sort select {
  min-height: 40px;
  border: 1px solid #c8ced6;
  border-radius: 6px;
  background: #ffffff;
  color: #20242b;
  padding: 0 12px;
  font-weight: 900;
}

.store-filter {
  min-height: 40px;
  border: 1px solid #c8ced6;
  border-radius: 999px;
  background: #ffffff;
  color: #20242b;
  padding: 0 15px;
  font-weight: 900;
  cursor: pointer;
}

.store-filter.is-active,
.store-filter:hover,
.store-filter:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
}

.store-category-panel {
  margin-bottom: 28px;
}

.store-featured-panel {
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(238, 32, 56, 0.24);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.08);
}

.store-featured-panel[hidden] {
  display: none;
}

.store-category-panel[hidden] {
  display: none;
}

.store-category-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 14px;
}

.store-category-heading h3,
.store-category-heading p {
  margin: 0;
}

.store-category-heading h3 {
  color: #111111;
  font-size: 1.45rem;
  line-height: 1.08;
}

.store-category-heading p {
  color: #596371;
  font-weight: 700;
}

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

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

.store-category-card {
  min-width: 0;
}

.store-category-card button {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  min-height: 138px;
  border: 1px solid #d6dbe2;
  border-radius: var(--radius);
  background: #ffffff;
  color: inherit;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.07);
}

.store-category-card button:hover,
.store-category-card button:focus-visible {
  border-color: var(--red);
  transform: translateY(-1px);
}

.store-category-thumb {
  display: grid;
  place-items: center;
  min-height: 112px;
  border-radius: calc(var(--radius) - 2px);
  background: #11151a;
  overflow: hidden;
}

.store-category-thumb img {
  width: 100%;
  height: 106px;
  object-fit: contain;
  padding: 8px;
}

.store-category-card-body {
  display: grid;
  gap: 7px;
  align-content: start;
  min-width: 0;
}

.store-category-card-body strong {
  color: #111111;
  font-size: 1.08rem;
  line-height: 1.1;
}

.store-category-card-body > span:not(.store-category) {
  color: #596371;
  font-size: 0.88rem;
  line-height: 1.35;
}

.store-category-card-body em {
  align-self: end;
  color: var(--red);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.store-category-card.is-empty .store-category-card-body em {
  color: #68717d;
}

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

.store-product-card,
.store-side-panel,
.credential-form,
.payment-form {
  border: 1px solid #d6dbe2;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
}

.store-product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  overflow: hidden;
}

.store-product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 178px;
  background:
    linear-gradient(135deg, rgba(238, 27, 45, 0.08), transparent 44%),
    #11151a;
  padding: 18px;
}

.store-featured-label {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 6px 9px;
  text-transform: uppercase;
}

.store-product-media img {
  width: 100%;
  height: 146px;
  object-fit: contain;
}

.store-product-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.store-product-topline {
  display: flex;
  gap: 10px;
  align-items: start;
  justify-content: space-between;
}

.store-category {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-product-status {
  display: inline-grid;
  gap: 2px;
  min-width: 118px;
  border: 1px solid #d2d9e3;
  border-radius: 6px;
  background: #ffffff;
  padding: 6px 8px;
  text-align: right;
}

.store-product-status strong,
.store-product-status em {
  display: block;
  line-height: 1.05;
}

.store-product-status strong {
  color: #111111;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-product-status em {
  color: #68717d;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
}

.store-product-status.is-ready {
  border-color: rgba(31, 122, 77, 0.3);
  background: #f0faf5;
}

.store-product-status.is-ready strong {
  color: #17613b;
}

.store-product-status.is-review,
.store-product-status.is-restricted,
.store-product-status.is-details {
  border-color: rgba(238, 27, 45, 0.22);
  background: #fff7f8;
}

.store-product-status.is-review strong,
.store-product-status.is-restricted strong,
.store-product-status.is-details strong {
  color: #b81428;
}

.store-product-status.is-quote {
  border-color: #d2d9e3;
  background: #f8fafc;
}

.store-product-card h3 {
  margin: 0;
  color: #111111;
  font-size: 1.38rem;
  line-height: 1.06;
}

.store-product-card p {
  margin: 0;
  color: #596371;
}

.store-product-meta {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 8px;
}

.store-product-meta span {
  display: grid;
  gap: 2px;
  min-width: 0;
  border: 1px solid #dce1e7;
  border-radius: 6px;
  background: #f8f9fa;
  padding: 8px 9px;
  color: #1c2128;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.store-product-meta b {
  color: #7b8490;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-product-card .store-requirement {
  border-left: 3px solid var(--red);
  background: #fff4f5;
  color: #313842;
  padding: 10px 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.store-product-card dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.store-product-card dl div {
  display: grid;
  gap: 2px;
}

.store-product-card dt {
  color: #7b8490;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-product-card dd {
  margin: 0;
  color: #1c2128;
  font-weight: 800;
  line-height: 1.25;
}

.store-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.store-tags span {
  border-radius: 999px;
  background: #edf0f3;
  color: #49515d;
  padding: 5px 8px;
  font-size: 0.75rem;
  font-weight: 900;
}

.store-price-row,
.store-price-note {
  display: grid;
  gap: 3px;
  border: 1px solid #dce1e7;
  border-radius: var(--radius);
  background: #f8f9fa;
  padding: 12px;
}

.store-price-row strong,
.store-price-note strong {
  color: #111111;
  font-size: 1.35rem;
  line-height: 1;
}

.store-price-row span,
.store-price-note span {
  color: #68717d;
  font-size: 0.82rem;
  font-weight: 800;
}

.store-price-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.store-price-meta em {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid #d2d9e3;
  border-radius: 999px;
  background: #ffffff;
  color: #334155;
  padding: 3px 7px;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.store-msrp {
  text-decoration: line-through;
}

.store-product-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 0 20px 20px;
}

.store-product-actions .button {
  width: 100%;
}

.store-product-action-stack {
  display: grid;
  gap: 8px;
}

.store-product-actions .store-product-action-stack:only-child {
  grid-column: 1 / -1;
}

.store-product-actions .button.is-added {
  background: #111111;
  border-color: #111111;
}

.store-product-actions .button:only-child {
  grid-column: 1 / -1;
}

.store-card-qty {
  display: grid;
  gap: 4px;
}

.store-card-qty span {
  color: #68717d;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-card-qty input {
  min-height: 44px;
  border: 1px solid #cfd5dd;
  border-radius: 6px;
  padding: 0 10px;
  font-weight: 900;
}

body.product-detail-open {
  overflow: hidden;
}

.store-detail-modal[hidden] {
  display: none;
}

.store-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.store-detail-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 12, 18, 0.62);
}

.store-detail-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(860px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid #d8dee7;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(8, 12, 18, 0.34);
}

.store-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #d8dee7;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-weight: 900;
  cursor: pointer;
}

.store-detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
}

.store-detail-media {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 34px;
  border-right: 1px solid #e2e8f0;
  background:
    linear-gradient(135deg, rgba(238, 27, 45, 0.07), transparent 46%),
    #f8fafc;
}

.store-detail-media img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.store-detail-main {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 34px;
}

.store-detail-main h2 {
  margin: 0;
  max-width: 780px;
  color: #111111;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.store-detail-description {
  margin: 0;
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.55;
}

.store-detail-path {
  align-items: stretch;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-detail-path span {
  align-items: center;
  background: #111318;
  border: 1px solid #252b34;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  gap: 9px;
  min-height: 48px;
  padding: 9px 10px;
}

.store-detail-path strong {
  align-items: center;
  background: #ee2038;
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 26px;
  font-size: .78rem;
  height: 26px;
  justify-content: center;
}

.store-detail-path em {
  font-style: normal;
  font-weight: 850;
  line-height: 1.15;
}

.store-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.store-detail-specs div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fbfcfd;
}

.store-detail-specs dt {
  color: #6b7280;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-detail-specs dd {
  margin: 0;
  color: #111827;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.store-detail-tags {
  display: grid;
  gap: 10px;
}

.store-detail-tags div {
  display: grid;
  gap: 6px;
}

.store-detail-tags strong {
  color: #374151;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-detail-tags span {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.store-detail-tags span span {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid #dce3ec;
  border-radius: 999px;
  background: #f3f6fa;
  color: #374151;
  font-size: 0.78rem;
  font-weight: 800;
}

.store-detail-actions {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: end;
  padding-top: 4px;
}

.store-detail-actions .button {
  width: 100%;
}

.store-detail-qty {
  display: grid;
  gap: 5px;
}

.store-detail-qty span {
  color: #4b5563;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-detail-qty input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfd5dd;
  border-radius: 6px;
  padding: 0 10px;
  font-weight: 900;
}

.store-load-more {
  display: flex;
  justify-content: center;
  padding-top: 22px;
}

.store-load-more[hidden] {
  display: none;
}

.store-sidebar {
  position: sticky;
  top: 102px;
  align-self: start;
}

.store-side-panel {
  position: relative;
  max-height: calc(100vh - 126px);
  max-height: calc(100dvh - 126px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px;
  scrollbar-gutter: stable;
}

.store-side-panel h2 {
  margin: 0 0 18px;
  font-size: 2.2rem;
  line-height: 0.98;
}

.cart-drawer-close {
  display: none;
}

.cart-account-note {
  display: grid;
  gap: 6px;
  border: 1px solid #dce1e7;
  border-radius: var(--radius);
  margin: 0 0 16px;
  padding: 12px;
  background: #f8f9fa;
}

.cart-account-note strong {
  color: #111111;
  line-height: 1.2;
}

.cart-account-note span {
  color: #596371;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.cart-account-note a {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-path-panel {
  display: grid;
  gap: 12px;
  border: 1px solid #dce1e7;
  border-radius: var(--radius);
  margin: 0 0 16px;
  padding: 12px;
  background: #ffffff;
}

.cart-path-head {
  display: grid;
  gap: 4px;
}

.cart-path-head strong {
  color: #111111;
  line-height: 1.2;
}

.cart-path-head span {
  color: #596371;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.cart-path-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-path-steps li {
  display: grid;
  gap: 5px;
  justify-items: center;
  border: 1px solid #d8dee7;
  border-radius: 6px;
  background: #f8fafc;
  padding: 8px 6px;
  color: #68717d;
  text-align: center;
}

.cart-path-steps span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #dfe5ed;
  color: #334155;
  font-size: 0.76rem;
  font-weight: 900;
}

.cart-path-steps strong {
  color: inherit;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
}

.cart-path-steps li.is-active {
  border-color: rgba(238, 27, 45, 0.44);
  background: #fff7f8;
  color: #111111;
}

.cart-path-steps li.is-active span {
  background: var(--red);
  color: #ffffff;
}

.cart-path-steps li.is-complete {
  border-color: #c9d6e4;
  background: #eef5f1;
  color: #163f2a;
}

.cart-path-steps li.is-complete span {
  background: #1f7a4d;
  color: #ffffff;
}

.cart-list {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.cart-empty,
.store-empty {
  border: 1px dashed #bfc6cf;
  border-radius: var(--radius);
  margin: 0;
  padding: 18px;
  background: #f8f9fa;
  color: #606976;
  font-weight: 700;
}

.store-empty {
  grid-column: 1 / -1;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  border: 1px solid #dce1e7;
  border-radius: var(--radius);
  padding: 12px;
  background: #f8f9fa;
}

.cart-item.is-purchase {
  border-color: rgba(238, 27, 45, 0.28);
  background: #fff8f9;
}

.cart-item strong,
.cart-item span,
.cart-item p {
  display: block;
}

.cart-item strong {
  color: #161a20;
  line-height: 1.2;
}

.cart-item span,
.cart-item p {
  margin: 4px 0 0;
  color: #5c6571;
  font-size: 0.85rem;
}

.cart-item-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 96px;
}

.cart-item-actions > strong {
  color: #111111;
  font-size: 1rem;
}

.cart-qty {
  display: inline-grid;
  grid-template-columns: 28px 34px 28px;
  align-items: center;
  border: 1px solid #cfd5dd;
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
}

.cart-qty span {
  margin: 0;
  color: #111111;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 900;
}

.cart-qty button {
  min-height: 28px;
  border: 0;
  background: #ffffff;
  color: #111111;
  font-weight: 900;
  cursor: pointer;
}

.cart-qty button:hover,
.cart-qty button:focus-visible {
  background: #edf0f3;
}

.cart-item-actions > button {
  border: 0;
  background: transparent;
  color: var(--red);
  padding: 0;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.cart-summary {
  display: grid;
  gap: 9px;
  border: 1px solid #dce1e7;
  border-radius: var(--radius);
  margin-bottom: 18px;
  padding: 14px;
  background: #f8f9fa;
}

.cart-summary[hidden] {
  display: none;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #48515e;
  font-size: 0.92rem;
  font-weight: 800;
}

.cart-summary strong {
  color: #111111;
}

.cart-summary .cart-total-row {
  border-top: 1px solid #dce1e7;
  margin-top: 3px;
  padding-top: 10px;
  color: #111111;
  font-size: 1.08rem;
}

.cart-summary p {
  margin: 4px 0 0;
  color: #68717d;
  font-size: 0.82rem;
}

.cart-checkout-box {
  display: grid;
  gap: 8px;
}

.cart-form-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
}

.cart-floating-summary {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 14px;
  align-items: center;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  padding: 0 18px;
  box-shadow: 0 18px 46px rgba(8, 9, 11, 0.32);
  cursor: pointer;
}

.cart-floating-summary[hidden] {
  display: none;
}

body.cart-drawer-open .cart-floating-summary {
  display: none;
}

.cart-floating-summary span,
.cart-floating-summary strong,
.cart-floating-summary em {
  display: block;
  line-height: 1;
}

.cart-floating-summary span {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-floating-summary strong {
  font-size: 1.1rem;
}

.cart-floating-summary em {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 14px;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-drawer-scrim {
  display: none;
}

.cart-toast {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 72;
  max-width: min(420px, calc(100vw - 44px));
  border: 1px solid rgba(238, 32, 56, 0.32);
  border-radius: var(--radius);
  background: #111318;
  color: #ffffff;
  padding: 14px 16px;
  box-shadow: 0 18px 46px rgba(8, 9, 11, 0.28);
  font-weight: 900;
}

.cart-toast[hidden] {
  display: none;
}

@media (min-width: 1121px) {
  .cart-floating-summary {
    display: none;
  }
}

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

.store-form label {
  display: block;
  margin-bottom: 6px;
  color: #303640;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-form .button {
  width: 100%;
}

.credential-section {
  background: #ffffff;
}

.credential-shell,
.payment-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: 54px;
  align-items: start;
}

.credential-form,
.payment-form {
  padding: 24px;
}

.saved-profile-picker {
  border: 1px solid #dce1e7;
  border-radius: var(--radius);
  background: #f8f9fa;
  padding: 14px;
}

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

.payment-section {
  background:
    linear-gradient(135deg, rgba(238, 27, 45, 0.07), transparent 34%),
    #eef1f4;
}

.account-section {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(238, 27, 45, 0.07), transparent 34%),
    #f4f6f7;
  padding-top: 150px;
}

.account-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: 54px;
  align-items: start;
}

.account-copy h1 {
  margin: 0;
  color: #111111;
  font-size: clamp(3.4rem, 6vw, 5.7rem);
  line-height: 0.96;
}

.account-copy p {
  color: #515a66;
  font-size: 1.08rem;
}

.account-notes {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.account-notes div,
.account-form {
  border: 1px solid #d6dbe2;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
}

.account-notes div {
  padding: 18px;
}

.account-notes strong,
.account-notes span {
  display: block;
}

.account-notes strong {
  color: #111111;
  font-size: 1.1rem;
}

.account-notes span {
  margin-top: 6px;
  color: #596371;
}

.account-stack {
  display: grid;
  gap: 18px;
}

.account-form {
  padding: 24px;
}

.account-info-card {
  display: grid;
  gap: 16px;
}

.account-info-card p {
  margin: 0;
  color: #596371;
  font-weight: 700;
}

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

.account-form h2 {
  margin: 0;
  color: #111111;
  font-size: 2rem;
}

.account-form h3 {
  margin: 0;
  color: #111111;
  font-size: 1.35rem;
}

.account-dashboard {
  display: grid;
  gap: 18px;
}

.account-setup {
  order: -1;
}

.account-dashboard[hidden],
.account-signin[hidden],
.account-setup[hidden] {
  display: none;
}

.account-dashboard-head,
.panel-title-row,
.account-list-row {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.account-dashboard-head .button {
  min-height: 42px;
  padding: 0 18px;
}

.account-profile-form,
.credential-profile-form,
.account-signin .store-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

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

.account-mini-panel {
  border: 1px solid #d6dbe2;
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
  padding: 16px;
}

.panel-title-row h3 {
  margin: 0;
}

.panel-title-row a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.account-list {
  display: grid;
  gap: 10px;
}

.account-list-row {
  align-items: start;
  background: #f7f8fa;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  padding: 12px;
}

.account-list-row strong,
.account-list-row span,
.account-list-row small,
.account-list-row b {
  display: block;
}

.account-list-row span,
.account-list-row small {
  color: #596371;
  margin-top: 4px;
}

.account-list-row a,
.account-list-row button {
  color: var(--red);
  font-weight: 900;
}

.account-list-row button {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px 0;
  text-align: right;
}

.account-order-detail {
  gap: 16px;
}

.account-order-detail[hidden] {
  display: none;
}

.account-order-detail-head {
  align-items: start;
  border-bottom: 1px solid #e0e4ea;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding-bottom: 14px;
}

.account-order-detail-head h3 {
  margin: 0;
  font-size: 1.75rem;
}

.account-order-detail-head span,
.account-order-item span,
.account-order-item p,
.account-order-item small {
  color: #596371;
}

.account-order-detail-actions {
  display: flex;
  justify-content: flex-end;
}

.account-order-detail-actions .button {
  min-height: 42px;
  padding: 0 16px;
}

.account-order-money {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.account-order-money div {
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  background: #f7f8fa;
  display: grid;
  gap: 4px;
  padding: 10px;
}

.account-order-money span {
  color: #68717d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account-order-money strong {
  color: #111111;
}

.account-order-timeline {
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 14px;
}

.timeline-heading h4,
.timeline-heading p,
.timeline-heading span {
  margin: 0;
}

.timeline-heading h4 {
  font-size: 1rem;
}

.timeline-heading span {
  color: #596371;
  display: block;
  margin-top: 5px;
}

.account-order-timeline ol {
  counter-reset: order-step;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.account-order-timeline li {
  background: #f7f8fa;
  border: 1px solid #e0e4ea;
  border-top: 4px solid #cbd3dd;
  border-radius: 8px;
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 10px;
}

.account-order-timeline li.is-done {
  border-top-color: #198754;
}

.account-order-timeline li.is-current {
  background: #fff7f8;
  border-color: #f0b8c0;
  border-top-color: var(--red);
}

.timeline-dot {
  align-items: center;
  background: #cbd3dd;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.timeline-dot::before {
  counter-increment: order-step;
  content: counter(order-step);
}

.account-order-timeline li.is-done .timeline-dot {
  background: #198754;
}

.account-order-timeline li.is-current .timeline-dot {
  background: var(--red);
}

.account-order-timeline strong,
.account-order-timeline p,
.account-order-timeline small {
  display: block;
}

.account-order-timeline strong {
  color: #111111;
  font-size: 0.88rem;
}

.account-order-timeline p {
  color: #596371;
  font-size: 0.82rem;
  line-height: 1.35;
  margin: 4px 0 0;
}

.account-order-timeline small {
  color: #111111;
  font-size: 0.72rem;
  font-weight: 900;
  margin-top: 6px;
}

.account-fulfillment-box {
  background: #f7f8fa;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.account-fulfillment-box h4,
.account-fulfillment-box p {
  margin: 0;
}

.account-fulfillment-box h4 {
  font-size: 1rem;
}

.account-fulfillment-box > p {
  color: #596371;
}

.account-fulfillment-box dl {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.account-fulfillment-box dl div {
  background: #ffffff;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  padding: 10px;
}

.account-fulfillment-box dt {
  color: #68717d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account-fulfillment-box dd {
  color: #111111;
  font-weight: 800;
  margin: 4px 0 0;
}

.account-fulfillment-box a {
  color: var(--red);
}

.account-fulfillment-chip {
  align-self: start;
  background: #fff7f8;
  border: 1px solid #f0b8c0;
  border-radius: 999px;
  color: var(--red);
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 900;
  margin-top: 7px;
  padding: 3px 8px;
}

.account-order-items {
  display: grid;
  gap: 10px;
}

.account-order-item {
  align-items: start;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  background: #f7f8fa;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) 128px;
  padding: 12px;
}

.account-order-item > div:last-child {
  text-align: right;
}

.account-order-item strong,
.account-order-item b,
.account-order-item small {
  display: block;
}

.account-order-credential {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 10px 0 0;
}

.account-order-credential div {
  border: 1px solid #dce1e7;
  border-radius: 6px;
  background: #ffffff;
  padding: 8px;
}

.account-order-credential dt {
  color: #68717d;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account-order-credential dd {
  margin: 4px 0 0;
  color: #111111;
  font-size: 0.86rem;
  font-weight: 800;
}

.compact-form {
  border-top: 1px solid #e0e4ea;
  margin-top: 18px;
  padding-top: 18px;
}

.inline-form-row {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.payment-actions {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.paypal-box {
  min-height: 56px;
}

.paypal-box .form-status {
  margin: 8px 0 0;
}

.order-pay-section {
  min-height: 760px;
  padding-top: 150px;
  background:
    linear-gradient(135deg, rgba(8, 9, 11, 0.94), rgba(8, 9, 11, 0.76)),
    url("/assets/service-van.jpg") center / cover no-repeat;
}

.order-pay-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.52fr);
  gap: 44px;
  align-items: start;
}

.order-pay-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
}

.order-pay-copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
}

.order-pay-card {
  display: grid;
  gap: 18px;
  border: 1px solid #d6dbe2;
  border-radius: var(--radius);
  background: #ffffff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.order-pay-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.order-pay-heading h2 {
  margin: 0;
  color: #111111;
  font-size: 2rem;
}

.order-pay-heading p {
  margin: 6px 0 0;
  color: #596371;
}

.order-pay-heading > strong {
  color: var(--red);
  font-size: 1.8rem;
  white-space: nowrap;
}

.order-pay-items {
  display: grid;
  gap: 10px;
}

.order-pay-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  border: 1px solid #dce1e7;
  border-radius: var(--radius);
  background: #f8f9fa;
  padding: 12px;
}

.order-pay-item strong,
.order-pay-item span {
  display: block;
}

.order-pay-item span {
  color: #68717d;
  font-size: 0.85rem;
  font-weight: 800;
}

.order-pay-item > div:last-child {
  text-align: right;
}

.order-pay-totals {
  display: grid;
  gap: 8px;
  border-top: 1px solid #dce1e7;
  margin: 0;
  padding-top: 14px;
}

.order-pay-totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.order-pay-totals dt,
.order-pay-totals dd {
  margin: 0;
  color: #48515e;
  font-weight: 800;
}

.order-pay-totals .is-total {
  border-top: 1px solid #dce1e7;
  padding-top: 10px;
}

.order-pay-totals .is-total dt,
.order-pay-totals .is-total dd {
  color: #111111;
  font-size: 1.2rem;
}

.order-pay-actions {
  display: grid;
  gap: 10px;
}

.order-pay-note {
  border: 1px solid rgba(184, 20, 40, 0.22);
  border-radius: var(--radius);
  background: rgba(184, 20, 40, 0.06);
  margin: 0;
  padding: 11px 12px;
  color: #4f5966;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #4f5966;
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status.is-error {
  color: #b81428;
}

@media (max-width: 1120px) {
  .header-shell {
    grid-template-columns: 265px auto auto;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 9, 11, 0.98);
    padding: 14px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 13px 8px;
  }

  .mobile-nav-only {
    display: block;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    padding-bottom: 12px;
  }

  .hero-shell,
  .split-layout,
  .project-shell,
  .field-shell,
  .hosted-shell,
  .coverage-shell,
  .reach-map-wrap,
  .request-shell,
  .contact-shell,
  .store-hero-shell,
  .store-layout,
  .credential-shell,
  .payment-shell,
  .account-shell {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    padding-top: 132px;
  }

  .hero-console {
    max-width: 620px;
  }

  .project-copy,
  .request-copy {
    position: static;
  }

  .status-shell,
  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .status-shell span:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

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

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

  .section-title-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .store-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 91;
    width: min(430px, calc(100vw - 28px));
    transform: translateX(calc(100% + 28px));
    transition: transform 180ms ease;
    pointer-events: none;
  }

  body.cart-drawer-open {
    overflow: hidden;
  }

  body.cart-drawer-open .store-sidebar {
    transform: translateX(0);
    pointer-events: auto;
  }

  .store-side-panel {
    height: 100%;
    max-height: none;
    overflow-y: auto;
    border-radius: 0;
    padding-top: 58px;
    scrollbar-gutter: stable;
  }

  .cart-drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #cfd5dd;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-weight: 900;
    cursor: pointer;
  }

  .cart-drawer-scrim {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    border: 0;
    background: rgba(8, 9, 11, 0.52);
  }

  body.cart-drawer-open .cart-drawer-scrim {
    display: block;
  }

  .store-hero-shell {
    align-items: end;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-shell {
    width: min(calc(100% - 24px), var(--max));
    min-height: 70px;
    grid-template-columns: minmax(190px, 1fr) auto;
    gap: 12px;
  }

  .brand {
    width: min(255px, 70vw);
    gap: 7px;
  }

  .brand-mark {
    flex-basis: 82px;
    padding-right: 7px;
  }

  .brand-mark img {
    width: 74px;
    height: 40px;
  }

  .primary-nav {
    top: 70px;
    right: 12px;
    left: 12px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-shell {
    padding: 108px 0 210px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12.5vw, 4.15rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-console {
    display: none;
  }

  .status-shell,
  .system-board,
  .capability-matrix,
  .project-gallery,
  .coverage-map,
  .reach-lists,
  .process-line,
  .reference-grid,
  .field-points,
  .form-split,
  .footer-shell,
  .store-category-heading,
  .store-category-grid,
  .store-featured-grid,
  .store-results-panel,
  .store-grid,
  .store-mini-grid,
  .payment-actions,
  .order-pay-shell {
    grid-template-columns: 1fr;
  }

  .status-shell span {
    min-height: 46px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 72px 0;
  }

  .system-card,
  .capability-matrix article,
  .project-photo,
  .project-photo.large,
  .reference-card,
  .process-line article {
    min-height: auto;
  }

  .project-photo,
  .project-photo.large {
    aspect-ratio: 1.1 / 1;
  }

  .reach-map {
    width: 100%;
    height: 320px;
    min-height: 0;
    aspect-ratio: auto;
  }

  .map-pin span {
    max-width: 150px;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .field-photo img {
    aspect-ratio: 1.06 / 1;
  }

  .contact-form {
    padding: 20px;
  }

  .store-hero {
    min-height: auto;
  }

  .store-hero-shell {
    min-height: auto;
    gap: 24px;
    padding: 108px 0 42px;
  }

  .store-hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .store-hero-copy p:last-child {
    margin-top: 16px;
    font-size: 1rem;
  }

  .store-quick-panel a {
    min-height: 78px;
    padding: 16px;
  }

  .store-flow-strip {
    grid-template-columns: 1fr;
  }

  .store-flow-strip article {
    min-height: auto;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: start;
  }

  .store-flow-strip article em {
    grid-column: 2;
  }

  .store-category-card button {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .store-category-thumb,
  .store-category-thumb img {
    min-height: 96px;
    height: 96px;
  }

  .store-product-media {
    min-height: 150px;
  }

  .credential-form,
  .payment-form,
  .store-side-panel {
    padding: 20px;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-actions {
    justify-items: start;
  }

  .cart-floating-summary {
    right: 14px;
    bottom: 14px;
    left: 14px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    border-radius: var(--radius);
    padding: 0 14px;
  }

  body.has-cart-float {
    padding-bottom: 82px;
  }

  .cart-toast {
    right: 14px;
    bottom: 86px;
    left: 14px;
    max-width: none;
  }

  .account-section {
    padding-top: 112px;
  }

  .account-copy h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .account-dashboard-head,
  .panel-title-row,
  .account-list-row,
  .account-order-detail-head {
    align-items: stretch;
    flex-direction: column;
  }

  .account-dashboard-grid,
  .inline-form-row,
  .account-order-money,
  .account-order-item,
  .account-order-timeline ol,
  .account-fulfillment-box dl,
  .account-order-credential {
    grid-template-columns: 1fr;
  }

  .account-order-timeline li {
    align-items: start;
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 0;
  }

  .account-order-item > div:last-child {
    text-align: left;
  }

  .account-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.65rem;
  }

  .console-top strong {
    font-size: 3.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Enterprise operations utility trial - 2026-05-30.
   Rollback: restore App_Data/rollback/20260530-enterprise-ops-trial or remove this block. */
:root {
  --ops-ink: #111827;
  --ops-muted: #5b6472;
  --ops-soft: #f3f6f9;
  --ops-paper: #ffffff;
  --ops-line: #d8dee7;
  --ops-line-strong: #b9c2cf;
  --ops-panel-dark: #111827;
  --ops-panel-dark-2: #1f2937;
  --ops-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

body {
  background: var(--ops-soft);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--ops-line);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  color: var(--ops-ink);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.brand {
  border: 1px solid #e0e5ed;
  box-shadow: none;
}

.primary-nav,
.login-link {
  color: #475569;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.login-link:hover,
.login-link:focus-visible {
  color: var(--ops-ink);
}

.call-link {
  border-color: #d4dae3;
  background: #f8fafc;
  color: var(--ops-ink);
}

.nav-toggle {
  border-color: #d4dae3;
  background: #f8fafc;
}

.nav-toggle span:not(.sr-only) {
  background: var(--ops-ink);
}

.hero,
.store-hero {
  min-height: auto;
  background: linear-gradient(135deg, #111827 0%, #182231 54%, #263241 100%);
}

.hero-media,
.store-hero-media {
  opacity: 0.28;
  filter: saturate(0.7) contrast(1.05);
}

.hero-grid {
  background-size: 56px 56px;
  opacity: 0.45;
}

.hero-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.62fr);
  gap: 34px;
  padding: 132px 0 112px;
}

.store-hero-shell {
  min-height: 470px;
  align-items: end;
  padding: 128px 0 52px;
}

.hero h1,
.store-hero-copy h1 {
  font-size: clamp(2.75rem, 4.8vw, 4.7rem);
  line-height: 0.98;
}

.hero-copy p,
.store-hero-copy p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.hero-console,
.store-quick-panel {
  border-color: rgba(226, 232, 240, 0.18);
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.hero-console::before {
  background: var(--red);
}

.console-list {
  background: rgba(226, 232, 240, 0.12);
}

.console-list div,
.store-quick-panel a {
  background: rgba(17, 24, 39, 0.82);
}

.hero-status {
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--ops-line);
}

.status-shell span {
  min-height: 54px;
  border-left: 1px solid var(--ops-line);
  color: #334155;
}

.status-shell span:last-child {
  border-right: 1px solid var(--ops-line);
}

.section,
.store-section,
.account-section {
  background: var(--ops-soft);
  color: var(--ops-ink);
}

.section {
  padding: 78px 0;
}

.section h2,
.store-title-row h2,
.credential-shell h2,
.payment-shell h2,
.account-copy h1 {
  color: var(--ops-ink);
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 1.02;
}

.section p,
.store-title-row p,
.credential-shell p,
.payment-shell p,
.account-copy p {
  color: var(--ops-muted);
}

.eyebrow {
  color: #c5162a;
  letter-spacing: 0.12em;
}

.button,
.store-filter,
.cart-floating-summary {
  border-radius: 6px;
}

.button-clear.dark,
.store-filter,
.store-search input,
input,
select,
textarea {
  border-color: var(--ops-line-strong);
}

.system-card,
.capability-matrix article,
.reach-lists div,
.reference-card,
.process-line article,
.store-flow-strip,
.store-results-panel,
.store-featured-panel,
.store-category-card button,
.store-product-card,
.store-side-panel,
.credential-form,
.payment-form,
.order-pay-card,
.account-panel,
.account-dashboard-card,
.account-list-panel,
.account-detail-panel {
  border: 1px solid var(--ops-line);
  border-radius: 6px;
  box-shadow: var(--ops-shadow);
}

.system-card,
.capability-matrix article,
.reach-lists div,
.reference-card,
.process-line article,
.store-results-panel,
.store-featured-panel,
.store-category-card button,
.store-product-card,
.store-side-panel,
.credential-form,
.payment-form,
.order-pay-card,
.account-panel,
.account-dashboard-card,
.account-list-panel,
.account-detail-panel {
  background: var(--ops-paper);
}

.system-card h3,
.capability-matrix h3,
.reference-card h3,
.store-results-panel h3,
.store-category-heading h3,
.store-category-card-body strong,
.store-product-card h3,
.store-product-card dd,
.store-side-panel h2,
.cart-item strong,
.cart-summary strong,
.order-pay-heading h2,
.account-panel h2,
.account-dashboard-card h3 {
  color: var(--ops-ink);
}

.store-flow-strip {
  background: var(--ops-line);
}

.store-flow-strip article {
  min-height: 104px;
}

.store-flow-strip span {
  border-radius: 6px;
  background: var(--ops-panel-dark);
}

.store-category-thumb,
.store-product-media {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.store-product-media {
  min-height: 164px;
}

.store-product-media img {
  height: 132px;
}

.store-product-body {
  padding: 18px;
}

.store-product-actions {
  padding: 0 18px 18px;
}

.store-tags span,
.cart-account-note,
.cart-summary,
.cart-item,
.store-price-row,
.store-price-note {
  background: #f8fafc;
}

.cart-item.is-purchase {
  background: #fff7f8;
}

.store-sidebar {
  top: 94px;
}

.store-side-panel {
  max-height: calc(100vh - 112px);
  max-height: calc(100dvh - 112px);
}

.cart-floating-summary {
  background: var(--ops-panel-dark);
}

.site-footer {
  background: #0f172a;
}

@media (max-width: 1120px) {
  .primary-nav {
    border-color: var(--ops-line);
    background: #ffffff;
    box-shadow: var(--ops-shadow);
  }

  .primary-nav a {
    color: #334155;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    padding-top: 128px;
  }

  .store-sidebar {
    top: 0;
  }

  .store-side-panel {
    max-height: none;
  }
}

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

  .hero-shell {
    padding: 108px 0 188px;
  }

  .hero h1,
  .store-hero-copy h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.7rem);
  }

  .section {
    padding: 62px 0;
  }

  .status-shell span {
    border-color: var(--ops-line);
  }
}

/* Enterprise contrast hotfix - 2026-05-30.
   Keeps the enterprise trial while restoring dark-section contrast. */
.project-section,
.coverage-section,
.contact-section,
.legal-hero,
.order-pay-section {
  color: #ffffff;
}

.project-section,
.coverage-section {
  background: #101216;
}

.contact-section {
  background:
    linear-gradient(rgba(8, 9, 11, 0.89), rgba(8, 9, 11, 0.94)),
    url("/assets/hero-security-operations.png");
  background-position: center;
  background-size: cover;
}

.legal-hero {
  background:
    linear-gradient(120deg, rgba(8, 9, 11, 0.94), rgba(8, 9, 11, 0.78)),
    url("/assets/hero-security-operations.png");
  background-position: center;
  background-size: cover;
}

.order-pay-section {
  background:
    linear-gradient(135deg, rgba(8, 9, 11, 0.94), rgba(8, 9, 11, 0.76)),
    url("/assets/service-van.jpg") center / cover no-repeat;
}

.project-section h2,
.coverage-section h2,
.contact-section h2,
.legal-shell h1,
.order-pay-copy h1 {
  color: #ffffff;
}

.project-section p,
.coverage-section p,
.contact-section p,
.legal-shell p,
.order-pay-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.project-section .eyebrow,
.coverage-section .eyebrow,
.contact-section .eyebrow,
.legal-hero .eyebrow,
.order-pay-section .eyebrow {
  color: #ff5b6b;
}

.store-quick-panel,
.store-quick-panel a {
  color: #ffffff;
}

.store-quick-panel span {
  color: rgba(255, 255, 255, 0.72);
}

.status-shell,
.status-shell span {
  color: #334155;
}

/* Store layout polish - 2026-05-30.
   Makes the storefront scan like a working purchasing tool instead of a long catalog page. */
.store-section {
  background:
    linear-gradient(180deg, #eef2f6 0%, #f6f8fb 26%, #f4f6f7 100%);
}

.store-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.38fr);
  gap: 28px;
}

.store-title-row {
  border: 1px solid var(--ops-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
  box-shadow: var(--ops-shadow);
}

.store-title-row h2 {
  max-width: 680px;
  font-size: clamp(1.85rem, 3.1vw, 3rem);
}

.store-title-row p {
  max-width: 460px;
}

.store-toolbar {
  position: sticky;
  top: 82px;
  z-index: 25;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  border: 1px solid var(--ops-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  padding: 14px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
  backdrop-filter: blur(12px);
}

.store-search {
  grid-column: 1;
}

.store-toolbar .store-filter-group {
  grid-column: 1 / -1;
}

.store-toolbar .store-sort {
  grid-column: 2;
}

.store-search input {
  min-height: 50px;
  border-color: #aeb8c5;
  background: #ffffff;
  font-size: 1rem;
}

.store-filter-group {
  gap: 7px;
}

.store-filter {
  min-height: 36px;
  padding: 0 13px;
  font-size: 0.82rem;
}

.store-flow-strip {
  margin-bottom: 22px;
}

.store-flow-strip article {
  min-height: 96px;
  padding: 14px;
}

.store-featured-panel {
  border-color: rgba(238, 32, 56, 0.22);
  background:
    linear-gradient(135deg, rgba(238, 27, 45, 0.055), transparent 34%),
    #ffffff;
  padding: 16px;
}

.store-featured-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.store-featured-card {
  grid-template-columns: 144px minmax(0, 1fr) minmax(142px, 0.28fr);
  grid-template-rows: auto;
  min-height: 0;
  align-items: stretch;
}

.store-featured-card .store-product-media {
  min-height: 100%;
  border-right: 1px solid var(--ops-line);
  padding: 12px;
}

.store-featured-card .store-product-media img {
  height: 104px;
}

.store-featured-card .store-product-body {
  align-content: center;
  gap: 8px;
  padding: 14px 16px;
}

.store-featured-card h3 {
  font-size: 1.08rem;
  line-height: 1.12;
}

.store-featured-card p:not(.store-requirement) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.store-featured-card dl,
.store-featured-card .store-tags {
  display: none;
}

.store-featured-card .store-price-row,
.store-featured-card .store-price-note,
.store-featured-card .store-requirement {
  padding: 9px 10px;
}

.store-featured-card .store-price-row strong,
.store-featured-card .store-price-note strong {
  font-size: 1.12rem;
}

.store-featured-card .store-product-actions {
  grid-template-columns: 1fr;
  align-content: center;
  border-left: 1px solid var(--ops-line);
  padding: 14px;
}

.store-category-panel {
  margin-bottom: 22px;
}

.store-category-grid {
  gap: 10px;
}

.store-category-card button {
  min-height: 124px;
  grid-template-columns: 108px minmax(0, 1fr);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.store-category-thumb {
  min-height: 98px;
  background: #f8fafc;
}

.store-category-thumb img {
  height: 92px;
}

.store-results-panel {
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--red);
}

.store-results-bar {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--ops-line);
  border-radius: 999px;
  margin: 0 0 14px;
  background: #ffffff;
  color: #4b5563;
  padding: 7px 11px;
}

.store-grid {
  gap: 14px;
}

.store-product-card {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.store-product-card:hover,
.store-product-card:focus-within {
  border-color: #b8c2cf;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.store-product-media {
  min-height: 150px;
  background:
    linear-gradient(135deg, rgba(238, 27, 45, 0.06), transparent 42%),
    #f8fafc;
}

.store-product-media img {
  height: 128px;
}

.store-product-body {
  gap: 10px;
}

.store-product-card h3 {
  font-size: 1.16rem;
  line-height: 1.12;
}

.store-product-card p:not(.store-requirement) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.store-product-card dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.store-product-card dd {
  overflow-wrap: anywhere;
}

.store-tags span {
  background: #eef2f6;
}

.store-price-row,
.store-price-note {
  border-color: #d5dce5;
  background: #f9fafb;
}

.store-product-actions {
  align-items: end;
  border-top: 1px solid var(--ops-line);
  background: #fbfcfd;
  padding: 14px 18px 18px;
}

.store-card-qty input {
  min-height: 42px;
  background: #ffffff;
}

.store-side-panel {
  border-top: 4px solid var(--red);
  max-height: calc(100vh - 104px);
  max-height: calc(100dvh - 104px);
  padding: 18px;
}

.store-side-panel.is-attention {
  animation: cart-attention 1150ms ease;
}

@keyframes cart-attention {
  0%,
  100% {
    box-shadow: var(--ops-shadow);
  }
  24% {
    box-shadow: 0 0 0 4px rgba(238, 27, 45, 0.16), var(--ops-shadow);
  }
}

.store-side-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 2.7vw, 2.45rem);
}

.cart-account-note,
.cart-path-panel,
.cart-summary,
.cart-item,
.cart-empty {
  border-radius: 6px;
}

.cart-path-panel {
  border-color: #d5dce5;
  background: #fbfcfd;
}

.cart-ready-to-pay .cart-path-panel {
  border-color: rgba(31, 122, 77, 0.28);
}

.cart-needs-review .cart-path-panel {
  border-color: rgba(238, 27, 45, 0.24);
}

.cart-list {
  max-height: min(34vh, 330px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 2px;
}

.cart-summary {
  position: sticky;
  top: 0;
  z-index: 1;
}

.cart-checkout-box {
  border: 1px solid rgba(238, 27, 45, 0.18);
  border-radius: 6px;
  background: #fff7f8;
  padding: 11px 12px;
}

.cart-checkout-box .form-status {
  margin: 0;
}

.cart-form-actions .button {
  min-height: 46px;
  padding: 0 12px;
}

@media (max-width: 1120px) {
  .store-toolbar {
    position: static;
  }

  .store-featured-card {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .store-featured-card .store-product-actions {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid var(--ops-line);
  }

  .cart-list {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .store-detail-modal {
    padding: 10px;
  }

  .store-detail-dialog {
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
  }

  .store-detail-layout {
    grid-template-columns: 1fr;
  }

  .store-detail-media {
    min-height: 190px;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--ops-line);
  }

  .store-detail-media img {
    max-height: 220px;
  }

  .store-detail-main {
    padding: 22px;
  }

  .store-detail-main h2 {
    padding-right: 36px;
    font-size: 1.65rem;
    line-height: 1.05;
  }

  .store-detail-path,
  .store-detail-specs,
  .store-detail-actions {
    grid-template-columns: 1fr;
  }

  .store-title-row,
  .store-toolbar,
  .store-featured-panel {
    padding: 14px;
  }

  .store-featured-card,
  .store-category-card button {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .store-featured-card .store-product-media,
  .store-category-thumb {
    min-height: 96px;
  }

  .store-featured-card .store-product-media img,
  .store-category-thumb img {
    height: 84px;
  }

  .store-featured-card .store-product-body {
    padding: 12px;
  }

  .store-product-card:hover,
  .store-product-card:focus-within {
    transform: none;
  }

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

  .store-product-actions {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .cart-form-actions {
    grid-template-columns: 1fr;
  }
}

/* Store product results refinement - 2026-05-30. */
.store-grid {
  grid-template-columns: 1fr;
}

.store-grid .store-product-card {
  grid-template-columns: 154px minmax(0, 1fr) minmax(148px, 0.24fr);
  grid-template-rows: auto;
  align-items: stretch;
}

.store-grid .store-product-media {
  min-height: 100%;
  border-right: 1px solid var(--ops-line);
  padding: 12px;
}

.store-grid .store-product-media img {
  height: 118px;
}

.store-grid .store-product-body {
  align-content: center;
  padding: 15px 16px;
}

.store-grid .store-product-topline {
  align-items: center;
}

.store-grid .store-product-status {
  min-width: 124px;
}

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

.store-grid .store-product-card h3 {
  font-size: 1.08rem;
}

.store-grid .store-product-card p:not(.store-requirement) {
  -webkit-line-clamp: 2;
}

.store-grid .store-product-card .store-requirement {
  font-size: 0.8rem;
  padding: 8px 10px;
}

.store-grid .store-price-row,
.store-grid .store-price-note {
  padding: 9px 10px;
}

.store-grid .store-price-row strong,
.store-grid .store-price-note strong {
  font-size: 1.14rem;
}

.store-grid .store-tags span:nth-child(n+5) {
  display: none;
}

.store-grid .store-product-actions {
  grid-template-columns: 1fr;
  align-content: center;
  border-top: 0;
  border-left: 1px solid var(--ops-line);
  padding: 14px;
}

@media (max-width: 760px) {
  .store-toolbar {
    grid-template-columns: 1fr;
  }

  .store-search,
  .store-toolbar .store-filter-group,
  .store-toolbar .store-sort {
    grid-column: 1;
  }

  .store-sort {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .store-sort select {
    width: 100%;
  }

  .store-layout {
    grid-template-columns: 1fr;
  }

  .store-catalog {
    min-width: 0;
    width: 100%;
  }

  .store-hero-shell {
    min-height: auto;
    gap: 18px;
    padding: 96px 0 34px;
  }

  .store-hero-copy h1 {
    font-size: clamp(2.28rem, 9.4vw, 3.15rem);
    line-height: 1;
  }

  .store-quick-panel a {
    min-height: 72px;
    padding: 14px;
  }

  .store-title-row,
  .store-toolbar,
  .store-featured-panel,
  .store-results-panel {
    width: 100%;
  }

  .store-grid .store-product-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .store-grid .store-product-topline,
  .store-product-topline {
    display: grid;
    gap: 8px;
    justify-content: stretch;
  }

  .store-grid .store-product-status,
  .store-product-status {
    min-width: 0;
    text-align: left;
  }

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

  .store-grid .store-product-media {
    border-right: 1px solid var(--ops-line);
    border-bottom: 0;
  }

  .store-grid .store-product-media img {
    height: 82px;
  }

  .store-grid .store-product-actions {
    grid-column: 1 / -1;
    grid-template-columns: 92px minmax(0, 1fr);
    border-left: 0;
    border-top: 1px solid var(--ops-line);
  }
}

@media (min-width: 761px) and (max-width: 1120px) {
  .store-layout {
    grid-template-columns: 1fr;
  }

  .store-catalog {
    min-width: 0;
    width: 100%;
  }
}
