:root {
  --ink: #17202a;
  --muted: #627080;
  --line: #e5eaf0;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --teal: #16756f;
  --blue: #2857d9;
  --amber: #c78326;
  --coral: #c95d47;
  --green: #2f7d52;
  --shadow: 0 18px 55px rgba(23, 32, 42, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(229, 234, 240, .82);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: 42px;
  max-width: 220px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: var(--brand, var(--teal));
  box-shadow: 0 10px 30px rgba(22, 117, 111, .22);
}

.brand-mark svg,
.icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #344253;
  font-size: 14px;
  font-weight: 650;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #fff;
  background: var(--brand, var(--teal));
  font-weight: 750;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(23, 32, 42, .12);
}

.btn.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
  box-shadow: none;
}

.btn.ghost {
  color: var(--brand, var(--teal));
  border-color: rgba(22, 117, 111, .24);
  background: rgba(22, 117, 111, .08);
  box-shadow: none;
}

.hero {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 56px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 52px;
}

.hero-grid > *,
.split-hero > *,
.shop-hero-grid > *,
.grid-2 > *,
.grid-3 > *,
.cart-layout > *,
.section-title {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--brand, var(--teal));
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  overflow-wrap: break-word;
  font-size: 66px;
  line-height: .98;
  letter-spacing: 0;
}

.subhead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-item {
  min-width: 0;
  padding: 22px;
  background: #fff;
}

.proof-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 28px;
  line-height: 1;
}

.proof-item span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 78px 0;
}

.section.soft {
  background: var(--soft);
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

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

.section-title {
  max-width: 680px;
}

.section-title h2 {
  margin-bottom: 12px;
  overflow-wrap: break-word;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-title p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

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

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

.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.card-pad {
  padding: 24px;
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--brand, var(--teal));
  border-radius: 8px;
  background: color-mix(in srgb, var(--brand, var(--teal)) 10%, #fff);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--brand, var(--teal));
  background: color-mix(in srgb, var(--brand, var(--teal)) 10%, #fff);
  font-size: 13px;
  font-weight: 750;
}

.feature-band {
  display: grid;
  align-items: stretch;
  grid-template-columns: .95fr 1.05fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.feature-band img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.feature-content {
  padding: clamp(30px, 5vw, 58px);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: #344253;
}

.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--brand, var(--teal));
}

.admin-preview {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-pill {
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th,
.table td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.table tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 750;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #344253;
  font-size: 13px;
  font-weight: 750;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.footer {
  padding: 42px 0;
  color: #cbd5df;
  background: #111923;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(130px, .4fr));
  gap: 28px;
}

.footer a,
.footer p {
  color: #cbd5df;
}

.footer h3,
.footer h4 {
  color: #fff;
}

.portfolio-page {
  --brand: #2857d9;
  background: #f8fafc;
}

.portfolio-hero {
  padding: 70px 0 32px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin: 34px 0 64px;
}

.portfolio-shot {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e8edf4;
}

.small-note {
  color: var(--muted);
  font-size: 14px;
}

.market-hero {
  padding: 56px 0 28px;
}

.market-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 28px 0 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.template-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.template-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0;
}

.template-price strong {
  font-size: 28px;
}

.template-price del {
  color: var(--muted);
}

.page-hero {
  padding: 54px 0 36px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--brand, var(--teal));
  font-weight: 750;
}

.page-title {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: 52px;
  line-height: 1.02;
}

.page-copy {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}

.detail-media {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.spec-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list span {
  color: var(--muted);
}

.side-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.side-card .card-pad + .card-pad {
  border-top: 1px solid var(--line);
}

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

.order-steps {
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.order-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.order-step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand, var(--teal));
  font-weight: 800;
}

.nav-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.template-hero {
  padding: 42px 0 52px;
  background: #f6f8fb;
}

.template-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.template-gallery {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.template-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.template-gallery-strip img {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.template-buy-box {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(23, 32, 42, .08);
}

.template-buy-box .btn {
  width: 100%;
}

.template-logo {
  display: block;
  width: min(100%, 312px);
  height: auto;
  max-width: 100%;
  margin-bottom: 18px;
}

.template-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.template-tab-system {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.template-tabs[data-tab-controls] {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 0;
  padding: 6px;
  border: 1px solid rgba(6, 17, 29, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 30px rgba(8, 31, 52, .08);
  overflow: hidden;
}

.template-tabs[data-tab-controls]::before {
  content: "";
  position: absolute;
  left: var(--tab-x, 6px);
  top: 6px;
  bottom: 6px;
  width: var(--tab-w, calc((100% - 12px) / 3));
  border-radius: 6px;
  background: linear-gradient(135deg, #f08a18, #d97800);
  box-shadow: 0 14px 30px rgba(231, 120, 0, .22);
  transition: left .34s cubic-bezier(.22, 1, .36, 1), width .34s cubic-bezier(.22, 1, .36, 1);
}

.template-tab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  color: #203142;
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: color .24s ease, transform .24s ease;
}

.template-tab:hover {
  transform: translateY(-1px);
}

.template-tab span {
  color: #e77800;
  font-size: 12px;
}

.template-tab.is-active {
  color: #fff;
}

.template-tab.is-active span {
  color: rgba(255, 255, 255, .78);
}

.template-tab-panels {
  position: relative;
  min-height: 112px;
  border: 1px solid rgba(6, 17, 29, .12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .08), transparent 46%),
    rgba(255, 255, 255, .8);
  overflow: hidden;
}

.template-tab-panel {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  animation: tabPanelIn .38s cubic-bezier(.22, 1, .36, 1) both;
}

.template-tab-panel[hidden] {
  display: none;
}

.template-tab-panel strong {
  color: #06111d;
  font-size: 17px;
}

.template-tab-panel p {
  max-width: 760px;
  margin: 0;
  color: #465566;
}

@keyframes tabPanelIn {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.template-preview-body {
  margin: 0;
  overflow: hidden;
  background: #111923;
}

.preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 0 18px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .1), transparent 34% 72%, rgba(180, 206, 211, .08)),
    #091522;
}

.preview-bar .brand {
  color: #fff;
  padding: 0;
  border: 0;
  background: transparent;
}

.preview-bar .brand-logo {
  height: 48px;
  max-width: 250px;
}

.preview-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-frame {
  display: block;
  width: 100vw;
  height: calc(100vh - 74px);
  border: 0;
  background: #fff;
}

.mining-template-page {
  --brand: #e77800;
  --ink: #06111d;
  --muted: #5d6976;
  --line: #dce3ea;
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .035) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(8, 31, 52, .035) 0 1px, transparent 1px 100%),
    #f4f7fa;
  background-size: 96px 96px, 96px 96px, cover;
}

.mining-template-page .topbar {
  border-bottom-color: rgba(8, 31, 52, .12);
  background: rgba(247, 249, 251, .9);
  backdrop-filter: blur(18px);
}

.mining-template-page .brand {
  padding: 0;
  border: 0;
  background: transparent;
}

.mining-template-page .brand-logo {
  height: 52px;
  max-width: 272px;
}

.mining-template-page .nav-links a {
  color: #203142;
}

.mining-template-page .nav-links a:hover {
  color: #06111d;
}

.mining-template-page .btn {
  color: #fff;
  background: linear-gradient(135deg, #06111d, #16324a);
  box-shadow: 0 16px 36px rgba(6, 17, 29, .16);
}

.mining-template-page .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(6, 17, 29, .2);
}

.mining-template-page .btn.secondary {
  color: #06111d;
  border-color: rgba(6, 17, 29, .14);
  background: rgba(255, 255, 255, .72);
  box-shadow: none;
}

.mining-template-page .template-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: 58px 0 72px;
  background:
    radial-gradient(circle at 82% 12%, rgba(231, 120, 0, .13), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(229, 236, 243, .92));
  overflow: hidden;
}

.mining-template-page .template-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0 34px, rgba(6, 17, 29, .045) 34px 35px),
    linear-gradient(90deg, rgba(231, 120, 0, .08), transparent 34% 70%, rgba(8, 31, 52, .07));
  opacity: .65;
  pointer-events: none;
}

.mining-template-page .template-hero::after {
  content: "";
  position: absolute;
  left: -300px;
  top: 132px;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(6, 17, 29, .2);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 58%, rgba(231, 120, 0, .16) 58.4% 76%, transparent 76.5%),
    radial-gradient(circle, transparent 0 84%, rgba(6, 17, 29, .16) 84.2% 84.5%, transparent 85%);
  opacity: .9;
  pointer-events: none;
}

.mining-template-page .template-product {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 34px;
}

.mining-template-page .breadcrumb {
  color: #71808d;
}

.mining-template-page .breadcrumb a {
  color: #e77800;
}

.mining-template-page .page-title {
  max-width: 900px;
  color: #06111d;
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: .94;
}

.mining-template-page .page-copy {
  max-width: 760px;
  color: #344253;
}

.mining-template-page .chip {
  color: #243447;
  border-color: rgba(6, 17, 29, .12);
  background: rgba(255, 255, 255, .62);
}

.mining-template-page .chip.active {
  color: #06111d;
  border-color: #e77800;
  background: rgba(231, 120, 0, .14);
}

.mining-template-page .template-gallery {
  border-color: rgba(6, 17, 29, .12);
  background: #fff;
  box-shadow: 0 24px 65px rgba(8, 31, 52, .16);
}

.mining-template-page .template-gallery > img {
  min-height: 470px;
  filter: saturate(1.04) contrast(1.06);
}

.mining-template-page .template-gallery-strip {
  border-top-color: rgba(6, 17, 29, .1);
  background: #fff;
}

.mining-template-page .template-gallery-strip img {
  border-color: rgba(6, 17, 29, .1);
}

.mining-template-page .template-buy-box {
  border-color: rgba(6, 17, 29, .14);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 28px 70px rgba(8, 31, 52, .18);
}

.mining-template-page .template-buy-box .card-pad:first-child {
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .1), transparent 42%),
    #fff;
}

.mining-template-page .template-buy-box .card-pad + .card-pad {
  border-top: 1px solid rgba(6, 17, 29, .1);
}

.mining-template-page .template-price {
  margin-top: 8px;
}

.mining-template-page .template-price strong {
  color: #06111d;
  font-size: 34px;
}

.mining-template-page .template-price del {
  color: #8a96a3;
}

.mining-template-page .small-note,
.mining-template-page .card p {
  color: #5d6976;
}

.mining-template-page .tag {
  color: #06111d;
  background: rgba(231, 120, 0, .16);
}

.preview-device {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  color: #d8e2ef;
  background: rgba(255, 255, 255, .08);
  font-weight: 750;
}

.layout-app {
  --brand: #2857d9;
  display: grid;
  min-height: 100vh;
  grid-template-columns: 256px minmax(0, 1fr);
  background: #f5f7fb;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  color: #d8e2ef;
  background: #111923;
}

.sidebar .brand {
  color: #fff;
  margin-bottom: 34px;
}

.layout-app .sidebar .brand-logo {
  width: 132px;
  height: auto;
  max-height: 44px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  object-fit: contain;
}

.side-nav {
  display: grid;
  gap: 8px;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  color: #d8e2ef;
  font-weight: 650;
}

.side-nav a.active,
.side-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .11);
}

.app-main {
  min-width: 0;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 0 34px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  width: min(430px, 100%);
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #f8fafc;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2857d9, #2f7d52);
}

.app-content {
  padding: 34px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.metric {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 32px;
  line-height: 1;
}

.chart {
  display: flex;
  align-items: end;
  gap: 11px;
  min-height: 236px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.bar {
  flex: 1;
  min-width: 16px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--brand), #2f7d52);
}

.activity-list {
  display: grid;
  gap: 14px;
}

.activity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.activity strong {
  display: block;
}

.activity span {
  color: var(--muted);
  font-size: 13px;
}

.minimal {
  --brand: #2f7d52;
}

.minimal .topbar {
  background: rgba(255, 255, 255, .94);
}

.split-hero {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1fr);
  gap: 56px;
}

.editorial-image {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.editorial-image img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.quote-band {
  padding: 42px;
  border-left: 4px solid var(--brand);
  background: #f8fafc;
}

.quote-band p {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.16;
}

.resource-row {
  display: grid;
  gap: 12px;
}

.resource {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.resource img {
  width: 96px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
}

.resource h3 {
  margin-bottom: 3px;
  font-size: 18px;
}

.resource p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.hide-mobile {
  display: inline-flex;
}

.shop {
  --brand: #c95d47;
  background: #fff;
}

.shop-hero {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 42px;
}

.shop-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: 46px;
}

.shop-hero h1 {
  font-size: 76px;
}

.shop-hero .subhead {
  max-width: 580px;
}

.hero-product {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-product img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(420px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
}

.product-badge strong,
.price {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.product-badge span,
.product-card p,
.cart-line span {
  color: var(--muted);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #344253;
  background: #fff;
  font-weight: 700;
}

.chip.active {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

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

.product-card {
  display: grid;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f6f8fb;
}

.product-info {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.product-info h3 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.2;
}

.product-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-count {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
}

.cart-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.cart-panel header,
.cart-total,
.checkout-summary header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-items {
  display: grid;
  gap: 0;
  min-height: 176px;
}

.cart-empty {
  display: grid;
  gap: 6px;
  padding: 22px 18px;
  color: var(--muted);
}

.cart-empty strong {
  color: var(--ink);
  font-size: 15px;
}

.cart-empty span {
  display: block;
  line-height: 1.45;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.cart-line strong {
  display: block;
  margin-bottom: 4px;
}

.cart-total {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-total strong {
  font-size: 26px;
}

.checkout-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.checkout-step {
  padding: 22px;
  background: #fff;
}

.checkout-step span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  transition: opacity .18s ease, transform .18s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.logo-intro-lock {
  overflow: hidden;
}

.logo-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  color: #06111d;
  background:
    radial-gradient(circle at 26% 48%, rgba(231, 120, 0, .12), transparent 28%),
    radial-gradient(circle at 76% 22%, rgba(6, 17, 29, .08), transparent 26%),
    linear-gradient(90deg, rgba(231, 120, 0, .05) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(6, 17, 29, .045) 0 1px, transparent 1px 100%),
    #f7f9fb;
  background-size: 88px 88px, 88px 88px, cover;
  pointer-events: none;
  overflow: hidden;
  animation: logoIntroLeave .56s cubic-bezier(.76, 0, .24, 1) 1.58s forwards;
}

.logo-intro::before,
.logo-intro::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.logo-intro::before {
  inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0 28px, rgba(6, 17, 29, .04) 28px 29px),
    radial-gradient(circle at 20% 62%, rgba(231, 120, 0, .16) 0 9%, transparent 9.5%),
    radial-gradient(circle at 20% 62%, transparent 0 16%, rgba(6, 17, 29, .12) 16.2% 16.4%, transparent 16.8%),
    linear-gradient(90deg, rgba(231, 120, 0, .06), transparent 40%, rgba(6, 17, 29, .06));
  transform: translateX(-4%);
  animation: logoIntroGridShift 1.6s ease forwards;
}

.logo-intro::after {
  left: -20%;
  right: -20%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 120, 0, .74), rgba(6, 17, 29, .42), transparent);
  transform: translateY(-50%) scaleX(0);
  transform-origin: center;
  animation: logoIntroTrace 1.24s cubic-bezier(.22, 1, .36, 1) .2s forwards;
}

.logo-intro-stage {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(780px, calc(100vw - 48px));
  min-height: 260px;
  text-align: center;
  transform: translateY(16px) scale(.96);
  opacity: 0;
  animation: logoIntroStage .74s cubic-bezier(.22, 1, .36, 1) .12s forwards;
}

.logo-intro-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: min(760px, 88vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 120, 0, .68), rgba(6, 17, 29, .34), transparent);
  transform: translate(-50%, -50%) scaleX(0);
  transform-origin: center;
  animation: logoIntroAxis .86s cubic-bezier(.22, 1, .36, 1) .18s forwards;
}

.logo-intro-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-8deg);
  animation: logoLoaderExit .34s ease .74s forwards;
}

.logo-intro-loader::before,
.logo-intro-loader::after,
.logo-intro-loader span {
  content: "";
  position: absolute;
  inset: 12px;
  border: 3px solid #06111d;
  transform-origin: center;
  animation: logoLoaderSpin 1.05s cubic-bezier(.48, 0, .2, 1) infinite;
}

.logo-intro-loader::after {
  inset: 15px;
  border-color: #e77800;
  animation-direction: reverse;
}

.logo-intro-loader span {
  left: 50%;
  top: 50%;
  inset: auto;
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 50%;
  background: #e77800;
  box-shadow: 0 0 0 8px rgba(231, 120, 0, .14);
  transform: translate(-50%, -50%);
  animation: none;
}

.logo-intro-kicker {
  color: #e77800;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0;
  animation: logoIntroContentIn .45s ease .68s forwards;
}

.logo-intro-mark {
  position: relative;
  display: block;
  width: min(680px, 86vw);
  padding: 0;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 24px 44px rgba(6, 17, 29, .2)) drop-shadow(0 0 22px rgba(231, 120, 0, .1));
  overflow: visible;
  opacity: 0;
  animation: logoIntroContentIn .4s ease .68s forwards;
}

.logo-intro-logo {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform-origin: center;
  animation: logoIntroLogoReveal .92s cubic-bezier(.22, 1, .36, 1) .7s both;
}

.logo-intro-scan {
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(100deg, transparent 0 42%, rgba(231, 120, 0, .24) 49%, rgba(180, 206, 211, .26) 55%, transparent 68%);
  animation: logoIntroScan .86s cubic-bezier(.22, 1, .36, 1) .9s forwards;
  pointer-events: none;
}

.logo-intro-target-pulse {
  position: absolute;
  left: 36.5%;
  top: 50.5%;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(231, 120, 0, .78);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.52);
  animation: logoTargetPulse 1.05s cubic-bezier(.22, 1, .36, 1) .98s forwards;
  pointer-events: none;
}

.logo-intro-target-pulse::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e77800;
  box-shadow: 0 0 0 8px rgba(231, 120, 0, .15);
  transform: translate(-50%, -50%);
}

.logo-intro-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a3bcc4, #e77800);
  animation: logoIntroLine .78s cubic-bezier(.22, 1, .36, 1) 1.02s forwards;
}

.logo-intro-stage strong {
  color: rgba(6, 17, 29, .72);
  font-size: 15px;
  letter-spacing: 0;
  opacity: 0;
  animation: logoIntroContentIn .45s ease .76s forwards;
}

.logo-intro-complete .brand-logo {
  transform-origin: left center;
  animation: brandLogoSettle .62s cubic-bezier(.22, 1, .36, 1) both;
}

.logo-intro-complete .hero-grid > *,
.logo-intro-complete .proof-strip {
  animation: pageAfterIntro .62s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes logoIntroStage {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes logoLoaderSpin {
  to {
    transform: rotate(180deg);
  }
}

@keyframes logoLoaderExit {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.72) rotate(28deg);
  }
}

@keyframes logoIntroContentIn {
  to {
    opacity: 1;
  }
}

@keyframes logoIntroLine {
  to {
    width: 190px;
  }
}

@keyframes logoIntroLogoReveal {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: .08;
    transform: translateY(8px);
  }

  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoIntroAxis {
  to {
    transform: translate(-50%, -50%) scaleX(1);
  }
}

@keyframes logoTargetPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.42);
  }

  36% {
    opacity: .88;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.42);
  }
}

@keyframes logoIntroGridShift {
  to {
    transform: translateX(0);
    opacity: .86;
  }
}

@keyframes logoIntroScan {
  to {
    transform: translateX(110%);
  }
}

@keyframes logoIntroTrace {
  to {
    transform: translateY(-50%) scaleX(1);
  }
}

@keyframes logoIntroLeave {
  to {
    transform: translateY(-100%);
    opacity: .98;
  }
}

@keyframes brandLogoSettle {
  from {
    transform: translateY(-8px) scale(.96);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes pageAfterIntro {
  from {
    transform: translateY(18px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-intro {
    display: none;
  }

  .logo-intro-lock {
    overflow: auto;
  }
}

.industrial-theme {
  --industrial-bg: #06111d;
  --industrial-panel: #0d1a27;
  --industrial-panel-2: #132334;
  --industrial-line: rgba(216, 226, 239, .14);
  --industrial-copy: #e8eef5;
  --industrial-muted: #a5b2bf;
  --industrial-accent: #e77800;
  --industrial-copper: #d97800;
  --industrial-teal: #a3bcc4;
  color: var(--industrial-copy);
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .052) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(163, 188, 196, .038) 0 1px, transparent 1px 100%),
    var(--industrial-bg);
  background-size: 112px 112px, 112px 112px, cover;
}

.industrial-theme .topbar {
  border-bottom-color: var(--industrial-line);
  background: rgba(6, 17, 29, .92);
  backdrop-filter: blur(18px);
}

.industrial-theme .brand {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.industrial-theme .brand-logo {
  height: 54px;
  max-width: 312px;
}

.industrial-theme .nav-links {
  color: rgba(232, 238, 245, .82);
}

.industrial-theme .nav-links a {
  transition: color .18s ease;
}

.industrial-theme .nav-links a:hover {
  color: #fff;
}

.industrial-theme .menu-toggle {
  color: #fff;
  border-color: var(--industrial-line);
  background: rgba(255, 255, 255, .08);
}

.industrial-theme .btn {
  color: #fff;
  background: linear-gradient(135deg, #f08a18, var(--industrial-copper));
  box-shadow: 0 14px 36px rgba(231, 120, 0, .24);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.industrial-theme .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(231, 120, 0, .3);
}

.industrial-theme .btn.secondary,
.industrial-theme .btn.ghost {
  color: #f6fbff;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.industrial-theme .hero {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 0 64px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(7, 13, 19, .98) 0 42%, rgba(15, 26, 36, .88) 62%, rgba(7, 13, 19, .72)),
    url("pc-photo-substation.jpg") center/cover;
  overflow: hidden;
}

.industrial-theme .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0 38px, rgba(255, 255, 255, .045) 38px 39px),
    linear-gradient(90deg, rgba(163, 188, 196, .1), transparent 34% 68%, rgba(231, 120, 0, .13));
  opacity: .82;
  pointer-events: none;
}

.industrial-theme .hero::after {
  content: "";
  position: absolute;
  left: -280px;
  top: 126px;
  z-index: 0;
  width: 760px;
  aspect-ratio: 1;
  border: 1px solid rgba(231, 120, 0, .32);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 56%, rgba(231, 120, 0, .11) 56.2% 76%, transparent 76.4%),
    radial-gradient(circle, rgba(6, 17, 29, .62) 0 46%, transparent 46.4%);
  transform: rotate(-10deg);
  pointer-events: none;
}

.industrial-theme .hero-grid {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 46px;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, .9fr);
}

.industrial-theme h1,
.industrial-theme h2,
.industrial-theme h3 {
  color: #fff;
}

.industrial-theme h1 {
  max-width: 820px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .94;
}

.industrial-theme .subhead,
.industrial-theme .section-title p,
.industrial-theme .card p,
.industrial-theme .page-copy,
.industrial-theme .small-note,
.industrial-theme .feature-content p {
  color: var(--industrial-muted);
}

.industrial-theme .eyebrow,
.industrial-theme .breadcrumb a {
  color: var(--industrial-accent);
}

.industrial-theme .eyebrow::before {
  background: currentColor;
}

.industrial-theme .mini-pill,
.industrial-theme .chip {
  color: rgba(232, 238, 245, .84);
  border-color: var(--industrial-line);
  background: rgba(255, 255, 255, .07);
}

.industrial-theme .chip.active {
  color: #101820;
  border-color: var(--industrial-accent);
  background: var(--industrial-accent);
}

.industrial-theme .hero-card {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(16, 26, 36, .74);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.industrial-theme .hero-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .2);
  pointer-events: none;
}

.industrial-theme .hero-card::after {
  content: "P6 / CAPEX / 12 kV";
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: #101820;
  background: rgba(231, 120, 0, .94);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.industrial-theme .hero-card img {
  min-height: 520px;
  aspect-ratio: 4 / 4.35;
  filter: saturate(1.04) contrast(1.08);
}

.industrial-theme .hero > .proof-strip {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.industrial-theme .proof-strip {
  border-color: var(--industrial-line);
  background: var(--industrial-line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.industrial-theme .proof-item {
  color: #fff;
  background: rgba(16, 26, 36, .88);
}

.industrial-theme .proof-item strong {
  color: var(--industrial-accent);
}

.industrial-theme .proof-item span {
  color: var(--industrial-muted);
}

.industrial-theme .section {
  background: var(--industrial-bg);
}

.industrial-theme .section.soft {
  background: #0d1a27;
}

.industrial-theme .card,
.industrial-theme .side-card,
.industrial-theme .feature-band,
.industrial-theme .admin-preview {
  border-color: var(--industrial-line);
  background: rgba(16, 26, 36, .94);
  box-shadow: 0 20px 58px rgba(0, 0, 0, .18);
}

.industrial-theme .card:not(form)::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--industrial-teal), var(--industrial-accent));
}

.industrial-theme .article-card img,
.industrial-theme .feature-band img {
  border-color: var(--industrial-line);
  filter: saturate(1.04) contrast(1.05);
}

.industrial-theme .card h3,
.industrial-theme .feature-content h2,
.industrial-theme .section-title h2 {
  color: #fff;
}

.industrial-theme .tag {
  color: #101820;
  background: var(--industrial-accent);
}

.industrial-theme .icon {
  color: var(--industrial-accent);
  background: rgba(231, 120, 0, .13);
}

.industrial-theme .check-list li {
  color: rgba(232, 238, 245, .86);
}

.industrial-theme .check-list li::before {
  background: var(--industrial-teal);
  box-shadow: 0 0 0 4px rgba(163, 188, 196, .12);
}

.industrial-theme .page-hero {
  border-bottom-color: var(--industrial-line);
  color: #fff;
  background:
    linear-gradient(110deg, rgba(7, 13, 19, .98), rgba(19, 31, 42, .86)),
    repeating-linear-gradient(115deg, transparent 0 42px, rgba(255, 255, 255, .04) 42px 43px),
    url("pc-photo-switchgear.jpg") center/cover;
}

.industrial-theme .breadcrumb {
  color: rgba(232, 238, 245, .62);
}

.industrial-theme .field label {
  color: rgba(232, 238, 245, .86);
}

.industrial-theme .field input,
.industrial-theme .field textarea,
.industrial-theme .field select {
  color: #fff;
  border-color: var(--industrial-line);
  background: rgba(7, 13, 19, .62);
}

.industrial-theme .spec-list li {
  border-bottom-color: var(--industrial-line);
}

.industrial-theme .spec-list span {
  color: var(--industrial-muted);
}

.industrial-theme .spec-list strong {
  color: #fff;
}

.industrial-admin {
  --industrial-line: rgba(216, 226, 239, .14);
  --industrial-muted: #9eacb9;
  --industrial-accent: #e77800;
  color: #e8eef5;
  background: #0b121a;
}

.industrial-admin .sidebar {
  border-right: 1px solid var(--industrial-line);
  background:
    linear-gradient(180deg, rgba(241, 178, 74, .08), transparent 36%),
    #080d13;
}

.industrial-admin .sidebar .brand {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.industrial-admin .side-nav a {
  color: rgba(232, 238, 245, .76);
}

.industrial-admin .side-nav a.active,
.industrial-admin .side-nav a:hover {
  color: #fff;
  background: rgba(241, 178, 74, .14);
}

.industrial-admin .app-topbar {
  border-bottom-color: var(--industrial-line);
  background: #101923;
}

.industrial-admin .search,
.industrial-admin .metric,
.industrial-admin .admin-preview,
.industrial-admin .activity {
  color: #e8eef5;
  border-color: var(--industrial-line);
  background: rgba(16, 26, 36, .94);
}

.industrial-admin .metric span,
.industrial-admin .activity span,
.industrial-admin .table th {
  color: var(--industrial-muted);
}

.industrial-admin .metric p {
  color: var(--industrial-muted);
}

.industrial-admin .admin-toolbar,
.industrial-admin .table th,
.industrial-admin .table td {
  border-color: var(--industrial-line);
}

.industrial-admin .btn {
  color: #fff;
  border-color: #e77800;
  background: #e77800;
  box-shadow: 0 16px 36px rgba(231, 120, 0, .18);
}

.industrial-admin .btn.secondary {
  color: #fff;
  border-color: #e77800;
  background: #e77800;
}

.b2b-industrial {
  --surface: #f3f5f2;
  --charcoal: #17202a;
  --copper: var(--accent, #c78326);
  background: #fff;
}

.b2b-shop-hero {
  padding: 58px 0 52px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 25, 35, .94), rgba(34, 49, 63, .88)),
    url("pc-photo-substation.jpg") center/cover;
}

.b2b-shop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
}

.wrap.b2b-shop-hero-grid,
.wrap.b2b-shop-layout {
  width: min(1280px, calc(100% - 40px));
}

.b2b-shop-copy .breadcrumb,
.b2b-shop-copy .breadcrumb a,
.b2b-shop-copy .subhead {
  color: rgba(255, 255, 255, .78);
}

.b2b-shop-copy .eyebrow {
  min-height: 34px;
  padding: 0 13px;
  border-radius: 4px;
  color: #fff;
  background: #e77800;
}

.b2b-shop-copy .eyebrow::before {
  display: none;
}

.b2b-shop-copy h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
}

.b2b-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
}

.b2b-hero-metrics div {
  min-width: 0;
  padding: 18px;
  background: rgba(17, 25, 35, .42);
}

.b2b-hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.b2b-hero-metrics span {
  display: block;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.pc-shop-service-strip {
  border-top: 1px solid rgba(216, 226, 239, .1);
  border-bottom: 1px solid rgba(216, 226, 239, .1);
  color: #fff;
  background: #e77800;
  overflow: hidden;
}

.pc-shop-service-track {
  display: flex;
  width: max-content;
  animation: pcShopServiceScroll 24s linear infinite;
}

.pc-shop-service-track span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, .26);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.pc-shop-service-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .16);
}

.b2b-shop-visual {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  overflow: hidden;
  background: #111923;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .28);
}

.b2b-shop-visual img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(.92) contrast(1.08) brightness(.82);
}

.b2b-visual-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17, 25, 35, .58), rgba(17, 25, 35, .42)),
    rgba(17, 25, 35, .32);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px) saturate(1.18);
}

.b2b-visual-panel span {
  display: block;
  margin-bottom: 8px;
  color: #f0bd5f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.b2b-visual-panel strong {
  display: block;
  max-width: 480px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

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

.b2b-category {
  min-width: 0;
  min-height: 196px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.b2b-category:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--brand) 28%, var(--line));
  box-shadow: 0 18px 48px rgba(23, 32, 42, .09);
}

.b2b-category span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-size: 13px;
  font-weight: 850;
}

.b2b-category strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

.b2b-category small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.b2b-shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 330px);
  gap: 22px;
  align-items: start;
}

.b2b-catalog {
  min-width: 0;
}

.b2b-catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.b2b-catalog-head h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.05;
}

.b2b-catalog-head .small-note {
  max-width: 300px;
  text-align: right;
}

.pc-shop-category-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.pc-shop-category-rail button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 62px;
  padding: 13px 14px;
  border: 1px solid var(--industrial-line);
  border-radius: 8px;
  color: rgba(232, 238, 245, .78);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    rgba(16, 26, 36, .92);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.pc-shop-category-rail button:hover,
.pc-shop-category-rail button:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(231, 120, 0, .64);
  outline: none;
}

.pc-shop-category-rail button.active {
  color: #fff;
  border-color: #e77800;
  background:
    linear-gradient(135deg, rgba(231, 120, 0, .28), rgba(231, 120, 0, .12)),
    rgba(16, 26, 36, .98);
}

.pc-shop-category-rail span {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pc-shop-category-rail strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #e77800;
  font-size: 12px;
}

.b2b-filter {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, .86);
}

.b2b-featured-product {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
  gap: 0;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.b2b-featured-product img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(1.08) brightness(.9);
}

.b2b-featured-product > div {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
}

.b2b-featured-product h3 {
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1.05;
}

.b2b-featured-product p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.b2b-featured-product .tag,
.b2b-product-copy .tag {
  justify-self: start;
}

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

.pc-product-families {
  display: grid;
  gap: 22px;
}

.pc-product-family {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.pc-product-family[hidden] {
  display: none;
}

.pc-product-family-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(216, 226, 239, .14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .12), transparent 58%),
    rgba(16, 26, 36, .74);
}

.pc-product-family-head > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #e77800;
  font-size: 13px;
  font-weight: 900;
}

.pc-product-family-head p {
  margin: 0 0 4px;
  color: #e77800;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pc-product-family-head h3 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 2.6vw, 30px);
  line-height: 1.08;
}

.pc-product-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pc-product-gallery-grid .pc-product-card {
  grid-column: auto;
}

.pc-product-gallery-grid .pc-product-card.is-featured,
.pc-product-gallery-grid .pc-product-card.is-wide {
  grid-column: auto;
}

.b2b-product-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  min-width: 0;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.pc-product-card {
  position: relative;
}

.pc-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 38%, rgba(231, 120, 0, .08));
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.b2b-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(231, 120, 0, .34);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .22);
}

.pc-product-card:hover::before {
  opacity: 1;
}

.b2b-product-media {
  min-width: 0;
  background: #e9edf1;
}

.b2b-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 178px;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(1.08) brightness(.9);
  transition: scale .42s cubic-bezier(.22, 1, .36, 1), filter .24s ease;
}

.pc-product-card:hover .b2b-product-media img,
.pc-product-feature:hover img {
  scale: 1.045;
  filter: saturate(1.08) contrast(1.08) brightness(.98);
}

.b2b-product-copy {
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr;
  gap: 11px;
  align-content: start;
  padding: 16px;
}

.b2b-product-copy h3 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.18;
}

.pc-product-card.is-featured .b2b-product-copy h3,
.pc-product-card.is-wide .b2b-product-copy h3 {
  font-size: clamp(20px, 2vw, 24px);
}

.b2b-product-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.b2b-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.b2b-specs span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #344253;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 750;
}

.b2b-quote-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  border: 1px solid rgba(23, 32, 42, .14);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(23, 32, 42, .09);
}

.pc-product-feature {
  margin-bottom: 0;
  border-radius: 10px;
}

.pc-product-feature img {
  transition: scale .42s cubic-bezier(.22, 1, .36, 1), filter .24s ease;
}

.pc-accessory-family {
  position: relative;
}

.pc-accessory-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pc-accessory-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--industrial-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
    rgba(16, 26, 36, .94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.pc-accessory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 120, 0, .48);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .26);
}

.pc-accessory-card h3 {
  margin: 8px 0 6px;
  color: #fff;
  font-size: 17px;
  line-height: 1.15;
}

.pc-accessory-card p {
  margin: 0 0 10px;
  color: var(--industrial-muted);
  font-size: 12px;
  line-height: 1.45;
}

.pc-accessory-visual {
  position: relative;
  min-height: 96px;
  overflow: hidden;
  border: 1px solid rgba(216, 226, 239, .12);
  border-radius: 8px;
  background: #071522;
}

.pc-accessory-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 118px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.06) brightness(.92);
  transition: scale .42s cubic-bezier(.22, 1, .36, 1), filter .24s ease;
}

.pc-accessory-card:hover .pc-accessory-visual img {
  scale: 1.045;
  filter: saturate(1.08) contrast(1.08) brightness(1);
}

.pc-service-addon {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(231, 120, 0, .32);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(231, 120, 0, .14), rgba(7, 19, 30, .88) 38%),
    rgba(12, 24, 35, .94);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .22);
}

.pc-service-addon-head {
  max-width: 790px;
}

.pc-service-addon-head > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 6px;
  color: #fff;
  background: var(--industrial-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.pc-service-addon-head h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
}

.pc-service-addon-head p {
  margin: 0;
  color: var(--industrial-muted);
  font-size: 15px;
  line-height: 1.6;
}

.pc-service-addon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.pc-service-addon-grid article {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(216, 226, 239, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.pc-service-addon-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #111927;
  background: #ffb347;
  font-weight: 950;
}

.pc-service-addon-grid strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.15;
}

.pc-service-addon-grid p {
  margin: 8px 0 0;
  color: var(--industrial-muted);
  font-size: 13px;
  line-height: 1.5;
}

.pc-service-addon .btn {
  justify-self: start;
  background: var(--industrial-orange);
  border-color: var(--industrial-orange);
  color: #fff;
}

.b2b-quote-header {
  padding: 22px;
  color: #fff;
  background: var(--brand);
}

.b2b-quote-header span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.b2b-quote-header strong {
  display: block;
  font-size: 25px;
  line-height: 1.08;
}

.b2b-quote-actions {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-top: 1px solid var(--line);
}

.b2b-quote-actions .btn {
  width: 100%;
}

.b2b-quote-actions p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.b2b-status-list {
  display: grid;
  gap: 12px;
  padding: 0 20px 20px;
  color: #344253;
  font-size: 13px;
}

.b2b-status-list div {
  display: flex;
  gap: 10px;
}

.b2b-status-list span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--copper);
}

.b2b-industrial.industrial-theme {
  background: #06111d;
}

.b2b-industrial.industrial-theme .b2b-shop-hero {
  background:
    linear-gradient(105deg, rgba(7, 13, 19, .98), rgba(17, 29, 40, .9) 52%, rgba(7, 13, 19, .76)),
    repeating-linear-gradient(115deg, transparent 0 42px, rgba(255, 255, 255, .04) 42px 43px),
    url("pc-photo-substation.jpg") center/cover;
}

.b2b-industrial.industrial-theme .b2b-shop-visual {
  border-color: rgba(255, 255, 255, .16);
  background: #0d1a27;
}

.b2b-industrial.industrial-theme .b2b-shop-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 13, 19, .16));
  pointer-events: none;
}

.b2b-industrial.industrial-theme .b2b-visual-panel {
  z-index: 1;
}

.b2b-industrial.industrial-theme .b2b-category,
.b2b-industrial.industrial-theme .b2b-featured-product,
.b2b-industrial.industrial-theme .b2b-product-card,
.b2b-industrial.industrial-theme .b2b-quote-panel,
.b2b-industrial.industrial-theme .filter-bar {
  border-color: var(--industrial-line);
  background: rgba(16, 26, 36, .94);
  box-shadow: 0 20px 58px rgba(0, 0, 0, .18);
}

.b2b-industrial.industrial-theme .b2b-category:hover {
  border-color: rgba(231, 120, 0, .52);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .24);
}

.b2b-industrial.industrial-theme .b2b-category span,
.b2b-industrial.industrial-theme .b2b-quote-header {
  color: #fff;
  background: #e77800;
}

.b2b-industrial.industrial-theme .b2b-category strong,
.b2b-industrial.industrial-theme .b2b-featured-product h3,
.b2b-industrial.industrial-theme .b2b-product-copy h3,
.b2b-industrial.industrial-theme .b2b-quote-header strong {
  color: #fff;
}

.b2b-industrial.industrial-theme .b2b-category small,
.b2b-industrial.industrial-theme .b2b-featured-product p,
.b2b-industrial.industrial-theme .b2b-product-copy p,
.b2b-industrial.industrial-theme .b2b-quote-actions p,
.b2b-industrial.industrial-theme .b2b-status-list,
.b2b-industrial.industrial-theme .cart-empty,
.b2b-industrial.industrial-theme .cart-line span,
.b2b-industrial.industrial-theme .product-badge span {
  color: var(--industrial-muted);
}

.b2b-industrial.industrial-theme .b2b-product-media {
  background: #071522;
}

.b2b-industrial.industrial-theme .b2b-quote-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .018)),
    rgba(12, 22, 32, .97);
}

.b2b-industrial.industrial-theme .b2b-quote-header {
  background: #e77800;
}

.b2b-industrial.industrial-theme .cart-empty {
  color: rgba(232, 238, 245, .72);
}

.b2b-industrial.industrial-theme .cart-empty strong {
  color: #fff;
}

.b2b-industrial.industrial-theme .b2b-status-list {
  color: rgba(232, 238, 245, .74);
}

.b2b-industrial.industrial-theme .b2b-product-media img,
.b2b-industrial.industrial-theme .b2b-featured-product img {
  filter: saturate(.94) contrast(1.08) brightness(.9);
}

.b2b-industrial.industrial-theme .b2b-specs span {
  color: rgba(232, 238, 245, .86);
  border-color: var(--industrial-line);
  background: rgba(255, 255, 255, .07);
}

.b2b-industrial.industrial-theme .cart-line,
.b2b-industrial.industrial-theme .cart-total,
.b2b-industrial.industrial-theme .b2b-quote-actions {
  border-color: var(--industrial-line);
}

.b2b-industrial.industrial-theme .cart-total strong,
.b2b-industrial.industrial-theme .cart-line strong,
.b2b-industrial.industrial-theme .price {
  color: #fff;
}

.b2b-industrial.industrial-theme .b2b-product-grid {
  gap: 18px;
}

.b2b-industrial.industrial-theme .b2b-product-card {
  grid-template-columns: 1fr;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015)),
    rgba(16, 26, 36, .94);
}

.b2b-industrial.industrial-theme .b2b-product-card::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(231, 120, 0, .28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(231, 120, 0, .62) 0 4px, transparent 5px),
    rgba(6, 17, 29, .62);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
  pointer-events: none;
}

.b2b-industrial.industrial-theme .b2b-product-copy {
  padding: 18px;
}

.b2b-product-card .product-row {
  align-self: end;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(216, 226, 239, .1);
  gap: 10px;
}

.b2b-product-card .price {
  font-size: 17px;
  white-space: nowrap;
}

.b2b-product-card .btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
}

.b2b-industrial.industrial-theme .b2b-product-card [data-add-cart],
.b2b-industrial.industrial-theme .pc-accessory-card [data-add-cart] {
  border-color: #e77800;
  color: #fff;
  background: #e77800;
}

.b2b-industrial.industrial-theme .b2b-product-card [data-add-cart]:hover,
.b2b-industrial.industrial-theme .pc-accessory-card [data-add-cart]:hover {
  border-color: #f39a25;
  background: #f39a25;
}

.b2b-product-card .tag {
  min-height: 26px;
  padding: 0 9px;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .b2b-shop-hero-grid,
  .b2b-shop-layout,
  .b2b-featured-product {
    grid-template-columns: 1fr;
  }

  .pc-shop-category-rail,
  .pc-accessory-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pc-service-addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .pc-product-gallery-grid .pc-product-card,
  .pc-product-gallery-grid .pc-product-card.is-featured,
  .pc-product-gallery-grid .pc-product-card.is-wide {
    grid-column: auto;
  }

  .b2b-quote-panel {
    position: static;
  }

  .b2b-catalog-head .small-note {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 980px) {
  .project-control-site .nav-actions {
    top: 352px;
  }
}

@media (max-width: 720px) {
  .b2b-shop-hero {
    padding: 38px 0 42px;
  }

  .b2b-shop-copy h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  .b2b-hero-metrics,
  .b2b-category-grid,
  .b2b-product-grid,
  .pc-product-gallery-grid {
    grid-template-columns: 1fr;
  }

  .pc-shop-service-track {
    animation-duration: 18s;
  }

  .pc-shop-service-track span {
    min-height: 40px;
    padding: 0 20px;
    font-size: 11px;
  }

  .pc-shop-category-rail {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .pc-shop-category-rail button {
    flex: 0 0 136px;
  }

  .pc-accessory-board {
    grid-template-columns: 1fr;
  }

  .pc-service-addon {
    padding: 18px;
  }

  .pc-service-addon-grid {
    grid-template-columns: 1fr;
  }

  .pc-accessory-card {
    grid-template-columns: 118px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
  }

  .pc-accessory-visual {
    min-height: 112px;
    grid-row: span 2;
  }

  .pc-accessory-card .product-row {
    grid-column: 2;
  }

  .pc-product-family-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .b2b-shop-visual img {
    min-height: 340px;
  }

  .b2b-visual-panel {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .b2b-visual-panel strong {
    font-size: 18px;
  }

  .b2b-category {
    min-height: auto;
  }

  .b2b-category span {
    margin-bottom: 28px;
  }

  .b2b-catalog-head {
    display: block;
  }

  .b2b-industrial.industrial-theme .b2b-filter {
    align-items: stretch;
    gap: 12px;
  }

  .b2b-industrial.industrial-theme .b2b-filter .chip-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2b-industrial.industrial-theme .b2b-filter .chip {
    width: 100%;
  }

  .b2b-industrial.industrial-theme .b2b-filter .small-note {
    max-width: none;
    text-align: left;
  }

  .b2b-catalog-head h2,
  .b2b-featured-product h3 {
    font-size: 30px;
  }

  .b2b-featured-product img {
    min-height: 260px;
  }

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

  .b2b-industrial.industrial-theme .b2b-product-card {
    grid-template-columns: 1fr;
  }

  .b2b-product-media img {
    min-height: 230px;
  }
}

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links,
  .nav-actions {
    position: fixed;
    left: 20px;
    right: 20px;
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .industrial-theme .nav-links,
  .industrial-theme .nav-actions {
    border-color: var(--industrial-line);
    background: #101923;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
  }

  .nav-links {
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border-radius: 8px 8px 0 0;
  }

  .nav-links a {
    padding: 13px 12px;
    border-radius: 7px;
  }

  .nav-actions {
    top: 284px;
    padding: 12px;
    border-top: 0;
    border-radius: 0 0 8px 8px;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
  }

  .hero-grid,
  .split-hero,
  .shop-hero-grid,
  .feature-band,
  .grid-2,
  .content-grid,
  .detail-layout,
  .template-product {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .industrial-theme .hero {
    padding-top: 0;
  }

  .industrial-theme .hero-grid {
    grid-template-columns: 1fr;
    padding: 68px 0 42px;
  }

  .industrial-theme .hero-card img {
    min-height: 390px;
    aspect-ratio: 16 / 10;
  }

  h1 {
    font-size: 54px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .feature-band img {
    min-height: 320px;
  }

  .grid-3,
  .portfolio-grid,
  .metric-grid,
  .product-grid,
  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-hero h1 {
    font-size: 54px;
  }

  .hero-product,
  .hero-product img {
    min-height: 420px;
  }

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

  .cart-panel {
    position: static;
  }

  .template-buy-box {
    position: static;
  }

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

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

  .sidebar {
    position: static;
    height: auto;
  }

  .side-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .app-topbar {
    padding: 0 20px;
  }

  .app-content {
    padding: 24px 20px;
  }
}

@media (max-width: 680px) {
  .nav,
  .hero,
  .shop-hero,
  .wrap,
  .page-hero .wrap {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero-grid,
  .split-hero,
  .shop-hero-grid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .industrial-theme .hero-grid,
  .industrial-theme .hero > .proof-strip {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .industrial-theme .brand {
    max-width: min(286px, calc(100vw - 92px));
    padding: 0;
  }

  .industrial-theme .brand-logo {
    height: 46px;
    max-width: 100%;
  }

  .mining-template-page .brand {
    max-width: min(286px, calc(100vw - 92px));
  }

  .mining-template-page .brand-logo,
  .preview-bar .brand-logo {
    height: 44px;
    max-width: 100%;
  }

  .mining-template-page .template-hero {
    padding: 40px 0 56px;
  }

  .mining-template-page .template-gallery > img {
    min-height: 300px;
  }

  .template-tabs[data-tab-controls] {
    grid-template-columns: 1fr;
  }

  .template-tabs[data-tab-controls]::before {
    top: var(--tab-y, 6px);
    bottom: auto;
    height: var(--tab-h, 48px);
    transition:
      left .34s cubic-bezier(.22, 1, .36, 1),
      top .34s cubic-bezier(.22, 1, .36, 1),
      width .34s cubic-bezier(.22, 1, .36, 1),
      height .34s cubic-bezier(.22, 1, .36, 1);
  }

  .template-tab {
    justify-content: flex-start;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 34px;
    line-height: 1.05;
  }

  .subhead {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 17px;
  }

  .section-title h2,
  .quote-band p {
    font-size: 30px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    display: block;
  }

  .grid-3,
  .grid-2,
  .portfolio-grid,
  .metric-grid,
  .product-grid,
  .admin-grid,
  .proof-strip,
  .form-grid,
  .checkout-steps {
    grid-template-columns: 1fr;
  }

  .market-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

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

  .preview-bar {
    align-items: stretch;
    flex-direction: column;
    padding: 12px 14px;
  }

  .preview-actions {
    flex-wrap: wrap;
  }

  .preview-frame {
    height: calc(100vh - 132px);
  }

  .page-title {
    font-size: 36px;
  }

  .shop-hero {
    padding-top: 34px;
  }

  .shop-hero h1 {
    font-size: 36px;
  }

  .hero-product,
  .hero-product img {
    min-height: 340px;
  }

  .industrial-theme .hero {
    padding-bottom: 46px;
  }

  .industrial-theme .hero-card img {
    min-height: 300px;
  }

  .industrial-theme .hero-card::before {
    inset: 10px;
  }

  .industrial-theme .hero-card::after {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
  }

  .product-badge,
  .filter-bar,
  .product-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .resource {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .resource img {
    width: 82px;
    height: 68px;
  }

  .resource .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hide-mobile {
    display: none;
  }

  .side-nav {
    grid-template-columns: 1fr;
  }

  .app-topbar {
    align-items: stretch;
    flex-direction: column;
    padding: 16px;
  }

  .admin-toolbar,
  .activity {
    align-items: flex-start;
    flex-direction: column;
  }

  .table {
    font-size: 13px;
  }

  .table th:nth-child(3),
  .table td:nth-child(3) {
    display: none;
  }
}

/* Project Control isolated demo */
.project-preview-body {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100vh;
  margin: 0;
  overflow: hidden;
  background: #091522;
}

.project-preview-bar {
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .14), transparent 34% 72%, rgba(163, 188, 196, .1)),
    #06111d;
}

.project-preview-body .preview-frame {
  height: 100%;
}

.project-control-site {
  --industrial-ink: #06111d;
  --industrial-panel: #101a24;
  --industrial-panel-2: #172432;
  --industrial-muted: #a8b5c2;
  --industrial-line: rgba(216, 226, 239, .14);
  --industrial-accent: #e77800;
  --industrial-steel: #a3bcc4;
  color: #e8eef5;
  background: #06111d;
  overflow-x: visible;
}

.project-control-site .topbar {
  border-bottom: 0;
  background: rgba(6, 17, 29, .04);
}

.project-control-site .nav {
  width: min(1240px, calc(100% - 40px));
  min-height: 72px;
  margin-top: 16px;
  padding: 0 16px 0 18px;
  border: 1px solid rgba(216, 226, 239, .12);
  border-radius: 8px;
  background: rgba(6, 17, 29, .82);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}

.project-control-site .brand {
  padding: 0;
  border: 0;
  background: transparent;
}

.project-control-site .brand-logo {
  height: 50px;
  max-width: 286px;
}

.project-control-site .nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: rgba(232, 238, 245, .78);
  line-height: 1.35;
}

.project-control-site .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: #e77800;
  opacity: 0;
  transform: scaleX(.2);
  transition: opacity .2s ease, transform .2s ease;
}

.project-control-site .nav-links a:hover,
.project-control-site .nav-links a[aria-current="page"] {
  color: #fff;
}

.project-control-site .nav-links a:hover::after,
.project-control-site .nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.project-control-site .btn {
  position: relative;
  color: #fff;
  border-color: #e77800;
  background: #e77800;
  box-shadow: 0 16px 36px rgba(231, 120, 0, .18);
  overflow: hidden;
}

.project-control-site .btn::before {
  display: none;
}

.project-control-site .btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .22s ease;
}

.project-control-site .btn:hover {
  transform: translateY(-2px);
  border-color: #d97800;
  background: #d97800;
  box-shadow: 0 22px 48px rgba(231, 120, 0, .22);
}

.project-control-site .btn:hover::before {
  transform: translateX(130%);
}

.project-control-site .btn:hover::after {
  transform: translate(3px, -3px) rotate(45deg);
}

.project-control-site .btn.secondary {
  color: #fff;
  border-color: #e77800;
  background: #e77800;
  box-shadow: 0 16px 36px rgba(231, 120, 0, .18);
}

.project-control-site .pc-nav-round-cta {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  align-content: center;
  justify-items: center;
  gap: 1px;
  width: 122px;
  height: 122px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 50% 42%, rgba(231, 120, 0, .2), transparent 34%),
    rgba(255, 255, 255, .1);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
  text-align: center;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.project-control-site .pc-nav-round-cta::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255, 255, 255, .45);
  border-radius: inherit;
  animation: pcSpin 11s linear infinite;
}

.project-control-site .pc-nav-round-cta::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e77800;
  box-shadow: 0 0 0 6px rgba(231, 120, 0, .16);
}

.project-control-site .pc-nav-round-cta span,
.project-control-site .pc-nav-round-cta small {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .78);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.project-control-site .pc-nav-round-cta strong {
  position: relative;
  z-index: 1;
  max-width: 90px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.project-control-site .pc-nav-round-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(231, 120, 0, .42);
  box-shadow: 0 22px 48px rgba(231, 120, 0, .18);
}

.pc-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: clamp(74px, 8vw, 118px) 0 42px;
  background:
    linear-gradient(110deg, rgba(6, 17, 29, .98), rgba(16, 30, 43, .9) 50%, rgba(6, 17, 29, .76)),
    repeating-linear-gradient(115deg, transparent 0 42px, rgba(255, 255, 255, .045) 42px 43px),
    url("pc-photo-substation.jpg") center/cover;
  overflow: hidden;
}

.pc-hero::after,
.pc-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 120, 0, .72), transparent);
}

.pc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .84fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.pc-hero-copy h1 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .92;
}

.pc-hero-copy .subhead {
  color: rgba(232, 238, 245, .78);
}

.pc-hero-visual {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.pc-logo-slab {
  position: relative;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(216, 226, 239, .16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    rgba(7, 18, 29, .72);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .28);
}

.pc-logo-slab::before,
.pc-logo-slab::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.pc-logo-slab::before {
  inset: 18px;
  border: 1px solid rgba(231, 120, 0, .32);
  animation: pcPulseRing 3.4s ease-in-out infinite;
}

.pc-logo-slab::after {
  right: 20px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: #e77800;
  box-shadow: 0 0 0 8px rgba(231, 120, 0, .16);
}

.pc-logo-slab img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.pc-orbit-cta {
  position: absolute;
  right: -18px;
  bottom: -32px;
  z-index: 2;
  display: grid;
  width: 138px;
  height: 138px;
  align-content: center;
  gap: 2px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 50% 44%, rgba(231, 120, 0, .16), transparent 36%),
    rgba(255, 255, 255, .11);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
  text-align: center;
  text-decoration: none;
}

.pc-orbit-cta::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(255, 255, 255, .48);
  border-radius: inherit;
  animation: pcSpin 11s linear infinite;
}

.pc-orbit-cta::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e77800;
  box-shadow: 0 0 0 8px rgba(231, 120, 0, .16);
}

.pc-orbit-cta span {
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.pc-orbit-cta strong {
  display: block;
  max-width: 96px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.pc-orbit-cta small {
  color: rgba(255, 255, 255, .78);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.pc-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(216, 226, 239, .14);
  border-radius: 8px;
  background: rgba(216, 226, 239, .14);
}

.pc-signal-grid div {
  min-width: 0;
  padding: 18px;
  background: rgba(7, 18, 29, .84);
}

.pc-signal-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1;
}

.pc-signal-grid span {
  display: block;
  margin-top: 7px;
  color: rgba(232, 238, 245, .68);
  font-size: 13px;
}

.pc-proof-ribbon {
  border-top: 1px solid rgba(216, 226, 239, .12);
  border-bottom: 1px solid rgba(216, 226, 239, .12);
  background: #0b1723;
}

.pc-proof-ribbon .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 16px 0;
}

.pc-proof-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(232, 238, 245, .12);
  border-radius: 999px;
  color: rgba(232, 238, 245, .82);
  background: rgba(255, 255, 255, .04);
  font-size: 13px;
  font-weight: 750;
}

.pc-section-light {
  color: #06111d;
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .04) 0 1px, transparent 1px 100%),
    #f4f7fa;
  background-size: 96px 96px, cover;
}

.pc-section-light .eyebrow {
  min-height: 34px;
  padding: 0 13px;
  border-radius: 4px;
  color: #fff;
  background: #e77800;
}

.pc-section-light .eyebrow::before {
  display: none;
}

.pc-section-light .section-title h2,
.pc-section-light .card h3,
.pc-section-light h2,
.pc-section-light h3 {
  color: #06111d;
}

.pc-section-light .section-title p,
.pc-section-light .card p,
.pc-section-light .page-copy,
.pc-section-light .small-note {
  color: #52606f;
}

.pc-section-light .card,
.pc-section-light .side-card,
.pc-section-light .pc-form-card {
  border-color: rgba(6, 17, 29, .1);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 54px rgba(6, 17, 29, .08);
}

.pc-section-light .card {
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease, border-color .28s ease;
}

.pc-section-light .card:hover {
  transform: translateY(-9px);
  border-color: rgba(231, 120, 0, .28);
  box-shadow: 0 30px 70px rgba(6, 17, 29, .14);
}

.pc-services-showcase {
  color: #f7f9fb;
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .07) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(216, 226, 239, .045) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 16% 12%, rgba(231, 120, 0, .12), transparent 28%),
    #06111d;
  background-size: 96px 96px, 96px 96px, cover, cover;
}

.pc-services-showcase .section-title {
  max-width: 880px;
}

.pc-services-showcase .section-title h2 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: .98;
  text-shadow: 0 18px 46px rgba(0, 0, 0, .42);
}

.pc-services-showcase .section-title p {
  max-width: 780px;
  color: rgba(232, 238, 245, .78);
  font-size: 20px;
  line-height: 1.58;
}

.pc-services-showcase .eyebrow {
  color: #fff;
  background: #e77800;
}

.pc-services-head {
  margin-bottom: 30px;
}

.pc-services-showcase .pc-service-grid {
  align-items: stretch;
}

.pc-services-showcase .pc-service-card {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 24px;
  flex-direction: column;
  border-color: rgba(216, 226, 239, .14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018) 46%),
    rgba(11, 24, 36, .96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  isolation: isolate;
}

.pc-services-showcase .pc-service-card::before {
  position: absolute;
  inset: 0 0 auto;
  display: block;
  height: 3px;
  background: linear-gradient(90deg, rgba(100, 150, 165, .72), #e77800, rgba(246, 200, 107, .56));
}

.pc-services-showcase .pc-service-card::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: -1;
  border: 1px solid rgba(216, 226, 239, .08);
  border-radius: 6px;
  opacity: .76;
  pointer-events: none;
}

.pc-services-showcase .pc-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(231, 120, 0, .48);
  background:
    linear-gradient(135deg, rgba(231, 120, 0, .14), rgba(255, 255, 255, .035) 46%),
    rgba(13, 29, 43, .98);
  box-shadow: 0 34px 92px rgba(0, 0, 0, .38);
}

.pc-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.pc-service-number {
  color: rgba(232, 238, 245, .56);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
}

.pc-service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(231, 120, 0, .34);
  border-radius: 50%;
  color: #ffb347;
  background:
    radial-gradient(circle at 50% 50%, rgba(231, 120, 0, .18), transparent 58%),
    rgba(255, 255, 255, .045);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, .025);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), border-color .28s ease, color .28s ease;
}

.pc-service-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pc-service-card:hover .pc-service-icon {
  transform: rotate(-6deg) scale(1.08);
  border-color: rgba(246, 200, 107, .72);
  color: #ffd38c;
}

.pc-services-showcase .pc-service-card .tag {
  align-self: flex-start;
  margin-bottom: 11px;
  border-radius: 7px;
  color: #101820;
  background: #e77800;
}

.pc-services-showcase .pc-service-card h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(22px, 2.1vw, 29px);
  line-height: 1.06;
}

.pc-services-showcase .pc-service-card p {
  color: rgba(232, 238, 245, .75);
  font-size: 15px;
  line-height: 1.58;
}

.pc-service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.pc-service-meta span {
  min-width: 0;
  padding: 7px 10px;
  border: 1px solid rgba(216, 226, 239, .12);
  border-radius: 999px;
  color: rgba(232, 238, 245, .74);
  background: rgba(255, 255, 255, .045);
  font-size: 12px;
  font-weight: 850;
}

.pc-home-service-grid .pc-service-card {
  min-height: 318px;
}

.pc-public-footer {
  padding: 18px 0;
  border-top: 1px solid rgba(216, 226, 239, .1);
  color: rgba(232, 238, 245, .48);
  background: #06111d;
}

.pc-public-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.pc-public-footer span,
.pc-public-footer a {
  color: rgba(232, 238, 245, .48);
  font-size: 12px;
  font-weight: 750;
}

.pc-public-footer span {
  min-width: 0;
}

.pc-public-footer a {
  flex: 0 0 auto;
  text-decoration: none;
  transition: color .2s ease;
}

.pc-public-footer a:hover {
  color: rgba(232, 238, 245, .86);
}

.pc-admin-shortcut {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(216, 226, 239, .18);
  border-radius: 999px;
  color: rgba(232, 238, 245, .86);
  background:
    linear-gradient(135deg, rgba(231, 120, 0, .18), rgba(255, 255, 255, .04)),
    rgba(6, 17, 29, .88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .22s ease, border-color .22s ease, color .22s ease, background .22s ease;
}

.pc-admin-shortcut::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e77800;
  box-shadow: 0 0 0 5px rgba(231, 120, 0, .16);
}

.pc-admin-shortcut:hover {
  transform: translateY(-2px);
  border-color: rgba(231, 120, 0, .62);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(231, 120, 0, .26), rgba(255, 255, 255, .06)),
    rgba(6, 17, 29, .94);
}

.pc-about-split {
  display: grid;
  grid-template-columns: minmax(320px, .96fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.project-control-site .pc-about-section {
  position: relative;
  color: #e8eef5;
  background:
    radial-gradient(circle at 20% 50%, rgba(231, 120, 0, .12), transparent 26%),
    linear-gradient(90deg, rgba(6, 17, 29, .96), rgba(9, 20, 30, .92)),
    #06111d;
  overflow: hidden;
}

.project-control-site .pc-about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(216, 226, 239, .045) 0 1px, transparent 1px 100%);
  background-size: 96px 96px;
  opacity: .5;
  pointer-events: none;
}

.project-control-site .pc-about-section .wrap {
  position: relative;
  z-index: 1;
}

.pc-about-collage {
  position: relative;
  min-height: 535px;
  perspective: 1100px;
  isolation: isolate;
}

.pc-about-collage::before {
  content: "";
  position: absolute;
  inset: 28px 9% 52px 4%;
  z-index: -1;
  border: 1px solid rgba(232, 238, 245, .08);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .13) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(216, 226, 239, .075) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 22% 82%, rgba(231, 120, 0, .18), transparent 30%);
  background-size: 76px 76px, 76px 76px, cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
  opacity: .9;
}

.pc-about-collage::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 12%;
  bottom: 91px;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 120, 0, .92), rgba(246, 200, 107, .48), transparent);
  transform-origin: left center;
  animation: pcAboutTrace 4.8s cubic-bezier(.22, 1, .36, 1) infinite;
  pointer-events: none;
}

.pc-about-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 226, 239, .14);
  border-radius: 14px;
  background: #07131f;
  box-shadow: 0 28px 84px rgba(0, 0, 0, .38);
  isolation: isolate;
  transform-origin: center;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), box-shadow .55s ease, border-color .55s ease;
}

.pc-about-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(246, 200, 107, .16) 49%, transparent 57%),
    linear-gradient(180deg, transparent 54%, rgba(6, 17, 29, .42)),
    linear-gradient(90deg, rgba(246, 200, 107, .08), transparent 38%);
  background-size: 240% 100%, 100% 100%, 100% 100%;
  background-position: -170% 0, 0 0, 0 0;
  animation: pcAboutPhotoSweep 7.6s ease-in-out infinite;
  pointer-events: none;
}

.pc-about-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(232, 238, 245, .14);
  border-radius: 10px;
  pointer-events: none;
}

.pc-about-frame:hover {
  transform: translateY(-8px) rotate(.001deg);
  box-shadow: 0 34px 86px rgba(0, 0, 0, .42);
}

.pc-about-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.08) brightness(1.08);
  scale: 1.035;
  transition: scale .72s cubic-bezier(.22, 1, .36, 1), filter .55s ease;
  will-change: object-position, scale, filter;
}

.pc-about-frame:hover img {
  scale: 1.085;
  filter: saturate(1.08) contrast(1.12) brightness(1.12);
}

.pc-about-frame-main {
  width: 86%;
  height: 365px;
  z-index: 1;
  animation: pcAboutFloatMain 9.4s ease-in-out infinite;
}

.pc-about-frame-main img {
  animation: pcAboutPhotoDriftMain 13s ease-in-out infinite alternate;
}

.pc-about-frame-small {
  position: absolute;
  right: -22px;
  bottom: 20px;
  z-index: 4;
  width: 61%;
  height: 258px;
  border: 12px solid rgba(6, 17, 29, .9);
  background: rgba(7, 19, 31, .92);
  box-shadow: 0 30px 76px rgba(0, 0, 0, .5), 0 0 0 1px rgba(232, 238, 245, .08);
  animation: pcAboutFloatSmall 9.2s ease-in-out infinite;
  animation-delay: .35s;
}

.pc-about-frame-small::before {
  animation-delay: -3.3s;
}

.pc-about-frame-small img {
  animation: pcAboutPhotoDriftSmall 11.5s ease-in-out infinite alternate;
  animation-delay: -1.8s;
}

.pc-about-frame figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: calc(100% - 36px);
  padding: 10px 14px;
  border: 1px solid rgba(232, 238, 245, .2);
  border-radius: 8px;
  color: #f7f9fb;
  background:
    linear-gradient(135deg, rgba(8, 20, 32, .88), rgba(8, 20, 32, .68)),
    rgba(6, 17, 29, .58);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.pc-about-frame figcaption span {
  color: #f6c86b;
  font-size: 11px;
  font-weight: 900;
}

.pc-about-frame-main figcaption {
  top: 18px;
  left: 22px;
  right: auto;
  bottom: auto;
  white-space: nowrap;
}

.pc-years-badge {
  position: absolute;
  left: 34px;
  bottom: 8px;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  width: min(43%, 258px);
  min-height: 162px;
  padding: 24px 26px;
  border: 1px solid rgba(246, 200, 107, .24);
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(246, 200, 107, .18), transparent 46%),
    linear-gradient(135deg, rgba(231, 120, 0, .96), rgba(198, 111, 0, .82));
  box-shadow: 0 24px 58px rgba(231, 120, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px) saturate(1.1);
  animation: pcAboutBadgeGlow 3.6s ease-in-out infinite;
}

.pc-years-badge::before {
  content: "";
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 58px 0 0 rgba(255, 255, 255, .24);
}

.pc-years-badge strong {
  display: block;
  font-size: clamp(52px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.pc-years-badge span {
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.pc-years-badge small {
  max-width: 170px;
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.18;
}

.pc-about-copy h2 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1;
}

.pc-about-copy p {
  max-width: 690px;
  color: rgba(232, 238, 245, .74);
  font-size: 18px;
  line-height: 1.65;
}

.pc-about-copy .check-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.pc-about-copy .check-list li {
  color: rgba(247, 249, 251, .9);
  font-weight: 800;
  line-height: 1.45;
}

.pc-about-copy .check-list li::before {
  margin-top: 7px;
  background: #e77800;
  box-shadow: 0 0 0 6px rgba(231, 120, 0, .15);
}

.pc-about-section .eyebrow {
  color: #fff;
  background: #e77800;
}

.pc-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pc-card-grid .article-card img {
  filter: saturate(1.04) contrast(1.04);
}

.pc-section-dark {
  color: #e8eef5;
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .07), transparent 36%),
    #06111d;
}

.pc-feature {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 226, 239, .14);
  border-radius: 8px;
  background: #101a24;
  box-shadow: 0 28px 78px rgba(0, 0, 0, .28);
}

.pc-feature img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.07);
}

.pc-feature-copy {
  padding: clamp(30px, 5vw, 62px);
}

.pc-feature-copy h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.pc-feature-copy p,
.pc-feature-copy .check-list li {
  color: rgba(232, 238, 245, .78);
}

.pc-feature-copy .check-list li::before {
  background: var(--industrial-accent);
}

.pc-feature-copy .hero-actions {
  margin-top: 36px;
  gap: 16px;
}

.pc-page-hero {
  position: relative;
  padding: 64px 0 48px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(6, 17, 29, .98), rgba(20, 34, 47, .92)),
    repeating-linear-gradient(115deg, transparent 0 42px, rgba(255, 255, 255, .045) 42px 43px),
    url("pc-photo-switchgear.jpg") center/cover;
  overflow: hidden;
}

.pc-page-hero .breadcrumb,
.pc-page-hero .breadcrumb a,
.pc-page-hero .page-copy {
  color: rgba(232, 238, 245, .76);
}

.pc-page-hero .page-title {
  max-width: 980px;
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
}

.pc-service-grid .card {
  min-height: 230px;
}

.pc-method {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.pc-method h2,
.pc-cta-band h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.pc-method p {
  color: rgba(232, 238, 245, .76);
}

.pc-step-grid,
.pc-timeline,
.pc-board-grid {
  display: grid;
  gap: 14px;
}

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

.pc-step-grid article,
.pc-timeline article,
.pc-board-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(216, 226, 239, .14);
  border-radius: 8px;
  background: rgba(16, 26, 36, .86);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), border-color .28s ease, background .28s ease;
}

.pc-step-grid article:hover,
.pc-board-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 120, 0, .42);
  background: rgba(22, 36, 50, .96);
}

.pc-step-grid span,
.pc-timeline span,
.pc-board-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--industrial-accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.pc-step-grid strong,
.pc-timeline strong,
.pc-board-grid strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.pc-step-grid p,
.pc-timeline p,
.pc-board-grid p {
  margin: 10px 0 0;
  color: rgba(232, 238, 245, .7);
}

.pc-cta-band {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(231, 120, 0, .2), transparent 42%),
    #101a24;
}

.pc-cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.pc-cta-band h2 {
  max-width: 780px;
  margin-bottom: 0;
}

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

.pc-timeline article {
  color: #06111d;
  border-color: rgba(6, 17, 29, .1);
  background: #fff;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease;
}

.pc-timeline article:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(6, 17, 29, .12);
}

.pc-timeline strong {
  color: #06111d;
}

.pc-timeline p {
  color: #52606f;
}

.pc-experience-showcase .pc-timeline {
  gap: 18px;
}

.pc-experience-showcase .pc-timeline article {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 24px;
  flex-direction: column;
  color: #fff;
  border-color: rgba(216, 226, 239, .14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018) 46%),
    rgba(11, 24, 36, .96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  isolation: isolate;
}

.pc-experience-showcase .pc-timeline article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(100, 150, 165, .72), #e77800, rgba(246, 200, 107, .56));
}

.pc-experience-showcase .pc-timeline article::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(216, 226, 239, .08);
  border-radius: 6px;
  opacity: .76;
  pointer-events: none;
}

.pc-experience-showcase .pc-timeline article:hover {
  transform: translateY(-10px);
  border-color: rgba(231, 120, 0, .48);
  background:
    linear-gradient(135deg, rgba(231, 120, 0, .14), rgba(255, 255, 255, .035) 46%),
    rgba(13, 29, 43, .98);
  box-shadow: 0 34px 92px rgba(0, 0, 0, .38);
}

.pc-experience-showcase .pc-timeline .pc-service-top {
  margin-bottom: 24px;
}

.pc-experience-showcase .pc-timeline .pc-service-number {
  display: inline-flex;
  margin: 0;
  color: rgba(232, 238, 245, .56);
  font-size: 13px;
  letter-spacing: .08em;
}

.pc-experience-showcase .pc-timeline .pc-service-icon {
  display: grid;
  margin: 0;
  color: #ffb347;
}

.pc-experience-showcase .pc-timeline .tag {
  align-self: flex-start;
  margin-bottom: 11px;
  border-radius: 7px;
  color: #101820;
  background: #e77800;
}

.pc-experience-showcase .pc-timeline strong {
  color: #fff;
  font-size: clamp(22px, 2.1vw, 29px);
  line-height: 1.06;
}

.pc-experience-showcase .pc-timeline p {
  color: rgba(232, 238, 245, .75);
  font-size: 15px;
  line-height: 1.58;
}

.pc-experience-showcase .pc-timeline .pc-service-meta {
  margin-top: auto;
}

.pc-experience-showcase .pc-timeline .pc-service-meta span {
  display: inline-flex;
  margin: 0;
  color: rgba(232, 238, 245, .74);
}

.pc-shop-hero {
  background:
    linear-gradient(105deg, rgba(6, 17, 29, .98), rgba(17, 29, 40, .9) 52%, rgba(6, 17, 29, .76)),
    repeating-linear-gradient(115deg, transparent 0 42px, rgba(255, 255, 255, .04) 42px 43px),
    url("pc-photo-substation.jpg") center/cover;
}

.pc-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  color: #f7f9fb;
  background:
    radial-gradient(circle at 50% 42%, rgba(231, 120, 0, .18), transparent 24%),
    repeating-linear-gradient(115deg, transparent 0 34px, rgba(255, 255, 255, .04) 34px 35px),
    #06111d;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow: hidden;
  transition: opacity .42s ease, visibility .42s ease, transform .42s cubic-bezier(.76, 0, .24, 1);
}

.pc-loader-skip .pc-preloader {
  display: none !important;
}

.pc-preloader::before,
.pc-preloader::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.pc-preloader::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .12) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(216, 226, 239, .06) 0 1px, transparent 1px 100%);
  background-size: 96px 96px;
  opacity: .45;
  animation: pcPreloaderGrid 1.8s ease both;
}

.pc-preloader::after {
  left: -20%;
  right: -20%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 120, 0, .88), rgba(232, 238, 245, .38), transparent);
  transform: translateY(-50%) scaleX(0);
  transform-origin: center;
  animation: pcPreloaderTrace .92s cubic-bezier(.22, 1, .36, 1) .18s forwards;
}

.pc-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-22px);
}

.pc-preloader-core {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(440px, calc(100vw - 44px));
  min-height: 260px;
  isolation: isolate;
  transform: translateY(12px) scale(.96);
  opacity: 0;
  animation: pcPreloaderCoreIn .72s cubic-bezier(.22, 1, .36, 1) .08s forwards;
}

.pc-preloader-core::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: min(560px, 88vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 120, 0, .66), rgba(216, 226, 239, .22), transparent);
  transform: translate(-50%, -54%) scaleX(0);
  transform-origin: center;
  animation: pcPreloaderAxis .86s cubic-bezier(.22, 1, .36, 1) .24s forwards;
}

.pc-preloader-ring,
.pc-preloader-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(260px, 68vw);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -54%);
  pointer-events: none;
}

.pc-preloader-ring {
  border: 2px solid rgba(255, 255, 255, .12);
  border-top-color: #e77800;
  border-right-color: rgba(240, 189, 95, .78);
  filter: drop-shadow(0 0 18px rgba(231, 120, 0, .22));
  animation: pcPreloaderSpin 1.05s linear infinite, pcPreloaderRingSet 1.8s ease-in-out infinite;
}

.pc-preloader-pulse {
  border: 1px solid rgba(231, 120, 0, .3);
  animation: pcPreloaderPulse 1.45s ease-in-out infinite;
}

.pc-preloader-logo-shell {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(205px, 52vw);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  animation: pcPreloaderLogoShell .82s cubic-bezier(.22, 1, .36, 1) .38s both;
}

.pc-preloader-logo-shell::before {
  content: "";
  position: absolute;
  inset: -18px -24px;
  z-index: 2;
  background: linear-gradient(100deg, transparent 0 38%, rgba(231, 120, 0, .22) 48%, rgba(180, 206, 211, .26) 56%, transparent 68%);
  transform: translateX(-115%);
  animation: pcPreloaderLogoScan 1.05s cubic-bezier(.22, 1, .36, 1) .32s forwards;
  pointer-events: none;
}

.pc-preloader-logo-shell img {
  width: 100%;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  transform-origin: center;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, .34));
  animation:
    pcPreloaderLogoReveal .52s cubic-bezier(.22, 1, .36, 1) .08s both,
    pcPreloaderLogoHold 1.9s ease-in-out .72s infinite;
}

.pc-preloader-core strong {
  position: relative;
  z-index: 1;
  color: rgba(232, 238, 245, .82);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0;
  animation: pcPreloaderTextIn .5s ease .82s forwards;
}

.pc-shop-panel {
  display: grid;
  gap: 8px;
}

.pc-shop-panel small {
  display: block;
  max-width: 420px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.45;
}

.b2b-industrial.industrial-theme .b2b-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(216, 226, 239, .12);
  background: rgba(12, 22, 32, .86);
}

.b2b-industrial.industrial-theme .b2b-filter .chip {
  border-radius: 6px;
  color: rgba(232, 238, 245, .86);
  border-color: rgba(216, 226, 239, .18);
  background: rgba(255, 255, 255, .075);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.b2b-industrial.industrial-theme .b2b-filter .chip:hover {
  transform: translateY(-2px);
  border-color: rgba(231, 120, 0, .46);
  background: rgba(231, 120, 0, .12);
}

.b2b-industrial.industrial-theme .b2b-filter .chip.active {
  color: #fff;
  border-color: transparent;
  background: #e77800;
}

.b2b-industrial.industrial-theme .b2b-filter .small-note {
  max-width: 360px;
  color: rgba(232, 238, 245, .7);
  text-align: right;
}

.b2b-industrial.industrial-theme .b2b-category.active {
  border-color: rgba(231, 120, 0, .62);
  background:
    linear-gradient(135deg, rgba(231, 120, 0, .13), transparent 46%),
    #fff;
  box-shadow: 0 18px 42px rgba(6, 17, 29, .12);
}

.b2b-industrial.industrial-theme [data-product-category] {
  transition: opacity .28s ease, transform .28s ease;
}

.b2b-industrial.industrial-theme [data-product-category][hidden] {
  display: none;
}

.pc-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pc-product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(216, 226, 239, .12);
  border-radius: 999px;
  color: rgba(232, 238, 245, .68);
  background: rgba(255, 255, 255, .045);
  font-size: 11px;
  font-weight: 750;
}

.pc-shop-empty {
  margin: 20px 0 0;
  padding: 18px;
  border: 1px dashed rgba(216, 226, 239, .18);
  border-radius: 8px;
  color: var(--industrial-muted);
  background: rgba(16, 26, 36, .72);
  text-align: center;
}

.pc-quote-progress {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--industrial-line);
  color: rgba(232, 238, 245, .72);
  background: rgba(255, 255, 255, .045);
  font-size: 13px;
}

.pc-quote-progress strong {
  color: #f0bd5f;
}

.cart-line-actions {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.cart-qty-controls {
  display: inline-grid;
  grid-template-columns: 28px 32px 28px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(216, 226, 239, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
}

.cart-line-actions button {
  padding: 0;
  border: 0;
  color: #f0bd5f;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.cart-qty-controls button {
  min-height: 28px;
  color: #f7f9fb;
  font-size: 15px;
}

.cart-qty-controls em {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.b2b-quote-actions .btn.secondary {
  width: 100%;
}

.b2b-quote-actions .btn.is-disabled {
  opacity: .72;
  cursor: not-allowed;
}

.pc-shop-process .section-title h2 {
  color: #fff;
}

.pc-shop-process .section-title p {
  color: rgba(232, 238, 245, .72);
}

.pc-shop-gallery {
  position: relative;
  color: #f7f9fb;
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(216, 226, 239, .045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #06111d, #0b1824 58%, #06111d),
    #06111d;
  background-size: 88px 88px, 88px 88px, cover, cover;
  overflow: hidden;
}

.pc-shop-gallery::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 88px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 120, 0, .84), rgba(216, 226, 239, .28), transparent);
  opacity: .72;
  pointer-events: none;
}

.pc-shop-gallery::after {
  content: "";
  position: absolute;
  inset: auto 0 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 120, 0, .62), transparent 46%, rgba(216, 226, 239, .18));
  opacity: .58;
  pointer-events: none;
}

.pc-shop-gallery-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.pc-gallery-copy h2 {
  max-width: 560px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.pc-gallery-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(232, 238, 245, .72);
  font-size: 17px;
  line-height: 1.7;
}

.pc-gallery-metrics {
  display: grid;
  gap: 10px;
  max-width: 430px;
  margin-top: 28px;
}

.pc-gallery-metrics span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(216, 226, 239, .14);
  border-radius: 8px;
  color: rgba(232, 238, 245, .76);
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 780;
}

.pc-gallery-metrics strong {
  display: inline-grid;
  min-width: 54px;
  color: #fff;
  font-size: 21px;
  line-height: 1;
}

.pc-gallery-shell {
  display: grid;
  gap: 18px;
  perspective: 1200px;
}

.pc-gallery-stage {
  position: relative;
  min-height: min(650px, 62vw);
  border: 1px solid rgba(216, 226, 239, .18);
  border-radius: 14px;
  background: #0d1a27;
  overflow: hidden;
  box-shadow: 0 38px 110px rgba(0, 0, 0, .42);
  transform: rotateX(.001deg);
  isolation: isolate;
}

.pc-gallery-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 4;
  border: 1px solid rgba(232, 238, 245, .13);
  border-radius: 10px;
  pointer-events: none;
}

.pc-gallery-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .16) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(216, 226, 239, .08) 0 1px, transparent 1px 100%);
  background-size: 76px 76px;
  mix-blend-mode: screen;
  opacity: .28;
  animation: pcGalleryGridDrift 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.pc-gallery-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  margin: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .92s ease, transform 1.2s ease;
}

.pc-gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 17, 29, .03), rgba(6, 17, 29, .78)),
    linear-gradient(90deg, rgba(6, 17, 29, .52), transparent 62%),
    linear-gradient(135deg, rgba(231, 120, 0, .14), transparent 38%);
  pointer-events: none;
}

.pc-gallery-slide.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  animation: pcGalleryBreath 4.8s ease both;
}

.pc-gallery-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.08) brightness(.96);
  transform-origin: center;
}

.pc-gallery-slide.active img {
  animation: pcGalleryKenBurns 6s ease both;
}

.pc-gallery-slide figcaption {
  display: none;
}

.pc-gallery-caption {
  position: absolute;
  left: clamp(18px, 3vw, 30px);
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 5;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  max-width: 720px;
  padding: 16px;
  border: 1px solid rgba(216, 226, 239, .18);
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 17, 29, .78), rgba(6, 17, 29, .54)),
    rgba(6, 17, 29, .6);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .34);
  backdrop-filter: blur(14px) saturate(1.1);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 850;
}

.pc-gallery-caption span {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #e77800;
  font-size: 13px;
}

.pc-gallery-caption strong {
  display: block;
  min-width: 0;
  color: #fff;
  line-height: 1.08;
}

.pc-gallery-caption small {
  display: block;
  margin-top: 6px;
  color: rgba(232, 238, 245, .74);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.pc-gallery-progress-track {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  z-index: 6;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(232, 238, 245, .18);
}

.pc-gallery-progress-track span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #e77800;
  transform: scaleX(0);
  transform-origin: left center;
}

.pc-gallery-progress-track span.is-running {
  animation: pcGalleryProgress 5.2s linear forwards;
}

/* Kept for accessibility and as the JS caption source. */
.pc-gallery-slide figcaption {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 12px;
  padding: clamp(20px, 4vw, 34px);
  color: #fff;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 850;
  opacity: 0;
  visibility: hidden;
  transition: none;
}

.pc-gallery-slide figcaption span {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #e77800;
  font-size: 13px;
}

.pc-gallery-slide.active figcaption {
  opacity: 1;
  visibility: visible;
}

.pc-gallery-dots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.pc-gallery-thumbs button {
  position: relative;
  min-width: 0;
  height: 82px;
  padding: 0;
  border: 1px solid rgba(216, 226, 239, .16);
  border-radius: 10px;
  background: #0d1a27;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
  overflow: hidden;
  cursor: pointer;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, opacity .24s ease;
}

.pc-gallery-thumbs button:hover,
.pc-gallery-thumbs button:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(231, 120, 0, .72);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .28);
  outline: none;
}

.pc-gallery-thumbs button.active {
  border-color: #e77800;
  box-shadow: 0 0 0 1px rgba(231, 120, 0, .6), 0 22px 48px rgba(0, 0, 0, .34);
}

.pc-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05) brightness(.7);
  transition: filter .24s ease, scale .24s ease;
}

.pc-gallery-thumbs button.active img,
.pc-gallery-thumbs button:hover img {
  filter: saturate(1.1) contrast(1.08) brightness(1);
  scale: 1.05;
}

.pc-gallery-thumbs button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 17, 29, .78));
  pointer-events: none;
}

.pc-gallery-thumbs button span {
  position: absolute;
  left: 9px;
  bottom: 8px;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(6, 17, 29, .78);
  font-size: 11px;
  font-weight: 900;
}

.pc-gallery-thumbs button.active span {
  background: #e77800;
}

.pc-contact-layout {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 450px);
  gap: clamp(24px, 4vw, 42px);
}

.pc-contact-showcase {
  position: relative;
  color: #f7f9fb;
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .06) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(216, 226, 239, .045) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 18% 12%, rgba(231, 120, 0, .13), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(100, 150, 165, .11), transparent 28%),
    #06111d;
  background-size: 96px 96px, 96px 96px, cover, cover, cover;
}

.pc-contact-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.pc-contact-kpis span {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(216, 226, 239, .14);
  border-radius: 8px;
  color: rgba(232, 238, 245, .72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .022)),
    rgba(12, 24, 35, .84);
  font-size: 13px;
  line-height: 1.45;
}

.pc-contact-kpis strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.pc-contact-showcase .pc-form-card,
.pc-contact-showcase .pc-contact-panel {
  border-color: rgba(216, 226, 239, .14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .02) 46%),
    rgba(11, 24, 36, .96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.pc-contact-showcase .pc-form-card::before {
  background: linear-gradient(90deg, rgba(100, 150, 165, .72), #e77800, rgba(246, 200, 107, .56));
}

.pc-contact-showcase .pc-form-head h2,
.pc-contact-showcase .pc-contact-panel h3 {
  color: #fff;
}

.pc-contact-showcase .pc-form-head p,
.pc-contact-showcase .pc-form-actions p,
.pc-contact-showcase .pc-contact-panel .small-note {
  color: rgba(232, 238, 245, .72);
}

.pc-contact-showcase .pc-form-card .field label {
  color: rgba(232, 238, 245, .82);
}

.pc-contact-showcase .pc-form-card .field input,
.pc-contact-showcase .pc-form-card .field textarea,
.pc-contact-showcase .pc-form-card .field select {
  border-color: rgba(216, 226, 239, .18);
  color: #fff;
  background: rgba(255, 255, 255, .055);
}

.pc-contact-showcase .pc-form-card .field input::placeholder,
.pc-contact-showcase .pc-form-card .field textarea::placeholder {
  color: rgba(232, 238, 245, .42);
}

.pc-contact-showcase .pc-form-card .field select option {
  color: #06111d;
}

.pc-contact-showcase .pc-form-card .field input:focus,
.pc-contact-showcase .pc-form-card .field textarea:focus,
.pc-contact-showcase .pc-form-card .field select:focus {
  border-color: rgba(231, 120, 0, .74);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 4px rgba(231, 120, 0, .13);
}

.pc-contact-showcase .pc-contact-panel {
  position: sticky;
  top: 96px;
  color: #e8eef5;
}

.pc-contact-showcase .pc-contact-panel .card-pad + .card-pad {
  border-top-color: rgba(216, 226, 239, .12);
  background: rgba(255, 255, 255, .035);
}

.pc-contact-showcase .pc-contact-panel .spec-list li {
  border-bottom-color: rgba(216, 226, 239, .12);
}

.pc-contact-showcase .pc-contact-panel .spec-list strong {
  color: #fff;
}

.pc-contact-showcase .pc-contact-panel .btn.secondary {
  color: #fff;
  background: #e77800;
  border-color: #e77800;
}

.pc-section-light .pc-form-card {
  position: relative;
  gap: 18px 16px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(6, 17, 29, .1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(246, 249, 252, .96)),
    #fff;
  box-shadow: 0 26px 72px rgba(6, 17, 29, .12);
  overflow: hidden;
}

.pc-section-light .pc-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #e77800, #f6c86b, #536879);
}

.pc-section-light .pc-form-card:hover {
  transform: none;
  border-color: rgba(231, 120, 0, .28);
  box-shadow: 0 30px 78px rgba(6, 17, 29, .14);
}

.pc-form-head {
  display: grid;
  grid-column: 1 / -1;
  gap: 8px;
  margin-bottom: 4px;
}

.pc-form-card > .full {
  grid-column: 1 / -1;
}

.pc-form-head span {
  color: #e77800;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pc-form-head h2 {
  margin: 0;
  color: #06111d;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.05;
}

.pc-form-head p,
.pc-form-actions p {
  margin: 0;
  color: #52606f;
  line-height: 1.55;
}

.pc-form-card .field {
  gap: 8px;
}

.pc-form-card .field label {
  color: #22313f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pc-form-card .field input,
.pc-form-card .field textarea,
.pc-form-card .field select {
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(83, 104, 121, .18);
  border-radius: 8px;
  color: #06111d;
  background: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.pc-form-card .field textarea {
  min-height: 160px;
  line-height: 1.55;
}

.pc-form-card .field input::placeholder,
.pc-form-card .field textarea::placeholder {
  color: #8290a0;
}

.pc-form-card .field input:focus,
.pc-form-card .field textarea:focus,
.pc-form-card .field select:focus {
  border-color: rgba(231, 120, 0, .72);
  outline: 0;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(231, 120, 0, .13), inset 0 1px 0 rgba(255, 255, 255, .72);
}

.pc-form-card .field input:-webkit-autofill,
.pc-form-card .field textarea:-webkit-autofill,
.pc-form-card .field select:-webkit-autofill {
  -webkit-text-fill-color: #06111d;
  box-shadow: 0 0 0 1000px #eef4ff inset;
}

.pc-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 2px;
}

.pc-form-card .btn {
  justify-self: start;
  min-width: 230px;
}

.pc-form-card .btn:disabled {
  cursor: wait;
  opacity: .82;
}

.pc-form-status {
  padding: 14px 16px;
  border: 1px solid rgba(50, 142, 91, .22);
  border-radius: 8px;
  color: #163d28;
  background: #ecfbf2;
  font-weight: 800;
}

.pc-section-light .pc-contact-panel {
  position: sticky;
  top: 96px;
  color: #e8eef5;
  border-color: rgba(216, 226, 239, .16);
  background:
    linear-gradient(145deg, rgba(9, 19, 29, .96), rgba(16, 31, 43, .94)),
    #0b1723;
  box-shadow: 0 28px 78px rgba(6, 17, 29, .18);
}

.pc-contact-panel .card-pad {
  padding: clamp(24px, 3vw, 32px);
}

.pc-contact-panel .card-pad + .card-pad {
  border-top-color: rgba(216, 226, 239, .12);
  background: rgba(255, 255, 255, .035);
}

.pc-contact-panel .pc-contact-logo {
  width: min(100%, 300px);
  max-width: 100%;
  height: auto;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
}

.pc-contact-panel h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 26px;
}

.pc-contact-panel .spec-list {
  gap: 0;
}

.pc-contact-panel .spec-list li {
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  min-height: 58px;
  padding: 14px 0;
  border-bottom-color: rgba(216, 226, 239, .12);
}

.pc-contact-panel .spec-list span {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(231, 120, 0, .34);
  border-radius: 50%;
  color: #f6c86b;
  background: rgba(231, 120, 0, .1);
  font-size: 12px;
  font-weight: 900;
}

.pc-contact-panel .spec-list strong {
  color: #f7f9fb;
  font-size: 15px;
  line-height: 1.25;
}

.pc-contact-panel .small-note {
  color: rgba(232, 238, 245, .74);
  font-size: 15px;
  line-height: 1.65;
}

.pc-contact-panel .btn {
  width: 100%;
  margin-top: 14px;
}

.project-control-admin .sidebar .brand {
  padding: 0;
  border: 0;
  background: transparent;
}

.project-control-admin .brand-logo {
  height: 50px;
  max-width: 260px;
}

.project-control-admin .metric p {
  margin: 8px 0 0;
  color: var(--industrial-muted);
}

.project-control-admin .pc-admin-section {
  padding: 32px 0 0;
}

.pc-admin-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin: 22px 0 26px;
  padding: 14px 16px;
  border: 1px solid rgba(231, 120, 0, .24);
  border-radius: 8px;
  color: rgba(232, 238, 245, .72);
  background:
    linear-gradient(135deg, rgba(231, 120, 0, .13), rgba(255, 255, 255, .035)),
    rgba(16, 26, 36, .86);
}

.pc-admin-note span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #101820;
  background: #e77800;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pc-admin-note p {
  margin: 0;
}

.pc-admin-login[hidden],
.pc-backoffice-app[hidden] {
  display: none !important;
}

.pc-admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  color: #e8eef5;
  background:
    linear-gradient(90deg, rgba(231, 120, 0, .08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(216, 226, 239, .045) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 18% 24%, rgba(231, 120, 0, .16), transparent 24%),
    #06111d;
  background-size: 96px 96px, 96px 96px, auto, auto;
}

.pc-admin-login-card {
  width: min(100%, 520px);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--industrial-line);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(16, 26, 36, .96), rgba(9, 18, 27, .94)),
    #101a24;
  box-shadow: 0 34px 86px rgba(0, 0, 0, .32);
}

.pc-admin-login-card .brand-logo {
  width: min(100%, 310px);
  height: auto;
  margin-bottom: 28px;
}

.pc-admin-login-card h1 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(34px, 6vw, 54px);
  line-height: .98;
}

.pc-admin-login-card p,
.pc-admin-login-card small {
  color: rgba(232, 238, 245, .72);
}

.pc-admin-login-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.pc-admin-login-form label,
.pc-admin-product-form label,
.pc-admin-detail label {
  display: grid;
  gap: 7px;
  color: rgba(232, 238, 245, .82);
  font-size: 13px;
  font-weight: 850;
}

.pc-admin-login-form input,
.pc-admin-product-form input,
.pc-admin-product-form textarea,
.pc-admin-product-form select,
.pc-admin-detail textarea,
.pc-admin-detail select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(216, 226, 239, .16);
  border-radius: 8px;
  color: #f7f9fb;
  background: rgba(255, 255, 255, .065);
  outline: none;
}

.pc-admin-product-form textarea,
.pc-admin-detail textarea {
  resize: vertical;
}

.pc-admin-login-form input:focus,
.pc-admin-product-form input:focus,
.pc-admin-product-form textarea:focus,
.pc-admin-product-form select:focus,
.pc-admin-detail textarea:focus,
.pc-admin-detail select:focus {
  border-color: rgba(231, 120, 0, .62);
  box-shadow: 0 0 0 3px rgba(231, 120, 0, .14);
}

.pc-admin-inline-status,
.pc-admin-form-actions p {
  min-height: 20px;
  margin: 0;
  color: #f0bd5f;
  font-size: 13px;
  font-weight: 800;
}

.pc-backoffice-section {
  margin-top: 28px;
}

.pc-admin-two-col,
.pc-admin-products {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 18px;
  align-items: start;
}

.pc-admin-table-wrap {
  min-width: 0;
  overflow: auto;
  border: 1px solid var(--industrial-line);
  border-radius: 8px;
}

.pc-admin-table {
  min-width: 720px;
}

.pc-admin-table tbody tr {
  cursor: pointer;
  transition: background .18s ease;
}

.pc-admin-table tbody tr:hover {
  background: rgba(231, 120, 0, .08);
}

.pc-admin-table td strong,
.pc-admin-table td span {
  display: block;
}

.pc-admin-table td span {
  margin-top: 4px;
  color: var(--industrial-muted);
  font-size: 12px;
}

.pc-admin-detail,
.pc-admin-product-form {
  min-width: 0;
  border: 1px solid var(--industrial-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
    rgba(12, 22, 32, .96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.pc-admin-detail {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.pc-admin-detail > span,
.pc-admin-product-form .pc-form-head span {
  color: #e77800;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pc-admin-detail h3,
.pc-admin-product-form h2 {
  margin: 0;
  color: #fff;
}

.pc-admin-detail p {
  margin: 0;
  color: rgba(232, 238, 245, .72);
  font-size: 14px;
  line-height: 1.6;
}

.pc-admin-request-items {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc-admin-request-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(216, 226, 239, .12);
  color: rgba(232, 238, 245, .82);
  font-size: 13px;
}

.pc-admin-product-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

.pc-admin-product-form .full,
.pc-admin-product-form .pc-form-head,
.pc-admin-form-actions {
  grid-column: 1 / -1;
}

.pc-admin-product-form .pc-form-head p {
  margin: 6px 0 0;
  color: rgba(232, 238, 245, .68);
}

.pc-admin-check {
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center;
  justify-content: start;
}

.pc-admin-check input {
  width: 18px;
  min-height: 18px;
}

.pc-admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.pc-admin-form-actions .btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.pc-admin-mini-button {
  border: 0;
  cursor: pointer;
}

.pc-project-board {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--industrial-line);
  border-radius: 8px;
  background: rgba(16, 26, 36, .94);
}

.pc-board-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pc-board-grid article {
  background: rgba(255, 255, 255, .045);
}

.pc-reveal {
  transform: translateY(34px);
  opacity: 0;
  transition:
    transform .82s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
    opacity .82s ease var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.pc-reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.pc-hero-copy .pc-reveal {
  transform: translateX(-28px);
}

.pc-hero-copy .pc-reveal.is-visible {
  transform: translateX(0);
}

.pc-hero-visual.pc-reveal,
.pc-feature img.pc-reveal {
  transform: translateX(32px) scale(.98);
}

.pc-hero-visual.pc-reveal.is-visible,
.pc-feature img.pc-reveal.is-visible {
  transform: translateX(0) scale(1);
}

@keyframes pcSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pcPulseRing {
  0%,
  100% {
    transform: scale(.96);
    opacity: .55;
  }

  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

@keyframes pcAboutFloatMain {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(.001deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(.001deg);
  }
}

@keyframes pcAboutFloatSmall {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(.001deg);
  }

  50% {
    transform: translate3d(-7px, 8px, 0) rotate(.001deg);
  }
}

@keyframes pcAboutBadgeGlow {
  0%,
  100% {
    box-shadow: 0 24px 58px rgba(231, 120, 0, .28);
  }

  50% {
    box-shadow: 0 30px 74px rgba(231, 120, 0, .42);
  }
}

@keyframes pcAboutTrace {
  0%,
  18% {
    transform: scaleX(.08);
    opacity: .35;
  }

  46% {
    transform: scaleX(1);
    opacity: .9;
  }

  100% {
    transform: scaleX(.18);
    opacity: .28;
  }
}

@keyframes pcAboutPhotoDriftMain {
  0% {
    object-position: 42% 50%;
    scale: 1.035;
  }

  50% {
    object-position: 58% 45%;
    scale: 1.07;
  }

  100% {
    object-position: 49% 55%;
    scale: 1.045;
  }
}

@keyframes pcAboutPhotoDriftSmall {
  0% {
    object-position: 50% 52%;
    scale: 1.035;
  }

  50% {
    object-position: 42% 48%;
    scale: 1.075;
  }

  100% {
    object-position: 57% 50%;
    scale: 1.045;
  }
}

@keyframes pcAboutPhotoSweep {
  0%,
  28% {
    background-position: -170% 0, 0 0, 0 0;
  }

  54%,
  100% {
    background-position: 230% 0, 0 0, 0 0;
  }
}

@keyframes pcPreloaderSpin {
  to {
    transform: translate(-50%, -54%) rotate(360deg);
  }
}

@keyframes pcPreloaderGrid {
  from {
    transform: translateX(-18px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: .45;
  }
}

@keyframes pcPreloaderTrace {
  to {
    transform: translateY(-50%) scaleX(1);
  }
}

@keyframes pcPreloaderCoreIn {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes pcPreloaderAxis {
  to {
    transform: translate(-50%, -54%) scaleX(1);
  }
}

@keyframes pcPreloaderRingSet {
  0%,
  100% {
    opacity: .82;
  }

  50% {
    opacity: 1;
  }
}

@keyframes pcPreloaderPulse {
  0%,
  100% {
    transform: translate(-50%, -54%) scale(.86);
    opacity: .48;
  }

  50% {
    transform: translate(-50%, -54%) scale(1.08);
    opacity: 1;
  }
}

@keyframes pcPreloaderLogoShell {
  from {
    transform: translateY(10px) scale(.94);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes pcPreloaderLogoReveal {
  from {
    opacity: 0;
    filter: blur(4px) saturate(.7);
    transform: translateY(8px) scale(.94);
  }

  to {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: translateY(0) scale(1);
  }
}

@keyframes pcPreloaderLogoHold {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(231, 120, 0, 0));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 14px rgba(231, 120, 0, .18));
    transform: scale(1.018);
  }
}

@keyframes pcPreloaderLogoScan {
  to {
    transform: translateX(115%);
  }
}

@keyframes pcPreloaderTextIn {
  to {
    opacity: 1;
  }
}

@keyframes pcGalleryBreath {
  0% {
    filter: saturate(.92) contrast(1);
  }

  55% {
    filter: saturate(1.08) contrast(1.04);
  }

  100% {
    filter: saturate(1) contrast(1.02);
  }
}

@keyframes pcGalleryKenBurns {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  55% {
    transform: scale(1.085) translate3d(-1.2%, -.8%, 0);
  }

  100% {
    transform: scale(1.045) translate3d(.8%, .4%, 0);
  }
}

@keyframes pcGalleryGridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 34px 22px, -18px 28px;
  }
}

@keyframes pcGalleryProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes pcShopServiceScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-reveal,
  .pc-hero-copy .pc-reveal,
  .pc-hero-visual.pc-reveal,
  .pc-feature img.pc-reveal {
    transform: none;
    opacity: 1;
    transition: none;
  }

  .pc-orbit-cta::before,
  .pc-logo-slab::before,
  .pc-about-collage::after,
  .pc-about-frame-main,
  .pc-about-frame-small,
  .pc-about-frame-main img,
  .pc-about-frame-small img,
  .pc-about-frame::before,
  .pc-years-badge,
  .pc-gallery-stage::after,
  .pc-gallery-slide.active,
  .pc-gallery-slide.active img,
  .pc-gallery-progress-track span,
  .pc-shop-service-track,
  .pc-preloader,
  .pc-preloader::before,
  .pc-preloader::after,
  .pc-preloader-core,
  .pc-preloader-core::before,
  .pc-preloader-ring,
  .pc-preloader-pulse,
  .pc-preloader-logo-shell,
  .pc-preloader-logo-shell::before,
  .pc-preloader-logo-shell img,
  .pc-preloader-core strong {
    animation: none;
  }

  .pc-about-frame:hover {
    transform: none;
  }

  .pc-about-frame img,
  .pc-about-frame:hover img {
    scale: 1;
  }

  .pc-preloader-core,
  .pc-preloader-logo-shell,
  .pc-preloader-logo-shell img,
  .pc-preloader-core strong {
    transform: none;
    opacity: 1;
    clip-path: none;
  }

  .pc-preloader::after {
    transform: translateY(-50%) scaleX(1);
  }

  .pc-preloader-core::before {
    transform: translate(-50%, -54%) scaleX(1);
  }

}

@media (max-width: 1100px) {
  .pc-hero-grid,
  .pc-feature,
  .pc-method,
  .pc-about-split,
  .pc-shop-gallery-grid,
  .pc-cta-band .wrap {
    grid-template-columns: 1fr;
  }

  .pc-cta-band .wrap {
    display: grid;
  }

  .pc-timeline,
  .pc-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-about-collage {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  .project-control-site .nav {
    margin-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .project-control-site .nav-links a::after {
    left: 12px;
    right: auto;
    bottom: 7px;
    width: 38px;
  }

  .project-control-site .nav-actions {
    top: 284px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .project-control-site .nav-actions .btn.secondary {
    flex: 1 1 auto;
  }

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

  .pc-section-light .pc-contact-panel,
  .pc-contact-showcase .pc-contact-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .project-control-site .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .project-control-site .nav-actions .btn {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    overflow: visible;
  }

  .project-control-site .brand-logo,
  .project-control-admin .brand-logo {
    height: 42px;
  }

  .project-control-site .pc-nav-round-cta {
    width: 88px;
    height: 88px;
  }

  .project-control-site .pc-nav-round-cta span,
  .project-control-site .pc-nav-round-cta small {
    font-size: 8px;
  }

  .project-control-site .pc-nav-round-cta strong {
    max-width: 70px;
    font-size: 10px;
  }

  .pc-hero {
    min-height: auto;
    padding: 44px 0 34px;
  }

  .pc-hero-grid {
    width: calc(100vw - 28px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pc-hero-copy h1,
  .pc-page-hero .page-title {
    font-size: 36px;
    line-height: 1.04;
  }

  .pc-signal-grid,
  .pc-step-grid,
  .pc-timeline,
  .pc-board-grid,
  .pc-contact-kpis {
    grid-template-columns: 1fr;
  }

  .pc-admin-note {
    grid-template-columns: 1fr;
  }

  .pc-public-footer .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .pc-admin-shortcut {
    right: 12px;
    bottom: 12px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .pc-logo-slab {
    padding: 18px;
  }

  .pc-orbit-cta {
    right: 12px;
    bottom: -42px;
    width: 98px;
    height: 98px;
  }

  .pc-orbit-cta span {
    font-size: 8px;
  }

  .pc-orbit-cta::after {
    right: 13px;
    bottom: 13px;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 6px rgba(231, 120, 0, .16);
  }

  .pc-orbit-cta strong {
    max-width: 74px;
    font-size: 10px;
  }

  .pc-orbit-cta small {
    font-size: 8px;
  }

  .pc-about-collage {
    min-height: 390px;
  }

  .pc-about-frame-main {
    width: 100%;
    height: 230px;
  }

  .pc-about-frame-small {
    right: 0;
    bottom: 18px;
    width: 64%;
    height: 190px;
    border-width: 8px;
  }

  .pc-about-frame figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    padding: 8px 9px;
    font-size: 10px;
    letter-spacing: .03em;
  }

  .pc-about-frame-main figcaption {
    top: 10px;
    right: auto;
    bottom: auto;
  }

  .pc-years-badge {
    left: 12px;
    bottom: 8px;
    width: 48%;
    min-height: 130px;
    padding: 16px;
  }

  .pc-years-badge strong {
    font-size: 42px;
  }

  .pc-years-badge span {
    font-size: 9px;
  }

  .pc-years-badge small {
    font-size: 13px;
  }

  .pc-about-copy h2 {
    font-size: 31px;
  }

  .pc-page-hero {
    padding: 42px 0 36px;
  }

  .pc-feature img {
    min-height: 280px;
  }

  .pc-feature-copy h2,
  .pc-method h2,
  .pc-gallery-copy h2,
  .pc-cta-band h2 {
    font-size: 31px;
  }

  .pc-preloader-logo-shell {
    width: min(176px, 52vw);
  }

  .pc-preloader-ring,
  .pc-preloader-pulse {
    width: min(220px, 72vw);
  }

  .pc-gallery-stage {
    min-height: 460px;
  }

  .pc-gallery-caption {
    align-items: flex-start;
    grid-template-columns: 1fr;
    max-width: calc(100% - 36px);
  }

  .pc-gallery-dots {
    justify-content: flex-start;
  }

  .pc-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .pc-gallery-thumbs button {
    flex: 0 0 86px;
    height: 68px;
  }

  .pc-section-light .pc-form-card {
    padding: 22px;
  }

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

  .pc-form-actions p {
    text-align: center;
  }

  .pc-cta-band .hero-actions,
  .pc-cta-band .btn,
  .pc-form-card .btn {
    width: 100%;
  }

  .pc-form-card .btn {
    justify-self: stretch;
  }
}

@media (max-width: 1100px) {
  .pc-admin-two-col,
  .pc-admin-products {
    grid-template-columns: 1fr;
  }

  .pc-admin-detail {
    position: static;
  }
}

@media (max-width: 720px) {
  .pc-admin-login {
    padding: 18px;
  }

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

  .pc-admin-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pc-admin-form-actions .btn,
  .pc-admin-login-form .btn {
    width: 100%;
  }
}
