:root {
  color-scheme: light;
  --ink: #102018;
  --muted: #62736b;
  --line: #d7e3dc;
  --paper: #f7faf6;
  --panel: #ffffff;
  --panel-2: #edf5ef;
  --white: #ffffff;
  --accent: #148a5b;
  --accent-2: #23b779;
  --accent-soft: #dff4e8;
  --warning: #b98225;
  --shadow: 0 22px 70px rgba(18, 92, 58, 0.13);
  --shadow-strong: 0 34px 110px rgba(18, 92, 58, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(20, 138, 91, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(20, 138, 91, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 96px 96px;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 250, 246, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-block;
  width: 44px;
  height: 40px;
  overflow: hidden;
  background: url("/assets/astratools-mark.svg") center / contain no-repeat;
  color: transparent;
  font-size: 0;
}

.brand span:not(.brand-mark) {
  background: linear-gradient(105deg, #078932 0%, #038c6b 54%, #006069 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18px;
  font-style: italic;
  line-height: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent-2);
}

.cart-toggle,
.primary-link,
.secondary-link,
.checkout-button,
.icon-button,
.add-button,
.quantity-button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(38px, 6vw, 98px);
  align-items: center;
  min-height: min(760px, calc(92vh - 76px));
  padding: 64px clamp(18px, 5vw, 76px) 54px;
}

.home-hero h1 {
  max-width: 980px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: 2.85rem;
}

h2 {
  font-size: 2rem;
}

.home-hero h1 {
  font-size: 3.55rem;
}

.hero p:not(.eyebrow),
.page-intro p,
.support p,
.steps p,
.cart-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero p:not(.eyebrow) {
  max-width: 670px;
  margin: 24px 0 0;
  font-size: 1.125rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-link,
.secondary-link,
.add-button,
.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 850;
}

.primary-link,
.add-button,
.checkout-button {
  background: var(--accent);
  color: var(--white);
}

.primary-link:hover,
.add-button:hover,
.checkout-button:hover:not(:disabled) {
  background: var(--accent-2);
  color: var(--white);
}

.secondary-link {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero-visual {
  min-width: 0;
}

.hero-showcase {
  position: relative;
  max-width: 860px;
  margin-left: auto;
}

.hero-showcase img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover !important;
  border: 1px solid rgba(20, 138, 91, 0.2);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.showcase-chip {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 138, 91, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(18, 92, 58, 0.14);
  backdrop-filter: blur(14px);
}

.showcase-chip span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-chip strong {
  font-size: 15px;
}

.chip-top {
  top: 18px;
  right: 18px;
}

.chip-bottom {
  left: 18px;
  bottom: 18px;
}

.command-panel,
.marketplace-panel {
  display: grid;
  gap: 22px;
  align-content: center;
  width: min(100%, 760px);
  min-height: 470px;
  margin-left: auto;
  padding: clamp(22px, 4vw, 38px);
  border: 2px solid rgba(20, 138, 91, 0.26);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(20, 138, 91, 0.14), transparent 42%),
    linear-gradient(180deg, #ffffff, #eef6f0);
  box-shadow: var(--shadow);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.panel-topline span:last-child {
  padding: 4px 8px;
  border: 1px solid rgba(20, 138, 91, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.market-search {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.market-search span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.market-search strong {
  font-size: 2rem;
  line-height: 1.08;
}

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

.market-list div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.84);
}

.market-list span {
  justify-self: start;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(20, 138, 91, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.market-list strong {
  min-width: 0;
  font-size: 1.125rem;
  line-height: 1.2;
}

.market-list em {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

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

.metric-grid div,
.signal-list span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.metric-grid div {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 16px;
}

.metric-grid strong {
  font-size: 3rem;
  line-height: 1;
}

.metric-grid span,
.signal-list span {
  color: var(--muted);
  font-size: 13px;
}

.signal-list {
  display: grid;
  gap: 10px;
  align-content: end;
}

.signal-list span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
}

.signal-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 12px;
  background: var(--accent);
}

.trust-band,
.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

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

.trust-band div,
.stats-band div {
  display: grid;
  gap: 6px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.trust-band div:last-child,
.stats-band div:last-child {
  border-right: 0;
}

.trust-band span,
.stats-band span {
  color: var(--muted);
}

.stats-band strong {
  font-size: 3rem;
  line-height: 1;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.logo-strip span {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

.market-summary {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 76px);
  border-block: 1px solid rgba(20, 138, 91, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 241, 0.88));
}

.summary-tags {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.summary-tags span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

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

.summary-stats div {
  display: grid;
  gap: 6px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f2f8f3);
  box-shadow: 0 14px 42px rgba(18, 92, 58, 0.08);
}

.summary-stats strong {
  align-self: end;
  font-size: 2.9rem;
  line-height: 1;
}

.summary-stats span {
  color: var(--muted);
  font-weight: 750;
}

.section,
.page-intro {
  padding: 64px clamp(18px, 5vw, 76px);
}

.page-intro {
  display: grid;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(20, 138, 91, 0.12), transparent 45%);
}

.page-intro p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  font-size: 1.125rem;
}

.notice-box {
  display: grid;
  gap: 6px;
  max-width: 820px;
  padding: 16px 18px;
  border: 1px solid rgba(20, 138, 91, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(18, 92, 58, 0.07);
}

.notice-box strong {
  font-size: 0.95rem;
}

.notice-box span {
  color: var(--muted);
  line-height: 1.55;
}

.notice-box a {
  width: fit-content;
  color: var(--accent);
  font-weight: 850;
}

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

.process-grid article,
.policy-list p {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(20, 138, 91, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(18, 92, 58, 0.06);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.process-grid strong,
.policy-list strong {
  font-size: 18px;
}

.process-grid p,
.policy-list span {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-ready {
  background: rgba(255, 255, 255, 0.52);
}

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

.section-heading,
.catalog-toolbar,
.feature-strip {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.catalog-toolbar {
  margin-bottom: 32px;
}

.catalog-toolbar > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

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

.category-grid a {
  display: grid;
  gap: 16px;
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(20, 138, 91, 0.08), transparent 46%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 35px rgba(18, 92, 58, 0.06);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.category-grid a:hover {
  border-color: rgba(20, 138, 91, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.category-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 950;
}

.category-grid strong {
  align-self: end;
  font-size: 22px;
}

.category-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(18, 92, 58, 0.08);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.product-art {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 20px;
  color: var(--ink);
  font-weight: 900;
  background: #f7fbf8;
}

.product-art img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(20, 138, 91, 0.13);
  border-radius: 14px;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(10, 68, 43, 0.12);
  transition: transform 180ms ease;
}

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

.product-art span {
  position: absolute;
  left: 32px;
  bottom: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(20, 138, 91, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(18, 92, 58, 0.08);
}

.product-body {
  display: grid;
  gap: 15px;
  padding: 22px;
}

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

.product-badges span {
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(20, 138, 91, 0.18);
  border-radius: 999px;
  background: rgba(235, 250, 241, 0.9);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0;
}

.product-body h3 a {
  color: inherit;
}

.product-body h3 a:hover {
  color: var(--accent);
}

.product-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.price {
  font-size: 24px;
  font-weight: 950;
}

.compact-link {
  min-height: 38px;
  padding-inline: 12px;
  font-size: 13px;
}

.product-page-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.back-link:hover {
  color: var(--accent);
}

.detail-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.detail-heading h1 {
  font-size: 2.65rem;
}

.detail-heading p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.65;
}

.detail-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.8fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.product-detail-main {
  display: grid;
  gap: 42px;
}

.gallery-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.gallery-frame img,
.gallery-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 760;
  object-fit: contain;
  background: #f4faf6;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.gallery-thumbs button {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.gallery-thumbs button:hover,
.gallery-thumbs button.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(20, 138, 91, 0.12);
}

.detail-section {
  display: grid;
  gap: 16px;
}

.detail-section h2 {
  font-size: 22px;
  line-height: 1.2;
}

.detail-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-list,
.included-box ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.included-box li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.55;
}

.feature-list span,
.included-box li span {
  flex: none;
  color: var(--accent);
  font-weight: 950;
}

.spec-list {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.spec-list div {
  display: grid;
  grid-template-columns: 0.9fr 1.7fr;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.spec-list dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}

.purchase-card {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(18, 92, 58, 0.1);
}

.purchase-price {
  color: var(--ink);
  font-size: 38px;
  font-weight: 950;
}

.purchase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.included-box {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.included-box h3 {
  margin: 0;
  font-size: 15px;
}

.included-box.subtle {
  color: var(--muted);
  font-size: 14px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.detail-layout.is-rich-detail {
  display: block;
}

.detail-art {
  display: flex;
  align-items: end;
  min-height: 520px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--art);
  box-shadow: var(--shadow);
}

.detail-art span {
  padding: 8px 10px;
  border: 1px solid rgba(16, 32, 24, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 900;
}

.detail-copy {
  display: grid;
  gap: 20px;
}

.detail-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.detail-list div,
.line-item,
.summary-box,
.form-panel,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
}

.detail-list div {
  display: grid;
  gap: 5px;
  padding: 15px;
}

.detail-list dt {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  color: var(--ink);
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 18px;
  align-items: start;
}

.line-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  padding: 18px;
}

.line-item h3,
.summary-box h2 {
  margin: 0 0 8px;
}

.line-item p,
.line-item span,
.summary-box p,
.legal-copy p {
  color: var(--muted);
  line-height: 1.6;
}

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

.account-head,
.admin-dashboard {
  display: grid;
  gap: 16px;
}

.account-head {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(234, 250, 241, 0.72);
}

.account-head p {
  margin: 4px 0 0;
}

.mini-label {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill {
  padding: 8px 10px;
  border: 1px solid rgba(23, 148, 97, 0.22);
  border-radius: 999px;
  background: rgba(23, 148, 97, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.summary-box,
.form-panel,
.empty-state {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.form-panel.narrow {
  max-width: 480px;
}

.form-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 750;
}

.form-panel input {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.check-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  column-gap: 12px;
  line-height: 1.55;
}

.check-row input {
  min-height: auto;
  margin-top: 4px;
}

.check-row span {
  min-width: 0;
}

.check-row a {
  display: inline;
  white-space: normal;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--accent);
  font-weight: 800;
  line-height: 1.5;
}

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

.license-box {
  max-width: 100%;
  overflow-wrap: anywhere;
  width: fit-content;
  padding: 16px 18px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--white);
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 2rem;
  font-weight: 900;
}

.delivery-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.delivery-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
}

.delivery-card h2,
.delivery-card p,
.delivery-card .hero-actions {
  margin: 0;
}

.delivery-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.legal-copy {
  display: grid;
  gap: 16px;
  max-width: 920px;
}

.legal-copy h2 {
  font-size: 2rem;
}

.company-facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.company-facts div {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.company-facts dt {
  color: var(--muted);
  font-weight: 800;
}

.company-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(28px, 6vw, 80px);
  background: rgba(255, 255, 255, 0.7);
}

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

.steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.steps li > span {
  color: var(--accent);
  font-weight: 950;
}

.steps strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.steps p {
  margin: 0;
}

.support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.support > div {
  max-width: 690px;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100vw, 430px);
  height: 100vh;
  transform: translateX(105%);
  transition: transform 180ms ease;
  border-left: 1px solid var(--line);
  background: var(--panel);
  box-shadow: -18px 0 50px rgba(18, 92, 58, 0.14);
}

.cart-panel.is-open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  font-size: 32px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: var(--panel-2);
  color: var(--ink);
  font-size: 28px;
}

.cart-items {
  overflow: auto;
  padding: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-thumb {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  background: var(--art);
}

.cart-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
}

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

.quantity-control {
  display: inline-grid;
  grid-template-columns: 34px 34px 34px;
  align-items: center;
  min-height: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.quantity-button {
  height: 34px;
  background: var(--panel-2);
  color: var(--ink);
}

.quantity-control span {
  text-align: center;
  font-weight: 850;
}

.cart-empty {
  display: none;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 40px 24px;
  color: var(--muted);
  text-align: center;
}

.cart-empty.is-visible {
  display: grid;
}

.cart-footer {
  display: grid;
  gap: 14px;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

.checkout-button {
  width: 100%;
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

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

.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  background: rgba(16, 32, 24, 0.38);
}

.overlay.is-visible {
  display: block;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.rich-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(150px, 0.8fr));
  align-items: start;
  background: rgba(255, 255, 255, 0.72);
}

.rich-footer div {
  display: grid;
  gap: 10px;
}

.rich-footer p {
  max-width: 440px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.rich-footer strong {
  color: var(--ink);
}

.rich-footer a:not(.brand) {
  color: var(--muted);
}

.rich-footer a:not(.brand):hover {
  color: var(--accent);
}

@media (max-width: 920px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .home-hero h1,
  .detail-heading h1 {
    font-size: 3.1rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split,
  .detail-layout,
  .product-detail-grid,
  .checkout-grid,
  .category-grid,
  .process-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .purchase-card {
    position: static;
  }

  .logo-strip,
  .stats-band,
  .summary-tags,
  .summary-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .command-panel {
    min-height: 430px;
  }

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

  .trust-band div,
  .stats-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-band div:last-child,
  .stats-band div:last-child {
    border-bottom: 0;
  }

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

  .support,
  .feature-strip {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.55rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .home-hero h1,
  .detail-heading h1 {
    font-size: 2.8rem;
  }

  .stats-band strong,
  .summary-stats strong,
  .metric-grid strong {
    font-size: 2.6rem;
  }

  .license-box {
    font-size: 1.35rem;
  }

  .site-header {
    gap: 12px;
    min-height: 66px;
    padding-inline: 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero,
  .section,
  .page-intro {
    padding-inline: 16px;
  }

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

  .market-list div {
    grid-template-columns: 1fr;
  }

  .logo-strip,
  .stats-band,
  .summary-tags,
  .summary-stats,
  .rich-footer {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-rows: 190px 1fr;
  }

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

  .spec-list div {
    grid-template-columns: 1fr;
  }

  .company-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .catalog-toolbar,
  .section-heading {
    display: block;
  }
}
