:root {
  --ink: #172126;
  --muted: #5b686e;
  --line: #d9e1e3;
  --soft: #f3f6f6;
  --paper: #ffffff;
  --deep: #102a2c;
  --teal: #006d68;
  --teal-dark: #005854;
  --red: #b72b35;
  --amber: #c77b16;
  --success: #237a57;
  --focus: #0a6dd8;
  --shadow: 0 14px 38px rgba(23, 33, 38, 0.1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
select {
  cursor: pointer;
}

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

:focus-visible {
  outline: 3px solid rgba(10, 109, 216, 0.35);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 8px 12px;
  color: #fff;
  background: var(--focus);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.notice-bar {
  min-height: 36px;
  color: #dce9e9;
  background: #0b2022;
  font-size: 13px;
}

.notice-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.notice-links {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.notice-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(217, 225, 227, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183, 43, 53, 0.34);
  border-radius: 6px;
  color: var(--red);
  background: #fff7f7;
  font-size: 13px;
  font-weight: 800;
}

.brand-copy {
  min-width: 0;
}

.brand-name,
.brand-sub {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-name {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.brand-sub {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #334047;
  font-size: 14px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 5px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--teal-dark);
  background: #eef7f6;
}

.nav-cta {
  color: #fff !important;
  background: var(--teal) !important;
}

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

.menu-button span,
.menu-button::before,
.menu-button::after {
  width: 19px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}

.menu-button span {
  margin: 4px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

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

.hero::before {
  top: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  background: var(--red);
}

.hero::after {
  right: 70px;
  bottom: 0;
  width: 240px;
  height: 3px;
  background: rgba(240, 189, 105, 0.72);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  align-items: center;
  gap: 72px;
  padding: 76px 0;
}

.overline,
.section-kicker {
  margin: 0 0 12px;
  color: #f0bd69;
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 54px;
  line-height: 1.12;
  font-weight: 900;
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #d8e4e5;
  font-size: 19px;
}

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

.hero-actions {
  margin-top: 30px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 17px;
  border: 1px solid var(--teal);
  border-radius: 5px;
  color: #fff;
  background: var(--teal);
  font-weight: 700;
  line-height: 1.3;
}

.button:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.button.secondary:hover {
  border-color: #aebabc;
  background: var(--soft);
}

.button.hero-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.button.hero-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button.danger {
  border-color: #e3b4b8;
  color: #8f2029;
  background: #fff7f7;
}

.button.small {
  min-height: 36px;
  padding: 6px 12px;
  font-size: 13px;
}

.hero-facts {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  color: #e3eeee;
  font-size: 13px;
}

.hero-facts li {
  position: relative;
  padding-left: 14px;
}

.hero-facts li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4fc2b6;
  content: "";
}

.flow-panel {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 24, 26, 0.74);
  box-shadow: var(--shadow);
}

.flow-head {
  padding: 20px 22px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.flow-head strong {
  font-size: 16px;
}

.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 8px;
  border: 1px solid rgba(240, 189, 105, 0.5);
  border-radius: 4px;
  color: #ffd28a;
  font-size: 12px;
  white-space: nowrap;
}

.status-tag::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f0bd69;
  content: "";
}

.flow-list {
  margin: 0;
  padding: 12px 22px 10px;
  list-style: none;
}

.flow-list li {
  position: relative;
  min-height: 63px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  align-items: start;
  padding: 10px 0;
}

.flow-list li:not(:last-child)::after {
  position: absolute;
  top: 43px;
  bottom: -8px;
  left: 14px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.flow-number {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.flow-copy strong,
.flow-copy span {
  display: block;
}

.flow-copy strong {
  font-size: 14px;
}

.flow-copy span {
  margin-top: 2px;
  color: #acc1c2;
  font-size: 12px;
}

.flow-note {
  margin: 0;
  padding: 14px 22px 18px;
  color: #b9c9ca;
  font-size: 12px;
}

.filing-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.filing-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr;
}

.filing-item {
  min-height: 91px;
  padding: 19px 22px;
  border-left: 1px solid var(--line);
}

.filing-item:last-child {
  border-right: 1px solid var(--line);
}

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

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

.filing-item strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.filing-item a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  padding: 78px 0;
}

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

.section.dark {
  color: #fff;
  background: var(--deep);
}

.section-head {
  max-width: 790px;
  margin-bottom: 32px;
}

.section-kicker {
  color: var(--red);
}

.section.dark .section-kicker {
  color: #f0bd69;
}

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

h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
}

h3 {
  line-height: 1.4;
}

.lead {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section.dark .lead {
  color: #c4d2d3;
}

.model-grid,
.service-grid,
.rules-grid {
  display: grid;
  gap: 16px;
}

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

.model-item {
  padding: 26px;
  border-top: 3px solid var(--teal);
  background: #fff;
}

.model-item:nth-child(2) {
  border-top-color: var(--red);
}

.model-item:nth-child(3) {
  border-top-color: var(--amber);
}

.model-item .label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.model-item h3 {
  margin: 10px 0 8px;
  font-size: 20px;
}

.model-item p,
.service-card p,
.rule-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.process-step {
  min-height: 116px;
  padding: 20px;
  background: #fff;
}

.process-step strong,
.process-step span {
  display: block;
}

.process-step strong {
  color: var(--red);
  font-size: 14px;
}

.process-step span {
  margin-top: 8px;
  color: #344249;
  font-size: 14px;
}

.business-facts {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fff;
}

.business-facts > div {
  min-height: 94px;
  padding: 17px 18px;
  border-left: 1px solid var(--line);
}

.business-facts > div:first-child {
  border-left: 0;
}

.business-facts span,
.business-facts strong {
  display: block;
}

.business-facts span {
  color: var(--muted);
  font-size: 12px;
}

.business-facts strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

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

.service-card,
.rule-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.service-card {
  min-height: 240px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.service-code {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  margin: 13px 0 9px;
  font-size: 19px;
}

.service-card .service-action {
  margin-top: auto;
  padding-top: 22px;
}

.service-meta {
  display: inline-block;
  margin-top: 15px;
  padding: 3px 7px;
  border-radius: 3px;
  color: #75511f;
  background: #fff4dc;
  font-size: 12px;
}

.workspace-shell {
  border: 1px solid #cbd5d7;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.workspace-head {
  min-height: 72px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.workspace-title strong,
.workspace-title span {
  display: block;
}

.workspace-title strong {
  font-size: 16px;
}

.workspace-title span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.env-badge {
  padding: 5px 9px;
  border: 1px solid #e6c489;
  border-radius: 4px;
  color: #7a4b06;
  background: #fff6e6;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.tabs {
  min-height: 54px;
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: #f7f9f9;
}

.tab-button {
  min-width: 150px;
  padding: 13px 20px;
  border: 0;
  border-right: 1px solid var(--line);
  color: #465259;
  background: transparent;
  font-weight: 700;
}

.tab-button[aria-selected="true"] {
  color: var(--teal-dark);
  background: #fff;
  box-shadow: inset 0 -3px var(--teal);
}

.tab-panel {
  padding: 28px;
}

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

.form-intro {
  max-width: 780px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

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

.field {
  min-width: 0;
}

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

.field label,
.field-label {
  display: block;
  margin-bottom: 6px;
  color: #29363c;
  font-size: 14px;
  font-weight: 700;
}

.required {
  color: var(--red);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #bac6c9;
  border-radius: 5px;
  color: var(--ink);
  background: #fff;
}

.field input,
.field select {
  height: 44px;
  padding: 0 12px;
}

.field textarea {
  min-height: 122px;
  padding: 10px 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--focus);
  outline: 2px solid rgba(10, 109, 216, 0.16);
}

.field-hint {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #435158;
  font-size: 13px;
}

.check-row input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 3px;
}

.check-row a,
.text-link {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.form-status {
  margin: 18px 0 0;
  padding: 13px 15px;
  border: 1px solid #afd5c4;
  border-radius: 5px;
  color: #185e41;
  background: #eff9f4;
  font-size: 14px;
}

.form-status.error {
  border-color: #e4b0b5;
  color: #8c2029;
  background: #fff4f4;
}

.form-status[hidden] {
  display: none;
}

.order-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px dashed #bcc9cb;
  border-radius: 6px;
  color: var(--muted);
  text-align: center;
}

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

.order-item {
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

.order-item strong {
  font-size: 15px;
}

.order-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.order-state {
  color: var(--success) !important;
  font-weight: 700;
}

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

.rule-card {
  min-height: 178px;
  padding: 22px;
}

.rule-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.rule-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 36px;
  align-items: start;
}

.info-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.info-row {
  min-height: 57px;
  display: grid;
  grid-template-columns: 170px 1fr;
  border-bottom: 1px solid var(--line);
}

.info-row dt,
.info-row dd {
  margin: 0;
  padding: 15px 17px;
}

.info-row dt {
  color: var(--muted);
  background: #f6f8f8;
  font-size: 13px;
  font-weight: 700;
}

.info-row dd {
  color: #28353b;
  font-size: 14px;
}

.compliance-note {
  padding: 24px;
  border-left: 4px solid var(--amber);
  background: #fff7e9;
}

.compliance-note h3 {
  margin: 0 0 10px;
  color: #603c08;
  font-size: 18px;
}

.compliance-note p {
  margin: 0;
  color: #614d2f;
  font-size: 14px;
}

.compliance-note p + p {
  margin-top: 10px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.contact-band h2 {
  font-size: 30px;
}

.contact-band p {
  max-width: 750px;
  margin: 12px 0 0;
  color: #c4d2d3;
}

.site-footer {
  color: #c2d0d1;
  background: #0b2022;
  font-size: 13px;
}

.footer-main {
  padding: 38px 0 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
}

.footer-title {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 15px;
}

.footer-main p {
  margin: 5px 0;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  min-height: 55px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-hero {
  padding: 66px 0 52px;
  color: #fff;
  background: var(--deep);
}

.legal-hero .section-kicker {
  color: #f0bd69;
}

.legal-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
}

.legal-meta {
  margin: 15px 0 0;
  color: #c3d1d2;
  font-size: 14px;
}

.legal-layout {
  padding: 56px 0 80px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 126px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.legal-nav strong {
  display: block;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.legal-nav a {
  display: block;
  padding: 10px 15px;
  color: #445158;
  font-size: 13px;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: #eef7f6;
}

.legal-content {
  min-width: 0;
}

.legal-content > section {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-content > section + section {
  padding-top: 34px;
}

.legal-content h2 {
  font-size: 25px;
}

.legal-content h3 {
  margin: 22px 0 8px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: #3f4c53;
  font-size: 15px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-alert {
  margin-bottom: 28px;
  padding: 17px 18px;
  border: 1px solid #e5c17f;
  border-radius: 6px;
  color: #61430f;
  background: #fff7e7;
  font-size: 14px;
}

.disclosure-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.disclosure-table th,
.disclosure-table td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  overflow-wrap: anywhere;
}

.disclosure-table th {
  width: 205px;
  color: #46535a;
  background: #f5f7f7;
  font-size: 13px;
}

.disclosure-table td {
  color: #26343a;
  font-size: 14px;
}

.source-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.complaint-box {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.noscript {
  margin: 0;
  padding: 12px 20px;
  color: #81202a;
  background: #fff2f3;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .flow-panel {
    max-width: 720px;
  }

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

  .filing-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .filing-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

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

  .business-facts > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .business-facts > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

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

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

@media (max-width: 820px) {
  .notice-inner {
    padding: 8px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .notice-links {
    width: 100%;
    justify-content: space-between;
  }

  .menu-button {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 106px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    color: var(--ink);
    background: #fff;
    overflow-y: auto;
  }

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

  .nav-links a {
    min-height: 48px;
    padding: 11px 13px;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 8px;
    justify-content: center;
    border-bottom: 0 !important;
  }

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

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

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

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }

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

  .legal-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand-sub {
    display: none;
  }

  .brand-name {
    max-width: calc(100vw - 110px);
    font-size: 15px;
  }

  .hero-inner {
    min-height: auto;
    padding: 60px 0;
  }

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

  .hero-lead {
    font-size: 17px;
  }

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

  .hero-actions .button,
  .inline-actions .button {
    width: 100%;
  }

  .filing-grid,
  .service-grid,
  .rules-grid,
  .business-facts,
  .form-grid,
  .footer-main,
  .legal-nav {
    grid-template-columns: 1fr;
  }

  .filing-item {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .filing-item:nth-child(n + 2) {
    border-top: 0;
  }

  .business-facts > div,
  .business-facts > div:nth-child(3),
  .business-facts > div:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .business-facts > div:first-child {
    border-top: 0;
  }

  .section {
    padding: 58px 0;
  }

  h2 {
    font-size: 29px;
  }

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

  .process-step {
    min-height: auto;
  }

  .workspace-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .tabs {
    overflow-x: auto;
  }

  .tab-button {
    min-width: 132px;
    padding: 12px 14px;
  }

  .tab-panel {
    padding: 20px 16px;
  }

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

  .info-row {
    grid-template-columns: 1fr;
  }

  .info-row dt {
    padding-bottom: 5px;
  }

  .info-row dd {
    padding-top: 7px;
  }

  .contact-band {
    grid-template-columns: 1fr;
  }

  .legal-hero {
    padding: 50px 0 42px;
  }

  .legal-hero h1 {
    font-size: 32px;
  }

  .legal-nav strong,
  .legal-nav a {
    grid-column: 1;
  }

  .disclosure-table,
  .disclosure-table tbody,
  .disclosure-table tr,
  .disclosure-table th,
  .disclosure-table td {
    display: block;
    width: 100%;
  }

  .disclosure-table tr + tr {
    margin-top: -1px;
  }

  .disclosure-table td {
    border-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Enterprise service store */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.shop-home {
  --shop-deep: #0f2e2d;
  --shop-teal: #08736d;
  --shop-teal-dark: #075c58;
  --shop-red: #b62f3a;
  --shop-gold: #c98219;
  --shop-blue: #28658a;
  --shop-green: #39795c;
  --shop-slate: #53656c;
  --shop-ink: #172126;
  --shop-muted: #637077;
  --shop-line: #dce3e4;
  --shop-soft: #f4f7f7;
  color: var(--shop-ink);
  background: #fff;
}

body.shop-home.menu-open,
body.shop-home.cart-open,
body.shop-home.modal-open {
  overflow: hidden;
}

.shop-home button:focus-visible,
.shop-home a:focus-visible,
.shop-home input:focus-visible,
.shop-home select:focus-visible,
.shop-home textarea:focus-visible {
  outline: 3px solid rgba(10, 109, 216, 0.28);
  outline-offset: 2px;
}

.shop-notice {
  min-height: 36px;
  background: var(--shop-deep);
}

.shop-notice .notice-inner {
  min-height: 36px;
}

.shop-notice strong {
  color: #fff;
}

.notice-divider {
  width: 1px;
  height: 12px;
  display: inline-block;
  margin: 0 11px;
  background: rgba(255, 255, 255, 0.3);
  vertical-align: -1px;
}

.shop-header {
  z-index: 70;
  background: rgba(255, 255, 255, 0.98);
}

.shop-nav {
  min-height: 74px;
}

.shop-brand {
  flex: 0 1 auto;
}

.shop-brand .brand-mark {
  border-color: rgba(182, 47, 58, 0.3);
  color: var(--shop-red);
  background: #fff5f5;
}

.shop-nav-links {
  margin-left: auto;
}

.shop-nav-links a {
  padding-right: 10px;
  padding-left: 10px;
}

.cart-trigger {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--shop-deep);
  border-radius: 5px;
  color: #fff;
  background: var(--shop-deep);
  line-height: 1;
  white-space: nowrap;
}

.cart-trigger:hover {
  border-color: var(--shop-teal-dark);
  background: var(--shop-teal-dark);
}

.cart-trigger svg {
  width: 18px;
  height: 18px;
}

.cart-trigger-label {
  font-size: 13px;
  font-weight: 700;
}

.cart-count {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 10px;
  color: var(--shop-deep);
  background: #fff;
  font-size: 11px;
  font-weight: 900;
}

.cart-count.bump {
  animation: cart-bump 260ms ease;
}

@keyframes cart-bump {
  50% { transform: scale(1.2); }
}

.shop-hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background-color: var(--shop-deep);
  background-image: url("assets/images/hero-team.jpg");
  background-position: center 46%;
  background-size: cover;
}

.shop-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(5, 27, 28, 0.76);
  content: "";
}

.shop-hero::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 28%;
  height: 5px;
  background: var(--shop-red);
  content: "";
}

.shop-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 610px;
  display: flex;
  align-items: center;
  padding: 72px 0 76px;
}

.shop-hero-copy {
  max-width: 775px;
}

.shop-hero .overline {
  margin-bottom: 15px;
  color: #f3c77e;
  font-size: 14px;
}

.shop-hero h1 {
  max-width: none;
  margin: 0;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 900;
}

.shop-hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #e0e9e8;
  font-size: 20px;
  line-height: 1.75;
}

.shop-primary {
  border-color: #fff;
  color: var(--shop-deep);
  background: #fff;
}

.shop-primary:hover {
  border-color: #f5f7f7;
  color: var(--shop-deep);
  background: #f5f7f7;
}

.shop-primary svg,
.custom-action svg,
.section-link svg,
.support-links svg,
.cart-checkout svg {
  width: 17px;
  height: 17px;
}

.hero-metrics {
  max-width: 640px;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-metrics > div {
  padding: 22px 26px 0 0;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 22px;
  line-height: 1.2;
}

.hero-metrics span {
  margin-top: 5px;
  color: #bdcecd;
  font-size: 12px;
}

.hero-photo-credit {
  position: absolute;
  right: 16px;
  bottom: 13px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.hero-photo-credit:hover {
  color: #fff;
}

.assurance-strip {
  border-bottom: 1px solid var(--shop-line);
  background: #fff;
}

.assurance-grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.assurance-grid > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 19px 24px;
  border-left: 1px solid var(--shop-line);
}

.assurance-grid > div:last-child {
  border-right: 1px solid var(--shop-line);
}

.assurance-grid svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  color: var(--shop-teal);
}

.assurance-grid span,
.assurance-grid strong,
.assurance-grid small {
  display: block;
}

.assurance-grid strong {
  font-size: 14px;
  line-height: 1.4;
}

.assurance-grid small {
  margin-top: 3px;
  color: var(--shop-muted);
  font-size: 11px;
  line-height: 1.4;
}

.shop-section {
  padding: 76px 0;
}

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

.shop-section-head .section-kicker {
  margin-bottom: 8px;
  color: var(--shop-red);
}

.shop-section-head h2 {
  color: var(--shop-ink);
  font-size: 34px;
}

.shop-section-head p:not(.section-kicker) {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--shop-muted);
  font-size: 15px;
}

.section-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--shop-teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.section-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.category-section {
  padding-bottom: 68px;
  background: #fff;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--shop-line);
  border-bottom: 1px solid var(--shop-line);
}

.category-list button {
  min-width: 0;
  min-height: 126px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 15px;
  border: 0;
  border-left: 1px solid var(--shop-line);
  color: var(--shop-ink);
  background: #fff;
  text-align: left;
}

.category-list button:last-child {
  border-right: 1px solid var(--shop-line);
}

.category-list button:hover {
  background: var(--shop-soft);
}

.category-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 6px;
}

.category-icon svg {
  width: 21px;
  height: 21px;
}

.category-icon.teal { color: #07645f; background: #e6f3f1; }
.category-icon.red { color: #a52c36; background: #fbeaec; }
.category-icon.amber { color: #97600e; background: #fff2dc; }
.category-icon.blue { color: #245f82; background: #e8f1f6; }
.category-icon.green { color: #316b50; background: #e8f2ec; }
.category-icon.slate { color: #4c5c62; background: #edf1f2; }

.category-list button > span:last-child,
.category-list button strong,
.category-list button small {
  min-width: 0;
  display: block;
}

.category-list button strong {
  font-size: 14px;
  line-height: 1.35;
}

.category-list button small {
  margin-top: 5px;
  color: var(--shop-muted);
  font-size: 11px;
  line-height: 1.4;
}

.product-section {
  border-top: 1px solid #edf1f2;
  background: var(--shop-soft);
}

.result-count {
  flex: 0 0 auto;
  color: var(--shop-muted);
  font-size: 13px;
}

.catalog-toolbar {
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(0, 2.25fr) auto;
  align-items: center;
  gap: 14px;
}

.product-search {
  position: relative;
}

.product-search svg {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 18px;
  height: 18px;
  color: #6c797e;
  transform: translateY(-50%);
  pointer-events: none;
}

.product-search input {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 41px;
  border: 1px solid #bdc8ca;
  border-radius: 5px;
  color: var(--shop-ink);
  background: #fff;
}

.product-search input::placeholder {
  color: #859095;
}

.category-tabs {
  min-width: 0;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-tab {
  min-height: 40px;
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 0;
  border-bottom: 2px solid transparent;
  color: #59666c;
  background: transparent;
  font-size: 13px;
  white-space: nowrap;
}

.category-tab:hover {
  color: var(--shop-teal-dark);
}

.category-tab.active {
  border-bottom-color: var(--shop-teal);
  color: var(--shop-teal-dark);
  font-weight: 800;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-control label {
  color: var(--shop-muted);
  font-size: 12px;
  white-space: nowrap;
}

.sort-control select {
  height: 40px;
  padding: 0 30px 0 10px;
  border: 1px solid #bdc8ca;
  border-radius: 5px;
  color: var(--shop-ink);
  background: #fff;
  font-size: 13px;
}

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

.product-card {
  min-width: 0;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--shop-line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(29, 45, 50, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: #bec9cb;
  box-shadow: 0 14px 30px rgba(29, 45, 50, 0.1);
  transform: translateY(-2px);
}

.product-media {
  position: relative;
  height: 220px;
  flex: 0 0 220px;
  overflow: hidden;
  background: #e8eded;
}

.product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

.product-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 4px;
  color: #fff;
  background: var(--shop-red);
  font-size: 11px;
  font-weight: 800;
}

.product-badge.quote {
  background: var(--shop-blue);
}

.product-card-body {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.product-category {
  color: var(--shop-teal-dark);
  font-size: 11px;
  font-weight: 800;
}

.product-card h3 {
  margin: 8px 0 7px;
  color: var(--shop-ink);
  font-size: 19px;
  line-height: 1.4;
}

.product-card-description {
  min-height: 48px;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: var(--shop-muted);
  font-size: 13px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-meta {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  color: #5c696e;
  font-size: 11px;
}

.product-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-meta svg {
  width: 13px;
  height: 13px;
  color: var(--shop-gold);
}

.product-card-footer {
  margin-top: auto;
  padding-top: 19px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.product-price {
  min-width: 0;
}

.product-price strong {
  display: block;
  color: var(--shop-red);
  font-size: 22px;
  line-height: 1.2;
}

.product-price strong small {
  margin-left: 2px;
  color: var(--shop-muted);
  font-size: 11px;
  font-weight: 500;
}

.product-price del {
  display: block;
  min-height: 18px;
  margin-top: 3px;
  color: #90999d;
  font-size: 11px;
}

.product-price .quote-price {
  color: var(--shop-blue);
  font-size: 19px;
}

.product-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
}

.icon-button,
.product-detail-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid #cbd4d5;
  border-radius: 5px;
  color: var(--shop-ink);
  background: #fff;
}

.icon-button:hover,
.product-detail-button:hover {
  border-color: #98a8aa;
  background: var(--shop-soft);
}

.icon-button svg,
.product-detail-button svg {
  width: 19px;
  height: 19px;
}

.product-add-button {
  min-width: 104px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--shop-teal);
  border-radius: 5px;
  color: #fff;
  background: var(--shop-teal);
  font-size: 13px;
  font-weight: 800;
}

.product-add-button:hover {
  border-color: var(--shop-teal-dark);
  background: var(--shop-teal-dark);
}

.product-add-button svg {
  width: 16px;
  height: 16px;
}

.product-empty {
  min-height: 290px;
  place-items: center;
  align-content: center;
  padding: 40px 20px;
  color: var(--shop-muted);
  text-align: center;
}

.product-empty:not([hidden]) {
  display: grid;
}

.product-empty svg {
  width: 42px;
  height: 42px;
  color: #899699;
}

.product-empty h3 {
  margin: 13px 0 18px;
  color: var(--shop-ink);
  font-size: 18px;
}

.custom-band {
  color: #fff;
  background: var(--shop-deep);
}

.custom-band-inner {
  min-height: 240px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.custom-band .section-kicker {
  color: #f2c372;
}

.custom-band h2 {
  color: #fff;
  font-size: 34px;
}

.custom-band p:not(.section-kicker) {
  max-width: 730px;
  margin: 13px 0 0;
  color: #c6d5d4;
  font-size: 16px;
}

.custom-action {
  min-width: 178px;
  border-color: #fff;
  color: var(--shop-deep);
  background: #fff;
}

.custom-action:hover {
  border-color: #eef3f3;
  color: var(--shop-deep);
  background: #eef3f3;
}

.process-section {
  background: #fff;
}

.purchase-process {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--shop-line);
  border-bottom: 1px solid var(--shop-line);
  list-style: none;
}

.purchase-process li {
  min-height: 190px;
  padding: 27px 24px;
  border-left: 1px solid var(--shop-line);
}

.purchase-process li:last-child {
  border-right: 1px solid var(--shop-line);
}

.purchase-process li > span {
  display: block;
  color: var(--shop-red);
  font-size: 13px;
  font-weight: 900;
}

.purchase-process strong {
  display: block;
  margin-top: 20px;
  color: var(--shop-ink);
  font-size: 18px;
}

.purchase-process p {
  margin: 8px 0 0;
  color: var(--shop-muted);
  font-size: 13px;
  line-height: 1.75;
}

.support-section {
  border-top: 1px solid var(--shop-line);
  background: var(--shop-soft);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 74px;
}

.support-copy .section-kicker {
  color: var(--shop-red);
}

.support-copy h2 {
  font-size: 34px;
}

.support-copy > p:not(.section-kicker) {
  margin: 16px 0 0;
  color: var(--shop-muted);
  font-size: 15px;
}

.support-links {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.support-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--shop-teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.support-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-facts {
  margin: 0;
  border-top: 1px solid var(--shop-line);
}

.support-facts > div {
  min-height: 67px;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--shop-line);
}

.support-facts dt,
.support-facts dd {
  margin: 0;
  padding: 14px 15px;
}

.support-facts dt {
  color: var(--shop-ink);
  font-size: 13px;
  font-weight: 800;
}

.support-facts dd {
  color: var(--shop-muted);
  font-size: 13px;
}

.company-strip {
  border-top: 1px solid var(--shop-line);
  background: #fff;
}

.company-strip-inner {
  min-height: 116px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr auto;
  align-items: center;
  gap: 30px;
}

.company-strip-inner span,
.company-strip-inner strong {
  display: block;
}

.company-strip-inner span {
  color: var(--shop-muted);
  font-size: 11px;
}

.company-strip-inner strong {
  margin-top: 4px;
  color: var(--shop-ink);
  font-size: 13px;
}

.company-strip-inner strong a {
  color: var(--shop-teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-footer .footer-main {
  grid-template-columns: 1.45fr 0.65fr 0.75fr 0.75fr;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: #fff;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
  color: #efc0c3;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.shop-footer .footer-links button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  font-size: inherit;
}

.shop-footer .footer-links button:hover {
  color: #fff;
  text-decoration: underline;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(8, 20, 22, 0.56);
  opacity: 0;
  transition: opacity 180ms ease;
}

.drawer-overlay.visible {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: min(470px, 100%);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  color: var(--shop-ink);
  background: #fff;
  box-shadow: -18px 0 46px rgba(13, 31, 34, 0.22);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 220ms ease, visibility 220ms ease;
}

.cart-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.cart-head {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--shop-line);
}

.cart-eyebrow {
  margin: 0 0 3px;
  color: var(--shop-red);
  font-size: 10px;
  font-weight: 900;
}

.cart-head h2,
.checkout-head h2 {
  margin: 0;
  color: var(--shop-ink);
  font-size: 23px;
}

.cart-head h2 span {
  color: var(--shop-muted);
  font-size: 12px;
  font-weight: 500;
}

.cart-body {
  min-height: 0;
  padding: 0 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.cart-empty {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 45px 20px;
  color: var(--shop-muted);
  text-align: center;
}

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

.cart-empty-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--shop-teal-dark);
  background: #eaf4f3;
}

.cart-empty-icon svg {
  width: 28px;
  height: 28px;
}

.cart-empty h3 {
  margin: 17px 0 4px;
  color: var(--shop-ink);
  font-size: 19px;
}

.cart-empty p {
  margin: 0 0 21px;
  font-size: 13px;
}

.cart-list {
  display: grid;
}

.cart-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 13px;
  padding: 18px 0;
  border-bottom: 1px solid var(--shop-line);
}

.cart-item-image {
  width: 82px;
  height: 82px;
  overflow: hidden;
  border-radius: 5px;
  background: #edf1f2;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cart-item-main {
  min-width: 0;
}

.cart-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.cart-item h3 {
  margin: 0;
  color: var(--shop-ink);
  font-size: 14px;
  line-height: 1.45;
}

.cart-remove {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: #748085;
  background: transparent;
}

.cart-remove:hover {
  color: var(--shop-red);
}

.cart-remove svg {
  width: 16px;
  height: 16px;
}

.cart-item-code {
  display: block;
  margin-top: 3px;
  color: var(--shop-muted);
  font-size: 10px;
}

.cart-item-bottom {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-item-price {
  color: var(--shop-red);
  font-size: 14px;
  font-weight: 900;
}

.cart-item-price.quote {
  color: var(--shop-blue);
}

.qty-stepper {
  height: 32px;
  display: inline-grid;
  grid-template-columns: 32px 34px 32px;
  border: 1px solid #c7d0d2;
  border-radius: 4px;
  overflow: hidden;
}

.qty-stepper button {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--shop-ink);
  background: #fff;
}

.qty-stepper button:hover:not(:disabled) {
  background: var(--shop-soft);
}

.qty-stepper button:disabled {
  color: #b8c0c2;
  cursor: not-allowed;
}

.qty-stepper button svg {
  width: 14px;
  height: 14px;
}

.qty-stepper input {
  width: 34px;
  height: 30px;
  padding: 0;
  border: 0;
  border-right: 1px solid #d6ddde;
  border-left: 1px solid #d6ddde;
  color: var(--shop-ink);
  background: #fff;
  text-align: center;
  font-size: 12px;
  -moz-appearance: textfield;
}

.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.cart-summary {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--shop-line);
  background: #fff;
  box-shadow: 0 -8px 22px rgba(23, 33, 38, 0.05);
}

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

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--shop-muted);
  font-size: 12px;
}

.cart-summary-row + .cart-summary-row {
  margin-top: 8px;
}

.cart-summary-row.total span {
  color: var(--shop-ink);
  font-size: 14px;
  font-weight: 800;
}

.cart-summary-row.total strong {
  color: var(--shop-red);
  font-size: 25px;
}

.cart-quote-note {
  margin: 9px 0 0;
  color: var(--shop-blue);
  font-size: 11px;
}

.cart-checkout {
  width: 100%;
  margin-top: 16px;
  background: var(--shop-teal);
}

.cart-summary-actions {
  margin-top: 11px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.cart-summary-actions button,
.cart-summary-actions a {
  padding: 0;
  border: 0;
  color: var(--shop-muted);
  background: transparent;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.modal-shell:not([hidden]) {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 22, 0.66);
}

.product-modal,
.checkout-modal {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 850px);
  overflow: auto;
  border-radius: 8px;
  color: var(--shop-ink);
  background: #fff;
  box-shadow: 0 24px 64px rgba(9, 24, 27, 0.3);
}

.product-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
}

.product-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.product-modal-media {
  min-height: 540px;
  background: #edf1f2;
}

.product-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
}

.product-modal-info {
  padding: 54px 36px 34px;
}

.product-modal-info .product-category {
  font-size: 12px;
}

.product-modal-info h2 {
  margin: 9px 0 10px;
  color: var(--shop-ink);
  font-size: 29px;
  line-height: 1.3;
}

.modal-product-code {
  color: var(--shop-muted);
  font-size: 11px;
}

.modal-product-description {
  margin: 19px 0 0;
  color: var(--shop-muted);
  font-size: 14px;
}

.modal-includes {
  margin: 22px 0 0;
  padding: 19px 0;
  border-top: 1px solid var(--shop-line);
  border-bottom: 1px solid var(--shop-line);
}

.modal-includes strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.modal-includes ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  list-style: none;
}

.modal-includes li {
  position: relative;
  padding-left: 17px;
  color: #4c595f;
  font-size: 12px;
}

.modal-includes li::before {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--shop-teal);
  content: "";
}

.modal-buy-row {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.modal-buy-row .product-price strong {
  font-size: 29px;
}

.modal-add {
  min-width: 150px;
}

.checkout-modal {
  width: min(1060px, 100%);
}

.checkout-head {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--shop-line);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
}

.checkout-form {
  padding: 26px 28px 30px;
}

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

.checkout-field {
  min-width: 0;
  margin-bottom: 16px;
}

.checkout-field label {
  display: block;
  margin-bottom: 6px;
  color: #2a373c;
  font-size: 13px;
  font-weight: 800;
}

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  border: 1px solid #bac6c9;
  border-radius: 5px;
  color: var(--shop-ink);
  background: #fff;
}

.checkout-field input {
  height: 44px;
  padding: 0 12px;
}

.checkout-field textarea {
  min-height: 96px;
  padding: 10px 12px;
  resize: vertical;
}

.checkout-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #4c595e;
  font-size: 11px;
}

.checkout-consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
}

.checkout-consent a {
  color: var(--shop-teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-privacy {
  margin: 14px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--shop-muted);
  font-size: 11px;
}

.checkout-privacy svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-top: 2px;
}

.checkout-submit {
  width: 100%;
  margin-top: 18px;
}

.checkout-status {
  margin: 14px 0 0;
  padding: 10px 12px;
  border: 1px solid #acd2c1;
  border-radius: 5px;
  color: #175c40;
  background: #eef8f3;
  font-size: 12px;
}

.checkout-order {
  min-width: 0;
  padding: 26px 24px;
  border-left: 1px solid var(--shop-line);
  background: var(--shop-soft);
}

.checkout-order h3 {
  margin: 0 0 15px;
  font-size: 16px;
}

.checkout-items {
  max-height: 295px;
  overflow-y: auto;
}

.checkout-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--shop-line);
  font-size: 12px;
}

.checkout-item span {
  color: var(--shop-muted);
}

.checkout-item strong {
  color: var(--shop-ink);
}

.checkout-total {
  margin-top: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.checkout-total span {
  font-size: 13px;
  font-weight: 800;
}

.checkout-total strong {
  color: var(--shop-red);
  font-size: 22px;
}

.checkout-order > p {
  margin: 13px 0 0;
  color: var(--shop-muted);
  font-size: 10px;
}

.toast-region {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: min(360px, calc(100% - 32px));
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.toast {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: #fff;
  background: #143a39;
  box-shadow: 0 12px 30px rgba(10, 27, 29, 0.22);
  font-size: 13px;
  animation: toast-in 180ms ease;
}

.toast.error {
  background: #842832;
}

.toast svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .shop-nav-links a {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 13px;
  }

  .shop-brand .brand-name {
    font-size: 14px;
  }

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

  .category-list button:nth-child(3) {
    border-right: 1px solid var(--shop-line);
  }

  .category-list button:nth-child(n + 4) {
    border-top: 1px solid var(--shop-line);
  }

  .catalog-toolbar {
    grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.7fr) auto;
  }
}

@media (max-width: 980px) {
  .shop-hero,
  .shop-hero-inner {
    min-height: 570px;
  }

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

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

  .assurance-grid > div:nth-child(2) {
    border-right: 1px solid var(--shop-line);
  }

  .assurance-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--shop-line);
  }

  .catalog-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .category-tabs {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

  .support-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .company-strip-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .company-strip-inner .button {
    grid-column: 1 / -1;
    width: max-content;
    margin-bottom: 22px;
  }

  .shop-footer .footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-footer .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .shop-nav {
    gap: 12px;
  }

  .shop-nav .menu-button {
    margin-left: auto;
  }

  .shop-nav-links {
    z-index: 69;
    margin-left: 0;
  }

  .shop-nav-links a {
    font-size: 15px;
  }

  .cart-trigger {
    width: 42px;
    height: 42px;
    min-height: 42px;
    flex: 0 0 42px;
    padding: 0;
  }

  .cart-trigger-label {
    display: none;
  }

  .cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 19px;
    height: 19px;
    color: #fff;
    background: var(--shop-red);
    box-shadow: 0 0 0 2px #fff;
  }

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

  .purchase-process li:nth-child(2) {
    border-right: 1px solid var(--shop-line);
  }

  .purchase-process li:nth-child(n + 3) {
    border-top: 1px solid var(--shop-line);
  }

  .custom-band-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .custom-action {
    width: max-content;
  }

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

  .product-modal-media,
  .product-modal-media img {
    min-height: 300px;
    height: 300px;
  }

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

  .checkout-order {
    border-top: 1px solid var(--shop-line);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .shop-notice .notice-inner {
    padding: 7px 0;
  }

  .shop-notice .notice-inner > span:first-child {
    font-size: 11px;
  }

  .shop-notice .notice-inner > span:first-child strong {
    margin-right: 6px;
  }

  .shop-notice .notice-divider,
  .shop-notice .notice-links {
    display: none;
  }

  .shop-nav {
    min-height: 66px;
  }

  .shop-brand .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .shop-brand .brand-name {
    max-width: calc(100vw - 180px);
    font-size: 14px;
  }

  .shop-hero,
  .shop-hero-inner {
    min-height: 566px;
  }

  .shop-hero {
    background-position: 60% center;
  }

  .shop-hero::before {
    background: rgba(5, 27, 28, 0.8);
  }

  .shop-hero-inner {
    padding: 56px 0 64px;
  }

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

  .shop-hero-lead {
    font-size: 16px;
    line-height: 1.72;
  }

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

  .shop-hero .hero-actions .button {
    width: 100%;
  }

  .hero-metrics {
    margin-top: 32px;
  }

  .hero-metrics > div {
    padding: 17px 8px 0 0;
  }

  .hero-metrics strong {
    font-size: 18px;
  }

  .hero-metrics span {
    font-size: 10px;
  }

  .hero-photo-credit {
    right: 8px;
    bottom: 8px;
    font-size: 8px;
  }

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

  .assurance-grid > div {
    min-height: 76px;
    padding: 14px 17px;
    border-right: 1px solid var(--shop-line);
    border-top: 1px solid var(--shop-line);
  }

  .assurance-grid > div:first-child {
    border-top: 0;
  }

  .shop-section {
    padding: 56px 0;
  }

  .shop-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .shop-section-head h2,
  .custom-band h2,
  .support-copy h2 {
    font-size: 28px;
  }

  .category-heading .section-link {
    display: none;
  }

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

  .category-list button {
    min-height: 108px;
    padding: 16px 12px;
  }

  .category-list button:nth-child(2n) {
    border-right: 1px solid var(--shop-line);
  }

  .category-list button:nth-child(n + 3) {
    border-top: 1px solid var(--shop-line);
  }

  .category-list button:nth-child(3) {
    border-right: 0;
  }

  .category-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .category-icon svg {
    width: 18px;
    height: 18px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-search,
  .category-tabs,
  .sort-control {
    grid-column: 1;
  }

  .product-search { grid-row: 1; }
  .category-tabs { grid-row: 2; }
  .sort-control { grid-row: 3; justify-content: flex-end; }

  .category-tab {
    padding-right: 13px;
    padding-left: 13px;
  }

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

  .product-card {
    min-height: 520px;
  }

  .product-media {
    height: 210px;
    flex-basis: 210px;
  }

  .custom-band-inner {
    min-height: 270px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .custom-action {
    width: 100%;
  }

  .purchase-process {
    grid-template-columns: 1fr;
  }

  .purchase-process li,
  .purchase-process li:nth-child(2) {
    min-height: auto;
    border-right: 1px solid var(--shop-line);
    border-top: 1px solid var(--shop-line);
  }

  .purchase-process li:first-child {
    border-top: 0;
  }

  .support-facts > div {
    grid-template-columns: 1fr;
    padding: 13px 0;
  }

  .support-facts dt,
  .support-facts dd {
    padding: 2px 0;
  }

  .company-strip-inner {
    grid-template-columns: 1fr;
    gap: 17px;
    padding-top: 25px;
    padding-bottom: 8px;
  }

  .company-strip-inner .button {
    width: 100%;
  }

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

  .shop-footer .footer-main > div:first-child {
    grid-column: 1;
  }

  .shop-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-drawer {
    width: 100%;
  }

  .cart-head {
    min-height: 76px;
    padding: 14px 16px;
  }

  .cart-body {
    padding: 0 16px;
  }

  .cart-summary {
    padding: 15px 16px 18px;
  }

  .modal-shell {
    align-items: stretch;
    padding: 0;
  }

  .product-modal,
  .checkout-modal {
    width: 100%;
    max-height: 100%;
    min-height: 100%;
    border-radius: 0;
  }

  .product-modal-media,
  .product-modal-media img {
    min-height: 250px;
    height: 250px;
  }

  .product-modal-info {
    padding: 32px 18px 28px;
  }

  .product-modal-info h2 {
    padding-right: 38px;
    font-size: 24px;
  }

  .modal-includes ul {
    grid-template-columns: 1fr;
  }

  .modal-buy-row {
    align-items: stretch;
    flex-direction: column;
  }

  .modal-add {
    width: 100%;
  }

  .checkout-head {
    min-height: 78px;
    padding: 14px 16px;
  }

  .checkout-form {
    padding: 21px 16px 25px;
  }

  .checkout-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .checkout-order {
    padding: 22px 16px;
  }

  .toast-region {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-home *,
  .shop-home *::before,
  .shop-home *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
