/* 2026-07-13: shared interaction and visual polish inspired by Emil Kowalski's design engineering principles. */
:root {
  --polish-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --polish-ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --polish-fast: 140ms;
  --polish-medium: 220ms;
  --polish-radius: 8px;
  --polish-bg: #f4f6f9;
  --polish-surface: #ffffff;
  --polish-surface-raised: rgba(255, 255, 255, 0.94);
  --polish-border: #d7dde7;
  --polish-border-strong: #b7c0cf;
  --polish-text: #171b24;
  --polish-muted: #5d6675;
  --polish-shadow: 0 14px 34px rgba(21, 30, 45, 0.09);
  --polish-shadow-strong: 0 24px 64px rgba(10, 18, 30, 0.18);
  --polish-red: #d9233f;
  --polish-red-dark: #a81730;
  --polish-blue: #2458c6;
  --polish-green: #168456;
  --polish-orange: #d96520;
}

html[data-site-theme="dark"] {
  --polish-bg: #090b10;
  --polish-surface: #10141c;
  --polish-surface-raised: rgba(17, 22, 31, 0.94);
  --polish-border: #2a313d;
  --polish-border-strong: #465164;
  --polish-text: #f4f6fa;
  --polish-muted: #aeb7c5;
  --polish-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  --polish-shadow-strong: 0 30px 78px rgba(0, 0, 0, 0.46);
  --polish-red: #f0445d;
  --polish-red-dark: #c5233e;
  --polish-blue: #5f87ef;
  --polish-green: #2cad75;
  --polish-orange: #f0833c;
}

html {
  scroll-padding-top: 84px;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
.price,
.metric strong,
.server-pool-count,
.feedback-hub-stat strong {
  letter-spacing: 0 !important;
}

.price,
.metric strong,
.server-pool-count,
.feedback-hub-stat strong,
[data-usage],
[data-price] {
  font-variant-numeric: tabular-nums;
}

:where(button, [role="button"], a.btn, a.cta, .copy-btn, .pager-btn, .dot, .profile-pill, .category-pill) {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

:where(button, [role="button"], a.btn, a.cta, .copy-btn, .pager-btn, .profile-pill, .category-pill) {
  transition-property: transform, background-color, border-color, color, box-shadow, opacity;
  transition-duration: var(--polish-fast);
  transition-timing-function: var(--polish-ease-out);
}

:where(button, [role="button"], a.btn, a.cta, .copy-btn, .pager-btn, .profile-pill, .category-pill):active {
  transform: scale(0.975);
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid color-mix(in srgb, var(--polish-blue) 76%, white);
  outline-offset: 3px;
}

body.page-public {
  background: var(--polish-bg) !important;
  color: var(--polish-text);
  text-rendering: optimizeLegibility;
}

body.page-public :where(input, select, textarea) {
  border-radius: 7px !important;
  transition: border-color var(--polish-fast) ease, box-shadow var(--polish-fast) ease, background-color var(--polish-fast) ease !important;
}

body.page-public :where(.card, .panel, .feature-card, .product-card, .resource-card, .case-card, .support-card, .download-card, .solution-card) {
  border-radius: var(--polish-radius) !important;
}

body.page-public footer {
  border-top: 1px solid var(--polish-border) !important;
  background: transparent !important;
  color: var(--polish-muted) !important;
}

body.page-public :where(table) {
  font-variant-numeric: tabular-nums;
}

/* Public header: quiet utility links, strong product signals only. */
body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .top-banner,
body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .ticker {
  position: relative !important;
  top: auto !important;
  height: 30px !important;
  border-bottom-width: 1px !important;
  background: #171b24 !important;
}

html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .top-banner,
html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .ticker {
  background: #0d1016 !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .top-banner .container,
body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .ticker .container {
  height: 30px !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header {
  top: 0 !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-bottom: 1px solid var(--polish-border) !important;
  box-shadow: 0 8px 26px rgba(25, 35, 50, 0.08) !important;
  backdrop-filter: blur(18px) saturate(1.1) !important;
}

html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header {
  background: rgba(10, 13, 19, 0.9) !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28) !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .nav {
  width: min(1280px, calc(100vw - 32px)) !important;
  min-height: 68px !important;
  grid-template-columns: 150px minmax(0, 1fr) auto !important;
  gap: 12px !important;
  padding: 8px 0 !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .brand,
body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .brand img,
body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .brand .brand-mark {
  width: 142px !important;
  max-width: 142px !important;
  border-radius: 0 !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu,
html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu {
  min-width: 0 !important;
  max-width: 100% !important;
  gap: 3px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu-chain-arrow {
  display: none !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a,
body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > .menu-dropdown > .menu-trigger {
  min-height: 36px !important;
  padding: 0 10px !important;
  border-radius: 7px !important;
  box-shadow: none !important;
  animation: none !important;
  transform: none;
  text-decoration: none !important;
  transition: background-color var(--polish-fast) ease, border-color var(--polish-fast) ease, color var(--polish-fast) ease !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a:not(.menu-skills-link):not(.menu-hermes-link),
html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a:not(.menu-skills-link):not(.menu-hermes-link) {
  background: transparent !important;
  border-color: transparent !important;
  color: var(--polish-muted) !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a:not(.menu-skills-link):not(.menu-hermes-link):hover {
  background: color-mix(in srgb, var(--polish-blue) 8%, transparent) !important;
  color: var(--polish-text) !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > .menu-api-dropdown > .menu-trigger,
html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > .menu-api-dropdown > .menu-trigger {
  background: var(--polish-green) !important;
  border-color: color-mix(in srgb, var(--polish-green) 72%, black) !important;
  color: #fff !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a.menu-skills-link,
html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a.menu-skills-link {
  background: var(--polish-blue) !important;
  border-color: color-mix(in srgb, var(--polish-blue) 72%, black) !important;
  color: #fff !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > .menu-openclaw-dropdown > .menu-trigger,
html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > .menu-openclaw-dropdown > .menu-trigger {
  background: var(--polish-red) !important;
  border-color: color-mix(in srgb, var(--polish-red) 72%, black) !important;
  color: #fff !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a.menu-hermes-link,
html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a.menu-hermes-link {
  min-width: 76px !important;
  background: var(--polish-orange) !important;
  border-color: color-mix(in srgb, var(--polish-orange) 72%, black) !important;
  color: #fff !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a.menu-hermes-link::before,
body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a.menu-hermes-link::after,
body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > .menu-api-dropdown > .menu-trigger::before,
body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a.menu-skills-link::before,
body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > .menu-dropdown > .menu-trigger::after {
  display: none !important;
  animation: none !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu-panel {
  top: calc(100% + 7px) !important;
  min-width: 210px !important;
  padding: 5px !important;
  border: 1px solid var(--polish-border) !important;
  border-radius: var(--polish-radius) !important;
  background: var(--polish-surface-raised) !important;
  box-shadow: var(--polish-shadow-strong) !important;
  transform-origin: 18px 0 !important;
  backdrop-filter: blur(18px) !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu-panel a,
html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu-panel a {
  min-height: 34px !important;
  border-radius: 5px !important;
  background: transparent !important;
  color: var(--polish-text) !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .nav-right {
  width: auto !important;
  max-width: none !important;
  gap: 8px !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member,
html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member {
  min-width: 132px !important;
  width: auto !important;
  height: 38px !important;
  padding: 0 12px 0 7px !important;
  gap: 7px !important;
  border-radius: 8px !important;
  background: #202631 !important;
  border-color: #3d4655 !important;
  box-shadow: none !important;
  animation: none !important;
  transform: none !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member::before,
body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member::after {
  display: none !important;
  animation: none !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member .quick-emblem {
  width: 24px !important;
  min-width: 24px !important;
  height: 24px !important;
  padding: 0 !important;
  border: 1px solid color-mix(in srgb, var(--polish-orange) 68%, white) !important;
  border-radius: 6px !important;
  background: var(--polish-orange) !important;
  box-shadow: none !important;
  animation: none !important;
  color: transparent !important;
  font-size: 0 !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member .quick-emblem::before {
  content: "H";
  color: #fff;
  font: 900 13px/1 "Outfit", "Noto Sans SC", sans-serif;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member .quick-label {
  max-width: none !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .auth-entry-btn,
body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .user-trigger {
  min-height: 36px !important;
  padding: 0 11px !important;
  border-radius: 7px !important;
  border: 1px solid var(--polish-border) !important;
  background: transparent !important;
  color: var(--polish-text) !important;
  box-shadow: none !important;
}

/* Homepage: one stable, full-width primary scene. */
.page-home,
html[data-site-theme="dark"] .page-home {
  background: var(--polish-bg) !important;
}

.page-home .hero-wrap,
.page-home .hero-banner {
  background: var(--polish-bg) !important;
  border: 0 !important;
}

.page-home .hero-banner {
  min-height: 520px !important;
  padding: 0 !important;
}

.page-home .hero-banner::before,
.page-home .hero-banner::after,
.page-home .hero-slider::before {
  display: none !important;
}

.page-home .hero-shell {
  width: 100% !important;
  display: block !important;
}

.page-home .hero-slider {
  min-height: 520px !important;
  padding: 0 !important;
  gap: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #100b08 !important;
  box-shadow: none !important;
}

.page-home .slider-head,
.page-home .hero-brand-panel {
  display: none !important;
}

.page-home .slider-track {
  min-height: 520px !important;
}

.page-home .hero-slide {
  border: 0 !important;
  border-radius: 0 !important;
  min-height: 520px !important;
  padding: 64px max(5vw, calc((100vw - 1240px) / 2 + 16px)) 80px !important;
  align-content: center !important;
  justify-items: start !important;
  gap: 14px !important;
  background-position: center right !important;
  transition: opacity var(--polish-medium) var(--polish-ease-out), transform var(--polish-medium) var(--polish-ease-out) !important;
  transform: translateX(10px);
}

.page-home .hero-slide.active {
  transform: translateX(0);
}

.page-home .hero-slide[data-slide="0"],
.page-home .hero-slide[data-slide="3"] {
  background-image: url("/assets/promo-bg/hermes-agent-hero-bg.jpg?v=20260713-product-polish3") !important;
}

.page-home .hero-slide[data-slide="1"] {
  background-image: url("/assets/hero/slide-enterprise-1280.jpg?v=20260713-product-polish3") !important;
}

.page-home .hero-slide[data-slide="2"] {
  background-image: url("/assets/hermes/hermes-agent-technical-v2-960.jpg?v=20260713-product-polish3") !important;
}

.page-home .hero-slide::before {
  border-radius: 0 !important;
  background: linear-gradient(90deg, rgba(8, 8, 9, 0.94) 0%, rgba(12, 10, 9, 0.84) 42%, rgba(12, 10, 9, 0.22) 74%, rgba(12, 10, 9, 0.06) 100%) !important;
}

.page-home .hero-slide::after {
  border-radius: 0 !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.36)) !important;
}

.page-home .hero-slide h1,
.page-home .hero-slide[data-slide="3"] h1 {
  max-width: 12ch !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: 3.2rem !important;
  line-height: 1.04 !important;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.45) !important;
}

.page-home .hero-slide p,
.page-home .hero-slide[data-slide="3"] p {
  max-width: 54ch !important;
  margin: 0 !important;
  color: #e8e3dc !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

.page-home .hero-slide .meta {
  gap: 6px !important;
}

.page-home .hero-slide .meta span,
.page-home .hero-slide[data-slide="3"] .meta span {
  min-height: 28px !important;
  padding: 4px 9px !important;
  border-radius: 6px !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(11, 13, 17, 0.62) !important;
  color: #f5f2ed !important;
  font-size: 0.75rem !important;
  backdrop-filter: blur(12px) !important;
}

.page-home .hero-slide .cta-group {
  gap: 8px !important;
  margin-top: 4px !important;
}

.page-home .hero-slide .cta,
.page-home .hero-slide[data-slide="3"] .cta {
  min-height: 42px !important;
  padding: 0 16px !important;
  border-radius: 7px !important;
  background: var(--polish-orange) !important;
  border-color: color-mix(in srgb, var(--polish-orange) 72%, black) !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 0.84rem !important;
}

.page-home .hero-slide .cta.secondary,
.page-home .hero-slide[data-slide="3"] .cta.secondary {
  background: rgba(16, 19, 25, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  color: #fff !important;
}

.page-home .vane-home-badge {
  border-radius: 6px !important;
  background: rgba(17, 73, 53, 0.74) !important;
  letter-spacing: 0 !important;
}

.page-home .vane-home-panel {
  width: min(570px, 100%) !important;
  gap: 8px !important;
}

.page-home .vane-home-panel span {
  min-height: 58px !important;
  border-radius: 7px !important;
  background: rgba(12, 15, 20, 0.68) !important;
}

.page-home .slider-pager {
  position: absolute !important;
  left: max(5vw, calc((100vw - 1240px) / 2 + 16px)) !important;
  bottom: 26px !important;
  z-index: 4 !important;
  gap: 8px !important;
}

.page-home .pager-btn {
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  border-radius: 7px !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(9, 12, 17, 0.68) !important;
  color: #fff !important;
  backdrop-filter: blur(12px) !important;
}

.page-home .dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.36) !important;
  transition: width var(--polish-fast) var(--polish-ease-out), background-color var(--polish-fast) ease !important;
}

.page-home .dot.active {
  width: 22px !important;
  background: var(--polish-orange) !important;
}

.page-home .section {
  width: 100% !important;
  margin: 0 auto !important;
  padding: 42px max(16px, calc((100vw - 1240px) / 2 + 16px)) !important;
  box-sizing: border-box !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.page-home .section + .section {
  border-top: 1px solid var(--polish-border) !important;
}

.page-home .resource-strip {
  width: min(1240px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  border: 0 !important;
  border-top: 1px solid var(--polish-border) !important;
  border-bottom: 1px solid var(--polish-border) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.page-home .resource-strip article {
  border-color: var(--polish-border) !important;
  background: transparent !important;
}

.page-home .deploy-grid {
  gap: 12px !important;
}

.page-home .deploy-head-subtitle {
  display: block !important;
  width: auto !important;
  max-width: 72ch !important;
  margin-top: 7px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--polish-muted) !important;
  line-height: 1.58 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.page-home .deploy-card {
  border-radius: var(--polish-radius) !important;
  border: 1px solid var(--polish-border) !important;
  background: var(--polish-surface) !important;
  box-shadow: var(--polish-shadow) !important;
  overflow: hidden !important;
}

.page-home .hermes-badge-mark {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 5px;
  background: var(--polish-orange);
  color: #fff;
  font: 900 11px/1 "Outfit", "Noto Sans SC", sans-serif;
  box-shadow: none;
}

.page-home .deploy-card.enterprise-card { order: 3; }
.page-home .deploy-card.personal-card { order: 1; }
.page-home .deploy-card.cloud-card { order: 2; }

.page-home :where(.standard, .resource-card, .product, .case-card, .partner-card, .support-card, .more-card) {
  border-radius: var(--polish-radius) !important;
  border-color: var(--polish-border) !important;
  box-shadow: none !important;
}

/* Hermes package: full-bleed product signal, no nested hero card. */
.page-hermes,
html[data-site-theme="dark"] .page-hermes {
  background: var(--polish-bg) !important;
}

html[data-site-theme="light"] body.page-hermes,
html[data-site-theme="dark"] body.page-hermes {
  background: var(--polish-bg) !important;
  background-image: none !important;
}

html[data-site-theme="light"] body.page-hermes::before,
html[data-site-theme="dark"] body.page-hermes::before {
  display: none !important;
  background: none !important;
}

.page-hermes main > .hero.wrap {
  width: 100% !important;
  max-width: none !important;
  min-height: 510px !important;
  margin: 0 !important;
  padding: 68px max(5vw, calc((100vw - 1180px) / 2 + 16px)) 76px !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-content: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-image: linear-gradient(90deg, rgba(10, 7, 5, 0.95) 0%, rgba(16, 10, 6, 0.84) 43%, rgba(16, 10, 6, 0.18) 76%, rgba(16, 10, 6, 0.04) 100%), url("/assets/promo-bg/hermes-agent-hero-bg.jpg?v=20260713-product-polish3") !important;
  background-size: cover !important;
  background-position: center right !important;
  color: #fff !important;
}

.page-hermes main > .hero.wrap > div:first-child {
  width: min(640px, 100%) !important;
}

.page-hermes .hero-visual {
  display: none !important;
}

.page-hermes .hero h1 {
  max-width: 13ch !important;
  margin: 12px 0 14px !important;
  color: #fff !important;
  font-size: 3.1rem !important;
  line-height: 1.04 !important;
}

.page-hermes .hero .hero-lead {
  max-width: 58ch !important;
  margin: 0 !important;
  color: #e9e2da !important;
  font-size: 1rem !important;
  line-height: 1.72 !important;
}

.page-hermes .hero .eyebrow {
  border-radius: 6px !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: rgba(12, 14, 18, 0.62) !important;
  color: #fff !important;
  backdrop-filter: blur(12px) !important;
}

.page-hermes .hero-actions {
  margin-top: 22px !important;
  gap: 9px !important;
}

.page-hermes .hero .btn {
  min-height: 42px !important;
  border-radius: 7px !important;
  box-shadow: none !important;
}

.page-hermes .hero .btn.primary {
  background: var(--polish-orange) !important;
  border-color: color-mix(in srgb, var(--polish-orange) 72%, black) !important;
}

.page-hermes .hero .btn.secondary {
  background: rgba(14, 17, 22, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  color: #fff !important;
}

.page-hermes .hero-tags {
  gap: 6px !important;
  margin-top: 18px !important;
}

.page-hermes .hero-tags span {
  border-radius: 6px !important;
  background: rgba(13, 16, 21, 0.62) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #f5f0ea !important;
}

.page-hermes .promise-grid {
  gap: 0 !important;
  border-top: 1px solid var(--polish-border) !important;
  border-bottom: 1px solid var(--polish-border) !important;
}

.page-hermes .promise-card {
  border: 0 !important;
  border-right: 1px solid var(--polish-border) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.page-hermes .promise-card:last-child {
  border-right: 0 !important;
}

html[data-site-theme="light"] body.page-hermes .promise-card strong {
  color: var(--polish-text) !important;
}

html[data-site-theme="light"] body.page-hermes .promise-card span {
  color: var(--polish-muted) !important;
}

html[data-site-theme="light"] body.page-hermes .section p.lead,
html[data-site-theme="light"] body.page-hermes .upgrade-head p {
  color: var(--polish-muted) !important;
  text-shadow: none !important;
}

html[data-site-theme="light"] body.page-hermes .plan,
html[data-site-theme="light"] body.page-hermes .codex-card,
html[data-site-theme="light"] body.page-hermes .upgrade-card,
html[data-site-theme="light"] body.page-hermes .tech-layer,
html[data-site-theme="light"] body.page-hermes .story-card {
  border-color: var(--polish-border) !important;
  background: var(--polish-surface) !important;
  background-image: none !important;
  color: var(--polish-text) !important;
  box-shadow: none !important;
}

html[data-site-theme="light"] body.page-hermes .plan.featured,
html[data-site-theme="light"] body.page-hermes .codex-card.featured {
  border-color: color-mix(in srgb, var(--polish-orange) 58%, var(--polish-border)) !important;
  background: #fffaf5 !important;
}

html[data-site-theme="light"] body.page-hermes .plan h3,
html[data-site-theme="light"] body.page-hermes .plan:not(.featured) h3,
html[data-site-theme="light"] body.page-hermes .plan-flagship:not(.featured) h3,
html[data-site-theme="light"] body.page-hermes .plan .price,
html[data-site-theme="light"] body.page-hermes .codex-card h3,
html[data-site-theme="light"] body.page-hermes .codex-price strong,
html[data-site-theme="light"] body.page-hermes .codex-price small,
html[data-site-theme="light"] body.page-hermes .tech-layer h3,
html[data-site-theme="light"] body.page-hermes .story-card h3,
html[data-site-theme="light"] body.page-hermes .upgrade-item b {
  color: var(--polish-text) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

html[data-site-theme="light"] body.page-hermes .plan p,
html[data-site-theme="light"] body.page-hermes .plan li,
html[data-site-theme="light"] body.page-hermes .plan .price small,
html[data-site-theme="light"] body.page-hermes .codex-desc,
html[data-site-theme="light"] body.page-hermes .codex-list,
html[data-site-theme="light"] body.page-hermes .codex-footnote,
html[data-site-theme="light"] body.page-hermes .tech-layer p,
html[data-site-theme="light"] body.page-hermes .story-card p,
html[data-site-theme="light"] body.page-hermes .upgrade-item span {
  color: var(--polish-muted) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

html[data-site-theme="light"] body.page-hermes .plan .btn.primary,
html[data-site-theme="light"] body.page-hermes .plan.featured .btn.secondary,
html[data-site-theme="light"] body.page-hermes .codex-action {
  border-color: color-mix(in srgb, var(--polish-orange) 72%, black) !important;
  background: var(--polish-orange) !important;
  color: #fff !important;
  box-shadow: none !important;
}

html[data-site-theme="light"] body.page-hermes .codex-badge {
  border-color: var(--polish-border) !important;
  background: #f2f4f7 !important;
  color: var(--polish-muted) !important;
}

html[data-site-theme="light"] body.page-hermes .codex-card.featured .codex-badge {
  border-color: #f1c7a7 !important;
  background: #fff0e3 !important;
  color: #9a481b !important;
}

html[data-site-theme="light"] body.page-hermes .value-card:not(.total),
html[data-site-theme="light"] body.page-hermes .value-extra,
html[data-site-theme="light"] body.page-hermes .value-total,
html[data-site-theme="light"] body.page-hermes .upgrade-item {
  border-color: var(--polish-border) !important;
  background: #f5f7fa !important;
  background-image: none !important;
  box-shadow: none !important;
}

html[data-site-theme="light"] body.page-hermes .value-card:not(.total) b,
html[data-site-theme="light"] body.page-hermes .value-extra b,
html[data-site-theme="light"] body.page-hermes .value-total b {
  color: var(--polish-text) !important;
}

html[data-site-theme="light"] body.page-hermes .value-card:not(.total) span,
html[data-site-theme="light"] body.page-hermes .value-feature-list,
html[data-site-theme="light"] body.page-hermes .value-extra span,
html[data-site-theme="light"] body.page-hermes .value-total span {
  color: var(--polish-muted) !important;
}

html[data-site-theme="light"] body.page-hermes .upgrade-kicker {
  border-color: #f1c7a7 !important;
  background: #fff0e3 !important;
  color: #9a481b !important;
}

html[data-site-theme="dark"] body.page-hermes .plan,
html[data-site-theme="dark"] body.page-hermes .codex-card,
html[data-site-theme="dark"] body.page-hermes .upgrade-card,
html[data-site-theme="dark"] body.page-hermes .tech-layer,
html[data-site-theme="dark"] body.page-hermes .story-card {
  border-color: #2b3340 !important;
  background: #10151d !important;
  background-image: none !important;
  color: #eef2f7 !important;
  box-shadow: none !important;
}

html[data-site-theme="dark"] body.page-hermes .plan.featured,
html[data-site-theme="dark"] body.page-hermes .codex-card.featured {
  border-color: #b8632f !important;
  background: #15120f !important;
}

html[data-site-theme="dark"] body.page-hermes .plan h3,
html[data-site-theme="dark"] body.page-hermes .plan:not(.featured) h3,
html[data-site-theme="dark"] body.page-hermes .plan-flagship:not(.featured) h3,
html[data-site-theme="dark"] body.page-hermes .plan .price,
html[data-site-theme="dark"] body.page-hermes .codex-card h3,
html[data-site-theme="dark"] body.page-hermes .codex-price strong,
html[data-site-theme="dark"] body.page-hermes .codex-price small {
  color: #f4f6f9 !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

html[data-site-theme="dark"] body.page-hermes .plan.featured h3,
html[data-site-theme="dark"] body.page-hermes .plan.featured .price {
  color: #ff9a52 !important;
}

html[data-site-theme="dark"] body.page-hermes .plan p,
html[data-site-theme="dark"] body.page-hermes .plan li,
html[data-site-theme="dark"] body.page-hermes .plan .price small,
html[data-site-theme="dark"] body.page-hermes .codex-desc,
html[data-site-theme="dark"] body.page-hermes .codex-list,
html[data-site-theme="dark"] body.page-hermes .codex-footnote,
html[data-site-theme="dark"] body.page-hermes .tech-layer p,
html[data-site-theme="dark"] body.page-hermes .story-card p,
html[data-site-theme="dark"] body.page-hermes .upgrade-item span {
  color: #aeb8c7 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

html[data-site-theme="dark"] body.page-hermes .plan .btn.primary,
html[data-site-theme="dark"] body.page-hermes .plan.featured .btn.secondary,
html[data-site-theme="dark"] body.page-hermes .codex-action {
  border-color: #9f4f20 !important;
  background: var(--polish-orange) !important;
  color: #fff !important;
  box-shadow: none !important;
}

html[data-site-theme="dark"] body.page-hermes .codex-badge {
  border-color: #303947 !important;
  background: #1a2029 !important;
  color: #b8c1cd !important;
}

html[data-site-theme="dark"] body.page-hermes .codex-card.featured .codex-badge {
  border-color: #7e4928 !important;
  background: #2a1a11 !important;
  color: #ffc79f !important;
}

html[data-site-theme="dark"] body.page-hermes .value-card:not(.total),
html[data-site-theme="dark"] body.page-hermes .value-extra,
html[data-site-theme="dark"] body.page-hermes .value-total,
html[data-site-theme="dark"] body.page-hermes .upgrade-item {
  border-color: #2b3340 !important;
  background: #161c25 !important;
  background-image: none !important;
  box-shadow: none !important;
}

html[data-site-theme="dark"] body.page-hermes .upgrade-kicker {
  border-color: #7e4928 !important;
  background: #2a1a11 !important;
  color: #ffc79f !important;
}

.page-hermes main > .section.wrap {
  width: min(1180px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  padding: 46px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.page-hermes main > .section.wrap + .section.wrap {
  border-top: 1px solid var(--polish-border) !important;
}

.page-hermes .plans {
  gap: 12px !important;
}

.page-hermes .plan {
  border-radius: var(--polish-radius) !important;
  border-color: var(--polish-border) !important;
  box-shadow: var(--polish-shadow) !important;
  transform: none !important;
}

.page-hermes .plan.featured {
  border-color: color-mix(in srgb, var(--polish-orange) 58%, var(--polish-border)) !important;
  box-shadow: 0 18px 44px rgba(217, 101, 32, 0.14) !important;
}

/* Member center: sections stay unframed; cards are reserved for actual account items. */
.page-member main.console-main {
  width: min(1240px, calc(100% - 32px)) !important;
  margin-inline: auto !important;
}

.page-member .console-card {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.page-member .console-card + .console-card {
  margin-top: 28px !important;
  padding-top: 28px !important;
  border-top: 1px solid var(--polish-border) !important;
}

.page-member :where(.center-card, .sub-card, .rebate-hero, .rebate-stat-card, .rebate-rule-card, .rebate-example-card, .rebate-tree-card, .center-table-wrap, .shuimu-key-box) {
  border-radius: var(--polish-radius) !important;
  box-shadow: none !important;
}

html[data-site-theme="dark"] .page-member :where(.center-card, .sub-card, .rebate-stat-card, .rebate-rule-card, .rebate-example-card, .rebate-tree-card, .center-table-wrap) {
  border-color: #303846 !important;
  background: #10141c !important;
}

html[data-site-theme="dark"] .page-member .rebate-hero {
  border-color: #3a4352 !important;
  background: #11161f !important;
}

/* Operational pages: dense, calm, and predictable. */
.page-member :where(.card, .panel, .member-card, .account-card, .subscription-card),
.page-console :where(.card, .panel, .console-workspace, #consoleWorkspace),
.page-admin :where(.card, .panel) {
  border-radius: var(--polish-radius) !important;
  box-shadow: none !important;
}

.page-console {
  background: #eef1f5 !important;
}

html[data-site-theme="dark"] .page-console {
  background: #080b10 !important;
}

.page-console #consoleWorkspace {
  border-radius: var(--polish-radius) !important;
  border-color: var(--polish-border) !important;
  box-shadow: none !important;
}

.page-console #consoleWorkspace::before {
  display: none !important;
}

.page-console .console-layout,
.page-console .console-shell {
  transition: none !important;
}

.page-console :where(button, a, input, select, textarea) {
  border-radius: 7px !important;
}

.page-console :where(.channel-onboarding-pulse, .console-onboarding-bar button) {
  animation: none !important;
}

.page-admin {
  padding: 14px !important;
  background: #edf1f6 !important;
}

.page-admin .wrap {
  max-width: 1440px !important;
  gap: 8px !important;
}

.page-admin .login-wrap {
  width: min(520px, 100%) !important;
  min-height: calc(100vh - 28px) !important;
  margin: 0 auto !important;
  display: grid !important;
  align-content: center !important;
}

.page-admin .login-wrap.hidden {
  display: none !important;
}

.page-admin .login-wrap .card {
  padding: 22px !important;
}

.page-admin .card,
.page-admin .panel {
  border-color: #d6dde8 !important;
  background: #fff !important;
}

.page-admin :where(input, select, textarea, button) {
  border-radius: 7px !important;
}

.page-admin :where(button, .tab-btn, .server-view-preset, .user-view-preset) {
  transition: background-color var(--polish-fast) ease, border-color var(--polish-fast) ease, color var(--polish-fast) ease, transform var(--polish-fast) var(--polish-ease-out) !important;
}

.page-admin tbody tr {
  transition: background-color var(--polish-fast) ease !important;
}

@media (hover: hover) and (pointer: fine) {
  :where(button, [role="button"], a.btn, a.cta, .copy-btn, .pager-btn, .profile-pill, .category-pill):hover {
    filter: brightness(1.03);
  }

  .page-home .deploy-card:hover,
  .page-hermes .plan:hover {
    border-color: var(--polish-border-strong) !important;
    transform: translateY(-2px) !important;
  }

  .page-admin tbody tr:hover {
    background: #f5f8fc !important;
  }
}

@media (max-width: 900px) {
  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .nav {
    grid-template-columns: minmax(118px, 1fr) auto !important;
    gap: 8px !important;
    padding: 8px 0 6px !important;
  }

  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .brand,
  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .brand img,
  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .brand .brand-mark {
    width: 126px !important;
    max-width: 126px !important;
  }

  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .nav-right {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    overflow-x: auto !important;
    padding: 6px 0 0 !important;
    border-top: 1px solid var(--polish-border) !important;
  }

  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member,
  html[data-site-theme] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member {
    min-width: 118px !important;
  }

  .page-home .hero-banner,
  .page-home .hero-slider,
  .page-home .slider-track,
  .page-home .hero-slide {
    min-height: 500px !important;
  }

  .page-home .hero-slide {
    padding-top: 54px !important;
    padding-bottom: 80px !important;
  }

  .page-home .hero-slide h1,
  .page-home .hero-slide[data-slide="3"] h1,
  .page-hermes .hero h1 {
    font-size: 2.45rem !important;
  }

  .page-home .vane-home-panel {
    grid-template-columns: 1fr !important;
    max-width: 440px !important;
  }

  .page-home .vane-home-panel span:nth-child(n + 2) {
    display: none !important;
  }

  .page-hermes main > .hero.wrap {
    min-height: 500px !important;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 112px;
  }

  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .top-banner,
  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .ticker,
  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .top-banner .container,
  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .ticker .container {
    height: 28px !important;
  }

  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .top-banner .news-track,
  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .ticker .news-track {
    animation: none !important;
    transform: none !important;
  }

  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .nav {
    width: calc(100vw - 20px) !important;
    min-height: 92px !important;
  }

  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .brand,
  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .brand img,
  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .brand .brand-mark {
    width: 112px !important;
    max-width: 112px !important;
  }

  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member,
  html[data-site-theme] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member {
    min-width: 38px !important;
    width: 38px !important;
    height: 36px !important;
    padding: 0 !important;
    justify-content: center !important;
  }

  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member .quick-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
  }

  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .auth-entry-btn,
  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .user-trigger {
    min-height: 36px !important;
    padding: 0 9px !important;
    font-size: 0.75rem !important;
  }

  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a,
  body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > .menu-dropdown > .menu-trigger {
    min-height: 34px !important;
    padding: 0 9px !important;
    font-size: 0.76rem !important;
  }

  .page-home .hero-banner,
  .page-home .hero-slider,
  .page-home .slider-track,
  .page-home .hero-slide {
    min-height: 470px !important;
  }

  .page-home .hero-slide {
    padding: 42px 20px 72px !important;
    background-position: 64% center !important;
  }

  .page-home .hero-slide::before {
    background: linear-gradient(90deg, rgba(7, 8, 10, 0.95), rgba(10, 10, 11, 0.84) 68%, rgba(10, 10, 11, 0.28)) !important;
  }

  .page-home .hero-slide h1,
  .page-home .hero-slide[data-slide="3"] h1,
  .page-hermes .hero h1 {
    max-width: 11ch !important;
    font-size: 2rem !important;
    line-height: 1.06 !important;
  }

  .page-home .hero-slide p,
  .page-home .hero-slide[data-slide="3"] p,
  .page-hermes .hero .hero-lead {
    font-size: 0.88rem !important;
    line-height: 1.62 !important;
  }

  .page-home .hero-slide .meta span:nth-child(n + 4) {
    display: none !important;
  }

  .page-home .vane-home-panel {
    display: none !important;
  }

  .page-home .slider-pager {
    left: 20px !important;
    bottom: 22px !important;
  }

  .page-home .section {
    width: 100% !important;
  }

  .page-home .resource-strip,
  .page-hermes main > .section.wrap {
    width: calc(100% - 28px) !important;
  }

  .page-home .section {
    padding: 32px 14px !important;
  }

  .page-hermes main > .section.wrap {
    padding: 32px 0 !important;
  }

  .page-hermes main > .hero.wrap {
    min-height: 470px !important;
    padding: 44px 20px 58px !important;
    background-position: 62% center !important;
  }

  .page-hermes .hero-tags span:nth-child(n + 4) {
    display: none !important;
  }

  .page-hermes .promise-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .page-hermes .promise-card {
    border-right: 0 !important;
    border-bottom: 1px solid var(--polish-border) !important;
  }

  .page-hermes .promise-card:nth-last-child(-n + 2) {
    border-bottom: 0 !important;
  }

  .page-admin {
    padding: 8px !important;
  }
}

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

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

  .news-track,
  .partner-track,
  .hero-media .slide,
  .deploy-visual .shot {
    animation: none !important;
    transform: none !important;
  }
}

/* 2026-07-13: product pass two. The homepage is a focused product path, not an architecture document. */
html[data-site-theme="light"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .top-banner,
html[data-site-theme="light"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .ticker {
  background: #f5f7fa !important;
  border-bottom-color: #dfe4eb !important;
  color: #343b47 !important;
}

html[data-site-theme="light"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .top-banner :where(.news-track, .news-track span, .container),
html[data-site-theme="light"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > .ticker :where(.news-track, .news-track span, .container) {
  color: #343b47 !important;
  text-shadow: none !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > :where(.top-banner, .ticker) .news-marquee {
  min-width: 0;
  overflow: hidden !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > :where(.top-banner, .ticker) .news-track {
  width: auto !important;
  max-width: 100% !important;
  display: block !important;
  overflow: hidden !important;
  animation: none !important;
  transform: none !important;
  white-space: nowrap !important;
  text-overflow: ellipsis;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > :where(.top-banner, .ticker) .news-item {
  display: none !important;
}

body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > :where(.top-banner, .ticker) .news-item:first-child {
  display: inline !important;
}

html[data-site-theme="light"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom-color: #dfe4eb !important;
  box-shadow: 0 8px 24px rgba(24, 32, 45, 0.07) !important;
}

html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header {
  background: rgba(9, 12, 17, 0.96) !important;
  border-bottom-color: #242b36 !important;
}

html[data-site-theme] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > .menu-api-dropdown > .menu-trigger,
html[data-site-theme] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a.menu-skills-link,
html[data-site-theme] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > .menu-openclaw-dropdown > .menu-trigger {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  animation: none !important;
}

html[data-site-theme="light"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > .menu-api-dropdown > .menu-trigger,
html[data-site-theme="light"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a.menu-skills-link,
html[data-site-theme="light"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > .menu-openclaw-dropdown > .menu-trigger {
  color: #414957 !important;
}

html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > .menu-api-dropdown > .menu-trigger,
html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a.menu-skills-link,
html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > .menu-openclaw-dropdown > .menu-trigger {
  color: #b6beca !important;
}

html[data-site-theme] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .menu > a.menu-hermes-link {
  background: var(--polish-orange) !important;
  border-color: color-mix(in srgb, var(--polish-orange) 74%, black) !important;
  color: #fff !important;
}

html[data-site-theme="light"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member {
  background: #ffffff !important;
  border-color: #cfd6e0 !important;
  color: #202733 !important;
}

html[data-site-theme="light"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member .quick-label {
  color: #202733 !important;
  text-shadow: none !important;
}

html[data-site-theme="light"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header :where(.auth-entry-btn, .user-trigger) {
  background: #ffffff !important;
  border-color: #cfd6e0 !important;
  color: #202733 !important;
}

html[data-site-theme="dark"] body:not(.page-admin):not(.chat-console-embed):not(.mobile-console-app) > header .quick-links a.quick-member {
  background: #171c24 !important;
  border-color: #323a47 !important;
}

.page-home .home-primary-hero,
.page-home .home-primary-hero .slider-track,
.page-home .home-primary-hero .hero-slide {
  min-height: 500px !important;
}

.page-home .home-primary-hero .hero-slide {
  background-image: url("/assets/promo-bg/hermes-agent-hero-bg.jpg?v=20260713-product-polish3") !important;
  background-position: center right !important;
}

.page-home .home-primary-hero .hero-slide > * {
  width: min(620px, 100%);
}

.page-home .home-primary-hero .hero-slide h1 {
  max-width: 12ch !important;
  font-size: 3.1rem !important;
}

.page-home .home-primary-hero .hero-slide p {
  max-width: 58ch !important;
  font-size: 1.02rem !important;
}

.page-home .home-primary-hero .meta {
  margin-top: 2px !important;
}

.page-home .home-primary-hero .slider-pager,
.page-home .home-primary-hero .slider-head {
  display: none !important;
}

html[data-site-theme="light"] .page-home .home-primary-hero .hero-slide::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 43%, rgba(255, 255, 255, 0.74) 66%, rgba(255, 255, 255, 0.18) 100%) !important;
}

html[data-site-theme="light"] .page-home .home-primary-hero .hero-slide::after {
  background: linear-gradient(180deg, rgba(246, 248, 251, 0.04), rgba(246, 248, 251, 0.26)) !important;
}

html[data-site-theme="light"] .page-home .home-primary-hero .hero-slide h1 {
  color: #171c25 !important;
  text-shadow: none !important;
}

html[data-site-theme="light"] .page-home .home-primary-hero .hero-slide p {
  color: #414a58 !important;
  text-shadow: none !important;
}

html[data-site-theme="light"] .page-home .home-primary-hero .vane-home-badge {
  border: 1px solid #f0c9ac !important;
  background: #fff5ed !important;
  color: #9a481b !important;
}

html[data-site-theme="dark"] .page-home .home-primary-hero .vane-home-badge {
  border: 1px solid rgba(240, 131, 60, 0.4) !important;
  background: rgba(36, 22, 14, 0.82) !important;
  color: #ffd8bd !important;
}

html[data-site-theme="light"] .page-home .home-primary-hero .meta span {
  border-color: #d3dae4 !important;
  background: rgba(255, 255, 255, 0.84) !important;
  color: #343d4a !important;
  backdrop-filter: blur(10px) !important;
}

html[data-site-theme="light"] .page-home .home-primary-hero .cta.secondary {
  border-color: #c8d0db !important;
  background: #ffffff !important;
  color: #202733 !important;
}

.page-home #resources,
.page-home #products,
.page-home #support,
.page-home #more,
.page-home #about {
  display: none !important;
}

.page-home #standards,
.page-home #deploy,
.page-home #cases,
.page-home #partners {
  border-top: 1px solid var(--polish-border) !important;
}

html[data-site-theme="light"] .page-home #standards,
html[data-site-theme="light"] .page-home #cases,
html[data-site-theme="light"] .page-home #partners {
  background: #f5f7fa !important;
}

html[data-site-theme="light"] .page-home #deploy {
  background: #ffffff !important;
}

html[data-site-theme="dark"] .page-home #standards,
html[data-site-theme="dark"] .page-home #cases,
html[data-site-theme="dark"] .page-home #partners {
  background: #0c1016 !important;
}

html[data-site-theme="dark"] .page-home #deploy {
  background: #090c11 !important;
}

.page-home .home-capabilities .standards-grid {
  counter-reset: home-capability;
  gap: 12px !important;
}

.page-home .home-capabilities .standard {
  counter-increment: home-capability;
  position: relative;
  min-height: 190px;
  padding: 20px !important;
  border: 1px solid var(--polish-border) !important;
  border-radius: var(--polish-radius) !important;
  background: var(--polish-surface) !important;
  box-shadow: none !important;
}

.page-home .home-capabilities .standard::before {
  content: "0" counter(home-capability);
  display: block;
  margin-bottom: 28px;
  color: var(--polish-orange);
  font: 800 0.78rem/1 "Outfit", sans-serif;
}

.page-home .home-capabilities .standard h3 {
  margin: 0 0 7px !important;
  color: var(--polish-text) !important;
  font-size: 1rem !important;
}

.page-home .home-capabilities .standard p,
.page-home .home-capabilities .standard li {
  color: var(--polish-muted) !important;
}

.page-home .home-capabilities .standard ul {
  margin-top: 12px !important;
}

.page-home .home-capabilities .standard li {
  position: relative;
  margin: 7px 0 !important;
  padding: 0 0 0 16px !important;
  border: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.page-home .home-capabilities .standard li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--polish-orange);
}

.page-home .home-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
}

.page-home .home-plan-card {
  min-height: 450px;
  display: flex !important;
  flex-direction: column;
  border: 1px solid var(--polish-border) !important;
  border-radius: var(--polish-radius) !important;
  background: var(--polish-surface) !important;
  box-shadow: none !important;
}

.page-home .home-plan-card.featured {
  border-color: color-mix(in srgb, var(--polish-orange) 62%, var(--polish-border)) !important;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--polish-orange) 20%, transparent) !important;
}

html[data-site-theme="dark"] body.page-home #deploy .home-plan-card {
  border-color: #2b3340 !important;
  border-top-color: #2b3340 !important;
  background: #10151d !important;
  background-image: none !important;
}

html[data-site-theme="dark"] body.page-home #deploy .home-plan-card.featured {
  border-color: #b8632f !important;
  border-top-color: #b8632f !important;
  box-shadow: 0 0 0 1px rgba(240, 131, 60, 0.18) !important;
}

.page-home .home-plan-head {
  position: relative;
  min-height: 108px;
  padding: 18px 18px 16px;
  border-bottom: 1px solid var(--polish-border);
  background: color-mix(in srgb, var(--polish-surface) 92%, var(--polish-bg));
}

html[data-site-theme="dark"] body.page-home #deploy .home-plan-card .home-plan-head {
  border-bottom-color: #2b3340 !important;
  background: #121821 !important;
  background-image: none !important;
}

.page-home .home-plan-name {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--polish-text);
  font-size: 0.84rem;
  font-weight: 800;
}

.page-home .home-plan-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 16px;
  color: var(--polish-muted);
}

.page-home .home-plan-price strong {
  color: var(--polish-text);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.page-home .home-plan-recommended {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 7px;
  border-radius: 5px;
  background: var(--polish-orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.page-home .home-plan-card .deploy-body {
  flex: 1;
  display: flex !important;
  flex-direction: column;
  padding: 18px !important;
  background: transparent !important;
}

html[data-site-theme="dark"] body.page-home #deploy .home-plan-card .deploy-body {
  border-color: #2b3340 !important;
  background: #10151d !important;
  background-image: none !important;
}

.page-home .home-plan-card .deploy-body h3 {
  margin: 0 0 8px !important;
  color: var(--polish-text) !important;
  font-size: 1rem !important;
}

.page-home .home-plan-positioning,
.page-hermes .plan-positioning {
  display: block;
  width: fit-content;
  margin: 0 0 8px;
  color: var(--polish-orange);
  font-size: 0.74rem;
  line-height: 1.45;
  font-weight: 800;
}

.page-hermes .plan-positioning {
  margin-bottom: 0;
}

html[data-site-theme="dark"] body.page-home .home-plan-positioning,
html[data-site-theme="dark"] body.page-hermes .plan-positioning {
  color: #ff9a52;
}

.page-home .home-plan-card .deploy-body p,
.page-home .home-plan-card .deploy-body li {
  color: var(--polish-muted) !important;
  line-height: 1.62 !important;
}

html[data-site-theme="dark"] body.page-home #deploy .home-plan-card .deploy-body li {
  border: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #aeb8c7 !important;
}

html[data-site-theme="dark"] body.page-home #deploy .home-plan-card .home-plan-limit {
  border-top-color: #2b3340 !important;
  color: #8f9aaa !important;
}

.page-home .home-plan-card .deploy-body ul {
  margin: 16px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.page-home .home-plan-card .deploy-body li {
  position: relative;
  margin: 9px 0 !important;
  padding-left: 19px !important;
  border: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.page-home .home-plan-card .deploy-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--polish-orange);
}

.page-home .home-plan-limit {
  margin-top: auto;
  padding-top: 16px;
  color: var(--polish-muted);
  font-size: 0.78rem;
  border-top: 1px solid var(--polish-border);
}

.page-home .home-plan-card .deploy-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 8px !important;
  margin-top: 16px !important;
}

.page-home .home-plan-card .deploy-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px !important;
  text-align: center;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
}

.page-home .home-plan-card .deploy-action.primary {
  border: 1px solid color-mix(in srgb, var(--polish-orange) 74%, black) !important;
  background: var(--polish-orange) !important;
  color: #fff !important;
}

.page-home .home-plan-card .deploy-action.secondary {
  border: 1px solid var(--polish-border) !important;
  background: transparent !important;
  color: var(--polish-text) !important;
}

.page-home .home-plan-popup {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(5, 8, 13, 0.68);
  backdrop-filter: blur(6px);
}

.page-home .home-plan-popup[hidden],
.page-home .home-plan-popup-launcher[hidden] {
  display: none !important;
}

.page-home .home-plan-popup-dialog {
  width: min(940px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--polish-border);
  border-radius: 8px;
  background: var(--polish-surface);
  color: var(--polish-text);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.page-home .home-plan-popup-header {
  position: static !important;
  top: auto !important;
  z-index: auto !important;
  min-height: 76px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 15px;
  border-bottom: 1px solid var(--polish-border);
  background: var(--polish-surface);
}

.page-home .home-plan-popup-header span {
  display: block;
  margin-bottom: 3px;
  color: var(--polish-orange);
  font-size: 0.72rem;
  font-weight: 800;
}

.page-home .home-plan-popup-header h2 {
  margin: 0;
  color: var(--polish-text);
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.page-home .home-plan-popup-close,
.page-home .home-plan-popup-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--polish-border);
  border-radius: 7px;
  background: transparent;
  color: var(--polish-text);
  cursor: pointer;
}

.page-home .home-plan-popup-close {
  width: 36px;
  height: 36px;
  font-size: 1.45rem;
  line-height: 1;
}

.page-home .home-plan-popup-close:hover,
.page-home .home-plan-popup-arrow:hover {
  border-color: var(--polish-orange);
  color: var(--polish-orange);
}

.page-home .home-plan-popup-viewport {
  overflow: hidden;
}

.page-home .home-plan-popup-track {
  display: flex;
  transition: transform 320ms var(--polish-ease-out);
}

.page-home .home-plan-popup-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 430px;
}

.page-home .home-plan-popup-media {
  min-width: 0;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--polish-border);
  background: color-mix(in srgb, var(--polish-bg) 82%, var(--polish-surface));
}

.page-home .home-plan-popup-media img {
  width: 100%;
  height: 100%;
  max-height: 394px;
  display: block;
  object-fit: contain;
}

.page-home .home-plan-popup-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.page-home .home-plan-popup-kicker {
  display: block;
  flex: 0 0 auto;
  min-height: 1.15rem;
  margin-bottom: 2px;
  color: var(--polish-orange);
  font-size: 0.76rem;
  line-height: 1.45;
  font-weight: 800;
}

.page-home .home-plan-popup-content h3 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 12px;
  color: var(--polish-text);
  font-size: 1.42rem;
  line-height: 1.25;
}

.page-home .home-plan-popup-content h3 > span {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.page-home .home-plan-popup-content h3 strong {
  color: var(--polish-orange);
  font-size: 1.05rem;
  white-space: nowrap;
}

.page-home .home-plan-popup-content p {
  margin: 0;
  color: var(--polish-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.page-home .home-plan-popup-content ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.page-home .home-plan-popup-content li {
  position: relative;
  padding-left: 18px;
  color: var(--polish-text);
  font-size: 0.84rem;
  line-height: 1.55;
}

.page-home .home-plan-popup-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--polish-orange);
}

.page-home .home-plan-popup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: auto;
}

.page-home .home-plan-popup-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 7px;
  text-align: center;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
}

.page-home .home-plan-popup-primary {
  border: 1px solid color-mix(in srgb, var(--polish-orange) 72%, black);
  background: var(--polish-orange);
  color: #fff;
}

.page-home .home-plan-popup-secondary {
  border: 1px solid var(--polish-border);
  background: transparent;
  color: var(--polish-text);
}

.page-home .home-plan-popup-footer {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 18px;
  border-top: 1px solid var(--polish-border);
  background: color-mix(in srgb, var(--polish-bg) 70%, var(--polish-surface));
}

.page-home .home-plan-popup-arrow {
  width: 36px;
  height: 34px;
  font-size: 1rem;
}

.page-home .home-plan-popup-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .home-plan-popup-dots button {
  width: 26px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: color-mix(in srgb, var(--polish-muted) 42%, transparent);
  cursor: pointer;
}

.page-home .home-plan-popup-dots button[aria-current="true"] {
  background: var(--polish-orange);
}

.page-home .home-plan-popup-status {
  min-width: 34px;
  color: var(--polish-muted);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.page-home .home-plan-popup-launcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 180;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 9px;
  border: 1px solid color-mix(in srgb, var(--polish-orange) 72%, black);
  border-radius: 8px;
  background: var(--polish-orange);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.page-home .home-plan-popup-launcher span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 900;
}

.page-home .home-plan-popup-launcher strong {
  font-size: 0.78rem;
}

@media (max-width: 720px) {
  .page-home .home-plan-popup {
    padding: 8px;
  }

  .page-home .home-plan-popup-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
  }

  .page-home .home-plan-popup-header {
    min-height: 66px;
    padding: 13px 14px 11px;
  }

  .page-home .home-plan-popup-header h2 {
    font-size: 1.04rem;
  }

  .page-home .home-plan-popup-slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .page-home .home-plan-popup-media {
    height: min(25vh, 190px);
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--polish-border);
  }

  .page-home .home-plan-popup-content {
    max-height: calc(75vh - 132px);
    overflow-y: auto;
    padding: 16px;
  }

  .page-home .home-plan-popup-content h3 {
    margin: 7px 0 9px;
    font-size: 1.1rem;
  }

  .page-home .home-plan-popup-content h3 strong {
    font-size: 0.9rem;
  }

  .page-home .home-plan-popup-content p,
  .page-home .home-plan-popup-content li {
    font-size: 0.78rem;
  }

  .page-home .home-plan-popup-content ul {
    gap: 6px;
    margin: 12px 0 14px;
  }

  .page-home .home-plan-popup-actions {
    grid-template-columns: 1fr;
  }

  .page-home .home-plan-popup-footer {
    min-height: 50px;
    padding: 8px 12px;
  }

  .page-home .home-plan-popup-launcher {
    right: 12px;
    bottom: 12px;
  }
}

.page-home .home-paths {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 !important;
  padding: 0 max(16px, calc((100vw - 1240px) / 2 + 16px)) !important;
  border-top: 1px solid var(--polish-border) !important;
  border-bottom: 1px solid var(--polish-border) !important;
  background: var(--polish-surface) !important;
  box-sizing: border-box;
}

.page-home .home-paths a {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 18px 16px;
  border-right: 1px solid var(--polish-border);
  color: var(--polish-text);
  text-decoration: none;
}

.page-home .home-paths a:last-child {
  border-right: 0;
}

.page-home .home-path-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #eef1f5;
  color: #4b5565;
  font: 800 0.75rem/1 "Outfit", sans-serif;
}

html[data-site-theme="dark"] .page-home .home-path-icon {
  background: #1a202a;
  color: #c7cfda;
}

.page-home .home-paths strong,
.page-home .home-paths small {
  display: block;
}

.page-home .home-paths strong {
  font-size: 0.88rem;
}

.page-home .home-paths small {
  margin-top: 4px;
  color: var(--polish-muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.page-home #cases .case-grid {
  gap: 12px !important;
}

.page-home #cases .case-card {
  border: 1px solid var(--polish-border) !important;
  background: var(--polish-surface) !important;
}

.page-home #partners .partner-marquee {
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
}

.page-home #partners .partner-row:not(:first-child) {
  display: none !important;
}

.page-home #partners .partner-track {
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px !important;
  width: 100% !important;
  animation: none !important;
  transform: none !important;
}

.page-home #partners .partner-item:nth-child(n + 9) {
  display: none !important;
}

.page-home #partners .partner-item {
  min-width: 0 !important;
  justify-content: center !important;
  border-radius: 7px !important;
  background: var(--polish-surface) !important;
  border-color: var(--polish-border) !important;
  box-shadow: none !important;
}

@media (max-width: 900px) {
  .page-home .home-primary-hero .hero-slide h1 {
    font-size: 2.55rem !important;
  }

  .page-home .home-capabilities .standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .page-home .home-plan-grid {
    grid-template-columns: 1fr !important;
  }

  .page-home .home-plan-card {
    min-height: 0;
  }

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

  .page-home .home-paths a:nth-child(2) {
    border-right: 0;
  }

  .page-home .home-paths a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--polish-border);
  }

  .page-home #partners .partner-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-home .home-primary-hero,
  .page-home .home-primary-hero .slider-track,
  .page-home .home-primary-hero .hero-slide {
    min-height: 455px !important;
  }

  .page-home .home-primary-hero .hero-slide {
    padding-top: 42px !important;
    padding-bottom: 44px !important;
    background-position: 62% center !important;
  }

  html[data-site-theme="light"] .page-home .home-primary-hero .hero-slide::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9) 72%, rgba(255, 255, 255, 0.5)) !important;
  }

  .page-home .home-primary-hero .hero-slide h1 {
    max-width: 10ch !important;
    font-size: 2.1rem !important;
  }

  .page-home .home-primary-hero .hero-slide p {
    font-size: 0.9rem !important;
  }

  .page-home .home-capabilities .standards-grid,
  .page-home .home-paths {
    grid-template-columns: 1fr !important;
  }

  .page-home .home-capabilities .standard {
    min-height: 0;
  }

  .page-home .home-capabilities .standard::before {
    margin-bottom: 18px;
  }

  .page-home .home-paths a {
    min-height: 82px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--polish-border);
  }

  .page-home .home-paths a:last-child {
    border-bottom: 0;
  }

  .page-home #partners .partner-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
