@font-face {
  font-family: Onest;
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/onest-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Onest;
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: Onest;
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font-main: Onest, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --bg: #f4f8f6;
  --ink: #0a1412;
  --muted: #5f6f6a;
  --line: #d8e4df;
  --panel: #ffffff;
  --dark: #061310;
  --dark-2: #0c211d;
  --green: #00a88e;
  --green-2: #36d8a8;
  --mint: #dff8ef;
  --gold: #e4b64b;
  --danger: #c94f4f;
  --shadow: 0 18px 45px rgba(5, 27, 23, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.13);
  --glass-bg-strong: rgba(255, 255, 255, 0.2);
  --glass-line: rgba(255, 255, 255, 0.26);
  --glass-dark: rgba(5, 22, 19, 0.62);
  --glass-shadow: 0 18px 48px rgba(4, 19, 17, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-main);
  line-height: 1.5;
}

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

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 168, 142, 0.36);
  outline-offset: 3px;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 60;
  padding: 10px 14px;
  color: #ecfff9;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 900;
  transform: translateY(-150%);
  transition: transform 0.18s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(300px, auto) minmax(0, 1fr) minmax(220px, 300px) auto;
  align-items: center;
  gap: 16px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #ecfff9;
  background: rgba(6, 19, 16, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: min(410px, 100%);
}

.brand-logo {
  width: 154px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.brand-divider {
  width: 1px;
  height: 38px;
  flex: 0 0 1px;
  background: rgba(255, 255, 255, 0.18);
}

.brand-site {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: 0;
}

.brand small {
  color: #98bbb3;
  font-size: 12px;
  line-height: 1.25;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.4vw, 18px);
  color: #cce5df;
  font-size: 14px;
}

.main-nav a {
  padding: 6px 0;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active,
.responsive-menu-panel a:hover,
.responsive-menu-panel a.is-active,
.header-icon:hover,
.header-icon.is-active,
.header-cart:hover,
.header-cart.is-active,
.source-links a:hover {
  color: var(--green-2);
}

.global-catalog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-width: 0;
  color: #d7eee8;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  overflow: hidden;
}

.global-catalog-search label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 0 0 0 12px;
}

.global-catalog-search span {
  color: #98bbb3;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.global-catalog-search input {
  width: 100%;
  min-width: 0;
  height: 40px;
  color: #ecfff9;
  background: transparent;
  border: 0;
  outline: 0;
}

.global-catalog-search input::placeholder {
  color: rgba(215, 238, 232, 0.62);
}

.global-catalog-search button {
  height: 40px;
  padding: 0 12px;
  color: var(--dark);
  background: var(--green-2);
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

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

.menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #d7eee8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
  border-radius: 99px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.responsive-menu-panel {
  display: none;
}

.header-icon,
.header-cart {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: #d7eee8;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.header-icon svg,
.header-cart svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: none;
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  place-items: center;
  color: var(--dark);
  background: var(--green-2);
  border: 2px solid var(--dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

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

.mobile-action-bar {
  display: none;
}

.header-action,
.button,
.add-to-cart,
.advisor-sku-actions button,
.cart-clear,
.cart-remove,
.cart-quantity button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.header-action:hover,
.button:hover,
.add-to-cart:hover,
.advisor-sku-actions button:hover,
.cart-clear:hover,
.cart-remove:hover,
.cart-quantity button:hover {
  transform: translateY(-1px);
}

.header-action:active,
.button:active,
.add-to-cart:active,
.advisor-sku-actions button:active,
.cart-clear:active,
.cart-remove:active,
.cart-quantity button:active {
  transform: translateY(0);
}

.header-action {
  flex-shrink: 0;
}

.header-action,
.button.primary,
.add-to-cart,
.advisor-sku-actions button {
  color: var(--dark);
  background: var(--green-2);
}

.advisor-shortcuts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.advisor-shortcuts button {
  min-width: 0;
  min-height: 38px;
  color: #dffbf5;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.advisor-shortcuts button:hover,
.advisor-shortcuts button.is-active {
  color: var(--dark);
  background: var(--green-2);
}

.cart-clear {
  color: var(--dark);
  background: var(--mint);
  border-color: var(--line);
}

.cart-remove {
  color: #7e2222;
  background: #fff3f3;
  border-color: #f0c6c6;
}

.cart-quantity button {
  width: 32px;
  min-width: 32px;
  min-height: 32px;
  padding: 0;
  color: var(--dark);
  background: var(--mint);
  border-color: var(--line);
}

.button.ghost {
  color: #f3fffb;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost-light {
  color: var(--ink);
  border-color: rgba(10, 20, 18, 0.72);
  background: rgba(255, 255, 255, 0.92);
}

.hero {
  position: relative;
  display: grid;
  min-height: 660px;
  color: #f4fffb;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 12, 10, 0.96) 0%, rgba(3, 12, 10, 0.78) 38%, rgba(3, 12, 10, 0.18) 75%),
    linear-gradient(0deg, rgba(3, 12, 10, 0.92), transparent 42%);
}

.hero-content {
  position: relative;
  align-self: end;
  width: min(820px, calc(100% - 36px));
  padding: 110px 0 58px clamp(18px, 6vw, 76px);
}

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

.hero .eyebrow {
  color: var(--green-2);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 640px;
  color: #d5e8e3;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.quick-solution-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-width: 720px;
  margin: 0 0 16px;
}

.quick-solution-strip a {
  display: grid;
  gap: 3px;
  min-width: 0;
  min-height: 52px;
  padding: 10px 11px;
  color: #ecfff9;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.quick-solution-strip a:hover {
  background: rgba(54, 216, 168, 0.18);
  border-color: rgba(54, 216, 168, 0.42);
  transform: translateY(-1px);
}

.quick-solution-strip span {
  color: #a9c7c0;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-solution-strip strong {
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.partner-proof {
  display: grid;
  grid-template-columns: minmax(132px, 190px) minmax(220px, 360px);
  gap: 16px;
  align-items: center;
  max-width: 610px;
  margin-top: 14px;
  padding: 16px;
  background: rgba(4, 16, 14, 0.88);
  border: 1px solid rgba(54, 216, 168, 0.22);
  border-radius: 8px;
}

.partner-proof img {
  display: block;
  width: 100%;
  min-width: 120px;
  height: auto;
}

.partner-proof p {
  margin: 0;
  color: #cfe6e1;
  font-size: 13px;
}

.partner-credentials {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: center;
  padding: 42px clamp(18px, 5vw, 72px);
  color: #edfff9;
  background: var(--dark-2);
}

.partner-credentials h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 44px);
}

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

.credential-grid article {
  min-height: 126px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

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

.credential-grid strong {
  margin-bottom: 10px;
  color: var(--green-2);
  font-size: 20px;
  line-height: 1.15;
}

.credential-grid span {
  color: #cfe6e1;
  font-size: 14px;
}

.section {
  padding: 86px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.wide {
  max-width: 980px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.catalog-section .product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.audience-panel,
.product-card,
.article-card,
.brief-grid article,
.advisor-form,
.advisor-result,
.request-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.audience-panel {
  padding: 26px;
}

.panel-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--dark);
  background: var(--mint);
  border-radius: 8px;
  font-weight: 900;
}

.panel-icon img {
  display: block;
  max-width: 38px;
  max-height: 38px;
}

.audience-panel p,
.product-card p,
.article-card p,
.brief-grid p,
.advisor-result p,
.request-copy p,
.site-footer p {
  color: var(--muted);
}

.audience-panel a,
.article-card a,
.advisor-result a,
.card-actions a {
  color: var(--green);
  font-weight: 800;
}

.catalog-section,
.knowledge {
  background: #eef5f2;
}

.threat-brief {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.4fr;
  gap: 28px;
  background: #fff;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.filter-button,
.catalog-pick-filter,
.catalog-search-filter,
.catalog-character-filter,
.character-filter-head button,
.character-filter-grid select {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.filter-button.is-active {
  color: #ecfff9;
  background: var(--dark);
  border-color: var(--dark);
}

.catalog-pick-filter,
.catalog-search-filter {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  background: #fff;
}

.catalog-pick-filter select,
.catalog-search-filter input {
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.catalog-pick-filter select {
  min-width: 220px;
}

.catalog-search-filter input {
  width: min(300px, 38vw);
}

.catalog-character-filter {
  margin: 0 0 16px;
  padding: 10px 12px;
  background: #fff;
}

.catalog-character-filter summary {
  cursor: pointer;
  font-weight: 800;
}

.character-filter-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 12px 0;
}

.character-filter-head button {
  min-height: 32px;
  padding: 0 12px;
  color: var(--dark);
  background: var(--mint);
  cursor: pointer;
}

.character-filter-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 8px;
}

.character-filter-grid label {
  display: grid;
  gap: 4px;
}

.character-filter-grid span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.character-filter-grid select {
  min-width: 0;
  min-height: 36px;
  padding: 0 10px;
  background: #fff;
}

.catalog-search-status {
  min-height: 20px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.sku-directory {
  background: #eef5f2;
}

.sku-directory .section-heading {
  margin-bottom: 16px;
}

.sku-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(150px, 0.6fr) minmax(150px, 0.6fr) minmax(130px, 0.5fr);
  gap: 8px;
  margin-bottom: 12px;
}

.sku-toolbar label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 40px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(5, 27, 23, 0.06);
}

.sku-toolbar label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.sku-toolbar input,
.sku-toolbar select {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.sku-toolbar input::placeholder {
  color: #8aa09a;
}

.sku-summary {
  min-height: 18px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.sku-list {
  display: grid;
  gap: 8px;
}

.sku-row {
  display: grid;
  grid-template-columns: minmax(138px, 0.4fr) minmax(250px, 1fr) minmax(300px, 1.15fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(5, 27, 23, 0.07);
}

.sku-code,
.sku-product,
.sku-meta,
.sku-actions {
  min-width: 0;
}

.sku-code span,
.sku-product span,
.sku-meta dt {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.1;
  text-transform: uppercase;
}

.sku-code strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 16px;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.sku-product h3 {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.15;
}

.sku-product p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sku-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(74px, 1fr));
  gap: 8px;
  margin: 0;
}

.sku-meta div {
  min-width: 0;
}

.sku-meta dd {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sku-actions {
  display: grid;
  grid-template-columns: auto minmax(96px, auto) minmax(104px, auto);
  gap: 7px;
  align-items: center;
  justify-content: end;
}

.sku-actions .ministry-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
}

.sku-actions .product-page-link,
.sku-actions .add-to-cart {
  min-height: 32px;
  white-space: nowrap;
}

.brief-grid article {
  padding: 22px;
  box-shadow: none;
}

.brief-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
}

.request {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 560px);
  gap: 36px;
  align-items: start;
  color: #edfff9;
  background:
    radial-gradient(circle at 20% 10%, rgba(54, 216, 168, 0.22), transparent 32%),
    var(--dark);
}

.request-copy {
  min-width: 0;
  max-width: 620px;
}

.advisor-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: start;
}

.advisor-form {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
}

.advisor-form label,
.advisor-sku-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
  font-weight: 750;
}

.advisor-form select,
.advisor-form input,
.advisor-sku-form select,
.advisor-sku-form input {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 0 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

.advisor-sku-panel {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.advisor-sku-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.advisor-sku-head h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 36px);
}

.advisor-sku-form {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(5, minmax(120px, 0.74fr)) auto;
  gap: 8px;
  align-items: end;
  min-width: 0;
}

.advisor-sku-reset {
  min-height: 40px;
  padding: 0 12px;
  color: var(--dark);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.advisor-sku-results {
  display: grid;
  gap: 8px;
}

.advisor-sku-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.38fr) minmax(230px, 1fr) minmax(260px, 1.08fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(5, 27, 23, 0.07);
}

.advisor-sku-code,
.advisor-sku-product,
.advisor-sku-meta,
.advisor-sku-actions {
  min-width: 0;
}

.advisor-sku-code span,
.advisor-sku-product span,
.advisor-sku-meta dt {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.1;
  text-transform: uppercase;
}

.advisor-sku-code strong,
.advisor-sku-product h3 {
  display: block;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.15;
}

.advisor-sku-product p {
  display: -webkit-box;
  margin: 4px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.advisor-sku-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(74px, 1fr));
  gap: 8px;
  margin: 0;
}

.advisor-sku-meta dd {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.advisor-sku-actions {
  display: grid;
  grid-template-columns: auto minmax(92px, auto) minmax(102px, auto);
  gap: 7px;
  align-items: center;
  justify-content: end;
}

.advisor-sku-empty {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.request-form {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 26px;
  color: var(--ink);
}

.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.checkout-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #dff7f1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.checkout-steps span.is-active {
  color: var(--dark);
  background: var(--green-2);
  border-color: var(--green-2);
}

.request-portal-note {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-top: 18px;
  padding: 14px;
  color: #dff7f1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.request-portal-note strong {
  color: #f3fffb;
  font-size: 16px;
}

.request-portal-note p {
  margin: 0;
  color: #b7d6cf;
  font-size: 14px;
  line-height: 1.4;
}

.request-portal-note a {
  justify-self: start;
  color: var(--green-2);
  font-weight: 800;
}

.request-order-card,
.checkout-section {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fcfb;
}

fieldset.checkout-section {
  min-inline-size: 0;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.cart-head h2 {
  margin-bottom: 0;
  font-size: 24px;
}

.muted {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

.request-order-main {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.request-order-line span,
.request-order-line small {
  color: var(--muted);
}

.request-order-line span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.request-order-line strong {
  overflow-wrap: anywhere;
}

.request-order-line strong a {
  color: var(--ink);
  text-decoration: none;
}

.request-order-side {
  display: flex;
  gap: 8px;
  align-items: center;
}

.request-order-empty {
  display: grid;
  gap: 10px;
  padding: 16px;
  color: var(--muted);
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.request-order-empty strong {
  color: var(--ink);
}

.empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkout-section {
  margin: 0;
}

.checkout-section legend {
  padding: 0 8px;
  font-weight: 900;
}

.buyer-type-toggle,
.option-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.buyer-type-toggle label,
.option-tile {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.buyer-type-toggle label span,
.option-tile span {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 8px 10px;
  text-align: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.buyer-type-toggle input,
.option-tile input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.buyer-type-toggle input:checked + span,
.option-tile input:checked + span {
  color: #eafff8;
  background: var(--dark-2);
  border-color: var(--dark-2);
}

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

.checkout-grid label,
.request-form input,
.request-form textarea,
.request-form select {
  min-width: 0;
}

.request-form label span {
  color: var(--ink);
}

.check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-weight: 600;
}

.check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.check span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.check a {
  color: var(--green);
  font-weight: 900;
}

.policy-page {
  padding: 46px clamp(18px, 5vw, 72px);
  background: #f7fbf9;
}

.policy-doc {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--green);
}

.site-breadcrumbs {
  padding: 10px clamp(18px, 5vw, 72px);
  background: #eef5f2;
  border-bottom: 1px solid rgba(18, 54, 47, 0.08);
}

.site-breadcrumbs .breadcrumbs {
  margin: 0;
}

.site-breadcrumbs .breadcrumbs span:last-child {
  color: var(--ink);
}

.policy-doc-header {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.policy-doc-header h1 {
  max-width: 860px;
}

.policy-doc-header p:not(.eyebrow),
.policy-doc-meta {
  color: var(--muted);
}

.policy-doc-body {
  display: grid;
  gap: 18px;
}

.policy-block {
  display: grid;
  gap: 8px;
}

.policy-block h2 {
  margin: 0;
  font-size: 24px;
}

.policy-block p {
  margin: 0;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100vw - 28px));
  padding: 18px;
  color: #eafff8;
  background: rgba(6, 19, 16, 0.96);
  border: 1px solid rgba(54, 216, 168, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(5, 27, 23, 0.28);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
}

.cookie-banner p {
  margin-bottom: 8px;
  color: #b9d5ce;
  font-size: 13px;
}

.cookie-banner a {
  color: var(--green-2);
  font-weight: 900;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.is-ready {
  color: var(--green);
  font-weight: 800;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  gap: 18px;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.cart-empty {
  display: grid;
  gap: 12px;
  min-height: 220px;
  align-content: center;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-empty h3 {
  margin: 0;
  font-size: 24px;
}

.cart-empty p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.28fr);
  gap: 16px;
  align-items: start;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-product-main {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.cart-line-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.cart-line-top span {
  min-width: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.cart-row h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.14;
}

.cart-row h3 a {
  color: var(--ink);
  text-decoration: none;
}

.cart-row p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.cart-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  color: #31524b;
  background: #eef8f5;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
}

.cart-row-actions,
.cart-summary {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.cart-summary {
  position: sticky;
  top: 92px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-summary h3 {
  margin: 0;
  font-size: 20px;
}

.cart-summary dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.cart-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.cart-summary dt {
  color: var(--muted);
}

.cart-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.cart-row-price {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px;
  background: #f4fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-row-price strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.05;
}

.cart-row-price small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.cart-quantity {
  display: grid;
  grid-template-columns: 36px minmax(62px, 1fr) 36px;
  gap: 6px;
  align-items: center;
}

.cart-quantity input {
  min-width: 0;
  height: 36px;
  padding: 0 8px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-align: center;
}

.cart-row-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.cart-row-links a {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

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

.icon-remove {
  width: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
  border-radius: 8px;
  font-size: 22px;
}

.site-footer {
  width: 100%;
  margin-top: 0;
  padding: 42px clamp(18px, 5vw, 72px) 38px;
  color: #dff7f1;
  background:
    radial-gradient(circle at 12% 0%, rgba(54, 216, 168, 0.16), transparent 36%),
    linear-gradient(135deg, #04100e 0%, #071a17 52%, #03110f 100%);
  border-top: 1px solid rgba(54, 216, 168, 0.2);
}

.footer-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(4, minmax(142px, 0.62fr));
  gap: 28px;
  align-items: start;
}

.company-info {
  display: grid;
  gap: 15px;
  max-width: 440px;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  width: 218px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  max-width: 460px;
  margin: 0;
  color: #9fbbb4;
}

.footer-partner-badge {
  width: min(260px, 100%);
  padding: 12px;
  background: #071411;
  border: 1px solid rgba(54, 216, 168, 0.22);
  border-radius: 8px;
}

.footer-partner-badge img {
  width: 100%;
  height: auto;
}

.req-line {
  color: #a8c4bd;
  font-size: 13px;
  line-height: 1.55;
}

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

.footer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #c8fff1;
  background: rgba(54, 216, 168, 0.1);
  border: 1px solid rgba(54, 216, 168, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.footer-col {
  display: grid;
  gap: 12px;
}

.footer-col h5 {
  margin: 0;
  color: #f3fffb;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a {
  color: #bce4dc;
  font-weight: 700;
}

.footer-col a:hover,
.footer-policy a:hover {
  color: var(--green-2);
}

.footer-contact {
  color: #a8c4bd;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-policy a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #cce5df;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #8fa8a2;
  font-size: 12px;
  line-height: 1.5;
}

.footer-bottom span:last-child {
  max-width: 720px;
  text-align: right;
}

.compact-page h1 {
  max-width: 980px;
  margin-bottom: 14px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
}

.page-main {
  min-height: calc(100vh - 190px);
}

.page-section {
  min-height: calc(100vh - 190px);
  padding-top: 46px;
  padding-bottom: 46px;
}

.compact-page .section-heading {
  margin-bottom: 22px;
}

.compact-page .section-heading p:not(.eyebrow) {
  max-width: 980px;
}

.scroll-panel {
  max-height: calc(100vh - 330px);
  overflow: auto;
  padding: 2px 8px 8px 2px;
  scrollbar-color: var(--green) transparent;
}

.catalog-scroll {
  max-height: calc(100vh - 320px);
}

.home-page .hero {
  min-height: 540px;
}

.home-page h1 {
  max-width: 760px;
  font-size: clamp(36px, 4.5vw, 58px);
}

.home-page .hero-content {
  padding-top: 74px;
  padding-bottom: 28px;
}

.home-page .partner-credentials {
  display: none;
}

.home-page .audiences {
  padding-top: 38px;
  padding-bottom: 40px;
}

.home-page .site-footer {
  padding-top: 28px;
  padding-bottom: 26px;
}

.home-page .site-footer .footer-inner {
  gap: 20px;
}

.home-page .footer-top {
  gap: 22px;
}

.home-page .footer-logo {
  width: 198px;
  height: 52px;
}

.home-page .footer-partner-badge {
  width: min(230px, 100%);
}

.compact-page .site-footer {
  padding-top: 24px;
  padding-bottom: 22px;
}

.compact-page .site-footer .footer-inner {
  gap: 14px;
}

.compact-page .footer-top {
  gap: 22px;
}

.compact-page .footer-logo {
  width: 176px;
  height: 46px;
}

.compact-page .footer-partner-badge {
  width: min(195px, 100%);
}

.compact-page .company-info {
  gap: 10px;
}

.compact-page .footer-policy {
  padding-top: 16px;
}

.compact-page .footer-col ul {
  gap: 7px;
}

.product-main {
  background: #f7fbf9;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
  gap: 24px;
  align-items: stretch;
  padding: 46px clamp(18px, 5vw, 72px) 28px;
  color: #f3fffb;
  background:
    radial-gradient(circle at 78% 20%, rgba(54, 216, 168, 0.18), transparent 32%),
    linear-gradient(135deg, #061310 0%, #102c25 58%, #071a17 100%);
}

.back-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 20px;
  color: #b7dcd4;
  font-weight: 800;
}

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

.product-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  color: #f6fffc;
  font-size: clamp(40px, 5.8vw, 78px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.product-lead {
  max-width: 860px;
  margin-bottom: 0;
  color: #cfe6e1;
  font-size: 20px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-actions .button {
  min-width: 148px;
}

.product-hero-panel,
.product-section,
.source-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-hero-panel {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
}

.product-logo-xl {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: var(--dark);
  background: linear-gradient(135deg, var(--mint), #ffffff);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 22px;
  font-weight: 900;
}

.product-logo-xl img {
  max-width: 60px;
  max-height: 60px;
}

.product-hero-panel dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.product-hero-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-hero-panel dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
}

.product-content {
  display: grid;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px) 46px;
}

.product-section {
  padding: 26px;
}

.product-section h2 {
  max-width: 780px;
  font-size: clamp(26px, 3vw, 42px);
}

.product-section-dark {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  color: #f3fffb;
  background:
    radial-gradient(circle at 100% 0, rgba(54, 216, 168, 0.2), transparent 28%),
    linear-gradient(135deg, #071a17, #11352e);
  border-color: rgba(54, 216, 168, 0.24);
}

.product-section-dark h2 {
  color: #f6fffc;
}

.product-section-dark .eyebrow {
  color: var(--green-2);
}

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

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

.product-scenario-grid article {
  min-height: 150px;
  padding: 18px;
  color: #e8fff8;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.product-scenario-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--green-2);
  font-size: 22px;
  font-weight: 900;
}

.product-scenario-grid p {
  margin-bottom: 0;
}

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

.product-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.product-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  background: var(--green-2);
  border-radius: 50%;
}

.product-buy-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-buy-panel .button {
  margin-top: auto;
}

.product-buy-panel-compact {
  max-width: 420px;
}

.product-buy-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.product-buy-head span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-buy-head strong {
  display: block;
  color: var(--dark);
  font-size: 20px;
  line-height: 1.1;
}

.source-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 18px;
  color: var(--muted);
}

.source-note strong {
  color: var(--ink);
}

.source-note a,
.product-detail-link {
  color: var(--green);
  font-weight: 900;
}

.product-detail-link {
  white-space: nowrap;
}

.price-strip {
  display: grid;
  gap: 2px;
  margin: 10px 0;
  padding: 9px;
  background: #f4fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-strip strong {
  color: var(--dark);
  font-size: 17px;
  line-height: 1.1;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.price-strip span,
.price-note {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.ministry-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
}

.ministry-icon img {
  display: block;
  width: 28px;
  height: 28px;
}

.ministry-icon.is-muted {
  filter: grayscale(1);
  opacity: 0.55;
}

.cart-row-price {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.cart-row-price small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: start;
  padding: 42px clamp(18px, 5vw, 72px);
  color: #f3fffb;
  background:
    radial-gradient(circle at 80% 10%, rgba(54, 216, 168, 0.18), transparent 30%),
    linear-gradient(135deg, #061310 0%, #102c25 60%, #071a17 100%);
}

.product-detail-page .product-detail-hero {
  grid-template-columns: minmax(0, 1fr);
}

.product-hero-copy h1 {
  max-width: 980px;
  margin-bottom: 18px;
  color: #f6fffc;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.product-hero-copy p:not(.eyebrow) {
  max-width: 850px;
  color: #cfe6e1;
  font-size: 19px;
}

.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.product-meta-row span {
  padding: 8px 10px;
  color: #dffbf5;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.product-buy-panel label {
  display: grid;
  gap: 6px;
  width: 100%;
}

.product-buy-panel label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-buy-panel select,
.product-buy-panel input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.product-logo.big {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
}

.product-logo.big img {
  max-width: 36px;
  max-height: 36px;
}

.product-detail-section {
  padding-top: 28px;
}

.product-feature-section {
  background: #fff;
}

.product-feature-grid,
.product-info-grid,
.product-faq-grid {
  display: grid;
  gap: 14px;
}

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

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

.product-feature-grid article,
.product-info-grid article,
.product-faq-grid article {
  min-width: 0;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-info-section {
  background: #eef5f2;
}

.product-faq-section {
  background: #fff;
}

.product-feature-grid span,
.product-info-grid article > span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-feature-grid p,
.product-info-grid p,
.product-faq-grid p {
  margin: 0;
  color: var(--muted);
}

.product-info-grid ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-info-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.35;
}

.product-info-grid li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.product-faq-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 17px;
  line-height: 1.2;
}

.product-overview-section {
  padding-top: 30px;
  padding-bottom: 30px;
  background:
    radial-gradient(circle at 8% 0, rgba(54, 216, 168, 0.16), transparent 26%),
    linear-gradient(180deg, #eef5f2, #f8fbfa);
}

.product-overview-shell {
  display: grid;
  gap: 14px;
}

.product-overview-head {
  display: block;
}

.product-overview-head .eyebrow {
  margin: 0;
}

.product-overview-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.08;
  text-align: right;
}

.product-overview-board {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(360px, 1.08fr);
  gap: 12px;
  align-items: start;
}

.product-overview-main,
.product-fact-grid article,
.product-info-rail article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-overview-main {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  color: #edfff9;
  background:
    radial-gradient(circle at 95% 5%, rgba(54, 216, 168, 0.24), transparent 28%),
    linear-gradient(135deg, #071a17, #12372f);
  border-color: rgba(54, 216, 168, 0.22);
}

.product-overview-main > span,
.product-fact-grid span,
.product-info-rail span {
  display: block;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-overview-main > span {
  color: var(--green-2);
}

.product-overview-main h3 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.04;
}

.product-feature-strip {
  display: grid;
  gap: 8px;
}

.product-feature-line {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.product-feature-line b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #06231e;
  background: var(--green-2);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.product-feature-line p {
  margin: 0;
  color: #d6eee8;
  font-size: 13px;
  line-height: 1.34;
}

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

.product-fact-grid article {
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.product-fact-grid p,
.product-info-rail p,
.product-info-rail li {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.32;
}

.product-info-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr) minmax(260px, 0.8fr);
  gap: 10px;
  align-self: start;
}

.product-fact-grid {
  align-self: start;
}

.product-info-rail article {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 12px;
  background: #fff;
}

.product-info-rail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-info-rail li {
  padding: 4px 7px;
  color: #274842;
  background: #eef7f4;
  border: 1px solid rgba(0, 168, 142, 0.12);
  border-radius: 8px;
}

@media (min-width: 1181px) {
  .product-overview-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .product-overview-board {
    grid-template-columns: minmax(380px, 0.92fr) minmax(400px, 0.88fr) minmax(280px, 0.72fr);
  }

  .product-info-rail {
    grid-column: auto;
    grid-template-columns: 1fr;
    align-self: stretch;
  }

  .product-info-rail article {
    min-height: 0;
  }

  .product-info-rail p,
  .product-info-rail li,
  .product-fact-grid p {
    font-size: 13px;
  }
}

.product-detail-grid article {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-detail-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-grid p {
  margin: 0;
}

@media (max-width: 1500px) {
  .site-header {
    grid-template-columns: minmax(260px, 1fr) minmax(220px, 340px) auto auto;
    gap: 12px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .responsive-menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: clamp(18px, 4vw, 56px);
    z-index: 60;
    display: none;
    min-width: min(320px, calc(100vw - 32px));
    padding: 10px;
    color: #ecfff9;
    background: rgba(6, 19, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    box-shadow: 0 24px 62px rgba(4, 19, 17, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(28px) saturate(1.35);
    -webkit-backdrop-filter: blur(28px) saturate(1.35);
  }

  .responsive-menu-panel.is-open {
    display: grid;
    gap: 4px;
  }

  .responsive-menu-panel a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    color: #d7eee8;
    border-radius: 12px;
    font-weight: 850;
  }

  .responsive-menu-panel a:hover,
  .responsive-menu-panel a.is-active {
    color: var(--dark);
    background: var(--green-2);
  }

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

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
  }

  .brand {
    grid-column: 1;
    order: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .brand-site strong,
  .brand-site small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    grid-column: 2;
    order: 1;
    justify-self: end;
  }

  .header-actions {
    grid-column: 3;
    order: 1;
    min-width: 0;
    justify-content: flex-end;
  }

  .global-catalog-search {
    grid-column: 1 / -1;
    order: 2;
    width: 100%;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
  }

  .brand {
    min-width: 0;
    grid-column: 1;
    order: 1;
    overflow: hidden;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-color: var(--green) transparent;
  }

  .brand-site strong,
  .brand-site small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    grid-column: 3;
    order: 1;
    width: auto;
    justify-content: flex-end;
  }

  .menu-toggle {
    grid-column: 2;
    order: 1;
  }

  .global-catalog-search {
    grid-column: 1 / -1;
    order: 2;
    width: 100%;
  }

  .header-action {
    margin-left: auto;
  }

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

  .company-info {
    grid-column: 1 / -1;
    max-width: none;
  }

  .site-footer p {
    max-width: 760px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom span:last-child {
    max-width: none;
    text-align: left;
  }

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

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

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

  .sku-search {
    grid-column: 1 / -1;
  }

  .sku-row {
    grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
  }

  .sku-meta,
  .sku-actions {
    grid-column: 1 / -1;
  }

  .sku-actions {
    grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

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

  .knowledge-layout,
  .partner-credentials,
  .cart-layout,
  .advisor-layout,
  .threat-brief,
  .request,
  .checkout-grid,
  .option-card-grid,
  .product-hero,
  .product-detail-hero,
  .product-section-dark,
  .product-detail-grid,
  .source-note {
    grid-template-columns: 1fr;
  }

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

  .advisor-sku-query {
    grid-column: 1 / -1;
  }

  .advisor-sku-card {
    grid-template-columns: minmax(135px, 0.35fr) minmax(0, 1fr);
  }

  .advisor-sku-meta,
  .advisor-sku-actions {
    grid-column: 1 / -1;
  }

  .advisor-sku-actions {
    grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .knowledge-index {
    display: flex;
    flex-wrap: wrap;
  }

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

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

@media (max-width: 900px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: center;
  }

  .main-nav {
    display: none;
  }

  .brand,
  .global-catalog-search {
    grid-column: 1;
  }

  .brand {
    grid-column: 1;
    order: 1;
  }

  .menu-toggle {
    grid-column: 2;
    order: 1;
    justify-self: end;
  }

  .global-catalog-search {
    grid-column: 1 / -1;
    order: 2;
  }

  .header-actions {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 55;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    background: rgba(6, 19, 16, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    box-shadow: 0 20px 52px rgba(4, 19, 17, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(28px) saturate(1.6);
    -webkit-backdrop-filter: blur(28px) saturate(1.6);
  }

  .mobile-action-bar a {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 46px;
    overflow: hidden;
    color: #d7eee8;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid transparent;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 900;
    transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.22s ease, color 0.22s ease;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 18% 4%, rgba(54, 216, 168, 0.26), transparent 30%),
      radial-gradient(circle at 96% 22%, rgba(228, 182, 75, 0.13), transparent 28%),
      linear-gradient(180deg, #071a17 0, #0d211d 34%, #eef5f2 58%, #f6faf8 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background:
      linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 24%, rgba(255, 255, 255, 0.08) 52%, transparent 76%),
      radial-gradient(circle at 42% 10%, rgba(255, 255, 255, 0.16), transparent 28%);
    opacity: 0.78;
  }

  .catalog-pick-filter,
  .catalog-search-filter {
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr);
  }

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

  .site-header {
    position: sticky;
    top: 8px;
    z-index: 56;
    gap: 10px;
    width: calc(100% - 20px);
    margin: 8px auto 0;
    padding: 10px;
    background: rgba(6, 19, 16, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(26px) saturate(1.45);
    -webkit-backdrop-filter: blur(26px) saturate(1.45);
  }

  .brand {
    align-items: center;
    gap: 8px;
  }

  .brand-logo {
    width: 116px;
    height: 34px;
  }

  .brand-divider {
    height: 34px;
  }

  .brand-site strong {
    font-size: 14px;
  }

  .brand-site small {
    font-size: 10px;
    line-height: 1.2;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 16px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .global-catalog-search {
    grid-template-columns: minmax(0, 1fr) 72px;
    order: 2;
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--glass-line);
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px) saturate(1.35);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
  }

  .global-catalog-search label {
    padding-left: 12px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .global-catalog-search span {
    display: none;
  }

  .global-catalog-search input {
    height: 44px;
    font-size: 15px;
  }

  .global-catalog-search button {
    height: 44px;
    border-radius: 14px;
    margin: 3px;
    padding: 0 10px;
  }

  .header-icon,
  .header-cart,
  .header-action {
    background: var(--glass-bg);
    border-color: var(--glass-line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px) saturate(1.35);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
  }

  .header-action {
    width: auto;
    min-width: 0;
    margin-left: 0;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero-content {
    width: 100%;
    padding: 120px 18px 42px;
  }

  .home-page .hero {
    min-height: auto;
    margin-top: -72px;
    padding-top: 72px;
  }

  .home-page .hero-content {
    padding: 46px 18px 34px;
  }

  .home-page h1 {
    font-size: 34px;
    line-height: 1.04;
    margin-bottom: 14px;
  }

  .home-page .hero-lead {
    font-size: 15px;
    line-height: 1.45;
  }

  .home-page .hero-actions {
    margin: 20px 0;
  }

  .home-page .hero-actions .button {
    flex: 1 1 150px;
    min-height: 48px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(5, 27, 23, 0.2);
    transform: translateZ(0);
  }

  .home-page .hero-actions .button.ghost {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px) saturate(1.35);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
  }

  .quick-solution-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 18px;
  }

  .quick-solution-strip a {
    position: relative;
    min-height: 54px;
    padding: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(22px) saturate(1.42);
    -webkit-backdrop-filter: blur(22px) saturate(1.42);
  }

  .quick-solution-strip a::after,
  .advisor-shortcuts button::after,
  .mobile-action-bar a::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 34%, rgba(255, 255, 255, 0.08) 68%, transparent);
    opacity: 0.58;
    mix-blend-mode: screen;
  }

  .quick-solution-strip strong {
    font-size: 14px;
  }

  .home-page .partner-proof {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(24px) saturate(1.34);
    -webkit-backdrop-filter: blur(24px) saturate(1.34);
  }

  .home-page .partner-proof p {
    font-size: 13px;
  }

  .home-page .partner-credentials {
    gap: 18px;
    padding: 28px 18px;
  }

  .home-page .credential-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-color: var(--green) transparent;
  }

  .home-page .credential-grid article {
    padding: 16px;
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(255, 255, 255, 0.62);
    box-shadow: 0 14px 36px rgba(5, 27, 23, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
  }

  .home-page .audiences {
    padding: 34px 18px;
  }

  .home-page .audiences .section-heading {
    margin-bottom: 18px;
  }

  .home-page .audiences .section-heading p:not(.eyebrow) {
    display: none;
  }

  .home-page .audience-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .home-page .audience-panel {
    min-height: auto;
    padding: 16px;
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(255, 255, 255, 0.66);
    border-radius: 22px;
    box-shadow: 0 16px 42px rgba(5, 27, 23, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px) saturate(1.18);
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
  }

  .home-page .audience-panel p {
    margin-bottom: 8px;
  }

  .partner-proof,
  .cart-row {
    grid-template-columns: 1fr;
  }

  .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 55;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    background: rgba(6, 19, 16, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    box-shadow: 0 20px 52px rgba(4, 19, 17, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(28px) saturate(1.6);
    -webkit-backdrop-filter: blur(28px) saturate(1.6);
  }

  .mobile-action-bar a {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 46px;
    overflow: hidden;
    color: #d7eee8;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid transparent;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 900;
    transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.22s ease, color 0.22s ease;
  }

  .mobile-action-bar a:active {
    transform: scale(0.96);
  }

  .mobile-action-bar a.is-active {
    color: var(--dark);
    background: rgba(54, 216, 168, 0.88);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48), 0 8px 18px rgba(54, 216, 168, 0.2);
  }

  .mobile-action-bar .cart-count {
    top: 2px;
    right: 10%;
    border-color: rgba(6, 19, 16, 0.96);
  }

  .advisor {
    padding-top: 34px;
    background:
      radial-gradient(circle at 12% 0, rgba(54, 216, 168, 0.28), transparent 30%),
      linear-gradient(180deg, rgba(6, 19, 16, 0.96), rgba(12, 33, 29, 0.96));
  }

  .advisor .section-heading {
    margin-bottom: 16px;
  }

  .advisor-form,
  .advisor-result {
    padding: 18px;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(24px) saturate(1.42);
    -webkit-backdrop-filter: blur(24px) saturate(1.42);
  }

  .advisor-shortcuts {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }

  .advisor-shortcuts button {
    position: relative;
    min-height: 38px;
    padding: 0 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    font-size: 12px;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .advisor-shortcuts button:active {
    transform: scale(0.96);
  }

  .advisor-shortcuts button.is-active {
    background: rgba(54, 216, 168, 0.9);
    box-shadow: 0 8px 20px rgba(54, 216, 168, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.44);
  }

  .advisor-result h3 {
    font-size: 30px;
  }

  .advisor-result-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .advisor-result-actions a {
    width: 100%;
    border-radius: 16px;
  }

  .advisor-sku-panel {
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(24px) saturate(1.42);
    -webkit-backdrop-filter: blur(24px) saturate(1.42);
  }

  .advisor-sku-head {
    display: block;
  }

  .advisor-sku-head h2 {
    font-size: 28px;
  }

  .advisor-sku-form,
  .advisor-sku-card,
  .advisor-sku-meta,
  .advisor-sku-actions {
    grid-template-columns: 1fr;
  }

  .advisor-sku-query,
  .advisor-sku-meta,
  .advisor-sku-actions {
    grid-column: auto;
  }

  .advisor-sku-form label {
    color: #e5fff8;
  }

  .advisor-sku-card {
    padding: 12px;
    border-radius: 18px;
  }

  .advisor-sku-product h3 {
    white-space: normal;
  }

  .advisor-sku-actions .ministry-icon {
    justify-self: start;
  }

  .catalog-section,
  .cart-section,
  .request {
    background:
      radial-gradient(circle at 84% 0, rgba(54, 216, 168, 0.16), transparent 28%),
      linear-gradient(180deg, rgba(238, 245, 242, 0.84), rgba(246, 250, 248, 0.96));
  }

  .catalog-toolbar,
  .catalog-character-filter,
  .request-form,
  .request-order-card,
  .cart-summary,
  .cart-row,
  .catalog-empty-state {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.62);
    border-radius: 22px;
    box-shadow: 0 16px 42px rgba(5, 27, 23, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(1.22);
    -webkit-backdrop-filter: blur(20px) saturate(1.22);
  }

  .catalog-pick-filter,
  .catalog-search-filter,
  .character-filter-grid select,
  .request-form input,
  .request-form textarea,
  .request-form select,
  select,
  input,
  textarea {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(255, 255, 255, 0.72);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .filter-button,
  .character-filter-head button,
  .product-page-link,
  .add-to-cart {
    border-radius: 16px;
  }

  .filter-button {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  .filter-button.is-active {
    color: #06231f;
    background: rgba(54, 216, 168, 0.88);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 18px rgba(54, 216, 168, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.58);
  }

  .product-card {
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(255, 255, 255, 0.66);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(5, 27, 23, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
  }

  .product-logo {
    border-radius: 18px;
    background: rgba(223, 248, 239, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  }

  .add-to-cart {
    min-height: 40px;
    box-shadow: 0 10px 20px rgba(54, 216, 168, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }

  .cart-summary {
    position: static;
  }

  .product-grid,
  .product-scenario-grid,
  .product-detail-grid,
  .article-grid,
  .audience-grid,
  .brief-grid {
    grid-template-columns: 1fr;
  }

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

  .sku-toolbar,
  .sku-row,
  .sku-meta,
  .sku-actions {
    grid-template-columns: 1fr;
  }

  .sku-toolbar label {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 8px 10px;
  }

  .sku-toolbar label span {
    padding: 0;
  }

  .sku-toolbar input,
  .sku-toolbar select {
    height: 38px;
  }

  .sku-row {
    padding: 12px;
  }

  .sku-code strong,
  .sku-product h3 {
    font-size: 17px;
  }

  .sku-actions .ministry-icon {
    justify-self: start;
  }

  .product-feature-grid,
  .product-info-grid,
  .product-faq-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 58px 18px;
  }

  .site-footer {
    padding: 28px 18px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-logo {
    width: 176px;
    height: 48px;
  }

  .footer-partner-badge {
    width: min(215px, 100%);
  }

  .footer-col {
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-col ul {
    gap: 7px;
  }

  .footer-policy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    padding-top: 14px;
  }

  .footer-policy a {
    justify-content: center;
    text-align: center;
  }

  .policy-page {
    padding: 24px 18px;
  }

  .policy-doc {
    padding: 20px;
  }

  .policy-block h2 {
    font-size: 20px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
  }

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

  .buyer-type-toggle,
  .option-card-grid,
  .checkout-grid,
  .request-order-line {
    grid-template-columns: 1fr;
  }

  .card-actions,
  .product-actions {
    align-items: stretch;
  }

  .card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .card-actions a,
  .card-actions button,
  .product-actions .button,
  .source-note a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .product-hero,
  .product-detail-hero,
  .product-content {
    padding-left: 18px;
    padding-right: 18px;
  }

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

@media (max-width: 520px) {
  .character-filter-head {
    align-items: stretch;
    flex-direction: column;
  }

  .character-filter-head button {
    width: 100%;
  }

  .character-filter-grid {
    grid-template-columns: 1fr;
  }
}

/* 20260708-density-light: lighter typography and denser buyer workflow. */
body {
  line-height: 1.42;
  font-weight: 400;
}

h1,
h2,
h3,
.brand strong,
.button,
.header-action,
.add-to-cart,
.filter-button,
.knowledge-tab,
.product-page-link,
.responsive-menu-panel a,
.global-catalog-search button {
  font-weight: 650;
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
}

h2 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

h3 {
  font-size: 19px;
}

.eyebrow,
.global-catalog-search span,
.catalog-pick-filter span,
.catalog-search-filter span,
.catalog-character-filter summary,
.character-filter-head span,
.character-filter-grid span,
.card-topline,
.product-card dt,
.sku-code span,
.sku-product span,
.sku-meta dt {
  font-weight: 650;
}

.section,
.page-main,
.product-main,
.catalog-section,
.knowledge,
.cart-section,
.request {
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(34px, 4.4vw, 60px);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 22px;
}

.compact-page h1 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.page-section {
  min-height: auto;
  padding-top: clamp(24px, 3vw, 34px);
  padding-bottom: clamp(34px, 4vw, 52px);
}

.catalog-section .section-heading {
  margin-bottom: 14px;
}

.catalog-section .eyebrow {
  margin-bottom: 6px;
  font-size: 11px;
}

.section-heading p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.45;
}

.audience-panel,
.product-card,
.article-card,
.brief-grid article,
.advisor-form,
.advisor-result,
.request-form,
.cart-row,
.cart-summary,
.catalog-empty-state {
  box-shadow: 0 10px 26px rgba(5, 27, 23, 0.08);
}

.catalog-toolbar {
  gap: 6px;
  margin-bottom: 14px;
}

.filter-button,
.knowledge-tab {
  min-height: 34px;
  padding: 0 12px;
  font-size: 14px;
}

.catalog-pick-filter,
.catalog-search-filter {
  min-height: 36px;
  padding: 0 8px 0 10px;
}

.catalog-pick-filter select,
.catalog-search-filter input {
  min-height: 28px;
  font-size: 14px;
  font-weight: 500;
}

.catalog-character-filter {
  gap: 8px;
  margin: -6px 0 14px;
  padding: 6px 10px;
}

.catalog-character-filter[open] {
  padding: 10px;
}

.catalog-character-filter summary {
  min-height: 30px;
}

.character-filter-grid {
  gap: 6px;
}

.character-filter-grid label {
  gap: 3px;
}

.character-filter-grid select {
  min-height: 32px;
  padding: 0 9px;
  font-size: 13px;
  font-weight: 500;
}

.catalog-search-status {
  min-height: 18px;
  margin: -6px 0 10px;
  font-size: 12px;
  font-weight: 500;
}

.catalog-section .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 9px;
}

.product-card {
  min-height: 238px;
  padding: 11px;
}

.product-card:hover {
  box-shadow: 0 12px 28px rgba(5, 27, 23, 0.11);
  transform: translateY(-1px);
}

.product-logo {
  width: 32px;
  height: 32px;
  margin-bottom: 7px;
}

.product-logo img {
  max-width: 25px;
  max-height: 25px;
}

.card-topline {
  gap: 6px;
  margin-bottom: 7px;
  font-size: 9px;
}

.product-card h3 {
  min-height: 38px;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.16;
}

.product-card p {
  min-height: 38px;
  font-size: 12px;
  line-height: 1.3;
  -webkit-line-clamp: 2;
}

.card-expand-field {
  position: relative;
  min-width: 0;
}

.product-card [data-card-expandable].has-overflow {
  padding-right: 24px;
}

.product-card p.is-expanded {
  display: block;
  min-height: 0;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.product-card dd.is-expanded {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.card-expand-toggle {
  position: absolute;
  right: 0;
  bottom: 1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  padding: 0;
  color: #075f55;
  background: rgba(54, 216, 168, 0.14);
  border: 1px solid rgba(0, 168, 142, 0.22);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.card-expand-toggle::before {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.16s ease;
}

.card-expand-toggle.is-expanded::before {
  transform: translateY(2px) rotate(225deg);
}

.card-expand-toggle:hover,
.card-expand-toggle:focus-visible {
  color: #053f39;
  background: rgba(54, 216, 168, 0.24);
  border-color: rgba(0, 168, 142, 0.38);
  transform: translateY(-1px);
}

.product-card .price-strip {
  gap: 0;
  margin: 7px 0;
  padding: 7px 8px;
}

.product-card .price-strip strong {
  font-size: 15px;
  font-weight: 650;
}

.product-card .price-strip span {
  display: none;
}

.product-card .ministry-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

.product-card .ministry-icon img {
  width: 22px;
  height: 22px;
}

.product-card dl {
  gap: 4px;
  margin-bottom: 8px;
}

.product-card dt {
  font-size: 9px;
}

.product-card dd {
  font-size: 12px;
}

.product-card ul {
  gap: 5px;
  margin: auto 0 10px;
}

.product-card li {
  padding: 4px 6px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
}

.card-actions {
  gap: 6px;
  padding-top: 8px;
}

.product-page-link {
  font-size: 11px;
}

.add-to-cart {
  min-height: 30px;
  padding: 0 10px;
  font-size: 13px;
}

.sku-toolbar {
  gap: 8px;
  margin-bottom: 10px;
}

.sku-toolbar input,
.sku-toolbar select {
  height: 40px;
  font-weight: 500;
}

.sku-summary {
  margin-bottom: 12px;
  font-weight: 500;
}

.sku-row {
  gap: 10px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(5, 27, 23, 0.07);
}

.sku-code strong,
.sku-product h3 {
  font-size: 16px;
  font-weight: 650;
}

.sku-product p,
.sku-meta dd {
  font-size: 12px;
}

@media (min-width: 1501px) {
  .catalog-section .product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .catalog-section .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .product-overview-board,
  .product-info-rail {
    grid-template-columns: 1fr;
  }

  .product-overview-head {
    display: grid;
    gap: 6px;
  }

  .product-overview-head h2 {
    text-align: left;
  }
}

/* 20260708-product-detail-density: buyer pages should scan like product specs, not a landing page. */
.product-detail-page .product-feature-section,
.product-detail-page .product-detail-section,
.product-detail-page .product-info-section,
.product-detail-page .product-faq-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.product-detail-page .product-feature-section {
  gap: 14px;
}

.product-detail-page .product-feature-section .section-heading {
  margin-bottom: 6px;
}

.product-detail-page .product-feature-section h2,
.product-detail-page .product-faq-section h2 {
  max-width: 880px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
}

.product-detail-page .product-feature-grid,
.product-detail-page .product-detail-grid,
.product-detail-page .product-info-grid,
.product-detail-page .product-faq-grid {
  gap: 10px;
}

.product-detail-page .product-feature-grid article,
.product-detail-page .product-detail-grid article,
.product-detail-page .product-info-grid article,
.product-detail-page .product-faq-grid article {
  padding: 14px 16px;
  box-shadow: none;
}

.product-detail-page .product-feature-grid article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.product-detail-page .product-feature-grid span,
.product-detail-page .product-info-grid article > span,
.product-detail-page .product-detail-grid span {
  margin: 0 0 6px;
  font-size: 10px;
  line-height: 1.2;
}

.product-detail-page .product-feature-grid span {
  margin: 2px 0 0;
}

.product-detail-page .product-feature-grid p,
.product-detail-page .product-detail-grid p,
.product-detail-page .product-info-grid p,
.product-detail-page .product-faq-grid p,
.product-detail-page .product-info-grid li {
  font-size: 14px;
  line-height: 1.32;
}

.product-detail-page .product-info-grid ul {
  gap: 5px;
}

.product-detail-page .product-info-grid li {
  padding-left: 14px;
}

.product-detail-page .product-info-grid li::before {
  top: 0.62em;
  width: 5px;
  height: 5px;
}

.product-detail-page .product-faq-grid strong {
  margin-bottom: 6px;
  font-size: 15px;
}

@media (min-width: 1180px) {
  .product-detail-page .product-info-grid,
  .product-detail-page .product-faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 25px;
  }

  .section,
  .page-main,
  .product-main,
  .catalog-section,
.knowledge,
.cart-section,
  .request {
    padding-top: 24px;
    padding-bottom: 30px;
  }

  .catalog-toolbar {
    gap: 6px;
    flex-wrap: nowrap;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 10px;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 168, 142, 0.6) transparent;
  }

  .catalog-toolbar .filter-button,
  .catalog-toolbar .catalog-pick-filter,
  .catalog-toolbar .catalog-search-filter {
    flex: 0 0 auto;
  }

  .catalog-toolbar .catalog-pick-filter {
    width: 220px;
  }

  .catalog-toolbar .catalog-search-filter {
    width: 240px;
  }

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

  .product-card {
    min-height: 220px;
    padding: 10px;
    border-radius: 16px;
  }

  .product-detail-page .product-feature-section,
  .product-detail-page .product-detail-section,
  .product-detail-page .product-info-section,
  .product-detail-page .product-faq-section {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .product-overview-section {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .product-overview-main,
  .product-fact-grid article,
  .product-info-rail article {
    padding: 12px;
  }

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

  .product-feature-line {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .product-feature-line p,
  .product-fact-grid p,
  .product-info-rail p,
  .product-info-rail li {
    font-size: 13px;
  }

  .product-detail-page .product-feature-grid article {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .product-card h3 {
    min-height: 35px;
    font-size: 14px;
  }

  .product-card p {
    min-height: 32px;
    font-size: 11px;
  }

  .product-logo {
    width: 30px;
    height: 30px;
  }

  .add-to-cart {
    min-height: 32px;
  }
}

@media (max-width: 360px) {
  .catalog-section .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
    grid-row: 1;
  }
}

@media (max-width: 760px) {
  .cart-row,
  .request-order-line {
    grid-template-columns: 1fr;
  }

  .cart-row {
    gap: 12px;
    padding: 13px;
  }

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

  .request-order-side {
    justify-content: space-between;
  }

  .cart-quantity {
    grid-template-columns: 40px minmax(72px, 1fr) 40px;
  }

  .cart-quantity button,
  .cart-quantity input {
    min-height: 40px;
    height: 40px;
  }

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

  .cart-summary dl div {
    display: grid;
    gap: 2px;
  }

  .request-copy {
    gap: 12px;
  }

  .checkout-steps,
  .request-portal-note {
    display: none;
  }

  .request-form {
    padding: 14px;
  }
}

@media (max-width: 520px) {
  .cart-empty {
    min-height: 190px;
    padding: 18px;
  }

  .cart-empty h3 {
    font-size: 20px;
  }

  .cart-row h3 {
    font-size: 18px;
  }

  .cart-meta {
    max-height: 62px;
    overflow: hidden;
  }

  .cart-row-links {
    justify-content: space-between;
  }

  .request-order-card,
  .checkout-section {
    padding: 12px;
  }
}

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